2004-12-02 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mono / metadata / ChangeLog
1 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
2
3         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
4         around the domain changes.
5
6         * appdomain.c (mono_domain_unload): Handle the case when the thread
7         calling Unload is itself being aborted during unloading. Fixes #70022.
8
9         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
10
11         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
12         checkpoint_func as an icall so it gets a wrapper.
13         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
14         in the cross-appdomain wrappers too.
15
16         * threads.c (mono_thread_has_appdomain_ref): Make this public.
17
18         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
19
20         * reflection.c: Fix some memory leaks.
21         
22 2004-12-02  Martin Baulig  <martin@ximian.com>
23
24         * metadata.c (generic_inst_cache): New static hashtable.
25         (mono_metadata_lookup_generic_inst): New public function.
26         (mono_metadata_inflate_generic_inst): New public function.
27         (mono_metadata_parse_generic_inst): New public function.
28         (do_mono_metadata_parse_generic_class): Use the new
29         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
30         since this'll also use the cache.
31
32         * reflection.c (mono_reflection_bind_generic_method_parameters):
33         Use mono_metadata_lookup_generic_inst() to use the new cache.
34
35         * class.c (inflate_mono_type): Use
36         mono_metadata_inflate_generic_inst() to inflate a generic
37         instance; this'll also use the new cache.
38
39         * loader.c (method_from_methodspec): Use
40         mono_metadata_parse_generic_inst() and
41         mono_metadata_inflate_generic_inst() rather than parsing it
42         manually, so we can use the new cache.
43
44 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
45
46         * threads.c (wait_for_tids): Do not incorrectly free threads when 
47         the wait times out.
48
49 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
50
51         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
52         iter->args based on whether parameters are passed in registers (i.e.
53         MONO_ARCH_REGPARMS is defined)
54
55 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
56
57         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
58         the exception message. Fixes #70070.
59         (method_from_methodspec): Fix warnings.
60
61 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
62
63         * process.c: (complete_path) return the path quoted
64
65 2004-12-01  Martin Baulig  <martin@ximian.com>
66
67         * class-internals.h (MonoGenericInst): New structure.
68         (MonoGenericClass): Replaced `type_argc', `type_argv' and
69         `is_open' with `MonoGenericInst *inst'.
70         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
71         `is_open' with `MonoGenericInst *inst'.
72
73 2004-11-30  Martin Baulig  <martin@ximian.com>
74
75         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
76
77         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
78         to `generic_class_cache'.
79
80         * metadata.c
81         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
82         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
83         (mono_generic_inst_is_valuetype): Renamed to
84         mono_generic_class_is_valuetype().
85
86         * class-internals.h
87         (MonoGenericInst): Renamed to MonoGenericClass.
88         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
89         (MonoClass): Renamed `generic_inst' to `generic_class'.
90         (MonoGenericContext): Renamed `ginst' to `gclass'.
91
92         * object-internals.h
93         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
94
95         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
96         mono_reflection_generic_class_initialize().
97
98         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
99         now known as "System.Reflection.MonoGenericClass".
100         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
101
102 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
103
104         * class-internals.h: Added a flag field to MonoClass to cache the
105         declarative security attributes actions associated with the class.
106         * domain-internals.h: Added booleans to MonoJitInfo to cache the
107         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
108         applicable to the JITted method.
109         * reflection.c|h: Added functions to extract (as flags) which security
110         actions are available (declaratively) for a method, class or assembly.
111         * metadata.c|h: Added functions to search the declarative security
112         table in the metadata.
113         
114 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
115
116         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
117         EXPORTEDTYPES are already in the class name cache, so there is no
118         need to add extra code here to look at them. Just removes a bit of
119         cruft.
120
121         (ves_icall_System_Environment_get_TickCount): No need for #if
122         WINDOWS. We already have the code in io-layer.
123
124 2004-11-28  Martin Baulig  <martin@ximian.com>
125
126         * loader.c
127         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
128         Fixes gen-112.cs.
129
130 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
131
132         * assembly.c (do_mono_assembly_open): Instead of having a
133         conditional WITH_BUNDLE, incorporate support for bundles here, by
134         having a global `bundles' variable holding a pointer to the actual
135         bundles. 
136
137         (mono_register_bundled_assemblies): New API call used by the
138         bundle code. 
139
140         See mkbundle.1 for details.
141         
142 2004-11-27  Martin Baulig  <martin@ximian.com>
143
144         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
145         the vtable for generic methods.
146
147 2004-11-26  Martin Baulig  <martin@ximian.com>
148
149         * metadata.c
150         (mono_metadata_generic_method_hash): New public function.
151         (mono_metadata_generic_method_equal): Likewise.
152
153         * class-internals.h
154         (MonoGenericContainer): Added `GHashTable *method_hash'.
155
156         * reflection.c (ReflectionMethodBuilder): Added
157         `MonoGenericContainer *generic_container'.
158         (reflection_methodbuilder_to_mono_method): Don't create a new
159         MonoGenericContainer each time we're called.
160         (mono_reflection_bind_generic_method_parameters): Use
161         `container->method_hash' to cache the results so we don't create a
162         different method if we're called several times with the same
163         arguments.
164
165         * loader.c (method_from_methodspec): Use the new
166         `container->method_hash' here, too.
167
168 2004-11-26  Martin Baulig  <martin@ximian.com>
169
170         * class.c (inflate_generic_signature): Correctly compute
171         `res->has_type_parameters'.
172         (mono_class_vtable): Use the `has_type_parameters' flag to
173         determine whether we're a generic method.
174
175         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
176
177 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
178
179         * object.c (mono_runtime_run_main): Fix a small memory leak.
180
181 2004-11-25  Martin Baulig  <martin@ximian.com>
182
183         * class.c (set_generic_param_owner): Fixed the loop.
184
185 2004-11-25  Martin Baulig  <martin@ximian.com>
186
187         * object.c (mono_class_vtable): Don't create any JIT wrappers for
188         generic methods.
189
190 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
191
192         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
193         names. Fixes #69787.
194
195 2004-11-24  Martin Baulig  <martin@ximian.com>
196
197         * class.c (mono_class_create_generic_2): If we don't have a
198         `ginst->parent', inflate `gklass->parent' to get our parent.
199
200 2004-11-24  Martin Baulig  <martin@ximian.com>
201
202         * reflection.c (compare_genericparam): Correctly sort the
203         GenericParam table; fixes #69779.
204
205 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
206
207         * reflection.c: When writing a PE file, don't create a huge
208         buffer in memory. Just write the arrays we have to the file.
209         This reduces memory usage.
210
211         * metadata-internals.h: MonoDynamicStream pefile is no longer used
212         globally.
213
214 2004-11-17  Martin Baulig  <martin@ximian.com>
215
216         * class.c (mono_class_init): Don't setup `class->parent' for
217         dynamic instances; moved this to mono_class_generic_2().
218         (mono_class_create_generic): Also set `klass->inited' for dynamic
219         generic instances.
220         (mono_class_create_generic_2): Don't do anything for dynamic
221         generic instances.  Set `klass->parent' here and also call
222         mono_class_setup_parent() here. 
223
224         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
225         `MonoType *parent' argument; set `ginst->parent' before calling
226         mono_class_create_generic_2(), so we set the correct parent.
227
228 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
229
230         * reflection.c: allow getting attributes from ModuleBuilder
231         (used by ikvm).
232
233 2004-11-17  Martin Baulig  <martin@ximian.com>
234
235         * class.c (mono_class_create_from_typedef): If a type parameter is
236         inherited from an outer class, set its owner to that class.
237
238 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
239
240         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
241           for (int*) written size. This fixes bug #69592.
242
243 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
244
245         * icall.c: Added IsAuthenticodePresnet internal call.
246         * image.c|h: New function that check a MonoImage for an Authenticode
247         signature in the certificate PE data directory.
248         * security.c|h: New internal call to ask the runtime if an 
249         Authenticode signature seems referenced in the PE header.
250
251 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
252
253         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
254
255         * reflection.c (mono_image_create_pefile): Free the assembly streams
256         after writing out the assembly file.
257
258         * object.c (mono_runtime_run_main): Fix small memory leak.
259
260         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
261         property access modifiers. Fixes #69389.
262
263 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
264
265         * domain.c, object.c, object-internals.h, domain-internals.h,
266         object.h, marshal.c: keep dynamic code info per domain.
267
268 2004-11-15  Martin Baulig  <martin@ximian.com>
269
270         * class.c (mono_type_get_name_recurse): Put type arguments in
271         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
272         see bug #68387.
273
274 2004-11-15  Martin Baulig  <martin@ximian.com>
275
276         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
277         (mono_class_setup_vtable): When computing `the_cname' for a
278         generic instance, don't include the namespace since we'd otherwise
279         add it twice.
280
281 2004-11-15  Martin Baulig  <martin@ximian.com>
282
283         * class.c (mono_class_create_generic): Changed return type to void.
284         (mono_class_create_generic_2): New public function; setup
285         `class->method', `class->field' and `class->interfaces' here
286         instead of in mono_class_init().
287
288         * class.h (mono_class_create_generic): Moved to class-internals.h.
289
290 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
291
292         * reflection.c (mono_image_create_pefile): take a file HANDLE.
293         rather than writing to memory, write to this file. Right now,
294         we are just writting into a buffer, and copying that. However
295         we can avoid the buffer later.
296
297         (mono_dynamic_stream_reset): new function
298
299         * icall.c, object-internals.h: update for the above.
300
301 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
302
303         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
304         have been using gc'd memory. First it is slower, unlikely
305         the comment in the source code said, secondly, it increases
306         our footprint to do it in the gc.
307
308         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
309         the method so that it does not have to copy to managed code.
310
311 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
312
313         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
314
315 2004-11-12  Martin Baulig  <martin@localhost>
316
317         * reflection.c (mono_image_create_token): Allow generic method
318         definitions here, since they may appear in an `.override'; see
319         gen-98/gen-99 for an example.
320
321 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
322
323         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
324         #69365.
325
326         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
327         descriptive.
328
329 2004-11-11  Martin Baulig  <martin@ximian.com>
330
331         * class.c (mono_class_setup_vtable): In an explicit interface
332         implementation, the method name now includes the arity.
333
334 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
335
336         * object.c (mono_array_full_copy): Fix warning.
337
338 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
339
340         * appdomain.c: Removed look_for_method_by_name(). Use the new method
341         mono_class_get_method_from_name() instead.
342         
343         * class-internals.h: Added two new types of wrappers. 
344         Added MonoRemotingTarget enum. Added new trampoline function type, which
345         takes an additional MonoRemotingTarget value as parameter, so it is
346         possible to request a trampoline for a specific target.
347         
348         * class.c: Added new mono_class_get_method_from_name() method.
349         
350         * class.h: In MonoRemoteClass, we can have now to vtables, one for
351         general remoting sinks and one specific for cross domain calls.
352         
353         * debug-helpers.c: Added new wrapper names.
354         
355         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
356         of a remote class.
357         
358         * image.c: Porperly delete value objects form the remoting invoke hashtable.
359         
360         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
361         with several other methods (mono_marshal_get_xappdomain_dispatch,
362         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
363         and others) can generate a fast remoting wrapper for cross domain calls.
364         More information can be found in docs/remoting.
365         Other changes: Removed mono_find_method_by_name, and used
366         mono_class_get_method_from_name instead.
367         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
368         is stored in the remoting invoke hashtable.
369         
370         * marshal.h: published the new method for getting the xdomain wrapper,
371         and also added a method for getting the adequate wrapper for a given
372         method and target.
373         
374         * object-internals.h, object.c: Added a couple of methods for capying and
375         cloning arrays.
376         Modified mono_install_remoting_trampoline, which takes the new remoting
377         trampoline that has a remoting target as parameter.
378         mono_class_proxy_vtable now also takes a remoting target as parameter, and
379         will return the most suitable vtable for the target.
380         Added mono_remote_class_vtable, which returns the vtable of a remote class
381         (which can be the normal remoting vtable or the xdomain vtable).
382         
383         * threads.c: the xdomain invoke and dispatch wrappers must also be
384         protected against interruptions.
385
386 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
387
388         * icall.c: use memmove in BlockCopyInternal when the source and
389         destination arrays are the same.
390
391 2004-11-09  Martin Baulig  <martin@ximian.com>
392
393         * class-internals.h (MonoGenericContainer): Removed `method' and
394         `signature', replaced them with `is_method' and `is_signature'
395         flags.  Added `context'.
396
397         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
398         instead of a `MonoGenericContainer *'.
399
400         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
401         for dynamic type parameters.
402         (mono_metadata_load_generic_params): Setup `container->context'.
403
404         * reflection.c (mono_reflection_setup_generic_class): Setup
405         `tb->generic_container->context'.
406         (do_mono_reflection_bind_generic_parameters): Use
407         mono_class_inflate_generic_type() to correctly inflate types,
408         rather than using our own hack just for MONO_TYPE_VAR.
409
410 2004-11-09  Martin Baulig  <martin@ximian.com>
411
412         * class.c (mono_class_inflate_generic_method): Small fix; don't
413         crash here.
414
415         * icall.c
416         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
417         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
418         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
419         (ves_icall_Type_BindGenericParameters): Likewise.
420         (ves_icall_Type_get_IsGenericInstance): Likewise.
421         (ves_icall_Type_GetGenericParameterPosition): Likewise.
422         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
423         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
424         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
425
426 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
427
428         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
429         assembly versions and public key tokens. Fixes #69113.
430
431 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
432
433         * metadata.c: fix bug introduced with the type cache changes
434         on 2004-11-06.
435
436 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
437
438         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
439         the MonoClass pointer instead of the token in exception clauses.
440         * reflection.c: updates for the above and make the code not depend
441         on the structure of MonoExceptionClause.
442
443 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
444
445         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
446         Add support for dynamic assemblies. Fixes #69114.
447
448         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
449
450 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
451
452         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
453         since most only those methods use it. the code member of
454         MonoMethodPInvoke was dead, so that can be removed too. Also,
455         remove inline_count (again, not used), and move slot so that it
456         can share bits with some other flags. This saves 8 bytes in the
457         structure and gives us about 50 kb back for mcs helloworld.cs
458
459         * *.[ch]: Do naming changes for the above.
460
461         * loader.c (mono_method_get_header): Lazily init the header
462         on first access.
463         (mono_get_method_from_token): don't init the header here
464         (mono_free_method): the header may never be allocated
465
466         Overall, this saves 150 kb of unmanaged allocations
467         for mcs helloworld.cs. That accounts for 10% of the unmanaged
468         memory at runtime.
469         
470         * loader.c, loader.h (mono_method_get_header): new accessor.
471
472         * *.[ch]: use the above method. Prepares us to lazily load
473         the header.
474
475         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
476         three warnings, which are actual bugs (see 69206).
477
478         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
479         unused. Saves a cool 4 bytes / method.
480
481 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
482
483         * metadata.c (builtin_types): Add types for System.Object here.
484         (mono_metadata_parse_type_full): Cache MonoType*'s that are
485         for a class or valuetype from klass->this_arg or klass->byval_arg.
486
487         On mcs for a hello world, this gets us down from 21836 MonoType's
488         to 14560.
489
490         (mono_metadata_free_type): Account for the above change.
491
492 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
493
494         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
495         exception instead of asserting if name is null.
496         (ves_icall_System_AppDomain_GetData): Ditto.
497
498 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
499
500         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
501         EnumBuilder.
502
503         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
504         Return NULL when the domain does not have entry_assembly set.
505
506         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
507         Add a 'resource_modules' argument.
508         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
509
510         * reflection.c (mono_reflection_create_runtime_class): Move setting
511         of wastypebuilder here, so mono_get_type_object () returns a MonoType
512         for enums too.
513
514         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
515         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
516         Throw an ArgumentNullException if 'ptr' is null.
517
518         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
519         assemblies here. Fixes #69020.
520
521 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
522
523         * reflection.c (build_compressed_metadata): Fix the previous patch for
524         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
525         the stack.
526
527 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
528
529         * assembly.c (mono_assembly_names_equal): Allow a match if one of
530         the cultures is false. Fixes #69090.
531
532         * reflection.c (build_compressed_metadata): Fix invalid memory read 
533         detected by valgrind.
534         
535         * reflection.c (mono_reflection_get_type): Avoid triggering a 
536         TypeResolve multiple times for the same type. Fixes #65577.
537
538 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
539
540         * marshal.c: Avoid using ldftn to call managed functions. It is
541         much slower than just a call.
542
543         * reflection.c (mono_module_get_object): free the basename we
544         allocate here from glib.
545         
546         * reflection.c (ensure_runtime_vtable): make sure to free
547         overrides.  Also, we were allocating an array of MonoMethod not an
548         array of MonoMethod*.
549
550         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
551
552         * image.c (mono_image_close): free image->guid here.
553
554 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
555
556         * reflection.c: Fix some spec conformance issues with the PE file
557         structures so mcs compiled apps run on the Net 2.0 beta.
558
559 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
560
561         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
562         Implement this. Fixes #67264.
563
564         * debug-helpers.h debug-helpers.c marshal.c: Move 
565         mono_find_method_by_name to debug-helpers.c.
566
567 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
568
569         * object.c (mono_release_type_locks): type_initialization_hash is
570         a GHashTable.
571
572         * reflection.c object.c object-internals.h: Fix warnings.
573
574         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
575         without accessors. Fixes #61561.
576
577         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
578         application base from the root domain if not set. Fixes #65641.
579         (mono_runtime_init): Fix warning.
580
581 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
582
583         * appdomain.c: call mono_thread_pool_init.
584         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
585         of worker threads based on the number of CPUs and the environment
586         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
587         for non-windows (windows) systems.
588
589 2004-10-27  Chris Toshok  <toshok@ximian.com>
590
591         * mono-debug-debugger.c (write_class): don't call mono_class_init
592         here, as even with the check for (!klass->init_pending), we get
593         into a situation where we're hitting cycles in class
594         initialization.  Fixes #68816.
595
596 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
597
598         * image.c: Avoid overwriting values in the loaded_images_hash when an
599         assembly is loaded multiple times. Fixes #61152.
600
601         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
602         so multiple satellite assemblies for the same name can be loaded.
603         Fixes #68259.
604
605         * mono_domain_assembly_preload: Actually return the loaded assembly, 
606         not NULL.
607
608         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
609         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
610
611         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
612         pending finalizers are not invoked after the appdomain has been 
613         unloaded. Fixes #67862.
614
615 2004-10-22  Martin Baulig  <martin@ximian.com>
616
617         * mono-debug-debugger.c
618         (mono_debugger_runtime_invoke): Don't box valuetypes.
619
620 2004-10-22  Chris Toshok  <toshok@ximian.com>
621
622         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
623         don't hide private methods.
624
625 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
626
627         * icall.c: Allows the runtime to "share" (when known) the public key
628         token of an assembly. This avoid the need to recalculate the token 
629         (from the public key) in managed code.
630
631 2004-10-21  Chris Toshok  <toshok@ximian.com>
632
633         * debug-helpers.c (append_class_name): argh, revert last patch.
634         
635 2004-10-21  Chris Toshok  <toshok@ximian.com>
636
637         * debug-helpers.c (append_class_name): use '+' as the delimiter,
638         not '/', so that it matches what the debugger uses to look up
639         methods.
640
641 2004-10-21  Martin Baulig  <martin@ximian.com>
642
643         * mono-debug-debugger.c (mono_debugger_throw_exception): New
644         public method; this is called each time an exception is thrown and
645         allows the debugger to use exception catch points.
646
647 2004-10-21  Martin Baulig  <martin@ximian.com>
648
649         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
650         the stack pointer and the exception object in some struct and pass
651         that to the debugger.
652
653 2004-10-21  Chris Toshok  <toshok@ximian.com>
654
655         * mono-debug-debugger.c (do_write_class): add instance/static
656         event support.  We don't expose "raise" or "other" yet.
657         (event_is_static): new method.
658
659 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
660
661         * mono-debug-debugger.c
662         (mono_debugger_handle_exception): Remove
663         bogus return value for fussy compilers.
664
665 2004-10-20  Martin Baulig  <martin@ximian.com>
666
667         * mono-debug-debugger.c
668         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
669         (mono_debugger_handled_exception): Likewise.
670
671 2004-10-20  Martin Baulig  <martin@ximian.com>
672
673         * mono-debug-debugger.h (MonoDebuggerEvent): Added
674         MONO_DEBUGGER_EVENT_EXCEPTION.
675
676         * mono-debug-debugger.c (mono_debugger_handle_exception): New
677         public function to send the debugger a notification for an
678         exception and inform it about a catch/finally clause.
679
680 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
681
682         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
683         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
684         fix 2.95 build. 
685
686         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
687
688 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
689
690         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
691         marshalled as [In,Out]. Fixes #58325.
692
693 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
694
695         * reflection.c (mono_method_body_get_object): Implement some fields.
696
697 2004-10-12  Martin Baulig  <martin@ximian.com>
698
699         * reflection.c (mono_reflection_bind_generic_parameters): Small
700         fix, correctly retrieve our parent from a generic instance.
701
702 2004-10-12  Martin Baulig  <martin@ximian.com>
703
704         * metadata.c (mono_metadata_generic_param_equal): We always have
705         an owner.
706
707         * class.c
708         (mono_class_from_generic_parameter): We need to have an owner.
709         (my_mono_class_from_generic_parameter): Likewise.
710
711         * reflection.c (mono_reflection_setup_generic_class): Renamed to
712         mono_reflection_create_generic_class() and added a new
713         mono_reflection_setup_generic_class().  
714         (mono_reflection_initialize_generic_param): If we're a nested
715         generic type and inherited from the containing class, set our
716         owner to the outer class.
717
718 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
719
720         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
721
722         * reflection.c (mono_method_body_get_object): New function to create
723         a MethodBody object.
724
725         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
726
727 2004-10-11  Martin Baulig  <martin@ximian.com>
728
729         * metadata.c (_mono_metadata_type_equal): Renamed to
730         do_mono_metadata_type_equal() and made static.
731
732 2004-10-11  Martin Baulig  <martin@ximian.com>
733
734         * appdomain.c: Bump corlib version number to 28.
735
736 2004-10-10  Martin Baulig  <martin@ximian.com>
737
738         * class-internals.h
739         (MonoGenericInst): Added `MonoGenericContainer *container'.
740         (MonoGenericMethod): Likewise.
741         (MonoGenericContext): Likewise.
742         (MonoGenericParam): Added `MonoGenericContainer *owner'.
743
744         * metadata.c
745         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
746         (do_mono_metadata_parse_generic_inst): Likewise.
747         (mono_metadata_parse_type_full): New public method.  This is the actual
748         mono_metadata_parse_type() implementation - with an additional
749         `MonoGenericContainer *' argument.
750         (mono_metadata_parse_array_full): Likewise.
751         (mono_metadata_parse_signature_full): Likewise.
752         (mono_metadata_parse_method_signature_full): Likewise.
753         (mono_metadata_parse_mh_full): Likewise.
754         (mono_type_create_from_typespec): Likewise.
755         (mono_metadata_interfaces_from_typedef_full): New public method;
756         this is similar to the other _full() methods, but we take a
757         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
758         (mono_metadata_parse_generic_param): Take an additional
759         `MonoGenericContainer *' argument and lookup the MonoGenericParam
760         from that container.
761         (mono_metadata_generic_param_equal): New static method to compare
762         two type parameters.
763         (_mono_metadata_type_equal): New static method; takes an
764         additional `gboolean signature_only' argument - if true, we don't
765         compare the owners of generic parameters.
766         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
767         with a TRUE argument - do a signature-only comparision.
768
769         * loader.c: Use the new _full() methods and pass the
770         MonoGenericContainer to them.
771
772         * object-internals.h (MonoReflectionTypeBuilder): Added
773         `MonoGenericContainer *generic_container' field.
774         (MonoReflectionMethodBuilder): Likewise.
775
776 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
777
778         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
779         case initial images of dynamic assemblies.
780
781         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
782
783         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
784
785         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
786         length of event->other array.
787         (typebuilder_setup_events): Ditto.
788
789         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
790         'assembly_by_name' and add an 'assemblies' list.
791
792         * assembly.h assembly.c: Add a new search hook for determining whenever
793         an assembly is already loaded. Use this instead of searching in the
794         loaded_assemblies list.
795
796         * domain.c appdomain.c: Implement the new search hook so loaded 
797         assemblies are now scoped by appdomain. Fixes #67727.
798
799 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
800
801         * threads.c (mono_thread_attach): Initialize synch_lock field so
802         mono_thread_detach works again.
803
804         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
805         'lib' too. Fixes #63130.
806
807 2004-10-06  Jackson Harper  <jackson@ximian.com>
808
809         * culture-info-tables.h: regenerated.
810
811 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
812
813         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
814         implemented by other interfaces in the result. Fixes #65764.
815         
816         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
817         Handle unloadable modules without crashing.
818
819         * image.c (load_modules): Revert the previous patch since modules must
820         have a fixed index inside the array.
821         
822         * image.c (load_modules): Don't include native modules in the modules
823         array.
824
825 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
826
827         * reflection.h: Add param_defaults field.
828
829         * reflection.c: Add support for parameter defaults in dynamic methods.
830         Fixes #64595.
831
832         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
833         an empty string when a type has no namespace. Fixes #64230.
834
835 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
836
837         * tabledefs.h: Added "internal" security actions to support non-CAS
838         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
839         Note: they do not seems to be used anymore in 2.0 (new metadata format)
840
841 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
842
843         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
844         constructor of abstract class. Fixes #61689.
845
846 2004-10-04  Martin Baulig  <martin@ximian.com>
847
848         * class-internals.h (MonoGenericContainer): New type.
849         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
850         `MonoGenericContainer *generic_container'.
851         (MonoClass): Replaced `gen_params' and `num_gen_params' with
852         `MonoGenericContainer *generic_container'.
853
854         * metadata.c (mono_metadata_load_generic_params): Return a
855         `MonoGenericContainer *' instead of a `MonoGenericParam *';
856         removed the `num' argument.
857
858 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
859
860         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
861         for dynamic images.
862
863         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
864         machine fields.
865
866         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
867
868         * reflection.c: Save pe_kind and machine values into the generated
869         image file.
870
871         * appdomain.c: Bump corlib version number.
872
873         * object-internals.h: Reorganize layout of LocalBuilder.
874
875         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
876         New helper function.
877
878         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
879         created MonoType for dynamic types. Fixes #66180.
880
881 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
882
883         * threadpool.c: the ares hashtable needs a critical section around it.
884         this prevents some nasty segfaults
885
886 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
887
888         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
889         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
890         bug 67324).
891         
892 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
893
894         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
895         
896 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
897
898         * image.c: Always canonicalize image file names, to avoid loading
899         the same assembly twice when referenced using a relative path.
900
901 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
902
903         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
904
905         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
906
907         * marshal.c: Fix warnings.
908
909 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
910
911         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
912         attempting to marshal the delegate_trampoline as the method_addr.
913         This patch has a static hashtable of marshalled delegates so that 
914         we can map delegate_trampoline addresses back to delegates.  This
915         allows a delegate passed to managed code to be passed back into native
916         code.  Fixes #67039
917
918 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
919
920         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
921
922         * reflection.c (method_encode_code): Align method headers properly.
923         Fixes #66025.
924
925 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
926
927         * marshal.c: In the runtime invoke wrapper, reset the abort
928         exception if it is cached. This avoids the automatic rethrowal of 
929         the exception after the catch of the wrapper. Also check for pending
930         interruptions before calling the managed method. This is done using
931         the new method emit_thread_force_interrupt_checkpoint, since the
932         normal checkpoint method is ignored when running the invoke wrapper.
933         * object.c: If the abort exception is rethrown, set the abort_exc
934         field of the thread, so it will be rethrown aftere every catch.
935         * threadpool.c: Only run an interruption checkpoint if what has been
936         requested is a stop of the thread (aborts will be ignored).
937         * threads.c: By default, a thread will now never be interrumped while
938         running the runtime invoke wrapper (this ensures that runtime_invoke
939         will always return to the caller if an exception pointer is provided).
940         There is a new special method mono_thread_force_interruption_checkpoint()
941         to force an interruption checkpoint even if running a protected
942         wrapper, which is used by the same runtime invoke wrapper to do a check
943         at a safe point.
944
945 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
946
947         * object.c, object-internals.h: Implemented mono_release_type_locks,
948         which releases the cctor locks held by a thread.
949         * threads.c, threads.h: In thread_cleanup, release cctor locks held
950         by a thread. Added mono_thread_exit() method to be used to safely stop
951         a thread.
952
953 2004-09-28  Raja R Harinath  <rharinath@novell.com>
954
955         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
956         Move null check before dereference.  Avoid indexing beyond the end
957         of the 'modules' array.
958
959 2004-09-28  Raja R Harinath  <rharinath@novell.com>
960
961         * metadata-internals.h (MonoImage): Add module_count field.
962         * image.c (load_modules): Set image->module_count.
963         (mono_image_load_file_for_image): Use image->module_count.
964         * reflection.c (mono_image_load_module): Append to image->modules array 
965         of dynamic assembly.
966         (mono_module_get_object): Fix loop to actually increment index.
967         Use image->module_count.
968         * assembly.c (mono_assembly_load_references): Use image->module_count.
969         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
970         Likewise.
971
972 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
973
974         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
975         Avoid assert on generic types.
976
977 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
978
979         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
980
981         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
982
983         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
984         function to convert a MarshalSpec structure to its managed counterpart.
985
986         * reflection.c: Fix warnings.
987         
988         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
989         field.
990
991         * icall.c (mono_create_icall_signature): Fix build.
992
993 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
994
995         * icall.c: Add MakePointType icall.
996
997         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
998         warnings.
999
1000 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1001
1002         * threadpool.c: reuse allocated slots in the queue.
1003
1004 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
1005
1006         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
1007
1008         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
1009
1010         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
1011         previous change.
1012
1013         * tabledefs.h: Add constants for pinvoke attributes BestFit and
1014         ThrowOnUnmappableChar.
1015
1016         * icall.c (ves_icall_Type_GetPacking): New icall.
1017
1018 2004-09-24  Martin Baulig  <martin@ximian.com>
1019
1020         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
1021
1022 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1023
1024         * appdomain.c:
1025         (mono_domain_set): allow setting a domain that is being unloaded.
1026         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
1027         being unloaded.
1028
1029 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
1030
1031         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
1032         the GetCustomAttributes icall.
1033
1034 2004-09-23  Martin Baulig  <martin@ximian.com>
1035
1036         * object-internals.h (MonoReflectionGenericParam): Replaced
1037         'has_ctor_constraint', `has_reference_type' and `has_value_type'
1038         with `guint32 attrs'.
1039
1040 2004-09-23  Martin Baulig  <martin@ximian.com>
1041
1042         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
1043
1044 2004-09-23  Martin Baulig  <martin@ximian.com>
1045
1046         * object-internals.h (GenericParameterAttributes): New enum.
1047
1048 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
1049
1050         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
1051         
1052         * class.c (init_events): Fill out event->other field.
1053
1054         * class.c: Fix warnings.
1055
1056         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
1057
1058 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
1059
1060         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
1061         walk which doesn't supply the IL offset.
1062
1063 2004-09-22  Martin Baulig  <martin@ximian.com>
1064
1065         * reflection.c (mono_reflection_setup_internal_class): If we're
1066         System.ValueType, System.Object or System.Enum, set
1067         `klass->instance_size' and create the vtable.
1068         (mono_reflection_create_internal_class): If we're an enum type,
1069         get the base class from our current corlib.
1070
1071 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
1072
1073         * reflection.h (MonoResolveTokenError): New type.
1074
1075         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
1076         icall.
1077
1078         * icall.c: Add an 'error' argument to the ResolveToken icalls.
1079
1080 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
1081
1082         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
1083         Support also calling constructors, but only for already allocated objects.
1084
1085 2004-09-17  Geoff Norton <gnorton@customerdna.com>
1086
1087         * reflection.c (type_get_qualified_name): If the klass is null
1088         return the typename to avoid a NullRefEx.
1089         (encode_cattr_value): Get the qualified name of the boxed type,
1090         not the underlying enumtype.  Fixes #62984.
1091
1092 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
1093
1094         * marshal.c: Fix problems with previous checkin.
1095
1096 2004-09-21    <vargaz@freemail.hu>
1097
1098         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
1099         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
1100
1101         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
1102
1103 2004-09-21  Geoff Norton <gnorton@customerdna.com>
1104
1105         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
1106         should only return a type for pointers, arrays, and passbyref types.
1107         Fixes bug #63841.
1108
1109 2004-09-21  Martin Baulig  <martin@ximian.com>
1110
1111         * domain.c (mono_debugger_check_runtime_version): New public
1112         function.
1113
1114         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
1115
1116 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
1117
1118         * reflection.c: Added missing sort to the declarative security 
1119         attributes table. MS implementation stops seeing the attributes if the
1120         token number regress in the table (as shown by ildasm and permview).
1121
1122 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
1123
1124         * object-internals.h (MonoReflectionModule): Add 'token' field.
1125         
1126         * reflection.c (mono_reflection_get_token): Add support for Module
1127         and Assembly.
1128         (mono_module_get_object): Set 'token' field.
1129         (mono_module_file_get_object): Set 'token' field.
1130
1131         * icall.c: Add new Assembly and Module icalls.
1132
1133         * appdomain.c: Bump corlib version.
1134
1135 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
1136
1137         * loader.h loader.c class.h class.c: Add helper functions for obtaining
1138         tokens of metadata objects.
1139
1140         * reflection.h reflection.c (mono_reflection_get_token): New function
1141         to obtain the token of a metadata object.
1142
1143         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
1144
1145 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
1146
1147         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
1148         
1149         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
1150
1151 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
1152
1153         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
1154         * object-internals.h: Added 3 MonoArray* members to MonoReflection
1155         AssemblyBuilder to access the permissions set in the class lib.
1156         * reflection.c: Added security attributes encoding step in 
1157         mono_image_build_metadata.
1158         * tabledefs.h: Added new security actions defined in 2.0:
1159         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
1160
1161 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
1162
1163         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
1164         macro parameter.
1165
1166 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
1167  
1168         * locales.c: nullify the ICU_collator member of CompareInfo when it is
1169           finalized. There where random SIGSEVs at program termination, when
1170           an object being finalized was trying to do a string comparison and
1171           the current culture was already finalized.
1172  
1173 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1174
1175         * threads.c: call thread_cleanup before finishing the thread if we get
1176         there.
1177
1178 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
1179
1180         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
1181         assemblies from the parent. Fixes #65665.
1182
1183 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
1184
1185         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
1186         modifiers.
1187
1188 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
1189
1190         * reflection.h: add prototype for mono_get_dbnull_object
1191         * reflection.c: add prototypes for get_default_param_value_blobs 
1192         and mono_get_object_from_blob for fussier compilers
1193
1194 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
1195  
1196         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
1197         false deadlock checks in class initialization.
1198  
1199 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
1200
1201         * image.c (mono_image_addref): Fix comment.
1202
1203         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
1204         possible.
1205
1206 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
1207
1208         * reflection.c (mono_param_get_objects): Modified to return
1209         ParameterInfo.DefaultValue object.
1210
1211         (get_default_param_value_blobs):
1212         (mono_get_object_from_blob):
1213         (mono_get_dbnull_object): New helper routines. 
1214
1215         * object.c (mono_get_constant_value_from_blob): New helper routine
1216         carved out from get_default_field_value ()
1217
1218         * object-internals.h (mono_get_constant_value_from_blob): Added
1219         function declaration.
1220
1221 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
1222
1223         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
1224         referenced assemblies. Fixes #62135.
1225
1226         * exception.h exception.c (mono_get_exception_file_not_found2): New
1227         helper function.
1228
1229 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
1230
1231         * class.h class.c: Add mono_type_get_underlying_type ().
1232
1233 2004-09-09  Geoff Norton <gnorton@customerndna.com>
1234
1235         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
1236         Fix GetTypes() to support dynamically created assemblies.
1237
1238 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
1239
1240         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
1241         
1242         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
1243         previous patch.
1244
1245         * reflection.h reflection.c loader.c: Allow dynamic construction of
1246         pinvoke methods. Fixes #65571.
1247         
1248         * reflection.c (mono_reflection_get_type): Revert previous change since
1249         it causes regressions.
1250
1251 2004-09-08  Martin Baulig  <martin@ximian.com>
1252
1253         * class.c (class_compute_field_layout): Don't call
1254         mono_class_layout_fields() for open generic instances.
1255
1256 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
1257         * threads.c appdomain.c: fix typo in GC macro
1258
1259 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1260
1261         * threads.c: don't call mono_thread_detach() in start_wrapper(),
1262         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
1263
1264 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
1265
1266         * image.c (mono_image_close): Applied patch from 
1267         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
1268         assembly is loaded multiple times from data.
1269         
1270         * image.c (mono_image_open): Fix warning.
1271
1272 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
1273
1274         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
1275         once. Fixes #58334.
1276         
1277         * reflection.c (mono_reflection_create_runtime_class): Initialize
1278         klass->nested_classes. Fixes #61224.
1279
1280 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
1281
1282         * threads.c: sched_yield() on exit, to allow threads to quit.
1283
1284 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
1285
1286         * object.c (mono_unhandled_exception): Remove leftover debug code.
1287
1288 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
1289
1290         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
1291
1292 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
1293
1294         * marshal.c (emit_marshal_array): Really null terminate string arrays.
1295         
1296         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
1297
1298 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
1299
1300         * marshal.c (emit_marshal_array): Null terminate string arrays.
1301         
1302         * marshal.c (raise_auto_layout_exception): Fix warning.
1303
1304         * reflection.c (mono_param_get_objects): Initialize the default value
1305         with DBNull.Value, not null. Fixes #62123.
1306
1307 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
1308
1309         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
1310         throw an exception with a cute explanation.
1311
1312 2004-09-06  Dick Porter  <dick@ximian.com>
1313
1314         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
1315         Close the new process's thread handle, as we don't use it.  The
1316         handle stays around forever otherwise.
1317
1318 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
1319
1320         * object.c (arith_overflow): Fix warning.
1321
1322         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
1323         calling conventions in method refs. Fixes #65352.
1324
1325         * reflection.c: Fix warnings.
1326
1327 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
1328
1329         * icall.c: Add a new icall for Array.Clear
1330
1331 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
1332
1333         * object.c: When allocating an array, we have to throw
1334         an overflow exception if any of the lengths are < 0.
1335
1336 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
1337
1338         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
1339         properly. Also move implementation of string array marshalling to 
1340         managed code. Fixes #42316.
1341
1342 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1343
1344         * assembly.c: provide more information when loading an assembly fails.
1345
1346 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1347
1348         * filewatcher.c: don't expect the development fam package to be
1349         installed.
1350
1351 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
1352
1353         * marshal.c: Make a copy of the signature cookie since it will be
1354         freed by the caller.
1355         
1356         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
1357
1358         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
1359
1360         * metadata.c (mono_metadata_free_marshal_spec): New function to free
1361         marshal specs.
1362
1363         * marshal.c: More refactoring.
1364         
1365         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
1366         smaller functions.
1367
1368 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
1369
1370         * object.c: In mono_message_invoke, fill the output parameter array after
1371           calling the managed method (it was done before the call). This fixes
1372           bug #59299.
1373
1374 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
1375
1376         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
1377         as well.
1378
1379 2004-09-02  Martin Baulig  <martin@ximian.com>
1380
1381         * class.c (mono_class_instance_size): Don't allow generic type
1382         definitions or open generic instances.
1383         (mono_class_array_element_size): If we're a value type, call
1384         mono_class_instance_size() on the original class.
1385
1386         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
1387         handle generic instances.
1388
1389         * mono-debug-debugger.c (write_type): Handle generic instances
1390         like classes.
1391
1392 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
1393
1394         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
1395         the allocation request fails. Fixes #65089.
1396
1397         * object.c (mono_runtime_free_method): Do not call mono_free_method.
1398         
1399         * object.c (mono_runtime_free_method): New function to free a dynamic
1400         method.
1401
1402         * marshal.c (mono_delegate_free_ftnptr): New function to free the
1403         delegate trampoline.
1404
1405         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
1406         with hasthis as dynamic,
1407
1408         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
1409
1410         * domain.c (mono_jit_info_table_remove): New function to remove an
1411         entry from the jit info table.
1412
1413         * class-internals.h (MonoMethod): Add 'dynamic' field.
1414
1415         * loader.c: Fix warnings.
1416
1417 2004-09-01  Martin Baulig  <martin@ximian.com>
1418
1419         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
1420         instead of mono_debugger_lock() because the latter one is a no-op
1421         unless running in the debugger.
1422
1423 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
1424
1425         * class.c (class_compute_field_layout): Classes with auto-layout or
1426         reference fields are not blittable.
1427         
1428 2004-09-01  Dick Porter  <dick@ximian.com>
1429
1430         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
1431         mono_image_get_filename() to get the assembly location.
1432
1433         * icall.c:
1434         * metadata.h: Fix compile warnings
1435
1436 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
1437
1438         * class.c (class_compute_field_layout): System.Object is blittable.
1439
1440         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
1441         as in/out. Fixes #59909.
1442
1443 2004-09-01  Martin Baulig  <martin@ximian.com>
1444
1445         * metadata.h (MONO_TYPE_ISREFERENCE): Call
1446         mono_metadata_generic_inst_is_valuetype() if we're a generic
1447         instance to check whether our underlying type is a reference type.
1448
1449 2004-09-01  Martin Baulig  <martin@ximian.com>
1450
1451         * metadata.c (mono_type_size): If we're a generic instance, call
1452         mono_class_value_size() for value types.
1453
1454 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
1455
1456         * marshal.c: Implement more custom marshalling functionality. Fixes
1457         #64915.
1458
1459 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
1460
1461         * mono-debug.c, debug-mono-symfile.c: add some locking love.
1462
1463 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
1464
1465         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
1466
1467         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
1468
1469         * icall.c: Fix some warnings.
1470
1471         * threads.c (abort_appdomain_thread): Fix unref errors.
1472         (mono_thread_current): Fix THREAD_DEBUG define.
1473
1474 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
1475
1476         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
1477
1478         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
1479
1480 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
1481
1482         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
1483         string arrays.
1484
1485 2004-08-28  Martin Baulig  <martin@ximian.com>
1486
1487         * metadata.c
1488         (mono_metadata_generic_inst_is_valuetype): New public function.
1489
1490         * metadata.h (MONO_TYPE_ISSTRUCT): Call
1491         mono_metadata_generic_inst_is_valuetype() if we're a generic
1492         instance to check whether our underlying type is a valuetype.
1493
1494 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
1495
1496         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
1497         #63768.
1498
1499 2004-08-25  Martin Baulig  <martin@ximian.com>
1500
1501         * loader.c (mono_get_method_from_token): Abstract methods can also
1502         be generic and thus have type parameters.
1503
1504         * metadata-internals.h
1505         (MonoDynamicImage): Added `GPtrArray *gen_params'.
1506
1507         * reflection.c (mono_image_get_generic_param_info): Don't create a
1508         metadata row, just add an entry to the `gen_params' array.
1509         (build_compressed_metadata): Sort the `gen_params' array and then
1510         actually create the metadata.
1511
1512 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1513
1514         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
1515
1516 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
1517
1518         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
1519
1520 2004-08-24  Martin Baulig  <martin@ximian.com>
1521
1522         * class.cs (mono_class_is_subclass_of): Like an interface, a
1523         generic instance also derives from System.Object.
1524
1525 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
1526
1527         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
1528         custom modifiers to be in any order. Fixes #61990.
1529
1530 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
1531
1532         * object.c: Register mono_object_new_fast icall.
1533         
1534         * object.c (mono_class_get_allocation_ftn): Return to calling
1535         mono_object_new_fast, since it seems faster to compute the object 
1536         size in unmanaged code than passing it as a parameter.
1537
1538         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
1539
1540         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
1541         this function with Boehm as the oom handler, so we don't have to check
1542         the result of GC_malloc.
1543
1544         * object.c: Remove checks for oom.
1545
1546         * object.h object.c (mono_class_get_allocation_ftn): New function to
1547         return the icall which can be used to allocate an instance of a given
1548         class. 
1549
1550         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
1551
1552         * class-internals.h: Add 'enabled' field.
1553
1554 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
1555
1556         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
1557
1558 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
1559         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
1560         value 0x0010.
1561
1562 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
1563
1564         * appdomain.c: use the Tls function for appdomain too,
1565         at Zoltan's request. Actually return in mono_context_get
1566
1567         * appdomain.c, profiler.c, threads.c: use __thread
1568
1569 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
1570
1571         * appdomain.c threads.c: Call GC_CreateThread on windows.
1572
1573         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
1574         multiple libraries since this don't work on windows.
1575
1576 2004-08-18  Martin Baulig  <martin@ximian.com>
1577
1578         * class-internals.h
1579         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
1580         MonoMethodHeader.
1581
1582         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
1583         MonoMethodNormal since we also need it for abstract and interface
1584         methods.
1585
1586         * reflection.c
1587         (build_compressed_metadata): Sort the GenericParam table.
1588         (mono_image_create_token): Added `gboolean create_methodspec'
1589         argument; this is false when generating a MethodImpl token.
1590         (reflection_methodbuilder_to_mono_method): Abstract and interface
1591         methods may also have generic parameters.
1592
1593 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
1594
1595         * appdomain.c: thread local alloc
1596
1597 2004-08-17  Martin Baulig  <martin@ximian.com>
1598
1599         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
1600
1601         * icall.c
1602         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
1603         argument.
1604
1605         * class.c (mono_type_get_full_name): New public function.
1606         (mono_type_get_name): Don't include the type arguments.
1607
1608 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
1609
1610         * Makefile.am: Build static versions of libmetadata and libmonoruntime
1611         for inclusion into the mono executable.
1612
1613 2004-08-16  Martin Baulig  <martin@ximian.com>
1614
1615         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
1616         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
1617
1618 2004-08-14  Martin Baulig  <martin@ximian.com>
1619
1620         * class.c (dup_type): Also copy the `byref' field.
1621
1622 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
1623
1624         * reflection.c (create_dynamic_mono_image): Revert the last change 
1625         since it breaks bootstrap.
1626
1627 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
1628
1629         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
1630
1631         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
1632         not free them with g_free.
1633
1634 2004-08-11  Martin Baulig  <martin@ximian.com>
1635
1636         * reflection.c (mono_reflection_setup_internal_class): Also call
1637         mono_class_setup_mono_type() if we already have a `tb->type.type'.
1638
1639 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
1640
1641         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
1642         called during default (first) AppDomain creation. Keep track of
1643         Evidence when loading assemblies.
1644
1645 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
1646
1647         * opcodes.c, opcodes.h: reduce runtime relocations.
1648
1649 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
1650
1651         * culture-info.h, locales.c: fixes and chages to sue the new
1652         optimized format of the locale data.
1653         * culture-info-tables.h: regenerated.
1654
1655 2004-08-06  Geoff Norton <gnorton@customerdna.com>
1656         
1657         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
1658
1659 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
1660
1661         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
1662         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
1663         * domain-internals.h: icall declaration.
1664         * icall.c: icall registration.
1665         * object-internals.h: New fields in MonoAssembly for CAS.
1666
1667 2004-08-05  Duncan Mak  <duncan@ximian.com>
1668
1669         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
1670         CEE_LDELEM_ANY.
1671
1672 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
1673
1674         * reflection.c: fix to deal with object[] arrays in custom ctors
1675         (bug #62550).
1676
1677 2004-08-05  Martin Baulig  <martin@ximian.com>
1678
1679         * class.c (mono_class_array_element_size): Added support for
1680         generic instances and correctly handle "recursive" types.
1681
1682 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
1683
1684         * assembly.c: Fix warnings.
1685
1686 2004-08-04  Martin Baulig  <martin@ximian.com>
1687
1688         * class.c
1689         (mono_type_get_name_recurse): Added `gboolean include_arity'
1690         argument specifying whether or not we should include the generic
1691         arity in the type name.
1692         (_mono_type_get_name): New static function.
1693         (mono_class_setup_vtable): If we're a generic instance, don't
1694         include the generic arity in the names of explicit method
1695         implementations.        
1696
1697 2004-08-03  Martin Baulig  <martin@ximian.com>
1698
1699         * class.c (mono_type_get_name_recurse): Enclose the generic type
1700         arguments in `<', '>'.
1701
1702 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
1703
1704         * gc.c: make GC warning messages use the trace API, they are just
1705         noise to most of the users.
1706
1707 2004-08-03  Martin Baulig  <martin@ximian.com>
1708
1709         * debug-mono-symfile.c (read_string): Correctly read the string.
1710
1711 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
1712
1713         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
1714         
1715         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
1716         icalls.
1717         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
1718
1719 2004-07-30  Martin Baulig  <martin@ximian.com>
1720
1721         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
1722         Reflect latest symbol writer changes.   
1723
1724 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
1725
1726         * object.c: always create an object if null is passed
1727         to Invoke() where a valuetype is expected.
1728
1729 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
1730
1731         * marshal.c (mono_marshal_init): make managed
1732         signatures match native ones better for 64bits.
1733
1734 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1735
1736         * appdomain.c: hack to build correctly the private bin path on windows.
1737         Fixes bug #61991.
1738
1739 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
1740
1741         * assembly.c: Load mscorlib from the correct framework directory
1742           (mono/<version>/mscorlib.dll).
1743         * appdomain.h: Added prototypes for new functions.
1744         * internals.h: Added some prototypes.
1745         * domain.c: When initializing the runtime, get from the executable and
1746           the configuration files the runtime version that the app supports.
1747           Added support methods for reading app.exe.config. Added list of versions
1748           supported by the JIT. Added two new methods: mono_init_from_assembly,
1749           which initializes the runtime and determines the required version from
1750           the provided exe file, and mono_init_version, which initializes
1751           the runtime using the provided version.
1752         * icall.c: Get machine.config from version-specific directory.
1753         * reflection.c: When generating an image, embed the version number
1754           of the current runtime.
1755
1756 2004-07-28  Dick Porter  <dick@ximian.com>
1757
1758         * socket-io.c
1759         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
1760         returned sockaddr size before creating the remote address object.
1761         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
1762         61608.
1763
1764 2004-07-28  Dick Porter  <dick@ximian.com>
1765
1766         * locales.c (string_invariant_compare_char): Fix invariant char
1767         compares between upper and lower cases.  Fixes bug 61458.
1768
1769 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
1770         
1771         * marshal.c: actually cache stelem.ref wrappers.
1772         
1773 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
1774
1775         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
1776         sections and remove the mono_cli_rva_map () function.
1777
1778 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
1779
1780         * debug-mono-symfile.c: fix one more endianess issue, from a patch
1781         by Geoff Norton (<gnorton@customerdna.com>).
1782
1783 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
1784
1785         * class.c: fix class loads for pointer types (typeof(int) !=
1786         typeof(int*)).
1787
1788 2004-07-27  Martin Baulig  <martin@ximian.com>
1789
1790         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
1791         reading the debugging information from an external ".mdb" file.
1792
1793 2004-07-24  Martin Baulig  <martin@ximian.com>
1794
1795         * reflection.c (mono_image_get_type_info): Only write a class
1796         layout entry if we actually have a size or a packing size.
1797
1798 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
1799
1800         * reflection.c (type_get_fully_qualified_name): 
1801         insert cast to get type checking of ?: with non-gcc compilers
1802
1803 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
1804
1805         * rand.c: use g_getenv for both lookups of
1806         MONO_EGD_SOCKET
1807
1808 2004-07-17  Martin Baulig  <martin@ximian.com>
1809
1810         * reflection.c (mono_reflection_bind_generic_method_parameters):
1811         Set `gmethod->reflection_info'.
1812
1813 2004-07-17  Martin Baulig  <martin@ximian.com>
1814
1815         * class.c (mono_class_create_from_typedef): Insert the newly
1816         created class into the hash table before computing the interfaces
1817         since we could be called recursively.
1818
1819 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
1820
1821         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
1822         function to implement stelem.ref in managed code
1823         * class-internals.h, debug-helpers.c: a new wrapper type
1824         for the above.
1825
1826 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
1827
1828         * gc.c: allow GC handles to work even when no GC is compiled in.
1829         Fix part of bug #61134 (GetAddrOfPinnedObject).
1830
1831 2004-07-13  Peter Williams  <peter@newton.cx>
1832  
1833         * process.c (complete_path): Make sure we don't attempt to execute
1834         directories.
1835  
1836 2004-07-12  Geoff Norton <gnorton@customerdna.com>
1837
1838         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
1839           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
1840           and will add/subtract the hour if needed
1841
1842 2004-07-12  Martin Baulig  <martin@ximian.com>
1843
1844         * reflection.c (mono_field_get_object): If we have
1845         `field->generic_info', take the attributes from
1846         `field->generic_info->generic_type'.    
1847
1848 2004-07-12  Martin Baulig  <martin@ximian.com>
1849
1850         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
1851         This function must be called before initializing the runtime.
1852         (mono_debug_init_1): New function; call this after initializing
1853         the runtime, but before loading the assembly.  It tells the
1854         debugger to load corlib and the builtin types.
1855
1856         * mono-debug-debugger.c: Did some larger changes in the debugging
1857         code; support recursive class declarations, make sure we actually
1858         add all classes.
1859
1860 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1861
1862         * debug-helpers.c: undo my previous patch and fixed the real issue in
1863         ../mini/exceptions-x86.c
1864
1865 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1866
1867         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
1868         when no HOME env. variable was set and a NullRef was thrown in a .cctor
1869         called from other .cctors.
1870
1871 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
1872
1873         * loader.c: Removed the mono_loader_wine_init hack now that we are
1874         doing a managed version of Windows.Forms.
1875
1876 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
1877
1878         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
1879         threadpool.c, threads.c: remove static data from rootset.
1880
1881 2004-07-09  Dick Porter  <dick@ximian.com>
1882
1883         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
1884         Don't do any more processing if the matched length was 0.  It was
1885         increasing the size of the string before.  Fixes bug 61167.
1886
1887 2004-07-09  Dick Porter  <dick@ximian.com>
1888
1889         * socket-io.h:
1890         * socket-io.c
1891         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
1892         Add support for SO_PEERCRED if its available.
1893
1894 2004-07-09  Peter Bartok <pbartok@novell.com>
1895         * loader.c: winelib.exe.so error message is now only displayed if
1896         MONO_DEBUG is set. To help us avoid questions when people are trying
1897         out the new Managed.Windows.Forms.
1898
1899 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
1900
1901         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
1902         for isinst and castclass wrappers.
1903
1904         * class-internals.h icall.c: Move registration and lookup of JIT icalls
1905         to libmetadata from the JIT, so they could be used by the marshalling
1906         code and the interpreter.
1907
1908         * marshal.c: Register marshalling related JIT icalls here instead of
1909         in mini.c. Use CEE_MONO_ICALL instead of the family of 
1910         CEE_MONO_PROC<x> opcodes to call marshalling functions.
1911
1912         * metadata.h: Remove unneeded marshalling conversions.
1913
1914         * opcodes.c: Update for new opcodes.
1915         
1916 2004-07-08  Martin Baulig  <martin@ximian.com>
1917
1918         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
1919         (mono_debug_get_domain_data): Make this function static.
1920
1921 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
1922
1923         * gc.c, object.h: add nice GC handle API for embedders.
1924
1925 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
1926
1927         * reflection.c: more changes for the new api
1928
1929         * object.c: When we reflect on a field w/ a constant value, it
1930         will not have a memory location, so we must access metadata. Also,
1931         allow easier reading of strings so that we can read them from
1932         the constant data.
1933
1934         * class.c (mono_class_layout_fields): no need for literal fields here.
1935
1936         * class-internals.h: api changes for const fields
1937
1938         * icall.c (ves_icall_get_enum_info): use new apis for const fields
1939
1940 2004-07-06  Martin Baulig  <martin@ximian.com>
1941
1942         * mono-debug.h: Increment version number to 44.
1943
1944         * mono-debug.c (mono_debug_add_wrapper): The second argument is
1945         now a gpointer, rewrote this whole method.
1946
1947         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
1948         function.  Add information about the wrapper in a new "misc table".
1949
1950         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
1951         for the new misc table.
1952
1953 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
1954
1955         * metadata-internals.h image.c: Add a cache for helper signatures.
1956
1957         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
1958
1959 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
1960
1961         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
1962         delegates from a delegate. Fixes #61033.
1963         
1964         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
1965         marshalling of stringbuilder arrays. Fixes #59900.
1966
1967 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
1968
1969         * icall.c: Add EnumBuilder:setup_enum_type icall.
1970
1971 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
1972
1973         * icall.c: Added a new icall for the property version of
1974         OffsetOfStringData.
1975
1976 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
1977
1978         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
1979         it has a constant size across platforms.
1980
1981         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
1982         stack trace.
1983
1984 2004-06-29  Martin Baulig  <martin@ximian.com>
1985
1986         * mono-debug.c (mono_debug_add_method): Protect the whole function
1987         in mono_debugger_lock(), not just parts of it.
1988
1989 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
1990
1991         * reflection.c: make sure padding bytes in heaps are zeroed.
1992
1993 2004-06-24  David Waite  <mass@akuma.org>
1994
1995         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
1996         image.c, loader.c, locales.c, marshal.c, metadata.c,
1997         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
1998         string-icalls.c, threads.c: change to C90-style comments from C99 /
1999         C++ -style
2000
2001 2004-06-24  Dick Porter  <dick@ximian.com>
2002
2003         * threads.c
2004         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
2005         return createdNew.  Fixes bug 60412.
2006
2007         * threads-types.h: 
2008         * icall.c: Add createdNew parameter to CreateMutex icall
2009
2010 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
2011
2012         * reflection.c, object-internals.h: save default value in params.
2013
2014 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2015
2016         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
2017         no need to build a new path combining that with the application base.
2018         Fixes bug #60442.
2019
2020 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
2021
2022         * reflection.c: fixed minor standard compliance issues.
2023
2024 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
2025
2026         * reflection.c: fixed issue with encoding some custom attributes
2027         (arrays in properties and fields, bug #60411).
2028
2029 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2030
2031         * reflection.c: fix start address when copying the public key token.
2032
2033 2004-06-23  Martin Baulig  <martin@ximian.com>
2034
2035         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
2036         the `exc' object in a static object to put it into the GC's root set.
2037
2038 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
2039
2040         * reflection.c: make mono_reflection_setup_internal_class ()
2041         callable a second time to setup a new parent class.
2042
2043 2004-06-23  Dick Porter  <dick@ximian.com>
2044
2045         * threads.c: Check for WAIT_IO_COMPLETION return values.
2046
2047 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
2048
2049         * appdomain.c: Removed the g_free on the public key token. Now copy 
2050         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
2051         * assembly.c: Added public key token string value when loading 
2052         assemblies. Fix bug #60439.
2053         * icall.c: Added missing informations (like public key) in 
2054         GetReferencedAssemblies. Fix #60519.
2055         * image.h: Changed definition for public key token from const char*
2056         public_tok_value to guchar public_key_token [17];
2057         * reflection.c: Updated for changes to public key token.
2058
2059 2004-06-22  Lluis Sanchez Gual
2060
2061         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
2062         for the field in base classes.
2063
2064 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
2065
2066         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
2067         mark headers as not supported, they are installed only for use by the
2068         debugger.
2069
2070 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
2071
2072         * *.c, *.h: avoid namespace pollution in public headers.
2073
2074 2004-06-21  Martin Baulig  <martin@ximian.com>
2075
2076         * exception.c (mono_get_exception_security): It's in
2077         "System.Security", not in "System".
2078
2079         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
2080         the exception classes.
2081
2082 2004-06-21  Martin Baulig  <martin@ximian.com>
2083
2084         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
2085         Protect the exception object from being finalized.
2086
2087 2004-06-21  Martin Baulig  <martin@ximian.com>
2088
2089         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
2090         public function.
2091
2092 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
2093
2094         * reflection.c: Load the assembly in mono_reflection_type_from_name,
2095         if it was not loaded before. Fix parts of #60439.
2096
2097 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
2098
2099         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
2100         code that was broken since Ben's change: wrappers are now
2101         dependent on the method signature only again.
2102
2103 2004-06-21  Martin Baulig  <martin@ximian.com>
2104
2105         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
2106         added interface support.
2107
2108 2004-06-21  Martin Baulig  <martin@ximian.com>
2109
2110         * class.c (mono_vtable_get_static_field_data): New public method.
2111
2112 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
2113
2114         * filewatcher.c : Windows build fix to be compliant with API changes.
2115
2116 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
2117
2118         * class.h, class.c: more accessors.
2119         * metadata.h, metadata.c: prepare for hiding MonoType and
2120         MonoMethodSignature: people should use the accessors from now on
2121         outside of the tree.
2122
2123 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
2124
2125         * *.c, *.h: more API cleanups.
2126
2127 2004-06-18  Jackson Harper  <jackson@ximian.com>
2128
2129         * assembly.c: Trace loading assemblies.
2130         * loader.c: Trace loading native libraries.
2131         * mono-config.c: Trace loading config files.
2132         
2133 2004-06-18  Dick Porter  <dick@ximian.com>
2134
2135         * locales.c: Tell ICU the lengths of strings, it can cope with
2136         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
2137
2138 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
2139
2140         * image.c: swapped name/filename;
2141
2142 2004-06-18  Martin Baulig  <martin@ximian.com>
2143
2144         * mono-debug-debugger.c (write_class): Write the parent class at
2145         the end of the header.
2146
2147 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
2148
2149         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
2150
2151 2004-06-17  Raja R Harinath  <rharinath@novell.com>
2152
2153         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
2154         (bundle_obj): New conditional define.
2155         (BUILT_SOURCES): Remove.
2156         ($(bundle_srcs)): Make parallel-make safe.
2157         (libmonoruntime_la_LIBADD): Make unconditional.
2158         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
2159         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
2160
2161 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
2162
2163         * culture-info-tables.h: It was inconsistent with the latest
2164           supp info files.
2165
2166 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
2167
2168         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
2169         be loaded.
2170
2171         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
2172         with gcc 2.95.
2173
2174 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
2175
2176         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
2177         cleaned up public header threads.h.
2178
2179 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
2180
2181         * Makefile.am, *.c, *.h: more API cleanups.
2182
2183 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
2184
2185         * Makefile.am: removed monosn from compilation.
2186         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
2187         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
2188         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
2189         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
2190         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
2191         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
2192
2193 2004-06-15  Jackson Harper  <jackson@ximian.com>
2194
2195         * assembly.c: Make locales lower case when searching the GAC for
2196         assemblies. gacutil will always make locales lowercase when
2197         installing so this effectively makes them case insensitive.
2198         
2199 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
2200
2201         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
2202         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
2203           parameter which allows to choose whether the wait can be interrupted or 
2204           not. Also added the method mono_monitor_enter(), which locks the monitor
2205           using an infinite wait and without allowing interruption.
2206           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
2207           interrupted.
2208         * object.h: Added new fields in MonoThread. suspend_event holds the event
2209           used to susped/resume the thread. synch_lock is the lock object to use for
2210           modifying the thread state.
2211         * threads.c: Use the new synch_lock object for locking, instead of "this",
2212           which can generate deadlocks.
2213           Moved thread state change in Thread.Sleep and Thread.Join from managed
2214           to unmanaged code. This avoids a deadlock when the thread was suspended
2215           just after acquiring the thread lock.
2216           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
2217           Implemented Thread.Suspend using an event instead of ThreadSuspend,
2218           which is not fully implemented in the io-layer.
2219         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
2220
2221 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
2222
2223         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
2224         threads-types.h: more API cleanups.
2225
2226 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
2227
2228         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
2229         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
2230         threadpool.c, threads.c: first pass at the exported API cleanup.
2231
2232 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
2233
2234         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
2235
2236 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2237
2238         * icall.c: added internalGetHome.
2239
2240 2004-06-14  Dick Porter  <dick@ximian.com>
2241
2242         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
2243         possible to return successfully when '.' or '..' were the only
2244         entries in a directory, but were skipped.  The MonoIOStat was not
2245         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
2246         Fixes bug 59574.
2247
2248 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
2249
2250         * reflection.c: make binaries run on .Net 1.1 by default.
2251
2252 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
2253
2254         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
2255
2256 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
2257
2258         * marshal.c: keep track of struct size with explicit layout
2259         (bug #59979).
2260
2261 2004-06-12  Martin Baulig  <martin@ximian.com>
2262
2263         * mono-debug-debugger.c: Comment out a debugging g_message().
2264
2265 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
2266
2267         * reflection.c, reflection.h: do not free custom attrs that are cached.
2268         * icall.c: use braces to make code clearer.
2269
2270 2004-06-11  Martin Baulig  <martin@ximian.com>
2271
2272         * class.h (MonoInflatedField): New type.
2273         (MonoClassField): Replaced `MonoType *generic_type' with
2274         `MonoInflatedField *generic_info'.
2275
2276         * icall.c
2277         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
2278
2279 2004-06-11  Martin Baulig  <martin@ximian.com>
2280
2281         * reflection.c (mono_image_create_method_token): Correctly encode
2282         varargs methods.
2283
2284 2004-06-11  Martin Baulig  <martin@ximian.com>
2285
2286         * metadata.c (mono_metadata_parse_method_signature): When parsing
2287         a MethodDef which has VarArgs, also set sentinelpos if we don't
2288         have any parameters.
2289
2290 2004-06-11  Martin Baulig  <martin@ximian.com>
2291
2292         * verify.c (mono_method_verify): In CEE_CALL, use
2293         mono_method_get_signature() to get the method's signature, unless
2294         we're a PInvoke method.
2295
2296 2004-06-10  Jackson Harper  <jackson@ximian.com>
2297
2298         * assembly.c: Use <path>/lib/mono/gac for the extra paths
2299         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
2300         logical name as the supplied path is just a prefix to the gac not
2301         the direct path to it.
2302         
2303 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
2304
2305         * reflection.c: make the token for a created method match
2306         the token of the MethodBuilder it was created from
2307         (IKVM requires this behaviour now).
2308
2309 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
2310
2311         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
2312         reflection.c, socket-io.c: leak fixes.
2313
2314 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
2315
2316         * icall.c: handle sentinel pos in vararg methods in position different
2317         from 0.
2318
2319 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2320
2321         * culture-info-tables.h: freshly generated.
2322
2323 2004-06-09  Martin Baulig  <martin@ximian.com>
2324
2325         * loader.c (mono_get_method_constrained): Call `mono_class_init
2326         (constrained_class)'.   
2327
2328 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
2329
2330         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
2331         any methods. Fixes #59629.
2332
2333 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
2334
2335         * culture-info-tables.h: reflecting locale-builder updates.
2336
2337 2004-06-08  Dick Porter  <dick@ximian.com>
2338
2339         * object.h:
2340         * locales.c: Fixed compile warnings, including a real bug in
2341         CompareInfo_internal_compare.
2342         
2343 2004-06-08  Dick Porter  <dick@ximian.com>
2344
2345         * locales.c
2346         (ves_icall_System_Globalization_CompareInfo_internal_index):
2347         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
2348         Double-check the resuls of usearches, because ICU currently
2349         ignores most of the collator settings here.  Fixes bug 59720.
2350         
2351 2004-06-08  Dick Porter  <dick@ximian.com>
2352
2353         * locales.c
2354         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
2355         Fix memory leak and segfault-causing typo.  No idea how this one
2356         lasted so long without being noticed.
2357
2358 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
2359
2360         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
2361         any methods. Fixes #59629.
2362
2363 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2364
2365         * assembly.c:
2366         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
2367         own the critical section before). Removed dead code (that's done
2368         in the preload hook).
2369
2370         (mono_assembly_load_with_partial_name): call the preload hook.
2371
2372 2004-06-08  Martin Baulig  <martin@ximian.com>
2373
2374         * metadata.c (mono_metadata_signature_alloc): Default
2375         `sentinelpos' to -1.
2376
2377         * reflection.c (mono_image_get_array_token): Likewise.
2378
2379 2004-06-08  Martin Baulig  <martin@ximian.com>
2380
2381         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
2382
2383         * metadata.c (mono_metadata_parse_method_signature): When parsing
2384         a MethodDef which has VarArgs, set sentinelpos.
2385
2386         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
2387         `gint16' since we're using -1 for non-varargs methods.
2388
2389         * reflection.c
2390         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
2391         (method_encode_signature): Added varargs support.
2392         (method_builder_encode_signature): Likewise.
2393         (mono_image_get_varargs_method_token): New static method.
2394         (mono_image_create_method_token): New public method; this is
2395         called via an icall instead of mono_image_create_token() when
2396         calling a varargs method.       
2397
2398 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
2399
2400         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
2401
2402 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
2403
2404         * culture-info-tables.h : Reflecting the latest locale-builder that
2405           fixed empty array representation ({} to {0}).
2406
2407 2004-06-07  Jackson Harper  <jackson@ximian.com>
2408
2409         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
2410         looking up extra gac paths. This allows MONO_GAC_PATH to act
2411         exactly like a prefix.
2412         
2413 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
2414
2415         * reflection.c (mono_reflection_type_from_name): Make a copy of the
2416         type name before modifying it. Fixes #59405.
2417
2418 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
2419
2420         * culture-info.h: added fields for "all datetime patterns".
2421         * locales.c: (  ves_icall_System_Globalization_CultureInfo
2422           _construct_datetime_format ()): fill xxx_patterns fields.
2423         * object.h: added fields for "all datetime patterns" to
2424           MonoDateTimeFormatInfo.
2425         * culture-info-tables.h: reflecting locale-builder updates.
2426
2427 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
2428
2429         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
2430         the event has no add and remove methods. Fixes #59629.
2431
2432 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
2433
2434         * object.c: Fixed possible integer overflow when allocating large
2435         strings.
2436
2437 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
2438
2439         * culture-info-tables.h: reflecting locale-builder updates.
2440
2441 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
2442
2443         * culture-info-tables.h: reflecting locale-builder updates.
2444
2445 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
2446
2447         * culture-info-tables.h: reflecting locale-builder updates.
2448
2449 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
2450
2451         * threads.c: Made Thread.Sleep abortable.
2452
2453 2004-06-02  Martin Baulig  <martin@ximian.com>
2454
2455         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
2456
2457         * debug-mono-symfile.h: Bumped symbol file version number to 37.
2458
2459 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
2460
2461         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
2462
2463 2004-05-30  Jackson Harper  <jackson@ximian.com>
2464
2465         * reflection.c: Do not hardcode assembly versions or public key
2466         tokens anymore. All of this except the corlib section was dead
2467         code anyways.
2468         
2469 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
2470
2471         * object.c (mono_runtime_invoke_array): Automatically create boxed
2472         objects for byref valuetypes if needed. Fixes #59300.
2473         
2474         * object.c (mono_method_return_message_restore): Handle 
2475         MONO_TYPE_OBJECT as well.
2476
2477 2004-05-28  Jackson Harper  <jackson@ximian.com>
2478
2479         * reflection.c: The modified type encoding was causing build
2480         problems. Reverted for now.
2481         
2482 2004-05-28  Jackson Harper  <jackson@ximian.com>
2483
2484         * reflection.c/h: Take an assembly ref so that we dont create
2485         fully qualified names when encoding types in the same assembly as
2486         the custom attribute being emitted.
2487         * appdomain.c: Increment version number.
2488         
2489 2004-05-26  Duncan Mak  <duncan@ximian.com>
2490
2491         * icall.c
2492         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
2493         Set the full version number (major, minor, build, revision).
2494
2495 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
2496
2497         * marshal.c (emit_struct_conv): increment src/dst after blit
2498         (mono_marshal_get_managed_wrapper,
2499         mono_marshal_get_native_wrapper): make sure we have marshalling
2500         info before marshalling params (info computation affects
2501         blittable)
2502
2503         * class.c (class_compute_field_layout): correctly deal with
2504         blittable
2505         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
2506         value types (as per what windows dows by default)
2507         (mono_class_setup_mono_type): System.ValueType is blittable
2508         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
2509         blittable
2510
2511         * marshal.c (mono_marshal_load_type_info): flag types  as
2512         non-blittable if the native layout doesn't match the managed
2513         layout
2514
2515 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2516
2517         * appdomain.c: don't add stuff in the private search path that is
2518         above the application base. If application base is not set, there's
2519         no private search path.
2520
2521 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
2522
2523         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
2524         byref struct arguments in native->managed marshalling.
2525
2526 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
2527
2528         * marshal.c (mono_marshal_get_runtime_invoke): correctly
2529         cache methods using signature (special case for methods
2530         that are value type or string class)
2531         
2532         * image.c (mono_image_close): clean up allocated GSList's
2533         in runtime_invoke_cache.
2534
2535 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2536
2537         * mono-config.c: set the correct path for mono_cfg_dir on windows when
2538         there's no MONO_CFG_DIR environment variable defined.
2539
2540 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2541
2542         * threads.c: windows version must be >= 0x0500 to include OpenThread.
2543
2544 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
2545
2546         * threadpool.c: Really wait for 500ms after the async call, even if the wait
2547           is interrumped.
2548         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
2549           before waiting for it, and call CloseHandle after the wait to unref it.
2550           This will make sure that handles are not disposed too early.
2551
2552 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2553
2554         * appdomain.c:
2555         * appdomain.h:
2556         * icall.c: removed
2557         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
2558         needed now.
2559
2560         * object.c: se the application_base only for the domain that runs
2561         Main. Fixes bug #59216,
2562
2563 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2564
2565         * appdomain.c:
2566         * object.c: only the domain in which Main is run have
2567         SetupInformation.ConfigurationFile set, so moved a few lines from
2568         appdomain.c to object.c.
2569
2570 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2571
2572         * appdomain.c: we tried to load [name].(dll|exe), but according
2573         to bug #57710, we must also try [culture]/[name].(dll|exe) and
2574         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
2575         There's a test case attached to bug #58922.
2576
2577 2004-05-27  Dick Porter  <dick@ximian.com>
2578
2579         * icall.c:
2580         * file-io.c: Implemented icalls for locking and unlocking regions
2581         in a file.
2582         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
2583         FALSE on error (fixes both compiler warning and real bug.)
2584
2585 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
2586
2587         * culture-info-tables.h: reflecting locale-builder updates.
2588
2589           (Added missing ChangeLog entry for 05/26)
2590
2591 2004-05-27  Jackson Harper  <jackson@ximian.com>
2592
2593         * locales.c: Fix some cut and paste errors.
2594         
2595 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2596
2597         * mono-config.c: set the correct path for config. directory on windows.
2598
2599 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
2600
2601         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
2602           on win32.
2603
2604 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
2605
2606         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
2607         from pinvoke functions.
2608         
2609         * marshal.c (mono_ftnptr_to_delegate): Implement this.
2610
2611 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
2612
2613         * culture-info-tables.h: reflecting locale-builder updates.
2614
2615 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
2616
2617         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
2618         #59086.
2619
2620 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
2621
2622         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
2623         * icall.c: Modified icalls for RNG.
2624         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
2625         Windows (CryptoAPI).
2626
2627 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
2628
2629         * locales.c: Fix build.
2630
2631 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
2632
2633         * culture-info-tables.h: reflecting locale-builder updates.
2634
2635 2004-05-25  Jackson Harper  <jackson@ximian.com>
2636
2637         * locales.c: When creating the current culture use the $LANGs
2638         specific culture. So DateTimeFormat and NumberFormat entries are created.
2639         
2640 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
2641
2642         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
2643         a char array as parameter.
2644
2645 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
2646
2647         * image.c: In mono_image_open(), always use an absolute path name to
2648           look for already loaded images.
2649
2650 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
2651
2652         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
2653         missing in the windows build (like older cygwin include files).
2654
2655 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
2656
2657         * icall.c: Fixed check for possible integer overflow in Buffer_
2658         BlockCopy icall. Replaced comments style // by /* */.
2659
2660 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
2661
2662         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
2663         
2664         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
2665         check after MONO_VTADDR. Fixes pinvoke2.exe.
2666
2667         * marshal.h marshal.c metadata.h: Add beginnings of support for
2668         ftnptr -> delegate marshalling.
2669
2670 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
2671
2672         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
2673         * threads.c: Fix warnings.
2674
2675 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
2676
2677         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
2678         * icall.c: Registered icalls for Suspend and Resume.
2679         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
2680           Thread.Abort.
2681         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
2682         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
2683         * process.c: Use WaitForSingleObjectEx.
2684         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
2685           checkpoints.
2686         * threads.c, threads.h: Make use of new Ex wait methods. Improved
2687           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
2688           for Suspend and Resume. Added new mono_thread_stop, used for stoping
2689           background threads. Added basic support for Abort in Windows.
2690           Start new threads using a managed delegate invoke wrapper. This wrapper
2691           has an interruption checkpoint that is needed since an interruption
2692           can be requested before the thread leaves the unmanaged code that starts 
2693           the thread.
2694         * marshal.c: Added interruption checkpoint after every native call, and
2695           also before managed calls for wrappers called from unmanaged code to
2696           go into managed code.
2697         * object.h: Added new field in MonoThread to keep track of interruption
2698           requests.
2699
2700 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
2701
2702         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
2703         calls.
2704
2705 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2706
2707         * appdomain.c:
2708         * assembly.c:
2709         * gc.c:
2710         * locales.c:
2711         * mono-config.c:
2712         * rand.c: getenv -> g_getenv (windows!)
2713
2714         * process.c: complete_path is also used on non-windows platforms.
2715
2716 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2717
2718         * icall.c: new signature for Process_Start.
2719
2720         * process.[ch]: new signature for Process_Start. If we're on windows
2721         and UseShellExecute is false, we have to search for the program by
2722         ourselves if we don't get a full path.
2723
2724 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
2725
2726         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
2727         marshalling and call CleanUpNativeData if needed. Fixes #58646.
2728
2729 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2730
2731         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
2732         Fixes bug #58373.
2733
2734 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2735
2736         * process.c: use double quotes to quote program name and arguments on
2737         windows. Fixes bug #58575.
2738
2739 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2740
2741         * file-io.c: don't return "." and ".." when using windows Find*File.
2742
2743 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
2744
2745         * marshal.c: Don't pass wrappers to message init because method 
2746         addressed used to lookup metadata. part of remoting[2|3] fix.
2747
2748 2004-05-15  Jackson Harper  <jackson@ximian.com>
2749
2750         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
2751         path is essentially the same as MONO_PATH except that it points to
2752         GACs instead of lib directories.
2753         * loader.h: The user gac is gone so we dont need function to
2754         enable/disable it.
2755         * mono-config.c: user gac option is now gone.
2756         
2757 2004-05-15  Jackson Harper  <jackson@ximian.com>
2758
2759         * culture-info.h: Make defines more consistent, add calendar data
2760         to the culture info table.
2761         * culture-info-tables.h: Add basic calendar data. Basically
2762         everyone gets default gregorian until all the data is
2763         updated.
2764         * locales.c: Use the new consistent defines. Set calendar data for
2765         culture info objects.
2766         * object.h: add a field for calendar data to CultureInfo
2767         
2768 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
2769
2770         * image.c: image->runtime_invoke_cache is keyed on signatures now.
2771         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
2772         a signature.
2773         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
2774         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
2775         an extra param that is the pointer of the method to invoke. The IL for
2776         the invoke method is no longer specific to the method, but to the
2777         signature of the method. Thus, we can share the same code for multiple
2778         methods. This reduces the number of methods that have to be compiled.
2779
2780 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
2781
2782         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
2783
2784         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2785
2786         * icall.c: Optimize Buffer.BlockCopy.
2787
2788 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2789
2790         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
2791         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
2792         quote). Changed them to "MMMM yyyy".
2793
2794 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
2795
2796         * rand.c
2797         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
2798
2799 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
2800
2801         * reflection.h: Updated after changes to managed structures.
2802
2803         * appdomain.c: Bump corlib version.
2804
2805 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2806
2807         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
2808         windows.
2809
2810 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2811
2812         * Makefile.am: link to ../os/libmonoos.la on windows.
2813
2814         * assembly.c:
2815                 -If MONO_DEBUG, warn about non-existing directories in
2816                 MONO_PATH.
2817                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
2818                 compile time variable.
2819                 -Removed init_default_path and call mono_set_rootdir from
2820                 libmonoos.a instead (windows only).
2821
2822         * assembly.h: declare mono_assembly_getrootdir().
2823
2824         * domain.c:
2825         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
2826
2827         * loader.c: s/getenv/g_getenv/
2828
2829 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
2830
2831         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
2832
2833         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
2834
2835         * metadata.h: Add new marshalling conversions.
2836
2837         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
2838         function.
2839
2840         * reflection.c (mono_reflection_get_type): Lookup the type in all
2841         modules of a multi-module assembly. Fixes #58291.
2842
2843 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
2844
2845         * threads.c: Before aborting a background, set the StopRequested
2846         state.  This avoids throwing the Abort exception.
2847         In mono_thread_manage, don't continue with the shutdown until all
2848         aborted threads have actually stopped.
2849
2850 2004-05-10  Jackson Harper  <jackson@ximian.com>
2851
2852         * locales.c: Remove the modifier from culture names.
2853         
2854 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2855
2856         * Makefile.am: monosn is not installed any more. It has been deprecated
2857         in favor of sn.
2858
2859 2004-05-07  Jackson Harper  <jackson@ximian.com>
2860
2861         * locales.c
2862         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
2863         Fix array construction, add bailout if the length is 0.
2864
2865 2004-05-07  Dick Porter  <dick@ximian.com>
2866
2867         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
2868         machine doesn't have a DNS entry.  Patch by Urs Muff
2869         (umuff@quark.com), fixes bug 57928.
2870
2871 2004-05-06  Jackson Harper  <jackson@ximian.com>
2872
2873         * reflection.c: Handle null PublicTokens properly. alloc mem for
2874         assembly names culture so we dont crash when freeing it.
2875         
2876 2004-05-06  Jackson Harper  <jackson@ximian.com>
2877
2878         * assembly.c: Check the usergac when loading with partial names.
2879         
2880 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
2881
2882         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
2883         does nothing for now (not required for Linux/Windows) but the class
2884         library can call it (and a newer or modified runtime could need it).
2885         * icall.c: Registred icall.
2886
2887 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2888
2889         * loader.c: prints a message on module loading error we set MONO_DEBUG
2890         environment variable.
2891
2892 2004-05-05  Jackson Harper  <jackson@ximian.com>
2893
2894         * appdomain.c: Handle PublicKeyToken=null properly.
2895         
2896 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
2897
2898         * environment.c|h: Added icall ves_icall_System_Environment_
2899         GetOSVersionString to get the current OS version as a string.
2900         * icall.c: Registred icall.
2901
2902 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
2903
2904         * object.c: in mono_object_get_virtual_method(), take into account that
2905         non-virtual methods don't have a slot in the vtable. Check needed when
2906         the object is a proxy.
2907
2908 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
2909
2910         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
2911         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
2912
2913         * object.c (mono_class_compute_gc_descriptor): Fix warning.
2914
2915         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
2916         passed when a valuetype is expected.
2917
2918         * object.c (mono_unhandled_exception): Only set the exit code if the
2919         exception happens in the main thread. Fixes thread5.exe.
2920
2921         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
2922         invalid names. Fixes #58047.
2923
2924 2004-05-03  Jackson Harper  <jackson@ximian.com>
2925
2926         * assembly.c: This line was committed accidently and is unneeded.
2927         
2928 2004-05-03  Jackson Harper  <jackson@ximian.com>
2929
2930         * icall.c: Add new icall for Assembly::LoadWithPartialName
2931         * assembly.c/.h: new function that probes the GAC to load partial
2932         assembly names by Paolo Molaro.
2933         
2934 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2935
2936         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
2937         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
2938         (type_get_fully_qualified_name): Added PublicKeyToken when building a
2939         full type name.
2940
2941 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2942
2943         * appdomain.c: fixed check for 'neutral' culture and removed warning.
2944         * reflection.c: fix bug when parsing a full type name and Version is not
2945         the last thing in the string.
2946
2947 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
2948
2949         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
2950         crashes when it is freed.
2951
2952 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2953
2954         * assembly.c: print the compat warning to stderr.
2955
2956 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
2957
2958         * assembly.c (mono_assembly_load_references): Add a compatibility
2959         hack to run old applications that might be still referencing the
2960         3300-based assemblies, only do this for System.xxx.
2961
2962 2004-05-01  Jackson Harper  <jackson@ximian.com>
2963
2964         * appdomain.c: If the culture is neutral we set it to "".
2965         
2966 2004-04-29  Jackson Harper  <jackson@ximian.com>
2967
2968         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
2969
2970 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2971  
2972         * string-icalls.c: added low overhead function for copying chars
2973         * icall.c: added needed icall for the above function
2974  
2975 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2976
2977         * icall.c: fix return value of get_global_assembly_cache.  Implemented
2978         Environment.GetLogicalDrives.
2979
2980 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
2981
2982         * rand.c: try and talk to egd or prngd
2983         for random bytes if opening devices fail.
2984
2985 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
2986
2987         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
2988         alignment for the type using the native alignment of its members 
2989         instead of using klass->min_align.
2990
2991         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
2992
2993 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2994
2995         * file-io.c:
2996         * socket-io.c: added check for sys/aio.h.
2997
2998 2004-04-28  Dick Porter  <dick@ximian.com>
2999
3000         * threads.c: Don't abort a thread thats already aborting, when
3001         terminating everything.
3002
3003 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3004
3005         * icall.c: added 2 new async calls for Socket.
3006
3007         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
3008         IO on *nix systems.
3009
3010         * threadpool.c: removed unused variable.
3011
3012 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
3013
3014         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
3015
3016 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
3017
3018         * locales.c: put back string_invariant_tolower () and
3019         string_invariant_toupper ().
3020
3021 2004-04-26 David Waite <mass@akuma.org>
3022
3023         * file-io.h:
3024         * socket-io.h:
3025         * threads.h:
3026         * unicode.h: remove comma from end of enumeration declarations
3027
3028 2004-04-26 David Waite <mass@akuma.org>
3029
3030         * debug-mono-symfile.h:
3031         * decimal.c:
3032         * mono_debug.h:
3033         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
3034
3035
3036 2004-04-26  Jackson Harper  <jackson@ximian.com>
3037
3038         * appdomain.c: Increment version number.
3039         
3040 2004-04-26  Jackson Harper  <jackson@ximian.com>
3041
3042         * appdomain.c: Set assembly references public token value when
3043         PublicKeyToken is specified, not the hash_value. Free public token
3044         values when free assembly name data. Previously the public key
3045         token was hex decoded, however we are using hex encoded public key
3046         tokens, so this is not neccasary.
3047         * assembly.c: Lookup assemblies in the gac if their public token
3048         value is set. Add function to allow enabling user gac
3049         lookups. Specify whether or not the assembly was loaded from the
3050         GAC. Compare full assembly names when checking the cache for
3051         assemblies (Temporarily disabled see comment in code). Remove
3052         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
3053         specifies trace-loader they get extra info to stdout on the
3054         loading of assemblies.
3055         * image.h: Add a field for an assembly references public token
3056         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
3057         whether an assembly has been loaded from the GAC.
3058         * image.c: Remove a corlib -> mscorlib name mapping.
3059         * loader.h: Add function to enable/disable the user gac.
3060         * mono-config.c: Check if the usergac is enabled in the config
3061         file.
3062         * icall.c: New icall to determine whether or not an assembly has
3063         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
3064         * tabldefs.h: Add constant for assemblyref flag that specifies a
3065         full public key is used instead of a public token.
3066         * reflection.c: Remove mscorlib -> corlib mappings. Set
3067         PublicTokenValue instead of hash value. This value is a hex
3068         string so it does not need to be expanded.
3069
3070 2004-04-26  Martin Baulig  <martin@ximian.com>
3071
3072         * mono-debug-debugger.c (mono_debugger_initialize): Set
3073         `mono_debugger_initialized' before calling mono_debug_lock().
3074
3075 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
3076
3077         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
3078           InternalToUpper/InternalToLower.
3079         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
3080           removed invariant culture shortcut.  This is now done in managed code.
3081         * locales.c: (string_invariant_toupper/tolower) removed.
3082
3083 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3084
3085         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
3086         Added Poll internal call.
3087
3088         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
3089         call for Poll. Select was too heavy for polling a single socket.
3090
3091         * threadpool.[ch]: added mono_threadpool_cleanup.
3092         * threads.c: use it. Don't use Thread_Abort on windows.
3093
3094 2004-04-23  Martin Baulig  <martin@ximian.com>
3095
3096         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
3097
3098 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
3099
3100         * icall.c: Registred new icalls for key pair protection and added an
3101         icall for Environment.GetFolderPath on Windows.
3102         * security.c|h: Added new icalls for key pair protection.
3103
3104 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3105
3106         * socket-io.c: don't display the non-supported family warning for known
3107         families. Now this is not displayed on windows when checking support
3108         for IPv4/IPv6.
3109
3110 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3111
3112         * class.c: don't display the layout warning for static fields.
3113
3114 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
3115
3116         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
3117         * locales.c, locales.h: Added new icalls for culture-specific
3118         Char.ToLower and Char.ToUpper.
3119
3120 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3121
3122         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
3123         by David Waite.
3124
3125 2004-04-20  Martin Baulig  <martin@ximian.com>
3126
3127         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
3128         of the type name before passing it to mono_reflection_type_from_name().
3129
3130 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
3131
3132         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
3133         encodings here. Fixes #56965.
3134
3135 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
3136
3137         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
3138         fix test on strstr result not that I can see anything that
3139         relies on the result.
3140
3141 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
3142
3143         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
3144         Fixes #57081.
3145
3146         * marshal.c (mono_marshal_get_string_encoding): New helper function.
3147
3148         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
3149         function to determine which marshalling to use for strings. Fixes
3150         #56965.
3151
3152         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
3153
3154         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
3155
3156 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
3157
3158         * icall.c: #include mono-config.h
3159
3160 2004-04-15  Jackson Harper  <jackson@ximian.com>
3161
3162         * culture-info-tables.h: Fix date formats for en-US culture.
3163         
3164 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
3165
3166         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
3167         ThreadPool.SetMinThreads.
3168         * threadpool.c: Implemented ThreadPool.GetMinThreads and
3169         ThreadPool.SetMinThreads.
3170
3171 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
3172
3173         * mono-config.c: also load the .config file in the directory
3174         where the assembly was found.
3175
3176 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
3177
3178         * assembly.c: load per-assembly config files.
3179         * icall.c: decrapified code to get the config dir and moved to
3180         mono-config.c.
3181         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
3182         per-assembly config files. When doing a dll map lookup give precedence
3183         to the per-assembly data.
3184
3185 2004-04-14  Martin Baulig  <martin@ximian.com>
3186
3187         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
3188         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
3189         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
3190
3191         * mono-debugger-debugger.c: While the debugger is locked, remember
3192         whether the symbol tables have changes and send one single
3193         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
3194
3195 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
3196
3197         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
3198
3199         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
3200         function.
3201
3202         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
3203         account when marshalling string arrays. Fixes #56965.
3204
3205 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
3206
3207         * icall.c: Add new icalls mapping for security.
3208         * security.c|h: Add internal calls for WindowsIdentity,
3209         WindowsImpersonationContext and WindowsPrincipal.
3210
3211 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
3212
3213         * class.c: Added comment to ensure the System.MonoDummy class
3214         is removed when no longer necessary
3215
3216 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
3217
3218         * appdomain.c: Pass arguments to the bootstraping exceptions to
3219         minimize JITed methods at boot
3220
3221         * metadata.c (mono_exception_from_name_two_strings): Allow for the
3222         second string to be null.
3223
3224         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
3225         Change the protocol to minimize the JIT methods at startup.  Now
3226         it Returns the internal codepage, if the value of "int_code_page"
3227         is 1 at entry, and we can not compute a suitable code page
3228         number, returns the code page as a string.
3229
3230 2004-04-13  Jackson Harper  <jackson@ximian.com>
3231
3232         * culture-info-tables.h: Fix number of decimal digits for all
3233         english locales.
3234
3235 2004-04-13  Jackson Harper  <jackson@ximian.com>
3236
3237         * icall.c: Clairfy out of sync error message. It is not always
3238         your corlib that is out of sync.
3239
3240 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
3241
3242         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
3243         properties when only the set accessor is overriden. Fixes #55874.
3244
3245 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
3246
3247         * assembly.c (mono_assembly_load_references): Make this thread safe.
3248         Fixes #56327.
3249
3250 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
3251
3252         * monosn.c: Add missing initialization calls.
3253
3254 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
3255
3256         * locales.c:
3257         ves_icall_System_Globalization_CultureInfo_construct_number_format
3258         Fix g_assert so it compiles on fussier compilers re int/ptr
3259         mismatch
3260
3261 2004-04-08  Dick Porter  <dick@ximian.com>
3262
3263         * socket-io.h:
3264         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
3265         53992.  Also rearrange the code so that the internal calls return
3266         an error value and exceptions are thrown from managed code.
3267
3268         * icall.c: Add type info to the socket icalls.
3269
3270 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3271
3272         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
3273         owes me a beer.
3274
3275 2004-04-07  Martin Baulig  <martin@ximian.com>
3276
3277         * class.c (mono_class_from_generic_parameter): Don't default
3278         `klass->parent' to `mono_defaults.object_type'.
3279
3280 2004-04-07  Martin Baulig  <martin@ximian.com>
3281
3282         * reflection.c (mono_reflection_initialize_generic_parameter): Set
3283         `param->pklass->reflection_info'.       
3284
3285 2004-04-07  Jackson Harper  <jackson@ximian.com>
3286
3287         * culture-info-tables.h: Fix date separator symbol.
3288         
3289 2004-04-07  Martin Baulig  <martin@ximian.com>
3290
3291         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
3292         from System.Type to System.MonoType.
3293
3294 2004-04-07  Martin Baulig  <martin@ximian.com>
3295
3296         * reflection.h
3297         (MonoReflectionGenericParam): Added `has_reference_type' and
3298         `has_value_type' fields.
3299
3300         * reflection.c (mono_image_get_generic_param_info): Encode the
3301         correct flags if we have the `class' or `struct' constraint.
3302
3303 2004-04-07  Martin Baulig  <martin@ximian.com>
3304
3305         * reflection.h
3306         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
3307
3308 2004-04-07  Jackson Harper  <jackson@ximian.com>
3309
3310         * appdomain.c: Revert extra patches, just wanted to bump the
3311         version number.
3312         
3313 2004-04-07  Jackson Harper  <jackson@ximian.com>
3314
3315         * Makefile.am: Add culture-info private headers.
3316         * icall.c: Add new icalls for contructing locales.
3317         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
3318         * locales.h: Declare new culture info construction methods.
3319         * object.h: Add new fields used to avoid the CultureMap to
3320         MonoCultureInfo.
3321         * culture-info.h: Definition of structs used in the culture info
3322         tables.
3323         * culture-info-tables.h: Autogenerated tables that contain culture
3324         info data. This file was generated with the locale-builder tool.
3325         * appdomain.c: Incement corlib version number.
3326         
3327 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
3328
3329         * appdomain.c: (mono_runtime_init) move mono_thread_init
3330         to before mono_object_new calls so critical sections
3331         are initialized before use.
3332
3333 2004-04-07  Martin Baulig  <martin@ximian.com>
3334
3335         * icall.c
3336         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
3337         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
3338         (ves_icall_MonoGenericParam_initialize): Removed.
3339         (monogenericparam_icalls): Removed.
3340         (generictypeparambuilder_icalls): Added new table for
3341         System.Reflection.Emit.GenericTypeParameterBuilder.
3342
3343         * reflection.c
3344         (mono_reflection_define_generic_parameter): Removed.
3345         (mono_reflection_initialize_generic_parameter): This is now called
3346         from GenericTypeParameterBuilder's .ctor.
3347
3348 2004-04-06  Martin Baulig  <martin@ximian.com>
3349
3350         * class.c (mono_class_init): Don't inflate nested classes in a
3351         generic instance.
3352         (mono_type_get_name_recurse): Include the generic arguments for
3353         generic instances and generic type declarations.
3354         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
3355         (_mono_class_get_instantiation_name): Removed.
3356         (mono_class_create_generic): Always use `gklass->name' as our name.
3357
3358         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
3359
3360         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
3361         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
3362         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
3363         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
3364         closed generic methods here.
3365
3366         * reflection.c
3367         (mono_reflection_generic_inst_get_nested_types): Removed.
3368         (inflate_mono_method): Copy the generic parameters from the
3369         MonoMethodHeader into out MonoGenericMethod.
3370
3371 2004-04-06  Martin Baulig  <martin@ximian.com>
3372
3373         * row-indexes.h
3374         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
3375
3376         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
3377
3378         * reflection.c (build_compressed_metadata): If we have any entries
3379         in the GenericParam, MethodSpec or GenericParamConstraint tables,
3380         set the header version to 1.1.
3381
3382 2004-04-06  Martin Baulig  <martin@ximian.com>
3383
3384         * class.c (mono_class_init): If we're a generic instance,
3385         initialize our nested classes, too.
3386         (_mono_class_get_instantiation_name): Deal with the new `!%d'
3387         suffix. 
3388
3389 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3390
3391         * process.c: quote the argument passed to the shell on windows.
3392
3393 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
3394
3395         * threads.c (mono_alloc_special_static_data): Allow this to be
3396         called during startup.
3397
3398 2004-04-02  Martin Baulig  <martin@ximian.com>
3399
3400         * icall.c
3401         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
3402
3403 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
3404
3405         * icall.c: Fix build.
3406
3407 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
3408
3409         * Makefile.am: Added security.c|h.
3410         * icall.c: Added icall for get_UserName;
3411         * security.c: New file for security related icalls. Added function
3412         get_UserName for System.Environment (fix #56144).
3413         * security.h: New. Header file for security.c
3414
3415 2004-04-02  Dick Porter  <dick@ximian.com>
3416
3417         * icall.c: Deleted the icalls that were obsoleted some time ago
3418         by the ICU string code, and which were mixed into the icall
3419         rearranging.  Fixes bug 55969.
3420
3421         * string-icalls.h: 
3422         * string-icalls.c: Deleted the code that those icalls reference.
3423
3424 2004-04-01  Martin Baulig  <martin@ximian.com>
3425
3426         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
3427
3428         * class.c (mono_class_from_generic_parameter): Don't set 
3429         TYPE_ATTRIBUTE_INTERFACE.
3430         (my_mono_class_from_generic_parameter): Likewise.
3431
3432 2004-04-01  Martin Baulig  <martin@ximian.com>
3433
3434         * loader.c (find_method): Added an optional `MonoClass *ic'
3435         argument to search in a specific interface.
3436         (mono_get_method_constrained): New public function.
3437
3438 2004-04-01  Martin Baulig  <martin@ximian.com>
3439
3440         * reflection.c (mono_image_get_generic_field_token): Use the
3441         `handleref' cache here.
3442
3443 2004-04-01  Martin Baulig  <martin@ximian.com>
3444
3445         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
3446
3447         * reflection.c (create_generic_typespec): Use the `typespec' hash
3448         here, not the `typeref' one.    
3449
3450 2004-04-01  Martin Baulig  <martin@ximian.com>
3451
3452         * class.c (mono_class_inflate_generic_type): Moved the
3453         functionality into a new static inflate_generic_type() which
3454         returns NULL if it didn't do anything.  Only increment the
3455         `mono_stats.inflated_type_count' if we actually inflated
3456         something.
3457         (mono_class_get_full): Check the classes type to see whether we
3458         need to inflate it; also inflate MONO_TYPE_(M)VAR.
3459
3460 2004-04-01  Jackson Harper  <jackson@ximian.com>
3461
3462         * reflection.c: Set culture for assembly references.
3463         
3464 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
3465
3466         * reflection.[ch], icall.[ch], Fix support for pinning variables.
3467
3468 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3469
3470         * assembly.c:
3471         (do_mono_assembly_open): the critical section also covers
3472         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
3473
3474 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3475
3476         * threads.c:
3477         (mono_manage_threads): abort the background threads when finishing.
3478         Fixes bug #47232.
3479
3480 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3481
3482         * gc.c: only close the done_event handle if there was no timeout.
3483         C-ified comments.
3484
3485 2004-03-30  Martin Baulig  <martin@ximian.com>
3486
3487         * icall.c (icall_entries): It's called "System.Activator", not
3488         "System.Activation".    
3489
3490 2004-03-30  Martin Baulig  <martin@ximian.com>
3491
3492         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
3493         (mono_class_create_from_typespec): Likewise.
3494
3495 2004-03-30  Martin Baulig  <martin@ximian.com>
3496
3497         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
3498         `has_ctor_constraint' and `initialized'.
3499
3500 2004-03-30  Martin Baulig  <martin@ximian.com>
3501
3502         * reflection.c (encode_new_constraint): New static function to add
3503         the constructor constraint attribute to a type parameter.
3504         (encode_constraints): Call encode_new_constraint() if necessary.
3505
3506         * reflection.h
3507         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
3508
3509         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
3510         
3511 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
3512
3513         * reflection.c, icall.c: add support for pinning variables. 
3514
3515 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
3516
3517         * marshal.c (mono_marshal_get_managed_wrapper):
3518         init bool local with zero rather than null.
3519
3520 2004-03-29  Martin Baulig  <martin@ximian.com>
3521
3522         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
3523         the "official" behavior here.
3524         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
3525
3526 2004-03-29  Martin Baulig  <martin@ximian.com>
3527
3528         * icall.c: Reflect latest API changes.
3529
3530 2004-03-29  Martin Baulig  <martin@ximian.com>
3531
3532         * loader.c (mono_get_method_from_token): Also call
3533         mono_metadata_load_generic_params () for abstract and interface
3534         methods; replace the type arguments in the method signature with
3535         the ones which are loaded from the metadata.
3536
3537 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
3538
3539         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
3540         of the lock is not the current thread. MS.NET don't do it, in spite of
3541         what the documentation says. See bug #56157.
3542
3543 2004-03-28  Martin Baulig  <martin@ximian.com>
3544
3545         * class.c (mono_class_init): Don't call init_properties() and
3546         init_events() for generic instances; set `prop->parent' when
3547         inflating properties.
3548
3549         * reflection.c (mono_generic_inst_get_object): Call
3550         `mono_class_init (ginst->klass)'.
3551         (mono_type_get_object): Only create a MonoGenericInst if your
3552         generic type is a TypeBuilder.
3553         (do_mono_reflection_bind_generic_parameters): Only set
3554         `ginst->is_dynamic' if our generic type is a TypeBuilder.
3555
3556 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
3557
3558         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
3559         Fixes #56091.
3560
3561 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3562
3563         * icall.c: added Kill_internal icall.
3564         * process.[ch]: added Kill_internal icall.
3565
3566 2004-03-25  Martin Baulig  <martin@ximian.com>
3567
3568         * class.h (MonoStats): Added `generic_instance_count',
3569         `inflated_method_count', `inflated_type_count' and
3570         `generics_metadata_size'.       
3571
3572 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3573
3574         * reflection.c: no warnings now.
3575
3576 2004-03-25  Martin Baulig  <martin@ximian.com>
3577
3578         * class.c (mono_class_get_full): New public function; does a
3579         mono_class_get(), but also takes a `MonoGenericContext *'.
3580
3581         * loader.c (mono_field_from_memberref): Renamed to
3582         `field_from_memberref', made static and added `MonoGenericContext *'
3583         argument.
3584         (mono_field_from_token): Added `MonoGenericInst *' argument.
3585         (method_from_memberef): Likewise.
3586         (mono_get_method_from_token): Likewise.
3587         (mono_get_method_full): New public function; does a
3588         mono_get_method(), but also takes a `MonoGenericContext *'.
3589
3590         * verify.c (mono_method_verify): Get the method's generic context
3591         and pass it to mono_field_from_token(), mono_get_method_full() and
3592         mono_class_get_full().
3593
3594 2004-03-25  Martin Baulig  <martin@ximian.com>
3595
3596         * class.c (mono_class_inflate_generic_type): Take a
3597         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
3598         `MonoGenericMethod *'.
3599
3600 2004-03-25  Martin Baulig  <martin@ximian.com>
3601
3602         * loader.h (MonoMethodInflated): Store the MonoGenericContext
3603         instead of the MonoGenericMethod here.
3604
3605 2004-03-25  Martin Baulig  <martin@ximian.com>
3606
3607         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
3608         each time we create a new MonoGenericInst, we also create a new
3609         context which points back to us.
3610
3611         * class.c (inflate_method): Use `ginst->context' instead of
3612         creating a new context.
3613
3614         * loader.c (method_from_memberref): Use
3615         `klass->generic_inst->context' instead of creating a new context.
3616
3617 2004-03-25  Martin Baulig  <martin@ximian.com>
3618
3619         * class.h (MonoGenericContext): New struct.
3620         (MonoGenericMethod): Removed `generic_inst'.
3621
3622         * class.c (mono_class_inflate_generic_method): Take a
3623         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
3624
3625 2004-03-25  Martin Baulig  <martin@ximian.com>
3626
3627         * loader.h (MonoMethodInflated): New typedef.
3628
3629         * metadata.h (MonoMethodSignature): Removed `gen_method', make
3630         `generic_param_count' consume just 30 bits, added `is_inflated'
3631         and `has_type_parameters' flags (one bit each).
3632
3633         * class.c (mono_class_inflate_generic_method): Create a
3634         MonoMethodInflated instead of a MonoMethodNormal and set
3635         `is_inflated' in the method signature.
3636
3637         * class.h (MonoGenericMethod): Removed `generic_method'.
3638
3639 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
3640
3641         * image.c: Make sure the name of a MonoImage is always an absolute path.
3642           This fixes bug #54415.
3643
3644 2004-03-24  Martin Baulig  <martin@ximian.com>
3645
3646         * class.c (mono_class_setup_vtable): If we're a generic instance,
3647         use our generic type's vtable size.
3648
3649 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
3650
3651         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
3652         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
3653         problems.
3654
3655 2004-03-23  Martin Baulig  <martin@ximian.com>
3656
3657         * class.h (MonoDynamicGenericInst): Added `int count_events' and
3658         `MonoEvent *events'.
3659
3660         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
3661         (typebuilder_icalls): Added "get_event_info"; calls
3662         mono_reflection_event_builder_get_event_info(). 
3663
3664         * reflection.c (mono_reflection_generic_inst_initialize): Added
3665         `MonoArray *events'.
3666         (mono_reflection_event_builder_get_event_info): New function.
3667
3668 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
3669
3670         * object.h: add mono_type_initialization_init
3671
3672         * object.c (mono_runtime_class_init): 
3673         implement class constructor synchronization rules
3674         to cope with threading issues.  
3675         add mono_type_initialization_init
3676
3677         * appdomain.c (mono_runtime_init): call 
3678         mono_type_initialization_init
3679
3680         * class.h: removing initializing field from MonoVTable
3681
3682 2004-03-23  Martin Baulig  <martin@ximian.com>
3683
3684         * class.c (my_mono_class_from_generic_parameter): Use
3685         `param->name' if it's not NULL. 
3686
3687 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
3688
3689         * class.c: do not insert non-virtual methods in the vtable.
3690         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
3691         that means the method is non-virtual. This never would have
3692         happened before.
3693
3694 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
3695
3696         * profiler.c: Added lock for accessing coverage_hash.
3697
3698 2004-03-22  Martin Baulig  <martin@ximian.com>
3699
3700         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
3701         `method->method->signature->generic_param_count != 0' to make it
3702         work for interface methods.
3703
3704 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3705
3706         * process.c: quote the string passed to the shell using g_shell_quote.
3707
3708 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3709
3710         * threads.c:
3711         (mono_threads_manage): don't remove the finalizer thread and self
3712         from the threads hash table so that mono_thread_manage can be called
3713         more than once.
3714
3715 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3716
3717         * process.c: quote the arguments when UseShellExecute is true. Fixes
3718         bug #55790.
3719
3720 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3721
3722         * threads.c: set mono_thread_detach as a cleanup routine for every
3723         thread. This way it's always executed upon thread termination, either
3724         aborted or finished normally. No more xsp hangs!
3725
3726 2004-03-17  Martin Baulig  <martin@ximian.com>
3727
3728         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
3729         `int count_nested' and a `MonoType **nested'.
3730
3731         * reflection.c (mono_reflection_bind_generic_parameters): Moved
3732         most of the functionality into a new static
3733         do_mono_reflection_bind_generic_parameters() and don't take a
3734         `MonoType *nested_in' argument any more.  Don't compute nested
3735         types here.
3736         (mono_reflection_generic_inst_get_nested_types): New public method
3737         to get nested types.
3738
3739         * class.c (mono_class_create_generic): Set `klass->nested_in' if
3740         we're a nested class.
3741
3742         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
3743         mono_reflection_generic_inst_get_nested_types() to compute the
3744         nested types.
3745
3746 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
3747
3748         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
3749         descriptive error message under windows.
3750         
3751 2004-03-17  Martin Baulig  <martin@ximian.com>
3752
3753         * class.c (dup_type): Added `const MonoType *original' argument;
3754         copy the attrs from the original type.
3755
3756 2004-03-17  Martin Baulig  <martin@ximian.com>
3757
3758         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
3759         `m->generic_inst_cache' here.
3760
3761 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
3762
3763         * exception.h exception.c: Add stack_overflow_exception.
3764
3765 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3766
3767         * threadpool.c:
3768         (overlapped_callback): call SetEvent *after* invoking the callback.
3769         No need to call CloseHandle.
3770
3771 2004-03-16  Martin Baulig  <martin@ximian.com>
3772
3773         * reflection.c (mono_image_get_fieldref_token): Take a
3774         `MonoReflectionField *' instead of a `MonoClassField *' and a
3775         `MonoClass *'; store the `MonoReflectionField *' in the hash.
3776
3777 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3778
3779         * appdomain.c: don't add the culture to the filename we're looking for
3780         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
3781
3782 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3783
3784         * locales.c: don't ignore symbols when doing case insensitive compares.
3785         Thanks Dick! Fixes bug #54046.
3786
3787         * threads.c: surround 'threads' usage with enter/leave in
3788         mono_thread_manage.
3789
3790 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
3791
3792         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
3793         implicitly marshalled as [Out]. Fixes #55450.
3794
3795         (mono_marshal_get_runtime_invoke): Zero out the result if there is
3796         an exception.
3797
3798 2004-03-16  Martin Baulig  <martin@ximian.com>
3799
3800         * class.c (mono_class_from_generic_parameter): Use the actual
3801         parameter name. 
3802
3803 2004-03-16  Martin Baulig  <martin@ximian.com>
3804
3805         * reflection.c (type_get_signature_size): New static function.
3806         Compues the size of the type in a method signature.
3807         (method_get_signature_size): New static function; calls
3808         type_get_signature_size() to compute the actual size of the
3809         method's signature.
3810         (method_encode_signature): Use method_get_signature_size() to get
3811         the signature's size rather than using `nparams * 10'.
3812
3813 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3814
3815         * file-io.h: define here WapiOverlapped on windows. I don't want the
3816         regular OVERLAPPED one.
3817
3818         * file-io.c:
3819         * threadpool.c: somehow, BindIoCompletionCallback is not found.
3820         Disabling AIO on windows.
3821
3822 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3823
3824         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
3825         bug #55385.
3826
3827 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3828
3829         * appdomain.c: upgraded corlib version.
3830
3831         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
3832         and BeginWrite. Allow opening files for asynchrnous operations.
3833
3834         * file-io.h: new struct that maps FileStreamAsyncResult.
3835         * icall.c: added new icalls.
3836         * process.[ch]: support setting child process environment variables
3837         and use the SHELL or COMSPEC when UseShellExecute is true.
3838
3839         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
3840         callback for async. IO is here and also BindHandle.
3841
3842         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
3843         from here.
3844
3845 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
3846
3847         * reflection.c (create_custom_attr): Allow len == 0.
3848
3849         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
3850         computation on big-endian machines.
3851
3852 2004-03-13  Martin Baulig  <martin@ximian.com>
3853
3854         * class.h (MonoGenericInst): Added `int count_ifaces'.
3855
3856         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
3857         `ginst->count_ifaces' instead `klass->interface_count' since we
3858         may get called before the vtable is created.
3859
3860         * loader.c (mono_method_get_param_names): If we're a generic
3861         instance, return and don't initialize the class.
3862
3863         * reflection.c (mono_reflection_setup_generic_class): Don't call
3864         ensure_runtime_vtable().
3865         (mono_reflection_bind_generic_parameters): Set
3866         `ginst->count_ifaces'.
3867
3868 2004-03-11  Jackson Harper <jackson@ximian.com>
3869
3870         * icall.c:
3871         * unicode.c:
3872         * unicode.h: Remove unused System.Char icalls.
3873         
3874 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
3875
3876         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
3877         code when we P/Invoke the first library in Windows.Forms, instead
3878         of when we first open the assembly.
3879
3880         * assembly.c: Drop the lookup from here.
3881
3882 2004-03-10  Martin Baulig  <martin@ximian.com>
3883
3884         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
3885         class for properties, fields and events.  Finally fixes #54945.
3886
3887 2004-03-10  Martin Baulig  <martin@ximian.com>
3888
3889         * metadata.c (mono_metadata_class_equal): New static function;
3890         checks whether two generic instances or two generic parameters are
3891         equal.
3892         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
3893         compare classes.        
3894
3895 2004-03-10  Martin Baulig  <martin@ximian.com>
3896
3897         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
3898
3899         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
3900         argument and write it into the `reflection_info' field.
3901
3902         * icall.c
3903         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
3904         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
3905
3906 2004-03-09  Jackson Harper  <jackson@ximian.com>
3907
3908         * char-conversions.h: use 8 bits for numeric data its all we need
3909         * icall.c: numeric data is only 8 bits now.
3910
3911 2004-03-09  Martin Baulig  <martin@ximian.com>
3912
3913         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
3914
3915         * class.c (init_properties, init_events): Initialize the new
3916         `parent' field.
3917
3918         * reflection.c (typebuilder_setup_properties): Likewise.
3919         (typebuilder_setup_events): Likewise.
3920
3921         * reflection.h (MonoEventInfo): Replaced `parent with
3922         `declaring_type' and `reflected_type'.
3923
3924         * icall.c (ves_icall_get_property_info): Distinguish between
3925         declaring and reflected type.
3926         (ves_icall_get_event_info): Likewise.
3927
3928 2004-03-09  Martin Baulig  <martin@ximian.com>
3929
3930         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
3931         (ves_icall_Type_GetField): Correctly set field->klass.
3932
3933 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
3934
3935         * loader.h: Fix warning.
3936
3937 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
3938
3939         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
3940         library routine if present.  Notice that it will still continue
3941         executing even if its missing, for those working on the Gtk#
3942         edition of Windows.Forms.
3943
3944         * assembly.c (do_mono_assembly_open): If loading the
3945         System.Windows.Forms call mono_loader_wini_init.
3946
3947 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
3948
3949         * class.h: Added MonoRemoteClass struct.
3950         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
3951         function for MonoStrings.
3952         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
3953         Added internal call for getting the proxy type.
3954         * marshal.c: Get the type of transparent proxies from its remote_class.
3955         Added methods that generate the IL for type checks and casts:
3956         mono_marshal_get_isinst, mono_marshal_get_castclass, 
3957         mono_marshal_get_proxy_cancast.
3958         * marshal.h: Declaration of the previous new methods.
3959         * object.c: Added new moethods for creating and updating MonoRemoteClass
3960         instances: mono_remote_class, mono_upgrade_remote_class, 
3961         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
3962         * verify.c: FIx transparent_proxy_fields layout.
3963         * appdomain.c: Bump corlib version.
3964
3965 2004-03-04  Jackson Harper  <jackson@ximian.com>
3966
3967         * icall.c: Add icall to access char conversion tables.
3968         * char-conversions.h: Character conversion tables.
3969         * Makefile.am: Add char-conversions.h private header file.
3970         
3971 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
3972
3973         * appdomain.c (unload_thread_main): Increase unloading timeout to
3974         10 sec as a temporary workaround for Nant problems.
3975
3976 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
3977
3978         * gc.c: Add checks for GC_enable and GC_disable.
3979
3980         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
3981         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
3982         (bug #54988).
3983         
3984 2004-02-27  Martin Baulig  <martin@ximian.com>
3985
3986         * reflection.c (mono_reflection_bind_generic_parameters): Take a
3987         `MonoReflectionType *' instead of a `MonoType *'.
3988
3989 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
3990
3991         * gc.c (run_finalize): Avoid finalizing the object representing the
3992         finalizer thread.
3993         (finalizer_thread): Fix warning.
3994
3995 2004-02-25  Martin Baulig  <martin@ximian.com>
3996
3997         * class.c (_mono_class_get_instantiation_name): Added `int offset'
3998         argument for nested types.
3999         (mono_class_create_generic): Added support for nested generictypes.
4000
4001         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
4002         `GList *nested'.
4003
4004         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
4005
4006         * reflection.c (method_encode_signature): Increase the minimum
4007         value of `size' from 10 to 11.
4008         (mono_reflection_bind_generic_parameters): Take `int type_argc'
4009         and `MonoType **types' arguments instead of the `MonoArray
4010         *types'; added `MonoType *nested_in'.  Recursively instantiate
4011         nested classes. 
4012
4013 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
4014
4015         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
4016         stack_overflow_ex members which are used by exception handling.
4017
4018         * appdomain.c (mono_runtime_init): Initialize the new members.
4019
4020         * gc.c (mono_gc_enable): New helper function.
4021         * gc.c (mono_gc_disable): New helper function.
4022
4023 2004-02-23  Martin Baulig  <martin@ximian.com>
4024
4025         * icall.c: I must have been really stupid - make it actually work
4026         this time ;-)
4027
4028 2004-02-23  Martin Baulig  <martin@ximian.com>
4029
4030         * loader.c (method_from_memberref): Only inflate the method if
4031         it's in another klass.
4032
4033 2004-02-23  Martin Baulig  <martin@ximian.com>
4034
4035         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
4036         (mono_class_init): If we're a generic instance and an interface,
4037         compute `class->interface_id'; also create `class->interfaces'
4038         here and inflate them.
4039
4040         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
4041         `ginst->is_open'.
4042         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
4043
4044         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
4045
4046 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
4047
4048         * reflection.c (method_encode_code): Improved the error message
4049         generated by the exception.
4050
4051 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4052
4053         * icall.c: Martin did not do what he said in the ChangeLog for
4054         2004-02-18, but put back the changes for properties and events.
4055         Commenting those changes out again and adding comment to bug #54518.
4056         
4057         * process.c: removed warning.
4058
4059 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
4060
4061         * marshal.c (emit_struct_conv): Print an error message instead of
4062         asserting when a type does not have the StructLayout attribute.
4063
4064 2004-02-20  Martin Baulig  <martin@ximian.com>
4065
4066         * reflection.c (mono_type_get_object): Also use the cache for
4067         generic instances.
4068         (mono_reflection_bind_generic_parameters): Always compute
4069         `ginst->ifaces'.        
4070
4071 2004-02-20  Martin Baulig  <martin@ximian.com>
4072
4073         * class.h (MonoGenericMethod): Removed `klass'.
4074
4075         * class.c (mono_class_inflate_generic_method): Added `MonoClass
4076         *klass' argument.
4077
4078 2004-02-20  Martin Baulig  <martin@ximian.com>
4079
4080         * reflection.c (method_encode_methodspec): Actually use the
4081         uninflated signature for the memberref.
4082
4083 2004-02-20  Martin Baulig  <martin@ximian.com>
4084
4085         * class.h (MonoGenericMethod): Removed `declaring'.
4086
4087         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
4088         is NULL, compute it here.
4089
4090 2004-02-20  Martin Baulig  <martin@ximian.com>
4091
4092         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
4093
4094         * metadata.c (mono_metadata_generic_inst_hash): New method.
4095         (mono_metadata_generic_inst_equal): New method.
4096
4097         * reflection.c (mono_reflection_bind_generic_parameters): Use the
4098         `klass->image->generic_inst_cache' cache to avoid creating
4099         duplicate MonoGenericInst's.
4100
4101         * class.c (mono_class_inflate_generic_type): Use the cache.
4102
4103 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
4104
4105         * object.c: fixed gc descriptor calculation for embedded valuetypes.
4106
4107 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4108
4109         * icall.c: added Socket.WSAIoctl icall.
4110
4111         * socket-io.[ch]: implemented
4112         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
4113
4114 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
4115
4116         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
4117
4118 2004-02-18  Urs C Muff  <umuff@quark.com>
4119
4120         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
4121         this work on PPC and other big-endian architectures.
4122
4123         * debug-mono-symfile.h: Prepended the names of all the `guint32'
4124         fields with an underscore to make sure they're only accessed by
4125         the read32() macro.
4126
4127 2004-02-18  Martin Baulig  <martin@ximian.com>
4128
4129         * icall.c: Put the klass->refclass changes back for methods and
4130         fields, but not for properties and events.  We're currently not
4131         distinguishing between DeclaringType and ReflectedType for
4132         properties and events, that's what caused the regressions.
4133
4134 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4135
4136         * object.c:
4137         (mono_async_result_new): the handle can be NULL.
4138
4139         * threadpool.c: Use an event instead of a semaphore, don't initialize
4140         it until needed. This saves quite a few semaphores from being created
4141         when using the threadpool.
4142
4143 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
4144
4145         * object.c (mono_string_is_interned_lookup): Fix interning of long
4146         strings. Fixes #54473.
4147
4148         * domain.c (ldstr_equal): Optimize if the two strings are equal.
4149
4150         * icall.c: Revert the klass->refclass changes since they introduce
4151         regressions (bug #54518).
4152
4153 2004-02-18  Martin Baulig  <martin@ximian.com>
4154
4155         * class.c (mono_class_init): If we're a generic instance and don't
4156         come from a TypeBuilder, inflate our members here.
4157         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
4158         (mono_class_create_generic): New public method.
4159         (mono_class_initialize_generic): Removed.
4160         (get_instantiation_name): Renamed to
4161         _mono_class_get_instantiation_name() and made it public.
4162
4163 2004-02-18  Martin Baulig  <martin@ximian.com>
4164
4165         * class.c (mono_class_inflate_generic_type): Clear the new
4166         instance's `nginst->klass' when inflating a generic instance.
4167         (mono_class_is_subclass_of): Added (basic) support for generic
4168         instances.
4169
4170 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
4171
4172         * appdomain.h, domain.c: use a MonoCodeManager instead of a
4173         MonoMempool to hold compiled native code.
4174
4175 2004-02-17  Martin Baulig  <martin@ximian.com>
4176
4177         * class.h (MonoDynamicGenericInst): Added `count_properties' and
4178         `properties'.
4179
4180         * reflection.c (mono_reflection_generic_inst_initialize): Added
4181         `MonoArray *properties' argument.
4182
4183         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
4184
4185 2004-02-17  Martin Baulig  <martin@ximian.com>
4186
4187         * icall.c (ves_icall_Type_GetFields): Renamed to
4188         ves_icall_Type_GetFields_internal() and added a
4189         `MonoReflectionType *rtype' argument; pass it to
4190         mono_field_get_object() to set the field's "reflected" type.
4191         (ves_icall_Type_GetConstructors): Likewise.
4192         (ves_icall_Type_GetEvents): Likewise.
4193         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
4194         argument; pass it to mono_method_get_object() to set the method's
4195         "reflected" type.       
4196
4197 2004-02-17  Martin Baulig  <martin@ximian.com>
4198
4199         * class.h (MonoDynamicGenericInst): New type.
4200         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
4201
4202         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
4203         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
4204         (ves_icall_MonoGenericInst_GetFields): New interncall.
4205
4206         * class.c (mono_class_from_generic): Don't call
4207         mono_class_initialize_generic() if this is a dynamic instance;
4208         ie. it's being created from a TypeBuilder.
4209         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
4210         `class->byval_arg.type'.
4211
4212         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
4213         to `inflate_method' and made static.
4214         (mono_reflection_inflate_field): Removed.
4215         (mono_reflection_generic_inst_initialize): New public method.
4216
4217         * reflection.h (MonoReflectionGenericInst): Removed `methods',
4218         `ctors' and `fields'; added `initialized'.
4219
4220 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
4221
4222         * debug-helpers.c (mono_method_full_name): Fix output for empty
4223         namespaces.
4224
4225 2004-02-12  Martin Baulig  <martin@ximian.com>
4226
4227         * class.h (MonoClassField): Added `MonoType *generic_type'.
4228
4229         * reflection.c (mono_image_get_fieldref_token): Added support for
4230         instantiated generic types.
4231         (field_encode_inflated_field): Removed.
4232         (mono_image_get_inflated_field_token): Removed.
4233         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
4234
4235         * reflection.h (MonoReflectionInflatedField): Removed.
4236
4237 2004-02-12  Martin Baulig  <martin@ximian.com>
4238
4239         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
4240         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
4241
4242         * reflection.c (mono_image_get_methodspec_token): Take a
4243         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
4244         (mono_image_create_token): Check whether we have a
4245         `method->signature->gen_method' and call
4246         mono_image_get_methodspec_token() if appropriate.
4247         (inflated_method_get_object): Removed.
4248         (mono_reflection_bind_generic_method_parameters): Return a
4249         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
4250         (mono_reflection_inflate_method_or_ctor): Likewise.
4251
4252         * reflection.h (MonoReflectionInflatedMethod): Removed.
4253
4254 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
4255
4256         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
4257         for custom valuetype marshalling.
4258
4259         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
4260
4261 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4262
4263         * icall.c: fixed WSAGetLastError_internal name.
4264
4265 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
4266
4267         * threads.c (mono_thread_attach): Allow this to be called multiple
4268         times for a thread.
4269         
4270         * threads.c (build_wait_tids): Do not wait for ourselves.
4271
4272         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
4273         appdomain list is empty.
4274
4275         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
4276         memory returned by mono_string_builder_to_utf16, since it points into
4277         managed memory. Thanks to Bernie Solomon for noticing this.
4278
4279         * icall.c: Add AppDomainSetup icalls.
4280
4281         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
4282
4283         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
4284         types.
4285
4286         * reflection.c (reflection_methodbuilder_to_mono_method): Save
4287         custom attributes to the method_aux struct. Also fix array indexes etc.
4288
4289         * loader.c (mono_method_get_param_names): Make dynamic case work again.
4290         
4291 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
4292
4293         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
4294         (both static and runtime) and reduce startup time.
4295
4296 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
4297
4298         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
4299         AsAny marshalling conversion instead of crashing.
4300
4301         * marshal.c: Fix warnings.
4302
4303 2004-02-09  Martin Baulig  <martin@ximian.com>
4304
4305         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
4306
4307         * reflection.h (MonoReflectionInflatedMethod): Removed the
4308         `declaring' field, it's now in the unmanaged MonoGenericMethod.
4309
4310         * reflection.c (method_encode_methodspec): Removed the `method'
4311         argument; we get it from `gmethod->declaring'.
4312         (inflated_method_get_object): Removed the `declaring' argument.
4313
4314 2004-02-09  Martin Baulig  <martin@ximian.com>
4315
4316         * class.h (MonoGenericMethod): New type.
4317         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
4318         `generic_method'.
4319
4320         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
4321         a `MonoGenericMethod *gen_method' one.
4322
4323         * class.c (mono_class_inflate_generic_type): Take an additional
4324         `MonoGenericMethod * argument.  This is only non-NULL if we're
4325         inflating types for a generic method.   
4326         (mono_class_inflate_generic_signature): Renamed to
4327         inflate_generic_signature() and made static; take a
4328         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
4329         (inflate_generic_header): Take a `MonoGenericMethod *' argument
4330         instead of a `MonoGenericInst *' one.
4331         (mono_class_inflate_generic_method): Likewise.
4332
4333         * reflection.c (encode_generic_method_sig): Take a
4334         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
4335         (method_encode_methodspec): Likewise.
4336         (inflated_method_get_object): Likewise. 
4337
4338         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
4339         field with a `MonoGenericMethod *gmethod' one.  
4340
4341 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
4342
4343         * class.h (mono_class_has_parent): add parens to expansion
4344         so you can ! this.
4345
4346 2004-02-08  Martin Baulig  <martin@ximian.com>
4347
4348         * image.h (MonoImage): Removed `generics_cache'.
4349
4350         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
4351         instead of a `MonoType *' argument; removed the `inflate_methods'
4352         argument.  Don't inflate methods here.
4353
4354         * loader.c (find_method): If it's a generic instance, call
4355         mono_class_init() on the `sclass->generic_inst->generic_type'.
4356
4357         * metadata.c (mono_type_size): Make this work on uninitialized
4358         generic instances; call it on the `ginst->generic_type's class.
4359
4360         * reflection.c (mono_reflection_bind_generic_parameters): Call
4361         mono_class_from_generic() to create the `ginst->klass'.
4362
4363 2004-02-08  Martin Baulig  <martin@ximian.com>
4364
4365         * class.h (MonoClass): Changed type of `generic_inst' from
4366         `MonoType *' to `MonoGenericInst *'.
4367
4368 2004-02-08  Martin Baulig  <martin@ximian.com>
4369
4370         * icall.c (ves_icall_Type_BindGenericParameters): Just call
4371         mono_type_get_object(), this is now creating a `MonoGenericInst'
4372         for MONO_TYPE_GENERICINST.
4373         (ves_icall_MonoGenericInst_GetParentType): Likewise.
4374         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
4375
4376         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
4377         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
4378         (inflated_method_get_object): Added `MonoClass *refclass' argument.
4379         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
4380         and reflected type.
4381
4382         * reflection.h (MonoReflectionInflatedMethod): Removed
4383         `declaring_type' and `reflected_type'.
4384
4385 2004-02-08  Martin Baulig  <martin@ximian.com>
4386
4387         * class.h (MonoGenericInst): Added `MonoType *parent' and
4388         `MonoType **ifaces'.
4389
4390         * reflection.h (MonoReflectionGenericInst): Removed `klass',
4391         `parent' and `interfaces'.
4392
4393         * reflection.c (mono_reflection_bind_generic_parameters): Take a
4394         `MonoType *' argument and return a `MonoType *'.
4395
4396         * icall.c
4397         (ves_icall_MonoGenericInst_GetParentType): New interncall.
4398         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
4399
4400 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
4401
4402         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
4403         valuetype marshalling.
4404
4405 2004-02-06  Martin Baulig  <martin@ximian.com>
4406
4407         * class.c
4408         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
4409         (my_mono_class_from_generic_parameter): Likewise.
4410
4411 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
4412
4413         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
4414         contents of the symbol files lazily.
4415
4416         * object.h (MonoThread): Add 'name' and 'name_len' fields.
4417
4418         * threads.h threads.c icall.c: New icalls for getting and setting the
4419         threads name.
4420
4421 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
4422
4423         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
4424         Raise an exception when the domain is not found.
4425
4426 2004-02-03  Martin Baulig  <martin@ximian.com>
4427
4428         * reflection.c (mono_image_get_methodspec_token): Use the
4429         uninflated signature; fixes gen-33.
4430
4431 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
4432
4433         * gc.c threads.c: Make the finalizer thread a normal managed thread so
4434         the finalizer code can use thread functionality.
4435
4436         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
4437         the finalizer thread.
4438
4439         * threads.c: Make some functions more robust.
4440
4441         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
4442
4443         * metadata.h: Add new marshalling conventions.
4444
4445         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
4446         stringbuilder marshalling. Fixes #53700.
4447
4448         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
4449
4450         * reflection.c (mono_image_get_type_info): Save declarative security
4451         info.
4452
4453         * reflection.c (mono_image_get_field_info): Handle uninitialized 
4454         unmanaged fields as well.
4455
4456         * appdomain.c: Bump corlib version.
4457
4458 2004-02-01  Martin Baulig  <martin@ximian.com>
4459
4460         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
4461         method type arguments.  
4462
4463 2004-01-30  Duncan Mak  <duncan@ximian.com>
4464
4465         * marshal.h: Add prototype for
4466         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
4467         and
4468         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
4469         fix the build.
4470
4471 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
4472
4473         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
4474         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
4475
4476 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
4477
4478         * marshal.c (mono_marshal_get_native_wrapper): Add support for
4479         custom marshalling of valuetypes.
4480
4481         * marshal.c: Fix some warnings.
4482
4483 2004-01-29  Martin Baulig  <martin@ximian.com>
4484
4485         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
4486         for generic method parameters.
4487
4488         * reflection.c (method_encode_methodspec): Write the uninflated
4489         signature into the methodspec table.
4490         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
4491         is always the uninflated method.
4492         (reflection_methodbuilder_to_mono_method): Copy the generic
4493         parameters from the MethodBuilder into `header->gen_params'.
4494
4495 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
4496
4497         * class.c (mono_class_from_generic_parameter): Fix warning.
4498
4499 2004-01-27  Martin Baulig  <martin@ximian.com>
4500
4501         * class.c (mono_class_from_generic_parameter): Don't create
4502         `klass->methods' here.  
4503
4504 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
4505
4506         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
4507         extension since it does not work with libraries named lib<FOO>.dll.so.
4508
4509 2004-01-25  Martin Baulig  <martin@ximian.com>
4510
4511         * class.c (mono_class_inflate_generic_type): Added support for
4512         MONO_TYPE_GENERICINST.
4513
4514         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
4515         inflate methods on open constructed types.      
4516
4517 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4518
4519         * object.c: fire ProcessExit event in the root AppDomain after running
4520         Main. Fixes bug #53299.
4521
4522 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
4523
4524         * socket-io.c: include the new socket-wrappers.h header.
4525         Use the wrappers instead of the unix socket functions to make the code
4526         more clear.
4527
4528 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
4529
4530         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
4531
4532         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
4533         Fixes #22532.
4534
4535 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
4536
4537         * reflection.c (mono_image_create_pefile): Handle the case when the
4538         entry point is not a MethodBuilder.
4539
4540         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
4541         field to ReflectionMethod since it is not allways a builder.
4542
4543         * reflection.c (type_get_fully_qualified_name): New helper function to
4544         return the fully qualified name of a type.
4545
4546         * reflection.c (encode_marshal_blob): Always emit the fully qualified
4547         type name for custom marshallers.
4548
4549         * reflection.c (mono_marshal_spec_from_builder): Ditto.
4550
4551         * class.c (mono_class_setup_vtable): If a parent class already 
4552         implements an interface, use the implementing methods from that class.
4553         Fixes #53148.
4554
4555 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4556
4557         * threadpool.c: just return instead of ExitThread to allow for thread
4558         clean up earlier.
4559
4560 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
4561
4562         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
4563         when closing resource modules.
4564
4565         * reflection.c (mono_image_create_pefile): Handle the case when the
4566         entry point is not a MethodBuilder.
4567
4568         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
4569         field to ReflectionMethod since it is not allways a builder.
4570
4571 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
4572
4573         * marshal.c (mono_marshal_get_managed_wrapper): 
4574         mono_marshal_alloc takes native int so CONV_I
4575         the arg for 64bits.
4576
4577 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
4578
4579         * reflection.c (fixup_cattrs): New function to fixup the methoddef
4580         tokens in the cattr table. Fixes #53108.
4581
4582 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4583
4584         * loader.c: don't trim ".dll" before looking up in the config file.
4585         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
4586
4587 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
4588
4589         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
4590         Return the module which contains the resource as well.
4591         (ves_icall_System_Reflection_Module_Close): New icall.
4592
4593         * appdomain.c: Bump corlib version number.
4594
4595         * image.c (mono_image_addref): New public function.
4596
4597         * assembly.c: Call mono_image_addref.
4598
4599         * reflection.c (mono_module_get_object): Increase reference count of 
4600         the image.
4601
4602         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
4603         Fixes #22532.
4604
4605         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
4606         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
4607         proper exceptions on DllImport problems.
4608
4609 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
4610
4611         * class.c, metadata.c: eliminate CSIZE macro.
4612
4613 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
4614
4615         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
4616         * object.h: Added async_callback field in MonoAsyncResult.
4617         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
4618         * verify.c: Added async_callback in MonoAsyncResult layout.
4619
4620 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
4621
4622         * reflection.c (mono_reflection_get_custom_attrs): Add support
4623         for Modules.
4624
4625 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
4626
4627         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
4628         marshalling.
4629         (mono_marshal_method_from_wrapper): Add null pointer check.
4630
4631 2004-01-16  Martin Baulig  <martin@ximian.com>
4632
4633         * debug-mono-symfile.h: Set version number to 36 and reflect
4634         latest symbol writer changes.
4635
4636 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
4637
4638         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
4639         multi-dimensional arrays.
4640         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
4641         (mono_class_from_mono_type): Use bounded_array_class_get.
4642         
4643         * class.c (mono_bounded_array_class_get): New function which takes
4644         a 'bounded' bool argument to distinguish vectors from one dimensional
4645         arrays.
4646
4647         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
4648         bounded_array_class_get if the array has bounds.
4649
4650         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
4651         Search modules loaded using AssemblyBuilder:AddModule as well.
4652
4653 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4654
4655         * appdomain.c: increased corlib version.
4656         * filewatcher.c: removed g_print.
4657         * icall.c:
4658         (get_property_info): only allocate what is actually requested.
4659         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
4660
4661 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4662
4663         * Makefile.am: added filewatcher.[ch]
4664         * filewatcher.[ch]: FileSystemWatcher runtime support.
4665         * icall.c: added new FSW icalls.
4666
4667 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
4668
4669         * string-icalls.c: fix stringbuilder regression as suggested by
4670         Iain McCoy <iain@mccoy.id.au>.
4671
4672 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
4673
4674         * process.c (process_read_stringtable_block): Recognize '007f' as
4675         a language neutral stringtable block.
4676
4677 2004-01-12  Patrik Torstensson
4678
4679         * object.h (MonoStringBuilder) : Changed layout to support our
4680         new stringbuilder class.
4681         * marshal.c: Change marshalling to support the new layout of 
4682         string builder.
4683         * appdomain.c: increased version number because new layout of
4684         string builder.
4685
4686 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
4687
4688         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
4689         assembly name as an string instead of an AssemblyName, since it is
4690         easier to extract info from it.
4691
4692         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
4693         the culture subdirectories too. Fixes #52231.
4694
4695 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4696
4697         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
4698         It takes 2 new parameters with an optional name for the method to look
4699         for and case ignoring info.
4700
4701         * threadpool.c: removed unused variable.
4702
4703 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4704
4705         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
4706         It takes 2 new parameters with an optional name for the property to look
4707         for and case ignoring info.
4708         Fixes bug #52753.
4709
4710 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
4711
4712         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
4713         Fix #52451.
4714
4715 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4716
4717         * appdomain.c:
4718         * assembly.c: escape the uri before passing it to g_filename_from_uri.
4719         Fixes bug #52630.
4720
4721 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
4722
4723         * reflection.c: Add support for more than one unmanaged resource.
4724
4725         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
4726         in field->def_value, as done in all other cases.
4727
4728         * reflection.c (mono_reflection_get_custom_attrs): Add support for
4729         TypeBuilders.
4730
4731         * reflection.c (mono_reflection_create_runtime_class): Remove 
4732         errorneous assignment to klass->element_class, since it is already
4733         done in mono_reflection_setup_internal_class.
4734
4735 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4736
4737         * gc.c: added missing LeaveCriticalSection.
4738         * icall.c: indented a couple of lines.
4739         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
4740         if we call EndInvoke inside a callback. Fixes bug #52601.
4741
4742 2004-01-07  Martin Baulig  <martin@ximian.com>
4743
4744         * mono-debug-debugger.h
4745         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
4746
4747 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
4748
4749         * appdomain.c: Use messages in NotImplementedException.
4750
4751         * exception.c (mono_get_exception_not_implemented): Now this takes
4752         a message argument.
4753
4754         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
4755         exception instead of g_asserting an aborting when something is not
4756         implemented.
4757
4758         Add some inline docs.
4759
4760 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
4761
4762         * reflection.h: Update after changes to object layout.
4763
4764         * reflection.c: Implement saving of unmanaged aka win32 resources.
4765
4766         * appdomain.c: Bump version number.
4767
4768         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
4769         Handle missing domains gracefully.
4770
4771 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
4772
4773         * file-io.c : On Windows, there are much more invalid_path_chars.
4774
4775 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
4776
4777         * class.h, object.c: prepare for GetType () speedup.
4778
4779 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
4780
4781         * profiler.c: workaround for --profile null reference exception on
4782           cygwin. Patch by Patrik Torstensson.
4783
4784 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
4785
4786         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
4787         make work for unaligned access.
4788
4789 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
4790
4791         * class.c: small cleanup (class->fields [i] -> field).
4792         * image.c: check address of metadata is valid.
4793
4794 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
4795
4796         * assembly.h assembly.c (mono_assembly_loaded): New public function to
4797         search the list of loaded assemblies.
4798
4799         * reflection.c (mono_reflection_type_from_name): Use 
4800         mono_assembly_loaded instead of mono_image_loaded.
4801
4802         * reflection.c: Fix warnings.
4803
4804 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
4805
4806         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
4807         is dynamic. This is needed since an assembly can contain both dynamic and
4808         non-dynamic images.
4809
4810         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
4811         assembly->dynamic.
4812
4813         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
4814
4815         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
4816         to store modules loaded using AddModule.
4817
4818         * reflection.c (mono_image_fill_file_table): Generalize this so it works
4819         on Modules.
4820
4821         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
4822
4823         * reflection.c (mono_image_fill_export_table_from_module): New function to
4824         fill out the EXPORTEDTYPES table from a module.
4825
4826         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
4827         into a separate function. Also handle loaded non-dynamic modules.
4828
4829         * reflection.c (mono_image_basic_init): Fix memory allocation.
4830
4831         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4832
4833         * assembly.c (mono_assembly_load_references): Make this public.
4834
4835 2003-12-19  Martin Baulig  <martin@ximian.com>
4836
4837         * class.c (mono_class_initialize_generic): Made this static, take
4838         a `MonoGenericInst *' instead of a `MonoClass *'.
4839         (mono_class_from_generic): Call mono_class_initialize_generic()
4840         unless we're already initialized or being called from
4841         do_mono_metadata_parse_generic_inst().
4842
4843         * class.h (MonoGenericInst): Added `initialized' and
4844         `init_pending' flags.
4845
4846         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
4847         `mono_class_init (gklass)' or mono_class_initialize_generic()
4848         here; set `generic_inst->init_pending' while parsing the
4849         `type_argv'.
4850
4851 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
4852
4853         * locales.c: include string.h for memxxx prototypes
4854
4855 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
4856
4857         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
4858         constructor when accessing literal fields.
4859
4860 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
4861
4862         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4863
4864         * reflection.c (assembly_add_resource_manifest): New function to fill
4865         the MANIFESTRESOURCE table.
4866
4867         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
4868
4869         * reflection.h: Update to changes in class layout.
4870
4871         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
4872         Reenable call to mono_runtime_is_shutting_down ().
4873
4874         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
4875         determine if the runtime is shutting down.
4876
4877 2003-12-16  Jackson Harper <jackson@ximian.com>
4878
4879         * icall.c: comment out call to mono_runtime_is_shutting_down to
4880         fix build.
4881         
4882 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
4883
4884         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
4885         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
4886
4887 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
4888
4889         * reflection.c: move definition of swap_with_size
4890         to before its first call
4891
4892 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
4893
4894         * appdomain.c (mono_runtime_is_shutting_down): New public function.
4895
4896         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
4897         icall.
4898
4899         * object.c: Fix warnings.
4900
4901         * icall.c (ves_icall_Type_Get...): Only consider inherited static
4902         members if FlattenHierarchy is set.
4903
4904         * reflection.c (mono_image_add_decl_security): New function to emit
4905         declarative security.
4906
4907         * reflection.h reflection.c: Add support for declarative security.
4908
4909         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
4910         
4911 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
4912
4913         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
4914         
4915         * appdomain.c verify.c: Moved corlib version checking into its own
4916         function in appdomain.c since it needs to create vtables etc.
4917
4918 2003-12-13  Patrik Torstensson <p@rxc.se>
4919
4920         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
4921         instead of unwrapped server.
4922
4923 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
4924
4925         * verify.c (check_corlib): Fix field index.
4926
4927 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
4928
4929         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
4930         GetGacPath icall.
4931
4932 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
4933
4934         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
4935         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
4936         cope with sizeof(size_t) != sizeof(guint32).
4937
4938 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4939
4940         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
4941         in case of failure.
4942
4943 2003-12-10  Mark Crichton <crichton@gimp.org>
4944
4945         * icall.c: removed the GetNonZeroBytes.  We now handle this case
4946         in managed code.
4947
4948         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
4949
4950 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
4951
4952         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
4953         marked as deleted.
4954
4955 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
4956
4957         * verify.c (check_corlib): Handle the case when the version field is 
4958         initialized by a static constructor.
4959
4960 2003-12-08  Patrik Torstensson  <p@rxc.se>
4961
4962     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
4963
4964 2003-12-08  Martin Baulig  <martin@ximian.com>
4965
4966         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
4967         a MonoReflectionGenericParameter, also take the parameter index
4968         and name as arguments.
4969         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
4970         (ves_icall_MonoGenericParam_initialize): New interncall.
4971         (ves_icall_Type_make_byref_type): New interncall.
4972
4973         * reflection.h (MonoReflectionGenericParam): Derive from
4974         MonoReflectionType, not just from MonoObject.  Added `refobj' and
4975         `index' fields.
4976
4977         * reflection.c (mono_reflection_define_generic_parameter): Create
4978         and return a new MonoReflectionGenericParam; don't initialize the
4979         constraints here.
4980         (mono_reflection_initialize_generic_parameter): New public method;
4981         initializes the constraints and creates the `param->pklass'.
4982
4983 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
4984
4985         * reflection.h reflection.c: Use the new fields 'num_types', 
4986         'num_fields' and 'num_methods' to track the number of types etc.
4987
4988         * verify.c (check_corlib): Check corlib version number.
4989
4990 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
4991
4992         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
4993         function works on all methods.
4994
4995 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
4996
4997         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
4998         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
4999         the custom_type_info flag of the transparent proxy.
5000         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
5001         objects that supports IRemotingTypeInfo.
5002         * object.h: Added custom_type_info field in transparent proxy.
5003
5004 2003-12-06  Martin Baulig  <martin@ximian.com>
5005
5006         * class.c (mono_class_create_from_generic): Removed.
5007         (mono_class_from_generic): Check `ginst->klass' before doing
5008         anything else.  This is important to fully support "recursive"
5009         generic types.
5010
5011         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
5012         empty `generic_inst->klass' before doing anything else.
5013
5014 2003-12-06  Dick Porter  <dick@ximian.com>
5015
5016         * verify.c: 
5017         * object.h:
5018         * icall.c:
5019         * locales.c: Use C structs to access class fields.  Don't do a
5020         conversion between MonoString and UChar because both are
5021         platform-endian UTF-16.  Compare now takes startindex and count
5022         parameters.  Add a char overload for IndexOf.  Speed up the
5023         invariant string IndexOf.
5024
5025 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
5026
5027         * Makefile.am (monosn_LDADD): Fix parallel build.
5028
5029 2003-12-04  Martin Baulig  <martin@ximian.com>
5030
5031         * icall.c
5032         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
5033         (ves_icall_Type_make_array_type): New interncall.       
5034
5035 2003-12-04  Martin Baulig  <martin@ximian.com>
5036
5037         * locales.c: also change it in the !HAVE_ICU case.
5038
5039 2003-12-04  Dick Porter  <dick@ximian.com>
5040
5041         * icall.c:
5042         * locales.c: construct_compareinfo is now in CompareInfo, not
5043         CultureInfo.
5044
5045 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
5046
5047         * image.c (mono_image_load_file_for_image): Cache loaded images in the
5048         image->files array.
5049
5050         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
5051         table as well.
5052
5053         * assembly.c (mono_assembly_load_references): Only load references
5054         once.
5055
5056         * class.c (mono_class_from_name): Avoid linear search of the 
5057         EXPORTEDTYPE table.
5058
5059         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
5060
5061 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
5062
5063         * image.h (MonoImage): Add 'field_cache' field.
5064
5065         * loader.c (mono_field_from_token): Cache field lookups.
5066         
5067         * reflection.c (mono_module_get_object): Fix name property.
5068
5069         * icall.c (ves_icall_get_enum_info): Update after changes to 
5070         mono_metadata_get_constant_index ().
5071
5072         * icall.c: Get rid of get_type_info icall, use a separate icall for
5073         each type property to avoid needless memory allocations. Fixes #51514.
5074
5075         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
5076         to avoid needless binary searches.
5077
5078         * class.c (class_compute_field_layout): Move the initialization of
5079         field->def_value to mono_class_vtable ().
5080
5081         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
5082         non-corlib types.
5083
5084         * object.c (mono_object_allocate): Make it inline.
5085
5086         * object.c (mono_object_allocate_spec): Make it inline.
5087         
5088 2003-12-02  Dick Porter  <dick@ximian.com>
5089
5090         * locales.c (create_NumberFormat): NumberFormatInfo construction.
5091         Patch by Mohammad DAMT (mdamt@cdl2000.com).
5092
5093 2003-12-01  Dick Porter  <dick@ximian.com>
5094
5095         * threads.c: Fix signature and call in CreateMutex and
5096         CreateEvent.
5097
5098 2003-12-01  Dick Porter  <dick@ximian.com>
5099
5100         * icall.c: 
5101         * locales.c: Implement string compares and searching
5102
5103         * object.h: Add extra Thread field
5104
5105 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
5106
5107         * reflection.c (fixup_method): Add support for MonoCMethod.
5108
5109 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
5110
5111         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
5112
5113         * reflection.c (assembly_name_to_aname): Allow extra characters in
5114         assembly names. Fixes #51468.
5115
5116 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
5117
5118         * exception.c (mono_exception_from_name_domain): New helper function.
5119
5120         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
5121         exception object in the correct domain.
5122
5123         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
5124         formatting + make a copy a the input data.
5125
5126         * loader.c (mono_get_method_from_token): Methods which contain
5127         native code do not have entries in the ImplMap.
5128
5129         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
5130         Thanks to Gonzalo for spotting this.
5131         
5132         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
5133         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
5134
5135         * assembly.h (mono_assembly_load_from): Split the second part of 
5136         assembly loading into a new public function.
5137
5138         * exception.h (mono_get_exception_bad_image_format): New function.
5139
5140 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
5141
5142         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
5143         Enumerate all modules inside a dynamic assembly. Fixes #51293.
5144         
5145         * icall.c: Add new icall for creating dynamic methods.
5146
5147         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
5148
5149         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
5150
5151         * reflection.c (mono_reflection_create_dynamic_method): New icall to
5152         create a dynamic method.
5153
5154         * reflection.c (resolve_object): New helper function.
5155
5156         * reflection.c: Generalize ReflectionMethodBuilder and the functions
5157         which manipulate it so they can also work on dynamic methods.
5158
5159         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
5160         creating the MonoReflectionMethodAux structure if it is not needed.
5161         
5162         * reflection.h verify.c: Update after changes to object layout.
5163
5164         * reflection.c (method_builder_encode_signature): Fix compilation on
5165         gcc 2.95.x.
5166
5167 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
5168
5169         * appdomain.h: Added support for context static fields. Added static_data
5170           field to MonoAppContext and renamed thread_static_fields to a more
5171           generic special_static_fields in MonoAppDomain, since it can now contain
5172           context static fields.
5173         * domain.c: Updated hashtable name.
5174         * object.c: Replaced field_is_thread_static() for a more generic
5175           field_is_special_static() which also checks for context static attribute.
5176           In mono_class_vtable(), added support for static context fields.
5177         * threads.c: Changed methods that manage thread static fields to more
5178           generic methods so they can be reused both for thread and context static
5179           data.
5180         * threads.h: Declared some new methods.
5181
5182 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
5183
5184         * reflection.h: Update after changes to the managed types.
5185
5186         * reflection.c (encode_custom_modifiers): New helper function.
5187
5188         * reflection.c (method_encode_signature): Emit custom modifiers.
5189
5190         * reflection.c (field_encode_signature): Emit custom modifiers.
5191
5192 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
5193
5194         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
5195
5196         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
5197         implementation.
5198
5199         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
5200         icall.
5201
5202         * object.c (mono_field_get_value_object): New function.
5203
5204         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
5205         specific.
5206
5207 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
5208
5209         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
5210         return a preallocated out-of-memory exception instance.
5211
5212         * object.c (out_of_memory): Use the new function.
5213
5214         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
5215         flag is before the custom modifiers. Fixes #49802.
5216
5217 2003-11-16  Martin Baulig  <martin@ximian.com>
5218
5219         * class.c (mono_class_is_open_constructed_type): Implemented the
5220         MONO_TYPE_GENERICINST case.
5221
5222 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
5223
5224         * assembly.c (mono_assembly_fill_assembly_name): New function to
5225         fill out the MonoAssemblyName structure.
5226         (mono_assembly_open): Use the new function.
5227
5228         * icall.c (fill_reflection_assembly_name): New helper function.
5229
5230         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
5231         new function.
5232
5233         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
5234
5235 2003-11-15  Martin Baulig  <martin@ximian.com>
5236
5237         * class.c (mono_class_is_open_constructed_type): New public
5238         function; checks whether a type is an open constructed type,
5239         ie. whether it still contains type parameters.
5240         (mono_class_inflate_generic_type): If we're a type parameter and
5241         the inflated type is also a MONO_TYPE_(M)VAR, return the original
5242         type.
5243
5244         * class.h (MonoGenericInst): Added `guint32 is_open'.
5245
5246         * loader.c (method_from_methodspec): Check whether we're an open
5247         or closed constructed type and set `ginst->is_open'.
5248
5249         * reflection.c (mono_reflection_bind_generic_parameters): Check
5250         whether we're an open or closed constructed type and set
5251         `ginst->is_open'.
5252         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
5253         from open constructed types.
5254
5255 2003-11-15  Martin Baulig  <martin@ximian.com>
5256
5257         * reflection.c (mono_reflection_bind_generic_parameters): If we're
5258         a generic instance (instead of a generic type declaration) with
5259         unbound generic parameters, bind them to our actual types.
5260
5261 2003-11-14  Martin Baulig  <martin@ximian.com>
5262
5263         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
5264
5265         * reflection.c (mono_reflection_bind_generic_parameters): If we're
5266         an interface type, populate `res->interfaces' with instantiated
5267         versions of all the interfaces we inherit.
5268
5269 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
5270
5271         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
5272         when MONO_PATH is set but doesn't contain the install dir.
5273
5274 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5275
5276         * icall.c:
5277         (ves_icall_Type_GetInterfaces): don't return an interface twice when
5278         it's also implemented in base classes. Fixes bug #50927.
5279
5280 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
5281
5282         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
5283         if this method is called from a finalizer. Fixes #50913.
5284
5285 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
5286
5287         * threads.c: Implement VolatileRead/VolatileWrite
5288
5289         * icall.c: Add new icalls for VolatileRead/VolatileWrite
5290
5291 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
5292
5293         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
5294         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
5295         2.95.3.
5296
5297         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
5298         from Peter Ross (pro@missioncriticalit.com).
5299         
5300 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
5301
5302         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
5303
5304 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
5305
5306         * assembly.c (mono_assembly_load_references): Disable check because it
5307         triggers on older corlibs which lots of people have.
5308
5309 2003-11-12  Jackson Harper  <jackson@ximian.com>
5310
5311         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
5312         load corlib.dll if mscorlib.dll is not found.
5313         * assembly.h: Remove corlib name define.
5314         * class.c:
5315         * domain.c:
5316         * image.c: Change corlib name to mscorlib.
5317         
5318 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
5319
5320         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
5321
5322 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
5323
5324         * appdomain.h: Added loader_optimization here to sync with the C#
5325         code, and add disallow_binding_redirects field.
5326
5327 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
5328
5329         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
5330
5331         * reflection.c (mono_image_build_metadata): Fix crash on modules
5332         with no types.
5333
5334         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
5335
5336         * icall.c (ves_icall_get_method_info): Return callingConvention as
5337         well.
5338
5339         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
5340         namespaces from the EXPORTEDTYPE table as well.
5341
5342         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
5343         from all modules inside the assembly.
5344         
5345 2003-11-11  Martin Baulig  <martin@ximian.com>
5346
5347         * reflection.c (mono_reflection_bind_generic_parameters): Make
5348         this work for interfaces.
5349
5350 2003-11-11  Martin Baulig  <martin@ximian.com>
5351
5352         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
5353
5354 2003-11-11  Martin Baulig  <martin@ximian.com>
5355
5356         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
5357         "MonoInflatedMethod" and "MonoInflatedCtor".
5358
5359 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
5360
5361         * reflection.c (resolution_scope_from_image): Use the assembly table
5362         from the manifest module, since other modules don't have it.
5363
5364         * debug-helpers.c (mono_type_full_name): New helper function.
5365
5366         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
5367
5368         * image.c (mono_image_load_file_for_image): New public function which
5369         is a replacement for the load_file_for_image in class.c.
5370
5371         * assembly.c (mono_assembly_load_module): A wrapper for the function
5372         above which does assembly association and reference loading too.
5373
5374         * class.c (mono_class_from_name): Call mono_assembly_load_module.
5375
5376 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5377
5378         * appdomain.c: not all of the attributes for the full assembly name
5379         are required and the order doesn't matter. Fixes bug #50787.
5380
5381 2003-11-10  Dick Porter  <dick@ximian.com>
5382
5383         * locales.c: Use platform-endian UTF16
5384
5385 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
5386
5387         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
5388         
5389 2003-11-10  Martin Baulig  <martin@ximian.com>
5390
5391         * metadata.c
5392         (mono_metadata_load_generic_params): Make this actually work.
5393
5394         * reflection.c (mono_reflection_bind_generic_parameters): If our
5395         parent is a generic instance, pass all the `types' to it, no
5396         matter whether it has the same number of type parameters or not.
5397
5398 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
5399
5400         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
5401
5402         * assembly.c (mono_assembly_load_references): Move the image<->assembly
5403         assignment code to this function so it gets called recursively for all
5404         modules.
5405
5406         * image.c (load_modules): Remove the assembly assignment since it is
5407         now done by mono_assembly_load_references.
5408         
5409         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
5410         Add 'module' argument.
5411         (mono_module_get_types): New helper function.
5412         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
5413
5414 2003-11-08  Martin Baulig  <martin@ximian.com>
5415
5416         * class.c (mono_class_inflate_generic_method): Interface method
5417         don't have a header.
5418
5419         * reflection.c (mono_image_get_methodspec_token): Take an
5420         additional `MonoGenericInst *' argument instead of reading it from
5421         the header; this is necessary to support interfaces.
5422         (mono_image_create_token): Pass the `MonoGenericInst *' from the
5423         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
5424         (inflated_method_get_object): Take an additional `MonoGenericInst *'
5425         argument.
5426
5427         * reflection.h (MonoReflectionInflatedMethod): Added
5428         `MonoGenericInst *ginst'.
5429
5430 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
5431
5432         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
5433
5434 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
5435
5436         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
5437
5438 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
5439
5440         * reflection.c 
5441         (reflection_methodbuilder_from_method_builder):
5442         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
5443         initialize a ReflectionMethodBuilder structure.
5444         (mono_image_get_methodbuilder_token):
5445         (mono_image_get_ctorbuilder_token): New functions to emit memberref
5446         tokens which point to types in another module inside the same assembly.
5447
5448         * reflection.c: Use the new helper functions.
5449         
5450         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
5451
5452         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
5453         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
5454
5455         * reflection.c (resolution_scope_from_image): Emit a moduleref if
5456         neccesary.
5457
5458         * reflection.c (mono_image_build_metadata): Emit metadata only for the
5459         current module. Emit the manifest only for the main module.
5460
5461         * reflection.c (mono_image_create_token): Add assertion when a 
5462         memberref needs to be created.
5463
5464         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
5465
5466         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
5467         larger buffer for the custom attribute blob. Fixes #50637.
5468         
5469 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5470
5471         * threadpool.c: notify listener on async processing handles after
5472         invoking the async callback. Thanks to Zoltan.
5473
5474 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
5475
5476         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
5477         avoid code duplication.
5478
5479         * reflection.h (MonoDynamicImage): New type which is currently unused,
5480         but will be used through the ref.emit code in place of 
5481         MonoDynamicAssembly.
5482
5483         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
5484         object layout.
5485
5486         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
5487         a MonoDynamicImage instead of just a MonoImage.
5488         
5489         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
5490         icalls to ModuleBuilder but keep their semantics, so they will work
5491         with moduleb->assemblyb. This will change later.
5492         
5493 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
5494
5495         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
5496         object layout.
5497
5498         * reflection.c (mono_image_build_metadata): Avoid creation of a default
5499         main module, since it is now done by the managed code.
5500
5501 2003-11-03  Martin Baulig  <martin@ximian.com>
5502
5503         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
5504         `ginst->klass' here.
5505         (method_encode_methodspec): Don't use the `ginst->generic_method's
5506         klass if it's a generic instance, use `ginst->klass' in this case.
5507
5508 2003-11-03  Martin Baulig  <martin@ximian.com>
5509
5510         * reflection.c (mono_image_get_generic_method_param_info):
5511         Removed, use mono_image_get_generic_param_info() instead.
5512         (mono_image_get_type_info): Write the GenericParam table before
5513         the Method table.  This is neccessary because in the GenericParam
5514         table, type parameters of the class (ie. '!0' etc.) must come
5515         before the ones from its generic methods (ie. '!!0' etc).
5516
5517 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
5518
5519         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
5520
5521 2003-11-02  Martin Baulig  <martin@ximian.com>
5522
5523         * reflection.c (create_generic_typespec): Take a
5524         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
5525         the generic parameters from it.
5526
5527 2003-11-02  Martin Baulig  <martin@ximian.com>
5528
5529         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
5530         instead of a `MonoClassField *' since we just need the type.
5531         (create_generic_typespec): New static function.  Creates a
5532         TypeSpec token for a generic type declaration.
5533         (mono_image_get_generic_field_token): New static function.
5534         (mono_image_create_token): If we're a FieldBuilder in a generic
5535         type declaration, call mono_image_get_generic_field_token() to get
5536         the token.
5537
5538 2003-11-02  Martin Baulig  <martin@ximian.com>
5539
5540         * reflection.h
5541         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
5542         `MonoReflectionGenericInst *declaring_type' and
5543         `MonoReflectionGenericInst *reflected_type' fields.
5544
5545         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
5546         `MonoReflectionGenericInst *declaring_type' and a
5547         `MonoReflectionGenericInst *reflected_type' argument instead of a
5548         single `MonoReflectionGenericInst *type' one.  Set
5549         `res->declaring_type' and `res->reflected_type' from them.
5550         (mono_reflection_inflate_field): Likewise.      
5551
5552 2003-11-02  Martin Baulig  <martin@ximian.com>
5553
5554         * class.c (mono_class_setup_vtable): Don't store generic methods
5555         in the vtable.  
5556
5557 2003-11-02  Martin Baulig  <martin@ximian.com>
5558
5559         * reflection.h (MonoReflectionGenericInst): Added
5560         `MonoReflectionType *declaring_type'.
5561
5562         * reflection.c (mono_reflection_bind_generic_parameters): Use
5563         `if (tb->parent)' instead of `klass->parent'.
5564
5565 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
5566
5567         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
5568         with an empty ASSEMBLY table.
5569
5570         * reflection.c (mono_image_build_metadata): Avoid using the same loop
5571         variable in the inner and outer loops.
5572
5573 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
5574
5575         * metadata.h (mono_metadata_make_token): Put parentheses around macro
5576         argument.
5577
5578         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
5579         
5580         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
5581         icalls. Instead, do everything in managed code. This is needed since
5582         it is hard to restore the original domain etc. in unmanaged code in the
5583         presence of undeniable exceptions.
5584
5585         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
5586         New icalls to push and pop appdomain refs.
5587
5588 2003-10-31  Martin Baulig  <martin@ximian.com>
5589
5590         * class.c (inflate_generic_type): Renamed to
5591         mono_class_inflate_generic_type() and made it public.
5592
5593         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
5594         New interncall.
5595
5596         * loader.c (mono_field_from_memberref): Also set the retklass for
5597         typespecs.
5598
5599         * fielder.c (mono_image_get_inflated_field_token): New static
5600         method; creates a metadata token for an inflated field.
5601         (mono_image_create_token, fixup_method): Added support for
5602         "MonoInflatedField".
5603         (fieldbuilder_to_mono_class_field): New static function.
5604         (mono_reflection_inflate_field): New public function.
5605
5606         * reflection.h
5607         (MonoReflectionGenericInst): Added `MonoArray *fields'.
5608         (MonoReflectionInflatedField): New typedef.     
5609
5610 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
5611
5612         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
5613         for Solaris and other platforms without s6_addr16
5614
5615 2003-10-30  Martin Baulig  <martin@ximian.com>
5616
5617         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
5618         argument instead of two.
5619         (mono_class_inflate_generic_signature): Likewise.
5620         (inflate_generic_header): Likewise.
5621         (mono_class_inflate_generic_method): Likewise.  In addition, if
5622         `ginst->klass' is set, it becomes the new `method->klass'.
5623
5624         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
5625         field.
5626
5627         * reflection.c (encode_generic_method_sig): Write a 0xa as the
5628         first byte. [FIXME]
5629         (method_encode_methodspec): If we have generic parameters, create
5630         a MethodSpec instead of a MethodRef.
5631         (fixup_method): Added support for "MonoInflatedMethod" and
5632         "MonoInflatedCtor".
5633         (mono_image_create_token): Added support for "MonoInflatedMethod"
5634         and "MonoInflatedCtor".
5635         (inflated_method_get_object): New static function; returns a
5636         managed "System.Reflection.MonoInflatedMethod" object.
5637         (mono_reflection_bind_generic_method_parameters): Return a
5638         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
5639         (mono_reflection_inflate_method_or_ctor): Likewise.
5640         (mono_image_get_generic_method_param_info): Initialize unused
5641         fields to zero.
5642         (mono_image_get_generic_param_info): Likewise.
5643
5644         * reflection.h (MonoReflectionInflatedMethod): New public
5645         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
5646         "S.R.MonoInflatedCtor" classes.
5647
5648         * loader.c (method_from_memberref): If we're a TypeSpec and it
5649         resolves to a generic instance, inflate the method.
5650
5651 2003-10-28  Dick Porter  <dick@ximian.com>
5652
5653         * object.c (mono_runtime_run_main): Convert command-line arguments
5654         into utf8, falling back to the user's locale encoding to do so.
5655
5656 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
5657
5658         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
5659         at this time.
5660
5661         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
5662
5663         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
5664         up icalls at method definition time. Partially fixes #33569.
5665
5666 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
5667
5668         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
5669         marshalling of arrays. Fixes #50116.
5670
5671         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
5672
5673         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
5674         points to a vtable in the dying appdomain.
5675
5676         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
5677         listeners into unmanaged code inside the lock.
5678
5679         * object.c (mono_class_vtable): Turn off typed allocation in non-root
5680         domains and add some comments.
5681
5682 2003-10-25  Martin Baulig  <martin@ximian.com>
5683
5684         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
5685
5686         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
5687
5688         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
5689         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
5690         currently parsing.  Create the generic class and store it in
5691         `generic_inst->klass' before parsing the type arguments.  This is
5692         required to support "recursive" definitions; see mcs/tests/gen-23.cs
5693         for an example.
5694         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
5695         to support recursive typespec entries.
5696
5697         * class.c (mono_class_setup_parent): If our parent is a generic
5698         instance, we may get called before it has its name set.
5699         (mono_class_from_generic): Splitted into
5700         mono_class_create_from_generic() and mono_class_initialize_generic().
5701
5702 2003-10-25  Martin Baulig  <martin@ximian.com>
5703
5704         * icall.c (ves_icall_Type_BindGenericParameters): Return a
5705         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
5706         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
5707         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
5708
5709         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
5710         (create_typespec): Likewise.
5711         (mono_reflection_bind_generic_parameters): Return a
5712         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
5713         (mono_reflection_inflate_method_or_ctor): New public function.
5714
5715         * reflection.h (MonoReflectionGenericInst): New typedef.        
5716
5717 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
5718
5719         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
5720         inside the domain lock. Fixes #49993.
5721         
5722         * object.c (mono_class_vtable): When typed allocation is used, 
5723         allocate vtables in the GC heap instead of in the mempool, since the
5724         vtables contain GC descriptors which are used by the collector even
5725         after the domain owning the mempool is unloaded.
5726
5727         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
5728
5729         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
5730         reflect what it does. Also invalidate mempools instead of freeing
5731         them if a define is set.
5732
5733         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
5734         of the appdomain.
5735         
5736         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
5737         hold the finalizable objects in this domain.
5738
5739         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
5740         appdomain.
5741
5742         * appdomain.c (mono_domain_set): New function to set the current
5743         appdomain, but only if it is not being unloaded.
5744
5745         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
5746         appdomain which is being unloaded.
5747         
5748         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
5749         unloading of the root appdomain.
5750
5751         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
5752         icall to execute a method in another appdomain. Intended as a 
5753         replacement for InternalSetDomain, which can confuse the code 
5754         generation in the JIT.
5755
5756         * appdomain.c (mono_domain_is_unloading): New function to determine
5757         whenever an appdomain is unloading.
5758
5759         * appdomain.c (mono_domain_unload): New function to correctly unload
5760         an appdomain.
5761
5762         * assembly.c (mono_assembly_load_references): Check that an assembly
5763         does not references itself.
5764
5765         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
5766         domain manually, it asks the finalizer thread to do it, then waits for
5767         the result. Also added a timeout.
5768
5769         * icall.c: Register the new icalls.
5770
5771         * threads.h threads.c: Export the mono_gc_stop_world and 
5772         mono_gc_start_world functions.
5773         
5774         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
5775         function to fill out the mempool with 0x2a.
5776
5777 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
5778
5779         * reflection.h (MonoReflectionMethodAux): New structure to store
5780         information which is rarely used, thus is not in the MonoMethod
5781         structure.
5782
5783         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
5784         store the aux info.
5785
5786         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
5787         and marshalling info into the aux structure.
5788
5789         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
5790         from the aux structure.
5791
5792         * loader.c (mono_method_get_param_names): Retrieve the param names from
5793         the aux structure.
5794         
5795 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
5796
5797         * exception.h exception.c: Add AppDomainUnloadedException && fix 
5798         warning.
5799
5800 2003-10-21  Dick Porter  <dick@ximian.com>
5801
5802         * socket-io.c
5803         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
5804         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
5805
5806 2003-10-21  Martin Baulig  <martin@ximian.com>
5807
5808         * reflection.c (mono_reflection_bind_generic_parameters):
5809         `klass->parent' is NULL for interfaces.
5810
5811 2003-10-21  Martin Baulig  <martin@ximian.com>
5812
5813         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
5814
5815 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
5816
5817         * exception.c (mono_exception_from_name_msg): New helper function for
5818         creating exceptions and initializing their message field.
5819
5820         * exception.c: Simplify functions using the new helper.
5821
5822         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
5823         New function.
5824
5825         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
5826         mono_raise_exception, since otherwise gcc doesn't generate the function
5827         epilog for raise_exception, confusing the stack unwinding in the JIT.
5828         Fixes #45043.
5829
5830         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
5831         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
5832         Fixes #49499.
5833
5834 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5835
5836         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
5837         utf8.
5838
5839 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
5840
5841         * icall.c: Removed GetUninitializedObject method because
5842           AllocateUninitializedClassInstance does the same.
5843
5844 2003-10-18  Martin Baulig  <martin@ximian.com>
5845
5846         * class.c (inflate_generic_signature): Renamed to
5847         mono_class_inflate_generic_signature() and made it public.
5848         (my_mono_class_from_generic_parameter): New static function; if we
5849         don't already have the generic parameter's MonoClass, create a
5850         very simple one which is just used internally in the runtime and
5851         not passed back to managed code.
5852
5853         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
5854
5855         * metadata.h (MonoMethodSignature): Moved the
5856         `MonoGenericParam *gen_params' to the MonoMethodHeader.
5857         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
5858
5859         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
5860         ves_icall_MonoMethod_GetGenericArguments(); this is now an
5861         interncall on the MonoMethod class, not on MethodInfo.
5862         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
5863         calling mono_reflection_bind_generic_method_parameters() directly.
5864
5865         * loader.c (mono_method_get_signature): If this is a MethodSpec;
5866         return the already computed `method->signature'.
5867         (method_from_methodspec): New static function to load a method
5868         from a MethodSpec entry.
5869         (mono_get_method_from_token): Call the new method_from_methodspec()
5870         for MethodSpec tokens.  
5871         (mono_get_method_from_token): If we're a generic method, load the
5872         type parameters.
5873
5874         * reflection.c (mono_image_get_memberref_token): Allow
5875         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
5876         table.
5877         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
5878         (mono_image_create_token): First check whether it's a generic
5879         method (so we'd need to create a MethodSpec), then do the other
5880         two alternatives.
5881         (mono_reflection_bind_generic_method_parameters): Return a
5882         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
5883         called directly from the interncall.
5884
5885 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
5886
5887         * reflection.c (load_public_key): Move loading of the public key
5888         into managed code.
5889
5890         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
5891
5892         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
5893         fields.
5894
5895         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
5896         culture, hash_alg and public_key. Fixes #49555.
5897
5898 2003-10-17  Martin Baulig  <martin@ximian.com>
5899
5900         * class.h (MonoGenericInst): Moved this declaration here and added
5901         `MonoMethod *generic_method'.
5902
5903         * icall.c
5904         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
5905         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
5906
5907         * metadata.c (mono_metadata_type_equal): Two types of
5908         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
5909         index; ie. don't compare the address of the `MonoGenericParam'
5910         structure.
5911         (mono_metadata_load_generic_params): Removed the `MonoMethod
5912         *method' argument.
5913
5914         * metadata.h (MonoGenericInst): Moved declaration to class.h.
5915         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
5916
5917         * reflection.c (method_encode_signature): Encode the number of
5918         generic parameters.
5919         (encode_generic_method_sig): New static function.
5920         (method_encode_methodspec): New static function; creates an entry
5921         in the MethodSpec table for a generic method.
5922         (mono_image_get_methodspec_token): New static function.
5923         (mono_image_create_token): Call mono_image_get_methodspec_token()
5924         for generic methods.
5925         (mono_reflection_bind_generic_method_parameters): New public
5926         function.  Instantiates a generic method.
5927
5928 2003-10-16  Martin Baulig  <martin@ximian.com>
5929
5930         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
5931         *gen_params' here from MonoMethodHeader.
5932
5933         * metadata.c (mono_metadata_parse_method_signature): If we have
5934         generic parameters, initialize `method->gen_params' and then set
5935         the correct `type->data.generic_param' in all the parameters.
5936
5937 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
5938
5939         * threads.c (mono_threads_get_default_stacksize): New function to 
5940         return the default stacksize.
5941
5942         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
5943         termination of the finalizer thread, since the previous method had
5944         race conditions. Fixes #49628.
5945
5946         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
5947         as for the other managed threads.
5948
5949 2003-10-16  Martin Baulig  <martin@ximian.com>
5950
5951         * class.c (inflate_generic_signature): Copy `generic_param_count'
5952         and `gen_params'.
5953
5954         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
5955         New interncall.
5956
5957         * metadata.c (mono_metadata_parse_method_signature): Actually set
5958         the `method->generic_param_count' here.
5959         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
5960
5961 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
5962
5963         * object.h: Add a new field to TypedRef to simplify the implementation
5964         of the REFANY opcodes in the JIT.
5965
5966         * icall.c: Make use of the new field.
5967
5968         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
5969         dynamically.
5970
5971 2003-10-15  Martin Baulig  <martin@ximian.com>
5972
5973         * class.c (mono_class_from_gen_param): Renamed to
5974         mono_class_from_generic_parameter() and moved most of the
5975         functionality from mono_reflection_define_generic_parameter()
5976         here; ie. we create a "real" class here.
5977         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
5978         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
5979         previously been called.
5980
5981         * class.h (MonoGenericParam): Moved the declaration of this struct
5982         here from metadata.h and added `MonoMethod *method'.
5983
5984         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
5985         interncall.
5986
5987         * loader.c (mono_get_method_from_token): If we have any generic
5988         parameters, call mono_metadata_load_generic_params() to read them
5989         from the MONO_TABLE_GENERICPAR.
5990
5991         * metadata.c (mono_metadata_load_generic_params): Added
5992         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
5993
5994         * metadata.h (MonoMethodSignature): Replaced
5995         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
5996         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
5997
5998         * reflection.c (mono_reflection_define_generic_parameter): Moved
5999         most of the functionality into the new
6000         mono_class_from_generic_parameter(); set the `method' field if
6001         we're a method parameter.       
6002
6003 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
6004
6005         * marshal.c (emit_struct_conv): if native size is 0
6006         emit no code.
6007
6008 2003-10-14  Martin Baulig  <martin@ximian.com>
6009
6010         * icall.c: The generics API has changed in the spec since it was
6011         added to System.Type; these modifications make it match the spec
6012         again.
6013         (ves_icall_Type_GetGenericParameters): Renamed to
6014         `ves_icall_Type_GetGenericArguments'.
6015         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
6016         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
6017         `ves_icall_MonoType_get_HasGenericArguments'.
6018         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
6019         `ves_icall_MonoType_get_IsGenericParameter'.
6020         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
6021         this is no interncall anymore.
6022         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
6023         `ves_icall_TypeBuilder_get_IsGenericParameter'.
6024
6025 2003-10-14  Martin Baulig  <martin@ximian.com>
6026
6027         * reflection.c (mono_reflection_bind_generic_parameters): Also
6028         inflate generic methods if we're reading the class from IL.
6029
6030 2003-10-13  Martin Baulig  <martin@ximian.com>
6031
6032         * reflection.c (mono_reflection_define_generic_parameter): This
6033         method isn't called directly from the icall anymore; take a
6034         `MonoReflectionAssemblyBuilder *' so we can use this for type and
6035         method generic parameters.
6036         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
6037         (method_builder_encode_signature): Encode generic parameters.
6038         (mono_image_get_method_info): Write generic params to the
6039         MONO_TABLE_GENERICPARAM table.
6040
6041         * reflection.h (MonoReflectionMethodBuilder): Added
6042         `MonoArray *generic_params'.
6043
6044         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
6045
6046         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
6047         wrapper for mono_reflection_define_generic_parameter().
6048         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
6049
6050 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
6051
6052         * marshal.h: Add missing function to fix build.
6053
6054         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
6055         the SetLastError pinvoke attribute.
6056
6057         * marshal.c (mono_marshal_set_last_error): New helper function called
6058         by the generated code.
6059         
6060         * marshal.c (mono_mb_emit_branch): New helper function.
6061
6062         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
6063
6064         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
6065         classes as parameters and return values of delegates. Fixes #29256. 
6066
6067 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
6068
6069         * locales.c: use gint32 in non HAVE_ICU case
6070
6071 2003-10-11  Martin Baulig  <martin@ximian.com>
6072
6073         * mono-debug.c (mono_debug_add_method): Added a workaround for
6074         bug #48591.
6075
6076 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
6077
6078         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
6079         delegates passed to native code must use the STDCALL calling 
6080         convention. Fixes #35987.
6081
6082 2003-10-10  Martin Baulig  <martin@ximian.com>
6083
6084         * class.c (inflate_generic_type): If we're inflating for a generic
6085         type instance (and not for a generic method), return
6086         MONO_TYPE_MVAR unchanged.
6087
6088 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6089
6090         * string-icalls.c: Join ignores null strings in the source array.
6091         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
6092         * threads.c: GetAvailableTheads is slightly more accurate.
6093
6094 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
6095
6096         * threads.h threads.c : add mono_threads_set_default_stacksize
6097         and pass default to CreateThread calls.
6098
6099 2003-10-09  Dick Porter  <dick@ximian.com>
6100
6101         * icall.c:
6102         * locales.h:
6103         * locales.c: Internal calls for constructing CultureInfo and
6104         related objects from libicu (if its available.)
6105
6106 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
6107
6108         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
6109
6110 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6111
6112         * threadpool.c: added an argument to async_invoke_thread that is the
6113         item to process, pass the MonoAsyncResult to the thread start function
6114         when creating a new thread. This way we don't need to acquire any lock
6115         when we're creating a new thread. Readded a semaphore for faster
6116         response times (instead of that Sleep i added).
6117
6118 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
6119
6120         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
6121         get daylight change dates better on Windows, fix handling
6122         of platforms without tm_gmtoff.
6123
6124 2003-10-06  Martin Baulig  <martin@ximian.com>
6125
6126         * class.c (inflate_generic_method): Renamed to
6127         mono_class_inflate_generic_method() and made public.
6128         (mono_class_init): Don't inflate the generic methods here.
6129         (mono_class_from_generic): Added `gboolean inflate_methods'
6130         argument.  Inflate the methods here.
6131
6132         * loader.c (mono_method_get_param_names): Ignore instances of
6133         generic types for the moment.
6134
6135         * reflection.c (fixup_method): Added support for inflated methods.
6136         (mono_image_create_token): Use mono_image_get_methodref_token()
6137         for inflated methods.
6138         (mono_custom_attrs_from_param): Ignore instances of generic types
6139         for the moment.
6140         (mono_reflection_bind_generic_parameters): New public function.
6141         Moved all the functionality from
6142         ves_icall_Type_BindGenericParameters() here and added support for
6143         dynamic types.
6144         (mono_reflection_define_generic_parameter): Initialize
6145         `klass->methods' here.
6146
6147         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
6148         functionality into mono_reflection_define_generic_parameter().
6149         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
6150         TypeBuilder, return that TypeBuilder.
6151
6152 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6153
6154         * appdomain.c: removed mono_delegate_semaphore.
6155
6156         * threadpool.c:
6157         (mono_thread_pool_add): moved hash table creation inside and the thread 
6158         creation outside of the critical region.
6159         (mono_thread_pool_finish): removed obsolete code.
6160         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
6161         continue or exit the thread depending on the queue.
6162
6163 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
6164
6165         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
6166         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
6167         handle more bool marshalling options
6168
6169 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
6170
6171         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
6172         arrays of structs. Also add a more descriptive error message when
6173         a structure member is marshalled as LPArray.
6174
6175 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
6176
6177         * marshal.c (mono_marshal_get_native_wrapper): Add support for
6178         marshalling arrays of complex types. Fixes #29098. Also remove an
6179         usused and incomplete function.
6180
6181 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
6182
6183         * gc.c: report heap_size - free_bytes as total memory allocated
6184         (bug#49362).
6185
6186 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
6187
6188         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
6189         fix timezone handling problems on Windows.
6190         
6191         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
6192         asserts when the year is outside the range handled by ms the functions.
6193
6194         * class.c (setup_interface_offsets): If the class is an interface,
6195         fill out its interface_offsets slot.
6196
6197 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6198
6199         * threadpool.c: mark threadpool threads as background.
6200
6201 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
6202
6203         * decimal.c - define DECINLINE to nothing if not using GCC
6204
6205 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
6206
6207         * assembly.c: More refcount fixes.
6208
6209 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6210
6211         * string-icalls.c: if we're not trimming, return the same string.
6212         When not splitting, don't create a new string.
6213
6214 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6215
6216         * image.c:
6217         (mono_image_open): increment the ref_count inside the critical section.
6218
6219 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
6220
6221         * image.c (mono_image_open): Fix reference counting bug.
6222
6223 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
6224
6225         * marshal.c (mono_marshal_type_size) struct alignment changed for 
6226         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
6227         64bits. Avoid leak in mono_marshal_get_native_wrapper when
6228         mono_lookup_pinvoke_call throws.        
6229
6230 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
6231
6232         * reflection.c (mono_reflection_parse_type): Fix #49114.
6233
6234         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
6235         temporary workaround for cygwin header problem.
6236
6237         * object.c (mono_object_isinst): Synchronize this with the code
6238         generated by the JIT for casts.
6239
6240 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
6241
6242         * reflection.c (encode_type): Fix #38332.
6243
6244 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
6245
6246         * marshal.c (mono_marshal_method_from_wrapper): New function to return
6247         the original method from the wrapper method.
6248
6249 2003-09-25  Martin Baulig  <martin@ximian.com>
6250
6251         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
6252         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
6253         (ves_icall_Type_get_IsGenericInstance): New interncall.
6254
6255 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
6256
6257         * object.c: fix cast warning in big endian code.
6258
6259 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
6260
6261         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
6262         
6263 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6264
6265         * assembly.c: don't call check_env from mono_assembly_load. It's
6266         already done once in mono_assemblies_init and may cause headaches when
6267         multiple threads are loading assemblies.
6268
6269 2003-09-19  Martin Baulig  <martin@ximian.com>
6270
6271         * reflection.c (mono_reflection_define_generic_parameter): Don't
6272         allocate `klass->methods', set `klass->flags' to
6273         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
6274
6275 2003-09-18  Martin Baulig  <martin@ximian.com>
6276
6277         * class.c (mono_class_init): Don't create `class->methods' if it's
6278         already initialized.
6279
6280         * metadata.c (mono_metadata_load_generic_params): Make this
6281         actually work.
6282
6283         * reflection.c (mono_reflection_define_generic_parameter): Set
6284         parent class and interfaces from the constraints.
6285
6286         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
6287         to keep this struct in sync with the declaration in TypeBuilder.cs.
6288
6289 2003-09-17  Martin Baulig  <martin@ximian.com>
6290
6291         * metadata.h (MonoType): Replaced the data's `int type_param'
6292         field with `MonoGenericParam *generic_param'.
6293         (MonoGenericParam): Added `MonoClass *klass'.
6294
6295         * class.c (mono_class_from_gen_param): Removed the
6296         `MonoImage *image' and `int type_num' arguments.
6297
6298         * metadata.c (mono_metadata_parse_generic_param): New static
6299         method; creates a MonoGenericParam which just contains the index.
6300         (do_mono_metadata_parse_type): Call
6301         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
6302         MONO_TYPE_MVAR.
6303
6304         * reflection.c (mono_image_typedef_or_ref): Generic type
6305         parameters may be in the same assembly, but never use a typedef
6306         for them.
6307         (mono_reflection_define_generic_parameter): We're now creating a
6308         "real" class for the type parameter; it's now safe to call
6309         mono_class_from_mono_type() on the class'es type, it'll do the
6310         right thing.
6311
6312 2003-09-16  Martin Baulig  <martin@ximian.com>
6313
6314         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
6315         `symfile->range_entry_size' and `symfile->class_entry_size' here;
6316         the `symfile' data structure must be fully initialized before it
6317         gets added to the table.
6318
6319 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
6320
6321         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
6322
6323         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
6324         class init trampolines.
6325
6326 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
6327
6328         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
6329         to the built-in profiler to turn off time and allocation profiling
6330         respectively.
6331
6332 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
6333
6334         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
6335         g_direct_equal.
6336
6337         * debug-helpers.c (mono_method_full_name): Print the wrapper type
6338         in human readable form.
6339
6340 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
6341
6342         * reflection.c icall.c: Fixed warnings.
6343
6344         * image.c (load_class_names): Use a temporary hash table to hold the
6345         namespaces in order to avoid doing many string comparisons.
6346
6347         * image.h: Fix typo.
6348
6349         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
6350         Pass NULL instead of g_direct_equal to the GHashTable constructor 
6351         since the NULL case is short-circuited inside g_hash_table_lookup, 
6352         leading to better performance.  
6353
6354         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
6355         obtain the first custom attribute for a given index. Depends on the
6356         CustomAttribute table being sorted by the parent field.
6357
6358         * reflection.c (mono_custom_attrs_from_index): Use the new function 
6359         for better performance.
6360
6361 2003-09-07  Martin Baulig  <martin@ximian.com>
6362
6363         * class.c (mono_class_init): If we're a generic instance, inflate
6364         all our methods instead of loading them from the image.
6365         (mono_class_from_generic): Set `class->methods = gklass->methods'.
6366
6367 2003-09-07  Martin Baulig  <martin@ximian.com>
6368
6369         * mono-debug-debugger.c: Added support for constructors.
6370
6371 2003-09-06  Martin Baulig  <martin@ximian.com>
6372
6373         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
6374         New interncall.
6375
6376         * reflection.c (mono_reflection_setup_generic_class): Call
6377         ensure_runtime_vtable() to create the vtable.
6378
6379 2003-09-05  Martin Baulig  <martin@ximian.com>
6380
6381         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
6382         MONO_TYPE_MVAR.
6383
6384 2003-09-04  Martin Baulig  <martin@ximian.com>
6385
6386         * reflection.c (mono_reflection_define_generic_parameter): Generic
6387         parameters start with zero.
6388
6389 2003-09-04  Martin Baulig  <martin@ximian.com>
6390
6391         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
6392
6393         * reflection.h (MonoReflectionGenericParam): New typedef.
6394         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
6395         the generic parameters from the managed TypeBuilder.
6396
6397         * reflection.c (mono_reflection_define_generic_parameter): New function.
6398         (mono_reflection_create_runtime_class): Encode generic parameters.
6399         (mono_reflection_setup_generic_class): New function; this is
6400         called after adding adding all generic params to the TypeBuilder.
6401         (encode_type): Added MONO_TYPE_VAR.
6402
6403 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
6404
6405         * class.h class.c (mono_class_needs_cctor_run): Moved this method
6406         here from the JIT.
6407
6408         * assembly.h assembly.c: Moved the AOT loading code into an assembly
6409         load hook.
6410
6411 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
6412
6413         * reflection.h reflection.c class.h class.c: Delete duplicate 
6414         definition of mono_type_get_name () from reflection.c and export the
6415         one in class.c.
6416
6417         * class.c: Class loading fixes from Bernie Solomon 
6418         (bernard@ugsolutions.com).
6419
6420         * reflection.c: Endianness fixes from Bernie Solomon 
6421         (bernard@ugsolutions.com).
6422         
6423 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
6424
6425         * assembly.h assembly.c: Define a file format version for AOT
6426         libraries.
6427         
6428         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
6429
6430         * appdomain.h (MonoJitInfo): New field to determine whenever the
6431         code is domain neutral.
6432         
6433 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
6434
6435         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
6436
6437 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
6438
6439         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
6440         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
6441         Avoid caching the result since strings must be domain specific. Fixes
6442         #48050.
6443
6444 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
6445
6446         * marshal.c (mono_marshal_init): Make this callable multiple times
6447         since it is hard to find a correct place to call it.
6448
6449         * object.c (mono_runtime_class_init): Execute static constructors in
6450         the correct appdomain.
6451
6452         * image.c (build_guid_table): Handle the case when multiple images have
6453         the same GUID.
6454
6455 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6456
6457         * icall.c: added a couple of icalls for System.Web.
6458
6459 2003-08-28  Martin Baulig  <martin@ximian.com>
6460
6461         * icall.c (ves_icall_Type_BindGenericParameters): Use
6462         `klass->generic_inst' instead of `&klass->byval_arg' in the
6463         mono_type_get_object() call.  The returned type must be
6464         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
6465
6466 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
6467
6468         * NOTES: New file.
6469
6470         * object.c (mono_class_proxy_vtable): Make it thread safe.
6471
6472         * pedump.c: Fix warning.
6473
6474         * object.c appdomain.h: Get rid of metadata_section. 
6475         It is no longer needed and it was causing deadlocks with domain->lock.
6476
6477         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
6478
6479 2003-08-26  Martin Baulig  <martin@ximian.com>
6480
6481         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
6482
6483 2003-08-26  Martin Baulig  <martin@ximian.com>
6484
6485         * pedump.c (main): Call mono_metadata_init(),
6486         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
6487         and mono_loader_init().
6488
6489 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
6490
6491         * loader.h: Add missing include to fix build.
6492
6493         * image.h: mono_image_load_references is no more.
6494
6495         * assembly.c: Reworked assembly loading to make it really thread safe.
6496         After these changes, the assembly returned by mono_assembly_open is
6497         fully initialized, i.e. all its references assemblies are loaded.
6498
6499         * assembly.c (mono_image_load_references): Renamed to 
6500         mono_assembly_load_references, and made private, since clients no
6501         longer need to call it.
6502
6503         * class.c: Removed calls to mono_assembly_load_references, since it was
6504         a source of deadlocks.
6505
6506         * loader.h loader.c class.h class.c: Protect data structures using a 
6507         new lock, the loader lock.
6508
6509         * class.c (mono_class_setup_vtable): Create temporary hash tables and
6510         GPtrArrays only when needed.
6511
6512         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
6513         into empty structures by mcs. Fixes pinvoke7.cs.
6514         
6515         * domain.c (mono_init): Call a new initialization function.
6516
6517         * appdomain.c (mono_runtime_init): Call the new initializer function
6518         of the marshal module.
6519
6520         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
6521         inserted into empty structures by mcs. Fixes pinvoke7.cs.
6522
6523         * marshal.h marshal.c: Added locks around the wrapper caches to make
6524         this module thread safe.
6525
6526         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
6527         this argument. Fixes pinvoke1.exe.
6528
6529 2003-08-25  Lluis Sanchez <lluis@ximian.com>
6530
6531         * object.h: Added call_type field to MonoMethodMessage and the corresponding
6532         enumeration of values. Removed fields to store remote call output values in
6533         MonoAsyncResult. Not needed any more.
6534         * object.c: Initialize call_type and async_result fields in mono_message_init.
6535         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
6536         dispatching the message.
6537         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
6538         async call to finish. To do it use a message with EndInvoke call type.
6539
6540 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
6541
6542         * loader.h loader.c (mono_method_hash_marhal_info): New function which
6543         determines whenever a method has marshalling info.
6544
6545 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6546
6547         * assembly.c: fix the build on windows.
6548
6549 2003-08-22 Lluis Sanchez <lluis@ximian.com>
6550
6551         * object.cs: Fixed bug #47785.
6552
6553 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
6554
6555         * string-icalls.c (StringReplace): If their are no occurances of
6556         the old string found return a reference to the supplied
6557         string. This saves some memory and matches MS behavoir.
6558         
6559 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6560
6561         * socket-io.c: fixed compilation for systems that define AF_INET6
6562         and don't define SOL_IP/SOL_IPV6.
6563
6564 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
6565
6566         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
6567         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
6568
6569         * rawbuffer.c rawbuffer.h: Make this module thread safe.
6570
6571         * domain.c: Make this module thread safe.
6572
6573         * domain.c (mono_init): Call new initialization function.
6574
6575         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
6576         reference types too. Fixes #38812.
6577
6578         * image.c (mono_image_init): Fixed warnings.
6579
6580         * class.c (mono_class_from_typeref): Handle assembly load failure
6581         correctly.
6582
6583         * appdomain.c (add_assemblies_to_domain): Handle the case when
6584         the references of an assembly are not yet loaded.
6585
6586         * metadata.c image.c assembly.c: Moved initialization of global
6587         variables to a separate function called at startup since lazy 
6588         initialization of these variables is not thread safe.
6589         
6590         * image.c assembly.c: Made this module thread safe by adding locks in 
6591         the appropriate places.
6592
6593         * domain.c (mono_init): Call the new initialization functions of the
6594         three modules.
6595
6596 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
6597
6598         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
6599           make a direct call. It is proxy's work to make the call asynchronous.
6600           mono_delegate_end_invoke(): If the targe is a proxy, just collect
6601           the return values.
6602         * object.cs: mono_method_call_message_new(): read AsyncResult and
6603           state object from parameters list, if this info is requested.
6604         * object.h: Added fields to store remote call output values in
6605           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
6606
6607 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
6608
6609         * object.h: add needed fields to MonoThread.
6610         * threads.c, threads.h: allow registering a function to cleanup data
6611         allocated per thread by the JIT.
6612
6613 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
6614
6615         * loader.h: portability fix by Bernie Solomon
6616         * <bernard@ugsolutions.com>.
6617
6618 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
6619
6620         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
6621         return a MonoArray. This simplifies the code and also ensures that
6622         the cache allways contains an object reference as a value.
6623
6624         * icall.c (ves_icall_get_parameter_info): Simplified using the new
6625         function.
6626
6627 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6628
6629         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
6630         fixes a problem with byte ordering when getting the address family for
6631         a socket.
6632
6633 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
6634
6635         * .cvsignore: Added monosn.
6636
6637         * reflection.h reflection.c loader.c: Added support for parameter
6638         marshalling to dynamically created types. Fixes #47295.
6639
6640 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
6641
6642         * rand.c: remove useless warnings.
6643
6644 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
6645
6646         * class.c: implemented ldtoken for methods and fieldrefs.
6647
6648 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6649
6650         * threadpool.c: when mono_async_invoke was called, no one took care of
6651         monitoring the queue. So if the method invoked took some time and we
6652         got new async invoke requests after 500 ms (the thread created waited
6653         that long in WaitForSingleObject), the new async invoke was not called
6654         until the previous one finished.
6655
6656         This is fixed now. Thanks to Totte for helping with it.
6657
6658 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6659
6660         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
6661
6662 2003-08-11  Martin Baulig  <martin@ximian.com>
6663
6664         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
6665
6666 2003-08-06  Martin Baulig  <martin@ximian.com>
6667
6668         * mono-debug-debugger.c: Added support for static fields,
6669         properties and methods.
6670
6671 2003-08-06  Martin Baulig  <martin@ximian.com>
6672
6673         * mono-debug-debugger.c: Don't store the MonoString's vtable to
6674         make this work for applications with multiple application domains.
6675
6676 2003-08-04  Martin Baulig  <martin@ximian.com>
6677
6678         * mono-debug-debugger.c: Completely reworked the type support; the
6679         most important thing is that we're now just using one single
6680         `MonoType' instance per type.
6681
6682 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
6683
6684         * mono-endian.h, mono-endian.c, icall.c: Added icall
6685         ves_icall_System_Double_AssertEndianity to assert double word endianity
6686         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
6687
6688 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
6689
6690         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
6691         support, icalls and fixes.
6692
6693 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
6694
6695         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
6696         classes that are a punctuation character in .NET is not the same a
6697         g_unichar_ispunct.
6698
6699 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
6700
6701         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
6702
6703 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
6704
6705         * icall.c: Add new MemCopy internalcall.
6706         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
6707         Simplified code; It is not necessary to handle all the cases here,
6708         as the C# code takes care of it.  Only handle the case of the name
6709         resource embedded into the assembly.
6710
6711         Changed signature to return the data pointer and the size of the
6712         data. 
6713
6714 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
6715
6716         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
6717         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
6718
6719 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
6720
6721         * socket-io.c: ignore EINTR error in select.
6722
6723 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
6724
6725         * class.h, class.c: removed unused subclasses field in MonoClass.
6726
6727 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
6728
6729         * icall.c: improve fix of get_base_definition(). If the parent class
6730           doesn't have the mehod, look at the parent of the parent.
6731         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
6732           to check if a parameter is an in or out parameter
6733           (PARAM_ATTRIBUTE_IN is not set by default).
6734           mono_method_return_message_restore(): Use mono_class_value_size to
6735           get the size of a value type. mono_type_stack_size (parameterType)
6736           does not return the correct value if parameterType is byRef.
6737           mono_load_remote_field(), mono_load_remote_field_new(),
6738           mono_store_remote_field(), mono_store_remote_field_new():
6739           raise exception if the remote call returns an exception.
6740
6741 2003-07-28  Martin Baulig  <martin@ximian.com>
6742
6743         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
6744         method.  This is a wrapper around mono_runtime_invoke() which
6745         boxes the instance object if neccessary.
6746
6747 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
6748
6749         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
6750         metadata.h, row-indexes.h, verify.c: first cut of generics support.
6751
6752 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
6753
6754         * icall.c: disable mcs bug workaround.
6755
6756 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
6757
6758         * object.c (mono_runtime_class_init): Take the metadata_section
6759         mutex before obtaining the domain mutex.
6760
6761         * appdomain.h: Added definition of metadata_section mutex here. 
6762
6763         * object.c: define metadata_mutex here.
6764
6765 2003-07-24  Ravi Pratap  <ravi@ximian.com>
6766
6767         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
6768         fixed.
6769
6770 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
6771
6772         * reflection.c: Fix bug #46669
6773
6774 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6775
6776         * exception.c:
6777         * exception.h:
6778         * icall.c:
6779         * object.h: fill in the type name for TypeLoadException.
6780
6781 2003-07-23  Ravi Pratap  <ravi@ximian.com>
6782
6783         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
6784         relationship between TypeBuilders while compiling corlib) and bug
6785         45993 (Array types returned from the runtime while compiling
6786         corlib were from the loaded corlib).
6787
6788 2003-07-22  Martin Baulig  <martin@ximian.com>
6789
6790         * mono-debug-debugger.c: Reworked the type support a bit more;
6791         distinguish between types and classes.
6792
6793 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
6794
6795         * icall.c: add IsArrayImpl icall.
6796
6797 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
6798
6799         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
6800         initializing real_size only once. Also fix bug #46602.
6801
6802 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
6803
6804         * object.c: Renamed mono_metadata_section to metadata_section.
6805
6806 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
6807
6808         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
6809           empty array if the type is an array. Fixed.
6810           ves_icall_MonoMethod_get_base_definition: if the base method
6811           is abstract, get the MethodInfo from the list of methods of
6812           the class.
6813         * reflection.c: ParameterInfo.PositionImpl should be zero-based
6814           and it was 1-based. Fixed in mono_param_get_objects.
6815
6816 2003-07-20  Martin Baulig  <martin@ximian.com>
6817
6818         * mono-debug.h: Set version number to 31.
6819         (mono_debug_init): Added `MonoDomain *' argument.
6820
6821         * mono-debug-debugger.c: Reworked the type support; explicitly
6822         tell the debugger about builtin types; pass the `klass' address to
6823         the debugger.
6824
6825 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
6826
6827         * image.c: Allow new metadata tables to be loaded without a
6828         warning. Also update the warning message to give the new constant value.
6829                 
6830 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
6831
6832         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
6833         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
6834         array type representation changes.
6835
6836 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
6837
6838         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
6839         on Environment.Exit () call.
6840
6841 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
6842
6843         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
6844         requires a matching corlib.
6845
6846 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
6847
6848         * Changelog: My editor decided to add a CR to each line. Sorry about that.
6849           Committed again without the CRs.
6850         
6851 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
6852
6853         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
6854           getting it from the "this" socket instance. Did not work
6855           if the socket is a subclass of Socket.
6856           Also fixed bug #35371.
6857
6858 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
6859
6860         * metadata.c: fixed size for TypedByRef.
6861         * loader.c: when searching for a method, consider the vararg amrker.
6862         * unicode.c, decimal.c: constify some arrays.
6863
6864 2003-07-15  Dick Porter  <dick@ximian.com>
6865
6866         * socket-io.c: Fixed compilation for gcc < 3.2.
6867
6868         Fixed compilation for machines that don't have AF_INET6 (thanks to
6869         Bernie Solomon <bernard@ugsolutions.com> for that part.)
6870
6871         Fixed compile warnings.
6872         
6873         Fixed formatting and line endings.
6874
6875 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
6876
6877         * socket-io.h:
6878         * socket-io.c: Added IPv6 support.
6879
6880 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
6881
6882         * class.c (mono_class_is_assignable_from): New function to implement
6883         the is_assignable_from logic. Used by mono_object_isinst, 
6884         Type::IsAssignableFrom () and the interpreter.
6885
6886         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
6887         Object, even interfaces.
6888         
6889         * object.c (mono_object_isinst): Implement in terms of 
6890         is_assignable_from.
6891
6892         * icall.c (ves_icall_type_is_assignable_from): New icall.
6893
6894 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
6895
6896         * domain.c (foreach_domain): fix compiler warning.
6897
6898 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
6899
6900         * image.c (load_metadata_ptrs): use g_strndup because strndup is
6901         not available on all plattforms
6902
6903 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
6904
6905         * image.h image.c: Store the metadata version string in MonoImage.
6906         * icall.c: New icall to retrieve the image version.
6907         * reflection.c (create_dynamic_image): Fill in the image version field
6908         * reflection.c (build_compressed_metadata): Use the image version
6909         from the image structure.
6910
6911 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6912
6913         * appdomain.c: modified comment.
6914         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
6915         That will be its last iteration when mono_gc_cleanup is called from
6916         mono_runtime_cleanup and before the domain is unloaded.
6917
6918         Fixes bug #45962.
6919
6920 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
6921
6922         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
6923         attributes.
6924
6925 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
6926
6927         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
6928         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
6929         Bernie Solomon <bernard@ugsolutions.com>.
6930
6931 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
6932
6933         * object.c, object.h: provide mono_object_new_fast() for faster
6934         allocation in some special cases.
6935
6936 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
6937
6938         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
6939         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
6940
6941 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
6942
6943         * threadpool.c: fix leaks.
6944
6945 2003-07-01  Dick Porter  <dick@ximian.com>
6946
6947         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
6948         using MonoGHashTables.  Fixes threadpool bug posted to list.
6949
6950 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
6951
6952         * image.h, image.c: added support to load an assembly from a byte array.
6953         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
6954         assembly bundle support.
6955
6956 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
6957
6958         * threadpool.c (mono_thread_pool_add): keep a reference to the
6959         AsyncResult to prevent GC
6960
6961 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
6962
6963         * class.c: leak fix.
6964
6965 2003-06-25  Dick Porter  <dick@ximian.com>
6966
6967         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
6968         for the async object, the WaitHandle object will close the handle.
6969         Fixes bug 45321.
6970
6971 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
6972
6973         * class.c: in mono_array_class_get (), lookup from the hash with the
6974         same type we insert: this works around a bug in
6975         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
6976         lluis. The real fix will have to wait for after the release.
6977
6978 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
6979
6980         * icall.c: fix memory leak when getting type members.
6981
6982 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
6983
6984         * reflection.c: added more pubtoken special cases.
6985
6986 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
6987
6988         * class.c: handle field offset correctly when class size
6989         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
6990
6991 2003-06-20  Martin Baulig  <martin@ximian.com>
6992
6993         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
6994         *image' field.
6995
6996 2003-06-20  Martin Baulig  <martin@ximian.com>
6997
6998         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
6999
7000 2003-06-20  Martin Baulig  <martin@ximian.com>
7001
7002         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
7003         just distinguish between variables in registers and variables at
7004         an offset relative to a register.
7005
7006 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7007
7008         * icall.c: #ifdef out latest changes until mcs is fixed.
7009
7010 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7011
7012         * icall.c: return members in metadata order.
7013
7014 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
7015
7016         * icall.c: avoid infinite loop in GetTimeZoneData.
7017
7018 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
7019
7020         * icall.c: added Marshal.Prelink/All icalls.
7021
7022 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
7023
7024         * object.c, object.h: fix warnings and do some overflow checking
7025         when creating arrays.
7026
7027 2003-06-17  Dick Porter  <dick@ximian.com>
7028
7029         * file-io.h:
7030         * file-io.c: File attributes need to be tweaked slightly when
7031         passed from the managed to the w32 world.
7032
7033 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
7034         * profiler.h profiler-private.h profiler.c: Rework last patch
7035         based on suggestion by Paolo.
7036         
7037 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
7038
7039         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
7040         instruction level coverage data collection.
7041         * profiler.h profiler.c (: Added new callback function which can be
7042         used by the profiler to limit which functions should have coverage
7043         instrumentation.
7044         * profiler.c (mono_profiler_load): Call g_module_build_path to
7045         generate the file name of the profiler library.
7046
7047 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7048
7049         * profiler.c, profiler.h, profiler-private.h: added basic block 
7050         coverage profiling API.
7051
7052 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
7053
7054         * reflection.c (mono_reflection_create_runtime_class): Add support
7055         for events in dynamically generated code.
7056
7057         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
7058         not allocated.
7059
7060 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
7061
7062         * icall.c: when getting timezone info, return reasonable values if we
7063         can't get the actual data.
7064
7065 2003-06-14  Dick Porter  <dick@ximian.com>
7066
7067         * threads.c (start_wrapper): Remove the reference to the thread
7068         object in the TLS data, so the thread object can be finalized.
7069         This won't be reached if the thread threw an uncaught exception,
7070         so those thread handles will stay referenced :-( (This is due to
7071         missing support for scanning thread-specific data in the Boehm GC
7072         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
7073
7074 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
7075
7076         * reflection.c: ensure streams and tables are first allocated with
7077         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
7078
7079 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7080
7081         * icall.c: fixed GetElementType for byrefs (bug# 44792).
7082
7083 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
7084
7085         * reflection.c (mono_reflection_create_runtime_class): Add support for
7086         properties to dynamically created classes.
7087         * reflection.c: Fix a few places where non-MonoObjects were inserted
7088         into the tokens hashtable.
7089
7090 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
7091
7092         * object.c: some support to handle out of memory exceptions.
7093
7094 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
7095
7096         * marshal.c (mono_marshal_get_native_wrapper): support reference
7097         return types
7098
7099 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
7100
7101         * object.h, object.c: more portability stuff from Bernie Solomon.
7102         Unexport mono_object_allocate(). Added mono_object_unbox ().
7103         Set exitcode when an unhandled exception is thrown.
7104
7105 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
7106
7107         * marshal.c (mono_marshal_get_native_wrapper): use custom
7108         marshaler for return types.
7109
7110 2003-06-10  Dick Porter  <dick@ximian.com>
7111
7112         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
7113         ip_mreq is available
7114
7115 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
7116
7117         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
7118         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
7119         by Bernie Solomon <bernard@ugsolutions.com>.
7120
7121 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
7122
7123         * gc.c (mono_gc_init): Avoid error message on shutdown when
7124         GC_DONT_GC=1 is used.
7125
7126         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
7127         New icall to return the GUID of a module.
7128
7129 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
7130
7131         * class.c: ensure instance size always includes the parent's size
7132         even whem class size is set explicitly (fixes bug#44294).
7133
7134 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
7135
7136         * profiler.h, profiler.c: made the simple profiler thread-safe,
7137         get more accurate timing info. Allow the loading of an
7138         externally-developed profiler module.
7139
7140 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
7141
7142         * marshal.c (mono_marshal_get_native_wrapper): improved
7143         class/byref arguments.
7144         (mono_marshal_get_native_wrapper): better string marshaling support.
7145
7146 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
7147
7148         * class.c: ensure .pack and .size are handled correctly and
7149         simplified layout of static fields.
7150
7151 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
7152
7153         * appdomain.c
7154         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
7155
7156         * loader.c (mono_lookup_pinvoke_call): look for modules in the
7157         current directory (fix bug 44008)
7158
7159 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
7160
7161         * marshal.c (mono_marshal_get_native_wrapper): started support for
7162         custom marshalers.
7163         (mono_delegate_to_ftnptr): consider marshalling specifications
7164
7165 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
7166
7167         * reflection.c, reflection.h: emit custom marshal info.
7168
7169 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7170
7171         * object.c: free the GError.
7172         * icall.c: added CloseEvent_internal.
7173         * threads.[ch]:
7174         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
7175         call.
7176
7177 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
7178
7179         * loader.c (mono_method_get_signature): Add support for dynamic
7180         assemblies.
7181
7182 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
7183
7184         * reflection.c: fixed bug #43905.
7185
7186 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
7187
7188         * class.c, domain.c, icall.c, metadata.h, object.h: support for
7189         handling TypedReference and ArgIterator.
7190         * loader.c, loader.h: added function to get signature at call site.
7191
7192 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
7193
7194         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
7195         data readonly. Buglets and warning fixes. Some MethodSpec support.
7196
7197 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
7198
7199         * class.h, class.c, object.c: remove relative numbering support.
7200
7201 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
7202
7203         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
7204         free the string, until we get a chance to fix Gtk#
7205
7206 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7207
7208         * marshal.c: revert last patch.
7209
7210 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
7211
7212         * icall.c: updates for new mono_class_vtable() not calling
7213         the type constructor anymore.
7214
7215 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
7216
7217         * object.h, object.c: separate vtable creation from type
7218         initialization. Make running the .cctor thread safe.
7219
7220 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
7221
7222         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
7223
7224 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
7225
7226         * loader.c (mono_get_method): consider calling convention
7227
7228 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
7229
7230         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
7231         to return the invisible global type for a module.
7232
7233         * reflection.c (mono_image_build_metadata): Emit global fields too.
7234
7235 2003-05-20  Peter Williams  <peterw@ximian.com>
7236
7237         * loader.c (mono_lookup_internal_call): Add a few newlines.
7238
7239 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
7240
7241         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
7242         literal strings.
7243
7244         * appdomain.c (set_domain_search_path): Recalculate search path when
7245         AppDomainSetup.PrivateBinPath changes.
7246
7247         * object.c (mono_class_compute_gc_descriptor): It turns out some
7248         parts of the class libs (like System.Thread) holds pointers to
7249         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
7250         to treat native int a pointer type here.
7251         
7252 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
7253
7254         * appdomain.h, domain.c: add hashtable for jump target resolution.
7255
7256 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
7257
7258         * reflection.h reflection.c icall.c: Added new icalls 
7259         GetManifestResourceInfoInternal, GetModulesInternal and support
7260         infrastructure.
7261
7262 2003-05-16  Dick Porter  <dick@ximian.com>
7263
7264         * icall.c:
7265         * file-io.h:
7266         * file-io.c: Implement System.IO.MonoIO::GetTempPath
7267
7268 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
7269
7270         * object.c: mono_store_remote_field: little fix to previous patch.
7271
7272 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7273
7274         * class.c: add constructors to array classes.
7275         * icall.c: special case array construction for InternalInvoke (),
7276
7277 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
7278
7279         * class.h class.c reflection.c object.c: Added support for field
7280         defaults in dynamically generated classes.
7281
7282 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
7283
7284         * reflection.c: properly encode charset for ddlimport.
7285
7286 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
7287
7288         * threads.c: allow compiling without GC.
7289
7290 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
7291
7292         * appdomain.h, object.c, object.h, threads.c, threads.h: added
7293         handling of thread static data.
7294
7295 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7296
7297         * reflection.h, reflection.c: added mono_custom_attrs_free ().
7298
7299 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
7300
7301         * class.c (mono_array_class_get): always set the serializable flags
7302         (mono_array_class_get): always set the SEALED attribute for array types
7303
7304 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
7305
7306         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
7307         attributes (fix for bug 42021).
7308
7309 2003-05-12  Dick Porter  <dick@ximian.com>
7310
7311         * gc.c: Don't run finalizers when the finalizer thread is
7312         finishing up, because the default domain has already been
7313         destroyed.
7314
7315 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
7316
7317         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
7318         value is null, we should throw an exception.   This is slightly
7319         different than the other conventions used for the constructor.
7320
7321 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7322
7323         * socket-io.c: fixed windows build.
7324
7325 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7326
7327         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
7328
7329 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
7330
7331         * object.c (mono_string_new_wrapper): Compatibility fix for MS
7332         compilers.
7333
7334 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
7335
7336         * class.c (mono_class_layout_fields): Add experimental GC aware
7337         auto layout facility. Requires class library changes to work correctly.
7338
7339         (mono_class_setup_vtable): Avoid overriding explicit interface
7340         method implementations. Fixes iface3.exe test.
7341
7342         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
7343         object reference.
7344         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
7345         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
7346
7347         * metadata.h: Add new type classification macro which determines
7348         whenever the type holds an object reference.
7349
7350 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
7351
7352         * marshal.c (mono_marshal_get_native_wrapper): cleanups
7353
7354 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
7355
7356         * gc.c (finalizer_thread): Work around a GC bug.
7357
7358 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
7359
7360         * marshal.c (emit_struct_conv): allow unions
7361
7362         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
7363
7364 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
7365
7366         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
7367
7368 2003-05-06  Martin Baulig  <martin@ximian.com>
7369
7370         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
7371
7372 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7373
7374         * socket-io.c:
7375         (Select_internal): allow NULLs, don't create arrays if not needed.
7376         Coupled with Socket.cs changes.
7377
7378         * threadpool.c:
7379         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
7380         register a finalizer for it that will close the semaphore handle. This
7381         fixes the leak and make Lupus' test run with > 4080 loops.
7382
7383 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
7384
7385         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
7386         Jerome Laban (bug #42287)
7387
7388 2003-05-02  Martin Baulig  <martin@ximian.com>
7389
7390         * debug-mono-symfile.h
7391         (MonoSymbolFile): Moved declaration into mono-debug.h.
7392         (MonoDebugMethodJitInfo): Likewise.
7393         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
7394         argument.
7395         (_mono_debug_address_from_il_offset): Take a
7396         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
7397
7398         * mono-debug.h
7399         (MonoDebugDomainData): New struct.
7400         (mono_debug_get_domain_data): New function.
7401         (mono_debug_add_method): Take an additional `MonoDomain *'
7402         argument.
7403         (mono_debug_source_location_from_address): Likewise.
7404         (mono_debug_il_offset_from_address): Likewise.
7405         (mono_debug_address_from_il_offset): Likewise.
7406
7407 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
7408
7409         * reflection.c: one more check for null type in custom attrs.
7410
7411 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7412
7413         * reflection.c: avoid warning (comparison is always false due to limited
7414         range of data type).
7415
7416 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7417
7418         * icall.c: throw an exception in Type.GetField if the argument 'name'
7419         is NULL.
7420
7421 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
7422
7423         * reflection.c: fixed handling of enums in named arguments to custom
7424         attributes (bug #42123).
7425
7426 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
7427
7428         * reflection.c: use the right array element type and handle
7429         a null for a Type argument, too.
7430
7431 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
7432
7433         * reflection.c: handle arrays as arguments to custom attributes.
7434
7435 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
7436
7437         * reflection.c: handle a string value in a custom attr
7438         ctor that takes an object.
7439
7440 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
7441
7442         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
7443         (fix bug #42063)
7444
7445 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
7446
7447         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
7448
7449 2003-04-27  Martin Baulig  <martin@ximian.com>
7450
7451         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
7452         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
7453         MONO_DEBUGGER_EVENT_BREAKPOINT.
7454         (mono_breakpoint_trampoline_code): Removed.
7455         (mono_debugger_event_handler): The last argument is now a
7456         `guint32'.
7457         (mono_debugger_insert_breakpoint_full): Removed the
7458         `use_trampoline' argument.
7459         (mono_debugger_method_has_breakpoint): Likewise.
7460         (mono_debugger_trampoline_breakpoint_callback): Renamed to
7461         mono_debugger_breakpoint_callback(); take the method and
7462         breakpoint number as arguments.
7463
7464 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
7465
7466         * metadata.c: fix off by one when loading parameters attributes.
7467
7468 2003-04-24  Martin Baulig  <martin@ximian.com>
7469
7470         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
7471
7472 2003-04-24  Martin Baulig  <martin@ximian.com>
7473
7474         * mono-debug-debugger.c: Moved all code which interacts with the
7475         Mono Debugger here.
7476
7477         * debug-mono-symfile.c: This code now just deals with the symbol
7478         file itself, the debugger code is now in mono-debug-debugger.c.
7479
7480 2003-04-23  Martin Baulig  <martin@ximian.com>
7481
7482         * mono-debug.c (mono_debug_source_location_from_il_offset):
7483         New method; like mono_debug_source_location_from_address(), but
7484         takes an IL offset instead of a machine address.
7485
7486 2003-04-23  Martin Baulig  <martin@ximian.com>
7487
7488         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
7489         `line' field; this is now computed by the debugger.
7490
7491 2003-04-23  Martin Baulig  <martin@ximian.com>
7492
7493         * mono-debug.[ch]: New files.  This is the new debugging interface.
7494
7495         * mono-debug-debugger.[ch]: New files.  Moved all code which
7496         interacts with the Mono Debugger here.
7497
7498 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
7499
7500         * domain.c (mono_init): initialize mono_defaults.monitor_class
7501
7502 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
7503
7504         * reflection.c (method_encode_code): Add a spicy exception to help
7505         future compiler authors.
7506
7507 2003-04-21  Martin Baulig  <martin@ximian.com>
7508
7509         * icall.c
7510         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7511         Make this work with relative pathnames; g_filename_to_uri() needs
7512         an absolute filename.
7513
7514 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
7515
7516         * icall.c: Track name changes in Object and ValueType.
7517
7518 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
7519
7520         * metadata.c (mono_type_stack_size): size should be a multiple of
7521         sizeof (gpointer)
7522
7523 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7524
7525         * gc.c:
7526         (internal_domain_finalize): moved into mono_domain_finalize. No need
7527         to create another thread because the finalizers will be run in the
7528         finalizer thread.
7529         
7530         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
7531         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
7532         to be run (MS does this too).
7533
7534 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
7535
7536         * object.c (mono_class_compute_gc_descriptor): Update comment.
7537
7538         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
7539
7540         * image.h: Add synchronized wrapper cache.
7541
7542         * image.c (do_mono_image_open): Initialize cache.
7543
7544         * reflection.c (create_dynamic_mono_image): Initialize cache.
7545
7546 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7547
7548         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
7549         ves_icall_System_Buffer_ByteLengthInternal.
7550
7551 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
7552
7553         * reflection.c: setup klass->nested_in earlier. Allow
7554         a dash in the assembly name.
7555
7556 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
7557
7558         * metadata.c (mono_type_to_unmanaged): dont access
7559         type->data.klass for MONO_TYPE_OBJECT
7560         (mono_type_to_unmanaged): consider System.Delegate class
7561
7562 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
7563
7564         * class.c: just setup supertypes in the proper place instead of
7565         initializing the full element class for arrays.
7566
7567 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
7568
7569         * class.c: ensure the element class of arrays is initialized.
7570         Setup the supertype info for array classes, too.
7571
7572 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
7573
7574         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
7575
7576 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7577
7578         * Makefile.am: re-added -m option when running cygpath. This way,
7579         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
7580         separator.
7581         * mono-config.c: same codepath for locating mono config file for WIN32
7582         and the rest.
7583         * assembly.c: if mono_assembly_setrootdir is called, don't override
7584         the value set.
7585
7586 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7587
7588         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
7589         MONO_ASSEMBLIES variable.
7590
7591 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
7592
7593         * icall.c: added Assembly::GetNamespaces() icall.
7594
7595 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7596
7597         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
7598
7599 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
7600
7601         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
7602         * object.c: fixed bug in the construction of vtable for proxies
7603
7604 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
7605
7606         * object.c (mono_array_new): Mark mono_array_new as an icall.
7607
7608 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7609
7610         * class.c: fixed test for public method when overriding interfaces.
7611         Closes bug #40970.
7612
7613 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
7614
7615         * appdomain.h, domain.c: added mono_domain_foreach() to
7616         be able to access the currently loaded appdomains.
7617         * object.c: make string interning work across sppdomains.
7618         Mark some functions for use as icalls.
7619
7620 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
7621
7622         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
7623
7624         * reflection.h reflection.c: Allocate long living data using 
7625         GC_MALLOC_ATOMIC so the collector does not need to scan it.
7626
7627         * reflection.c: Double the allocation size in streams instead of
7628         increasing it, to prevent unneccesary copying on large assemblies.
7629         
7630         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
7631         creation if the assembly does not have the Run flag set.
7632
7633 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
7634
7635         * class.h: avoid the C++ keywords in header files (Jerome Laban
7636         spotted and fixed this).
7637
7638 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7639
7640         * object.c:
7641         (mono_unhandled_exception): fill in the arguments for the
7642         UnhandledException event. Only trigger that event for the default
7643         domain (as MS does).
7644
7645 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
7646
7647         * object.c: Improve typed allocation stuff based on suggestions from
7648         Paolo. Also turn it on if the GC library supports it.
7649
7650 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
7651
7652         * object.c object.h class.h: Added experimental typed allocation
7653         facility using the interfaces in gc_gcj.h.
7654
7655         * os/gc_wrapper.h: Added new include files.
7656         
7657 2003-04-03  Martin Baulig  <martin@ximian.com>
7658
7659         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
7660         which is not yet enabled by default.
7661
7662         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
7663         functions.
7664         (mono_gc_lock, mono_gc_unlock): New static functions.
7665
7666         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
7667         functions; stop/start the world for the garbage collector.  This
7668         is using the windows API; we need to complete the SuspendThread()/
7669         ResumeThread() implementation in the io-layer to make this work on Unix.
7670         (mono_gc_push_all_stacks): New public function; tells the garbage
7671         collector about the stack pointers from all managed threads.
7672
7673 2003-04-03  Martin Baulig  <martin@ximian.com>
7674
7675         * object.h (MonoThread): Added `gpointer stack_ptr'.
7676
7677         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
7678
7679 2003-04-03  Martin Baulig  <martin@ximian.com>
7680
7681         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
7682
7683 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
7684
7685         * reflection.c (typebuilder_setup_fields): Initialize field.first and
7686         field.last.
7687
7688 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
7689
7690         * loader.c (mono_lookup_internal_call): Report the corlib that is
7691         out of sync.
7692
7693 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
7694
7695         * icall.c (ves_icall_type_GetTypeCode): fixed check for
7696         System.DBNull (it's class not valuetype).
7697
7698 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
7699
7700         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
7701         if the array method was already assigned a token (fixes bug#40646).
7702
7703 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
7704
7705         * reflection.c (mono_reflection_get_type): Attempt type resolve even
7706         if no assembly is given.
7707
7708 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
7709
7710         * metadata.h: Added the new tables.
7711
7712         * row-indexes.h: Added definitions for new tables.
7713
7714         * metadata.c: Add schemas for new tables, and add support for
7715         computing the sizes of them.
7716
7717         * class.c: Update for handling the new type cases.
7718
7719 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
7720
7721         * metadata.h (MONO_TYPE_IS_VOID): new macro
7722
7723 2003-03-31  Martin Baulig  <martin@ximian.com>
7724
7725         * threads.h (MonoThreadCallbacks): Added `thread_created'.
7726
7727         * threads.c (mono_thread_new_init): Call `thread_created' in the
7728         mono_thread_callbacks.
7729
7730 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
7731
7732         * loader.h: added marshalbyrefobject_class to mono_defaults
7733         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
7734         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
7735           generation of output parameters.
7736           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
7737         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
7738           contextbound and the target object belongs to the context of the caller.
7739         * object.h: added context and unwrapped_server variables in MonoRealProxy.
7740         * object.c: Implemented support for interfaces and abstract classes
7741           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
7742           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
7743
7744 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
7745
7746         * class.h class.c (mono_class_is_subclass_of): New function.
7747         
7748         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
7749         routines for most common case (calls from ArrayList::ToArray).
7750
7751         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
7752         routine so programs which call Environment::Exit() can be profiled.
7753
7754         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
7755         Added MONO_ARCH_SAVE_REGS.
7756
7757         * icall.c (ves_icall_type_is_subtype_of): Use new function.
7758
7759 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
7760
7761         * blob.h: Add a couple of new MonoType types definitions.
7762
7763         * tabledefs.h: Add a couple of new call convs.
7764
7765 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
7766
7767         * reflection.h (MonoReflectionDynamicAssembly): track changes in
7768         the layout of the class.
7769
7770         * reflection.c (alloc_table): double the size on overflow to avoid
7771         unnecessary copying.
7772
7773         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
7774         avoid filling out metadata tables and blobs. Also set mb->ilgen to
7775         null so it can be garbage collected.
7776         
7777 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
7778
7779         * reflection.c (mono_reflection_get_type): Return the resolved type
7780         only if it is in the assembly we searched.
7781
7782         * reflection.c (ensure_runtime_vtable): Initialize method slots.
7783
7784         * class.c (mono_class_setup_vtable): Set the slot of the overriding
7785         method.
7786
7787 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7788
7789         * appdomain.c:
7790         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
7791         the right one is 'file:///blah', but MS allows it.
7792         * assembly.c:
7793         (mono_assembly_open): allow 'file://blah'
7794
7795         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
7796
7797 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
7798
7799         * socket-io.c: fixes bug #40310.
7800
7801 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
7802
7803         * reflection.c (mono_reflection_parse_type): handle deeply nested
7804         types correctly.
7805
7806         * reflection.c (mono_image_create_token): Use unique token values
7807         since they will be put into a hash table.
7808
7809         * class.c (mono_class_setup_vtable): If a method occurs in more than
7810         one place in the vtable, and it gets overriden, then change the
7811         other occurances too.
7812
7813         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
7814         object as return type.
7815
7816 2003-03-22  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
7817
7818         * icall.c: Deleted "ToString" implementation for double and float
7819         because they are full implemented in managed code.
7820
7821 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
7822
7823         * reflection.c, reflection.h: implemented and exported functions
7824         to retrieve info about custom attributes.
7825
7826 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7827
7828         * appdomain.c: moved Uri handling to assembly.c
7829         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
7830         work when using a file Uri in *nix and windows.
7831
7832         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
7833         GetReferencedAssemblies.
7834
7835 2003-03-18  Dick Porter  <dick@ximian.com>
7836
7837         * icall.c: Rename a couple of internal calls
7838
7839         * threads.c: Set the thread state to Stopped when a thread exits.
7840         Fixes bug 39377.
7841
7842 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
7843
7844         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
7845         New icall.
7846
7847         * object.c (mono_class_vtable): fix warning.
7848
7849 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
7850
7851         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
7852
7853         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
7854         memory.
7855         (method_encode_clauses): Create exception info structures in the right
7856         order.
7857         (mono_reflection_setup_internal_class): Initialize supertypes field.
7858
7859         * class.c object.c: Handle interfaces which implement other interfaces 
7860         correctly.
7861
7862         * class.h class.c: Move the supertypes array initialization code into 
7863         a separate function so it can be used for dynamic types too. Also call
7864         it earlier, in mono_class_init(), since it can be used before the
7865         type is initialized.
7866
7867 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7868
7869         * Makefile.am:
7870         * assembly.c:
7871         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
7872
7873         * appdomain.c:
7874         * appdomain.h:
7875         * marshal.c:
7876         * object.c: remove warnings.
7877
7878 2003-03-13  Martin Baulig  <martin@ximian.com>
7879
7880         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
7881         (MonoDebugLexicalBlockEntry): New types.
7882
7883         * debug-mono-symfile.c
7884         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
7885
7886 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7887
7888         * process.c: ret can be any non-zero value accroding to MS doc.
7889
7890 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
7891
7892         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
7893         fixing a warning for a miss-used prototype, would have cause
7894         random memory corruption.
7895
7896 2003-03-07  Martin Baulig  <martin@ximian.com>
7897
7898         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
7899         getting really annoying ....
7900
7901 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
7902
7903         * reflection.c (fixup_method): added support for array methods.
7904
7905 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
7906
7907         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
7908         (pointed out by Michael Adams).
7909
7910 2003-03-04  Dick Porter  <dick@ximian.com>
7911
7912         * icall.c: Temporarily reverted the Double and Single ToString()
7913         change, because it broke nunit.
7914
7915 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
7916
7917         * object.h, threads.h: make include files compatible with C++
7918         (patch by Jerome Laban <jlaban@wanadoo.fr>).
7919
7920 2003-03-04  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
7921
7922         * icall.c: Erased ToString helper functions for Double and Single.
7923         Now, that implementations ar all in managed code (Double and Single
7924         Formatters).
7925
7926 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
7927
7928         * appdomain.c: Added method for initializing the default context of
7929         a domain. Added internal call for getting the default context.
7930         * appdomain.h: Added context variable in MonoDomain struct.
7931         * domain.c: mono_domain_set also sets the default context of the domain
7932         * icall.c: Mapped internal method InternalGetDefaultContext.
7933         * object.c: mono_object_get_virtual_method returns always a remoting
7934         wrapper if the object is a transparent proxy.
7935         mono_runtime_invoke_array: when creating an object by calling the
7936         constructor, if the created object is a proxy, then the constructor should
7937         be called using the a remoting wrapper.
7938
7939 2003-03-03  Dick Porter  <dick@ximian.com>
7940
7941         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
7942         variable so it compiles on solaris.  Problem spotted by
7943         Christopher Taylor <ct@cs.clemson.edu>
7944
7945 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7946
7947         * appdomain.c:
7948         (get_info_from_assembly_name): don't leak value.
7949
7950         * icall.c:
7951         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
7952         result.
7953
7954 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
7955
7956         * assembly.c: export mono_image_load_references ().
7957         * class.c: handle function pointers. mono_class_from_name() now
7958         supports nested type names directly.
7959
7960 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
7961
7962         * reflection.h reflection.c: Encode already created dynamic methods 
7963         and fields correctly as a DEF instead of a REF.
7964
7965         * reflection.c: Get rid of the force_ref argument to 
7966         mono_image_typedef_or_ref since it was wrong in the first place.
7967
7968         * string-icalls.c: add error checking to string constructors according
7969         to the MSDN docs.
7970
7971         * reflection.c: Emit types in the order their TypeBuilders were 
7972         created. Previously, a new table index was assigned to each type before
7973         the tables were emitted. This was wrong because the signature blob
7974         might already refer to a type by its original table index.
7975
7976 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
7977
7978         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
7979         change.
7980         
7981 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7982
7983         * Makefile.am: make assemblies dir have \ instead of / on windows.
7984
7985 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
7986
7987         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
7988         iterate over the NESTEDCLASS table using a linear search since the
7989         table is not guaranteed to be sorted by the secondary key.
7990
7991         * class.c (mono_class_create_from_typedef): fixed up call to
7992         mono_metadata_nesting_typedef.
7993         
7994 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
7995
7996         * marshal.c (mono_string_to_byvalstr): clear the memory as
7997         suggested by Jerome Laban <jlaban@wanadoo.fr>
7998
7999 2003-02-26  Dick Porter  <dick@ximian.com>
8000
8001         * process.c: Cope with padding in .rsrc blocks
8002
8003 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
8004
8005         * metadata.h: reverted the filter_len change, it breaks reflection
8006         
8007 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
8008
8009         * metadata.h: added a new field to store the filter_len
8010         
8011
8012 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
8013
8014         * reflection.c: handle custom attributes for types and members
8015         created with Reflection.Emit (bug#38422).
8016
8017 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
8018
8019         * reflection.c: define RTSpecialName automatically for constructors for
8020         compatibility with MS.NET.
8021
8022         * reflection.c (mono_reflection_create_runtime_class): initialize
8023         nested_in field of dynamically created classes.
8024
8025 2003-02-22  Martin Baulig  <martin@ximian.com>
8026
8027         * debug-mono-symfile.h: Incremented version number.
8028
8029 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
8030
8031         * object.h icall.c process.c: fix warnings.
8032
8033 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
8034
8035         * appdomain.h appdomain.c:
8036         (mono_domain_try_type_resolve): split the 
8037         name_or_tb argument into a name and a tb argument.
8038         (mono_domain_has_type_resolve): new function to check whenever the
8039         application has registered a TypeResolve event handler.
8040         
8041         * icall.c reflection.h reflection.c: move the type resolve logic into
8042         mono_reflection_get_type () so it will be invoked when 
8043         Assembly::GetType () is called.
8044
8045         * reflection.c:
8046         (mono_reflection_get_type): renamed to get_type_internal.
8047         (mono_reflection_get_type): fixed type name generation so it works 
8048         for nested types too.
8049         (mono_reflection_get_type): call has_type_resolve () to avoid the 
8050         costly type name generation if there is no resolve event handler.
8051
8052 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8053
8054         * class.c, image.c: load exported types from file references.
8055
8056 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
8057
8058         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
8059           used to cache the managed methods used to create proxies and make 
8060           remote invocation of methods.
8061         * class.h: Added in MonoVTable a flag to indicate that a class needs 
8062           to be remotely created.
8063         * object.c: Modified the method mono_class_vtable(). It now initializes 
8064           the remote flag of the vtable. Modified mono_object_new_specific(), 
8065           so now it checks the remote flag.
8066         * icall.c: Added a couple of internal methods, one for enabling instance 
8067           creation interception for a type, and one for creating objects bypassing
8068           the remote check.
8069
8070 2003-02-18  Martin Baulig  <martin@ximian.com>
8071
8072         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
8073         New interncall to get a method's metadata token.
8074
8075         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
8076         New interncall for the debugger.
8077
8078 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
8079
8080         * class.c (mono_class_setup_vtable): allocate supertype array
8081
8082 2003-02-18  Martin Baulig  <martin@ximian.com>
8083
8084         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
8085
8086 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8087
8088         * reflection.c:
8089         (assembly_name_to_aname): jump over unknown properties (i've found
8090         something like: 'type, assembly, version=xxx, custom=null, public...',
8091         so now will ignore custom=null and still get the rest of the values).
8092
8093 2003-02-17  Dick Porter  <dick@ximian.com>
8094
8095         * threads.c: Have Thread.Start() wait for a semaphore to signal
8096         that the thread has set up all its local data.  This fixes bug
8097         34323, where Abort() raced the new thread's TLS data.
8098
8099         Also removes the handle_store() call from start_wrapper, because
8100         threads are now always created suspended and there is no longer a
8101         race between the parent and child threads to store the info.
8102
8103 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
8104
8105         * image.c: explain the #- heap issue in a message, hopefully
8106         avoiding FAQs on mono-list.
8107
8108 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8109
8110         * icall.c:
8111         (GetEntryAssembly): if the domain has not invoked
8112         AppDomain.ExecuteAssembly yet, return the assembly of the default
8113         AppDomain.
8114
8115 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
8116
8117         * class.c (mono_ldtoken): make it work in dynamic assemblies.
8118
8119 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
8120
8121         * metadata.c, reflection.c: simple speedup to type hash
8122         and equals code.
8123
8124 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
8125
8126         * image.c, image.h, class.c, assembly.c: move module loading
8127         to MonoImage. When loading metadata, consider alignemnet from
8128         the start of metadata, not from the metadata address in memory.
8129
8130 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
8131
8132         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
8133         AssemblyBuilder objects. Factored out custom attribute creation into
8134         a separate function.
8135         (create_custom_attr): new function to create custom attributes.
8136
8137 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
8138
8139         * Makefile.am: Got tired of typing the full pathname to pedump.
8140         Until there is another option, am installing this.
8141
8142 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
8143
8144         * class.c (class_compute_field_layout): always set field->parent 
8145         (mono_ldtoken): use mono_defaults.fieldhandle_class;
8146
8147 2003-02-11  Dick Porter  <dick@ximian.com>
8148
8149         * threads-types.h:
8150         * monitor.c: Rewrote Monitor, making lock much faster and
8151         Pulse/Wait work as specified.  Also uses much fewer handles, and only
8152         creates them as needed.
8153
8154         * exception.c: Added SynchronizationLockException
8155
8156         * threads.c: Deleted old Monitor implementation.  The new one is
8157         in a new file.
8158
8159 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
8160
8161         * class.c: handled TypedReference type code. Set the correct size for
8162         class data. Setup interface_offsets for interface classes, too.
8163
8164 2003-02-09  Martin Baulig  <martin@ximian.com>
8165
8166         * debug-mono-symfile.h: Reflect latest symbol writer changes.
8167
8168 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
8169
8170         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
8171         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
8172         * object.c: fixed mono_object_get_virtual_method () for interfaces.
8173         * verify.c: check for code that runs after the end of the method.
8174
8175 2003-02-08  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8176
8177         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
8178         "System.Math::Round2".
8179         * sysmath.h: Added Floor, Round and Round2 definitions.
8180         * sysmath.c: Modified certain functions that were not 100% compliant
8181         with MS.NET (math precision) and added the implementation of Floor,
8182         Round and Round2.
8183
8184 2003-02-07  Martin Baulig  <martin@ximian.com>
8185
8186         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
8187
8188 2003-02-07  Martin Baulig  <martin@ximian.com>
8189
8190         * debug-mono-symfile.c: Reflected latest symwriter changes.
8191         (mono_debug_create_mono_symbol_file): Removed.
8192         (mono_debug_open_mono_symbol_file): Take an argument which
8193         specifies whether to create a dynamic symbol file.
8194
8195 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
8196
8197         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
8198
8199 2003-02-05  Martin Baulig  <martin@ximian.com>
8200
8201         * reflection.c (mono_image_build_metadata): Make this public,
8202         protect it against being called multiple times, don't create
8203         resources and don't build the compressed metadata here.
8204         (mono_image_create_pefile): Do this here.
8205
8206         * icall.c
8207         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
8208
8209 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8210
8211         * socket-io.c: fixed bug #36322.
8212
8213 2003-02-06  Piers Haken <piersh@friskit.com>
8214
8215         * appdomain.[ch]:
8216         * class.h:
8217         * debug-mono-symfile.c:
8218         * icall.c:
8219         * loader.c:
8220         * mono-config.c:
8221         * monosn.c:
8222         * reflection.c:
8223         * socket-io.c: warning cleanups
8224
8225 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
8226
8227         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
8228         function. works like remoting invoke, but does a check for the Proxy first.
8229
8230 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
8231
8232         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
8233
8234 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
8235
8236         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
8237         array of pointers.
8238         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
8239         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
8240
8241         * object.c (mono_store_remote_field_new): used by the new jit
8242         instead of mono_store_remote_field
8243         (mono_load_remote_field_new): used by the new jit
8244         instead of mono_load_remote_field
8245
8246 2003-02-05  Patrik Torstensson
8247
8248         * appdomain.c: changed unload to take the domain id instead
8249         of domain
8250         
8251         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
8252
8253
8254 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8255
8256         * appdomain.c: don't look for assemblies in ApplicationBase if
8257         PrivateBinPathProbe is set.
8258
8259 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8260
8261         * object.c: make the first argument in main_args contain the absolute
8262         path to the assembly. Fixes bug #37511.
8263
8264 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8265
8266         * icall.c: get correct UTC offset for countries not using daylight
8267         time saving. Fixes bug #30030.
8268
8269 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8270
8271         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
8272         and 1 are the family).
8273
8274 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
8275
8276         * icall.c (ves_icall_InternalExecute): removed wrong assertion
8277
8278         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
8279
8280 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
8281
8282         * reflection.c: added support for SignatureHelper tokens, which is
8283         needed by the Calli opcode.
8284
8285         * reflection.h: track changes to SignatureHelper class.
8286
8287         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
8288
8289 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8290
8291         * appdomain.c: fixed loading assemblies from PrivateBinPath.
8292
8293 2003-02-03  Patrik Torstensson
8294         * appdomain.[c|h], domain.c : 
8295          - Added support for getting a domain via domain id
8296          - Support for setting and getting domain from System.AppDomain 
8297            (used in cross appdomain channel)
8298          - Added support for get/set for a MonoAppContext on a thread 
8299            (Context class in System.Runtime.Remoting.Contexts),
8300          - Removed hack in Get/SetData and ExecuteAssembly.
8301         
8302         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
8303         the managed world to get control when a proxy is created.
8304
8305         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
8306         
8307 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
8308
8309         * icall.c
8310         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
8311         Populate the codebase field as well.
8312
8313 2003-02-02  Martin Baulig  <martin@ximian.com>
8314
8315         * debug-mono-symfile.c
8316         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
8317         (mono_debug_symfile_add_method): Allow interncalls.
8318
8319 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8320
8321         * icall.c: throw parse exception if strtod fails or the string is empty.
8322
8323 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
8324
8325         * marshal.c: handle object type separately from defined
8326         class types.
8327
8328 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
8329
8330         * marshal.c: handle NATIVE_LPSTR for strings when it's
8331         explicitly specified.
8332
8333 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
8334
8335         * reflection.c, reflection.h, icall.c: setup the reflection
8336         handle cache for ModuleBuilders and AssemblyBuilders.
8337
8338 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
8339
8340         * reflection.c (reflection_methodbuilder_to_mono_method): set
8341         pinvoke flag
8342
8343 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8344
8345         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
8346
8347 2003-01-29  Dick Porter  <dick@ximian.com>
8348
8349         * threads.c: No need for the fake_thread kludge now that Thread
8350         doesn't run a class constructor
8351         
8352 2003-01-29  Dick Porter  <dick@ximian.com>
8353
8354         * threads.c: Use g_direct_hash instead of the rather bogus
8355         g_int_hash
8356
8357 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
8358
8359         * marshal.c (mono_marshal_get_native_wrapper): add check for null
8360         (fix pinvoke12.exe)
8361         (mono_marshal_get_struct_to_ptr): generate valid IL code
8362         (mono_marshal_get_ptr_to_struct): generate valid IL code
8363         (*): correctly set sig->pinvoke, we need to memdup the signature
8364         to do that
8365
8366 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8367
8368         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
8369         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
8370
8371 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
8372
8373         * profiler.c: provide more callers information.
8374
8375 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
8376
8377         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
8378
8379         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
8380
8381         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
8382
8383 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
8384
8385         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
8386         exception instead of going into an infinite loop on dates which it 
8387         can't yet handle.
8388
8389         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
8390         out-of-range exception if needed.
8391
8392         * class.c (mono_class_setup_vtable): allow a virtual method to provide
8393         an implementation for an interface method and to override an inherited
8394         method at the same time. 
8395         Imagine a scenario when a virtual method is used to override a
8396         virtual abstract method in a parent class, and this same method 
8397         provides an implementation for an method inherited from an interface. 
8398         In this case, the interface resolution code will set im->slot, which 
8399         means that the virtual method override pass will skip this method 
8400         which means a pointer to the abstract method inherited from the parent
8401         will remain in the vtable of this non-abstract class.
8402
8403         * class.c: (mono_class_setup_vtable): continue search for a real 
8404         method if only an abstract method is found.     
8405
8406 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
8407
8408         * reflection.c: add size to encoding for ByValStr and ByValArray
8409         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
8410
8411 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
8412
8413         * class.c (mono_class_setup_vtable): pass the override info as an
8414         argument.
8415
8416         * class.c (mono_class_setup_vtable): set the slot of overriding methods
8417         correctly.
8418         
8419         * reflection.c (ensure_runtime_vtable); add support for method 
8420         overrides.
8421         
8422 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
8423
8424         * reflection.c (resolution_scope_from_image): Hack to work to work with
8425         dynamic assemblies.
8426
8427         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
8428         added a 'force_ref' argument to force this function to allways return 
8429         a TypeRef. This is needed by mono_image_get_memberref_token ().
8430         
8431 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
8432
8433         * reflection.c (mono_image_get_type_info): interfaces really don't have
8434         a parent.
8435
8436         * reflection.c (mono_image_basic_init): fill out missing fields of
8437         image structure.
8438
8439         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
8440         dynamic assemblies. This is required so dynamic assemblies show up in
8441         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
8442         Type::GetType() etc. This is consistent with MS behaviour.
8443
8444         * image.c image.h reflection.c: add newly created classes to the name 
8445         cache so mono_class_get () will find them.      
8446
8447 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
8448
8449         First part of changes to get IKVM.NET running under mono.
8450         
8451         * appdomain.h, appdomain.c: added new function 
8452         mono_domain_try_type_resolve() which will emit TypeResolve events. 
8453         This function will call AppDomain::DoTypeResolve to do the actual work.
8454
8455         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
8456         moved existing code dealing with dynamic tokens to a new function 
8457         called mono_reflection_lookup_dynamic_token (). This function will 
8458         raise TypeResolve events when appropriate. Since reflection.c is not 
8459         part of libmetadata, a new hook function called 
8460         mono_lookup_dynamic_token() is added to class.c which will call this.
8461
8462         * assembly.h assembly.c: make the invoke_load_hook function public,
8463         so it can be called for dynamic assemblies.
8464
8465         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
8466
8467         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
8468         type isn't found.
8469
8470         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
8471         MonoGHashTable, since it contains pointers to objects which the GC 
8472         needs to track.
8473
8474         * assembly.c (search_loaded): remove unused variable.
8475         
8476 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
8477
8478         * object.c: fixed issue exposed by gcc-generated IL programs
8479         that use RVA data for pointers.
8480
8481 2003-01-25  Martin Baulig  <martin@ximian.com>
8482
8483         * threads.c (start_wrapper): Moved the initialization of
8484         `start_func' above the mono_new_thread_init() call to which we
8485         pass it as argument.
8486
8487 2003-01-24  Martin Baulig  <martin@ximian.com>
8488
8489         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
8490         the MonoThread pointer.
8491
8492 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
8493
8494         * icall.c: Rename `PowImpl' to Pow.
8495
8496 2003-01-23  Dick Porter  <dick@ximian.com>
8497
8498         * threads.c (start_wrapper): Create a Thread object if needed, so
8499         the Main() thread can do the class initialisation in a subthread
8500         that has been set up to allow managed code execution.
8501
8502         Pass the thread ID instead of the MonoThread pointer to the thread
8503         start and attach callbacks.  This change is required, because the
8504         jit thread start callback must be called _before_ the Thread
8505         object can be created.
8506         
8507         (mono_thread_init): Removed much object creation code that is no
8508         longer needed.  No managed code is called from here now.
8509
8510         * object.c (mono_runtime_exec_managed_code): Create a subthread
8511         for Main, and call back to the runtime to use it.
8512         Set the exit code when Main exits.
8513
8514         * gc.c: Make sure domain finalisation happens in a subthread.
8515         Re-enable threaded GC, fixing bug 31333 (again).
8516
8517         * environment.c: System.Environment internall calls (so far just
8518         ExitCode is here, the others are still in icall.c)
8519
8520         * appdomain.c (mono_runtime_cleanup): All threads running managed
8521         code should have finished before mono_runtime_cleanup() is
8522         reached, so no need to clean up threads.
8523
8524 2003-01-22  Martin Baulig  <martin@ximian.com>
8525
8526         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
8527         `gpointer func' arguments.      
8528         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
8529         but added `MonoThread *thread' argument.
8530         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
8531
8532         * threads.c (mono_new_thread_init): Added `gpointer func' argument
8533         and pass it to the mono_thread_start_cb callback.
8534         (mono_install_thread_callbacks): New public function to install a
8535         set of callbacks which are set by the debugger.
8536         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
8537
8538 2003-01-22  Martin Baulig  <martin@ximian.com>
8539
8540         * Makefile.am: Install debug-mono-symfile.h.
8541
8542 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
8543
8544         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
8545
8546 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
8547
8548         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
8549         * class.c (mono_ptr_class_get): correctly set access levels of pointers
8550         (mono_array_class_get): correctly set access levels of arrays
8551
8552 2003-01-20      Patrik Torstensson
8553         * image.h (MonoAssemblyName): changed major, minor, build, revision
8554         from signed to unsigned.
8555
8556 2003-01-20  sean kasun <skasun@azstarnet.com>
8557
8558         * reflection.c (load_cattr_value): Now this handles
8559         MONO_TYPE_SZARRAY.  Fixes bug #35629
8560
8561 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
8562
8563         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
8564         integer value
8565
8566 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8567
8568         * decimal.c: fixed bug #26056.
8569
8570 2003-01-17  Martin Baulig  <martin@ximian.com>
8571
8572         * gc.c: Raise an ExecutionEngineException instead of using g_error().
8573
8574 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8575
8576         * exception.[ch]:
8577         (mono_get_exception_type_initialization): new function.
8578
8579         * object.c: throw a TypeInitializationException when an exception is
8580         thrown invoking the class constructor.
8581
8582 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8583
8584         * reflection.c: fixed attribute reading.
8585
8586 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8587
8588         * icall.c:
8589         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
8590         provided, look for the type in the calling assembly and then in
8591         mscorlib; if the assembly name is provided, only try that one.
8592
8593 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
8594
8595         * object.c: register the vtable before there is a chance it's
8596         queried again recursively.
8597
8598 2003-01-13  Duncan Mak  <duncan@ximian.com>
8599
8600         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
8601         gc-internal.h. 
8602         
8603 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
8604
8605         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
8606
8607 2003-01-11  Martin Baulig  <martin@ximian.com>
8608
8609         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
8610         this to 20 for the release.
8611
8612 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
8613
8614         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
8615
8616         * loader.c (mono_method_get_marshal_info): bug fix
8617
8618         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
8619         structures with explicit layout
8620
8621 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
8622
8623         * profiler.c: made the output more readable (and sorted). 
8624         Added caller information for the allocation profiler.
8625
8626 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
8627
8628         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
8629
8630 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8631
8632         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
8633         to get value types.
8634         
8635 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
8636
8637         * object.c, profiler.h, profiler.c, profiler-private.h:
8638         Added object allocation profiler.
8639
8640 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
8641
8642         * reflection.h, reflection.c: handle global methods.
8643         Compress blob entries.
8644
8645 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
8646
8647         * marshal.c: fix compilation.
8648
8649 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
8650
8651         * loader.c (mono_method_get_marshal_info): impl.
8652
8653         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
8654
8655 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8656
8657         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
8658         for reference types.
8659
8660 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
8661
8662         * loader.c: fixed off by one error in loaded parameter names.
8663
8664 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
8665
8666         * marshal.c (mono_marshal_get_icall_wrapper): like
8667         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
8668         instead of a MonoMethod.
8669
8670 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8671
8672         * decimal.c: fixed bug #36537.
8673
8674 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
8675
8676         * marshal.c: throw a missing method exception if a
8677         P/Invoke method is not found.
8678
8679 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
8680
8681         * icall.c: allow a null this for constructors.
8682
8683 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
8684
8685         * icall.c: raise the proper exceptions if the arguments to the
8686         internal Invoke are incorrect.
8687
8688 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
8689
8690         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
8691
8692 2003-01-03  Martin Baulig  <martin@ximian.com>
8693
8694         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
8695
8696 2002-12-31  Martin Baulig  <martin@ximian.com>
8697
8698         * debug-mono-symfile.c: Completely rewrote the type section.
8699         Instead of using individual malloc()ed fields, we use one big
8700         continuous memory area and offsets into this area.
8701         See the comments in the source code for details.
8702
8703 2002-12-30  Martin Baulig  <martin@ximian.com>
8704
8705         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
8706
8707 2002-12-30  Martin Baulig  <martin@ximian.com>
8708
8709         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
8710         line number table in this data blob instead of using an external
8711         pointer.
8712
8713 2002-12-28  Martin Baulig  <martin@ximian.com>
8714
8715         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
8716
8717 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
8718
8719         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
8720         as a boxed return type.
8721
8722 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
8723
8724         * appdomain.c
8725         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
8726         g_build_filename to properly get separators on the filename created.
8727
8728         * object.h: Small change, introduce MonoMarshalByRefObject to
8729         track the layout of that structure in the C# universe as we make
8730         changes there.
8731
8732 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
8733
8734         * object.c: removed assert to allow static fields on interfaces.
8735         * loader.c: a TypeSpec may be used for any type, not just arrays.
8736
8737 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
8738
8739         * class.c, class.h: added mono_class_array_element_size ().
8740         Ignore static methods in interfaces.
8741
8742 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8743
8744         * threads.c: fixed the build under cygwin.
8745
8746 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
8747
8748         * reflection.c: handle nullref constants. Allocate keys for
8749         reflection handles with the GC.
8750
8751 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
8752
8753         * threads.c, threads.h: added mono_thread_get_abort_signal()
8754         to get a suitable signal for thread abort.
8755
8756 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
8757
8758         * metadata.c: fix handling of ExportedType table.
8759
8760 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8761
8762         * icall.c: added WriteWindowsDebugString internal call.
8763
8764 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8765
8766         * reflection.h: added fields to match C# implementation.
8767
8768 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8769
8770         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
8771
8772 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
8773
8774         * gc.h, gc-internal.h: Rename header for GC internal calls to
8775         gc-internal.h from gc.h as to not clash with Boehm GC having its
8776         header installed as <gc.h> in outside include paths.
8777         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
8778         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
8779
8780 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8781
8782         * icall.c: assign minor, build and revision in FillName.
8783
8784 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
8785
8786         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
8787         Added support for running code generated by Reflection.Emit.
8788
8789 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8790
8791         * appdomain.c: check for NULL argument in LoadFrom.
8792
8793 2002-12-10  Dick Porter  <dick@ximian.com>
8794
8795         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
8796
8797 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8798
8799         * appdomain.c: fix buglet when building exe file name.  Handle full
8800         assembly name (needed after latest changes to AssemblyName).
8801         * image.c:
8802         (mono_image_close): free some hashtables.
8803
8804 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
8805
8806         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
8807         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
8808         on some systems (redhat 7.3) 
8809
8810 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
8811
8812         * threads.c: delete the critical section of a sync block,
8813         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
8814
8815 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
8816
8817         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
8818
8819 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8820
8821         * appdomain.[ch]: handle the assembly preload event to try loading the
8822         assemblies using the paths we have in the current domain.
8823
8824         * assembly.[ch]: created an assembly preload hook that is called to try
8825         loading the assembly by other means that the ones provided here.
8826
8827         * domain.c: initialize the domain search path.
8828
8829         From now on, assemblies (TODO: except corlib and System) are loaded
8830         according to these rules when using mono_assembly_load ():
8831
8832                 1. It tries to load the assembly from the ApplicationBase
8833                 of the current domain appending .dll and .exe (TODO: have to
8834                 try loading from name/name.dll and name/name.exe).
8835
8836                 2. It tries the search path specified in PrivateBinPath for the
8837                 current domain (if any).
8838
8839                 3. Previous behavior.
8840
8841 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
8842
8843         * icall.c: implemented GetInterfaceMap() related icall.
8844         * domain.c, loader.h: load MethodInfo in mono_defaults.
8845
8846 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
8847
8848         * gc.c: disable the finalizer thread for now, untill all the issues
8849         with it are resolved.
8850
8851 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
8852
8853         * string-icalls.c: handle embedded nulls in string ctor when the
8854         length is specified.
8855
8856 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
8857
8858         * class.c: look for explicit interface implementation in parent
8859         classes, too.
8860
8861 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
8862
8863         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
8864
8865 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
8866
8867         * gc.c: protect handles with a critical section.
8868
8869 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8870
8871         * icall.c:
8872         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
8873         parameters. If no assembly specified, try getting the type from all
8874         the assemblies in the current domain, else, load the assembly and get
8875         the type from it.
8876
8877 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8878
8879         * marshal.c: applied patch from Aleksey Demakov that fixes
8880         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
8881
8882 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8883
8884         * icall.c: fixed get_location.
8885
8886 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
8887
8888         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
8889         declarations to make it work with older gcc. 
8890
8891         * loader.c (mono_get_method): set signature->pinvoke for native calls
8892
8893 2002-11-20  Dick Porter  <dick@ximian.com>
8894
8895         * threads.c (mono_thread_init): Set the main thread's handle
8896
8897 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
8898
8899         * gc.c: allow compilation without GC support. Changed to match the
8900         mono coding style.
8901
8902 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
8903
8904         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
8905
8906 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
8907
8908         * reflection.c: set a public key token on the core assemblies.
8909
8910 2002-11-18  Dick Porter  <dick@ximian.com>
8911
8912         * threads.c: Split out some thread initialisation so that other
8913         files can set the start callback function.
8914
8915         * gc.c: Run finalisers in a separate thread, to avoid stack
8916         overflow.  Fixes bug 31333.
8917
8918         * appdomain.c: Set up GC finalisation thread.
8919
8920         * reflection.c: 
8921         * object.c: 
8922         * domain.c: Use gc.h macros for GC_malloc
8923         
8924 2002-11-15  Dick Porter  <dick@ximian.com>
8925
8926         * threadpool.c: 
8927         * threads.c:
8928         * appdomain.c: Removed mono_runtime_init_with_attach(),
8929         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
8930         merging the extra parameter with the existing function.  Removed
8931         unneeded code in mono_thread_attach().
8932
8933 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
8934
8935         * image.c (mono_image_loaded_by_guid): a method to get loaded
8936         images by guid. 
8937         (load_metadata_ptrs): we store the guid as string.
8938
8939 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
8940
8941         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
8942
8943         * metadata.c (mono_guid_to_string): imported method form Zoltan
8944         Varga (slightly modified)
8945
8946         * assembly.c (mono_assembly_open): load precompiled code
8947
8948         * loader.h (MonoMethod): we store the method token for use in the
8949         aot compiler. 
8950
8951 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8952
8953         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
8954         the hook function called when an assembly is loaded.
8955         
8956         * domain.c: Modified file.
8957         (mono_domain_assembly_load): removed hash table insertion of assemblies.
8958
8959         Fixes bug #33196.
8960
8961 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
8962
8963         * reflection.c: Map PEFileKind to the value expected by the WinNT
8964         image loader. 
8965
8966 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8967
8968         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
8969         Read until the buffer is filled completely.
8970
8971 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8972
8973         * icall.c: implemented MonoType.InternalGetEvent ().
8974
8975 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8976
8977         * appdomain.c: implemented InitAppDomainSetup. Delayed
8978         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
8979         the entry_assembly.
8980
8981         * assembly.c: base_dir is now an absolute path ending with
8982         G_DIR_SEPARATOR.
8983
8984         * icall.c: modified get_location according to the above changes.
8985
8986         * object.c: init AppDomain.SetupInformation for the default domain after
8987         we have the entry assembly.
8988
8989         * domain.c: when unloading a domain, setup = NULL.
8990
8991 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
8992
8993         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
8994
8995 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
8996
8997         * object.h, object.c: introduced mono_object_get_virtual_method ()
8998         to lookup the method invoked on an object when a callvirt is done on
8999         a method.
9000         * icall.c: make MethodInfo::Invoke() always do a virtual call.
9001
9002 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9003
9004         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
9005         current domain when loaded an assembly and failed to load it.
9006
9007         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
9008
9009 2002-10-31  Dick Porter  <dick@ximian.com>
9010
9011         * icall.c: 
9012         * file-io.h: 
9013         * file-io.c: Return the error status in a parameter, as the
9014         GetLastError() value has long since been blown away if we try and
9015         look it up in a subsequent internal call invocation.  Delete the
9016         GetLastError() internal call, because it's useless.
9017
9018 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
9019
9020         * class.[ch]: added cast_class to fix bug 29517
9021
9022 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
9023
9024         * marshal.c: create valid IL code in the filter clause:
9025         the new JIT is less forgiving:-)
9026
9027 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9028
9029         * icall.c: removed get_property internal call.
9030
9031 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
9032
9033         * appdomain.h domain.c: Added an ID to appdomains.
9034         
9035         * threads.c threads.h icall.c: Implement icall
9036         Thread:GetDomainID(), and remove unused icall 
9037         CurrentThreadDomain_internal.
9038
9039 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9040
9041         * icall.c: Don't recurse through the base types in GetConstructor.
9042         Fixes bug #32063. 
9043
9044 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
9045
9046         * mempool.h, mempool.c: added mono_mempool_empty() and
9047         mono_mempool_stats().
9048
9049 2002-10-23  Dick Porter  <dick@ximian.com>
9050
9051         * file-io.c: 
9052         * file-io.h: 
9053         * icall.c: Added MonoIO.GetFileType internal call
9054
9055 2002-10-17  Dick Porter  <dick@ximian.com>
9056
9057         * appdomain.c (mono_runtime_cleanup): Don't signal the async
9058         delegate semaphore before waiting for all threads to finish,
9059         because new threads can also call async delegates.  Fixes bug
9060         32004.
9061
9062         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
9063         of 3 seconds, in case another async job is queued.  (This part is
9064         needed because the bug fix reintroduced the 3s exit lag.)  This
9065         makes the mono_runtime_shutdown flag superfluous.
9066
9067 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
9068
9069         * reflection.c: include ehader size in method section headers.
9070         Really check for suplicated modules entries.
9071
9072 2002-10-17  Martin Baulig  <martin@gnome.org>
9073
9074         * debug-mono-symfile.c: Added back support for locals.
9075
9076 2002-10-14  Martin Baulig  <martin@gnome.org>
9077
9078         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
9079         MONO_TYPE_VOID.
9080
9081 2002-10-14  Martin Baulig  <martin@gnome.org>
9082
9083         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
9084         mono_class_get() instead of looking in the class cache. 
9085
9086 2002-10-13  Martin Baulig  <martin@gnome.org>
9087
9088         * debug-mono-symfile.c: Set version number to 28, include the
9089         signature in method names.
9090
9091 2002-10-13  Martin Baulig  <martin@gnome.org>
9092
9093         * debug-mono-symfile.h: Set version number to 27.
9094
9095 2002-10-11  Martin Baulig  <martin@gnome.org>
9096
9097         * gc.c: Don't register/unregister NULL pointers as disappearing links.
9098
9099 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
9100
9101         * metadata.c, metadata.h: added helper function to allocate signatures.
9102
9103 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9104
9105         * icall.c: added internal call to get the location of machine.config.
9106
9107 2002-10-08  Martin Baulig  <martin@gnome.org>
9108
9109         * debug-mono-symfile.c: Ignore classes with a pending init for the
9110         moment.
9111
9112 2002-10-03  Dick Porter  <dick@ximian.com>
9113
9114         * threads.c: Freebsd pthread_t is a pointer
9115
9116 2002-10-03  Dick Porter  <dick@ximian.com>
9117
9118         * socket-io.c: Implemented GetHostName_internal
9119
9120 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9121
9122         * mono-config.c:
9123         (mono_config_parse_file): don't leak the text.
9124
9125 2002-10-02  Martin Baulig  <martin@gnome.org>
9126
9127         * debug-mono-symfile.c: Added support for methods.
9128
9129 2002-10-01  Martin Baulig  <martin@gnome.org>
9130
9131         * debug-mono-symfile.c: Don't emit methods and line numbers for
9132         the dynamic symbol file, just write the type table.  We can easily
9133         have an external helper program which creates a symbol file for an
9134         IL file.        
9135
9136 2002-10-01  Dick Porter  <dick@ximian.com>
9137
9138         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
9139         Only add the handle to the cleanup array when we're about to
9140         launch the thread.  Bug 31425 deadlocked when the test was run on
9141         mono under w32.
9142
9143 2002-10-01  Martin Baulig  <martin@gnome.org>
9144
9145         * debug-mono-symfile.c: Added support for properties.
9146
9147 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
9148
9149         * reflection.c: unaligned store fix from Mark Crichton
9150         <crichton@gimp.org>.
9151
9152 2002-09-27  Martin Baulig  <martin@gnome.org>
9153
9154         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
9155         New interncall.
9156
9157 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
9158
9159         * assembly.h, assembly.c: use a sane API to hook into the assembly
9160         loading process instead of a useless special-purpouse hack
9161         (ngen needs a hook, too, for example).
9162
9163 2002-09-27  Dick Porter  <dick@ximian.com>
9164
9165         * threads.c (mono_thread_init): Call GetCurrentProcess() so
9166         io-layer can set up some process handle info.  Not needed on w32,
9167         but doesn't hurt either.
9168
9169         * process.c: Pass the program name in the second parameter to
9170         CreateProcess, so the path is searched.  Include the working
9171         directory. Implemented process name, process enumeration, and some
9172         process detail internal calls.
9173         
9174         * icall.c: Added internal calls for process lookup, and some
9175         process details
9176
9177 2002-09-26  Martin Baulig  <martin@gnome.org>
9178
9179         * assembly.c (mono_install_open_assembly_hook): New global
9180         function to install a function to be invoked each time a new
9181         assembly is loaded.
9182         (mono_assembly_open): Run this callback function if set.
9183
9184         * debug-mono-symfile.c: Put back line numbers for the dynamic
9185         symbol file and also record the .il file as source file.  This
9186         allows us to install the temporary symbol file as `file.dbg' just
9187         like a compiler-generated one.
9188
9189 2002-09-26  Nick Zigarovich <nick@chemlab.org>
9190
9191         * Corrected typo in gc.c (BOHEM vs BOEHM).
9192
9193 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9194
9195         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
9196         GetProperties. Also avoid calling g_slist_length in GetProperties and
9197         GetMethods.
9198
9199 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
9200
9201         * reflection.c: avoid unaligned stores (bug spotted by
9202         Mark Crichton  <crichton@gimp.org>).
9203
9204 2002-09-25  Martin Baulig  <martin@gnome.org>
9205
9206         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
9207         instead of guint64 for addresses and added prologue/epilogue info.
9208
9209 2002-09-25  Martin Baulig  <martin@gnome.org>
9210
9211         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
9212         store line number info.  For the dynamic symbol file, we only need
9213         to provide the JIT generated dynamic line number info for the dynamic
9214         symbol file.
9215
9216 2002-09-25  Martin Baulig  <martin@gnome.org>
9217
9218         * debug-mono-symfile.h: Incremented version number.
9219
9220 2002-09-24  Martin Baulig  <martin@gnome.org>
9221
9222         * class.c (mono_debugger_class_init_func): New global function
9223         pointer variable.
9224         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
9225         call it.
9226
9227         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
9228         function.  This is called via the mono_debugger_class_init_func
9229         hook to add all types to the dynamic type table.
9230         (ves_icall_MonoDebugger_GetType): New interncall to get a class
9231         from its metadata token.
9232
9233         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
9234         New interncall for the debugger.
9235
9236 2002-09-24  Nick Drochak <ndrochak@gol.com>
9237
9238         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
9239         before using it in case it is null.
9240         
9241 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9242
9243         * metadata.c: allow custom modifiers in local var signatures
9244         (bug spotted by Zoltan Varga).
9245
9246 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
9247
9248         * class.c: deal with the <Module> class that may have a NULL vtable.
9249         Eliminate warnings.
9250
9251 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
9252
9253         * image.c, image.h: more strong name helpers.
9254         * monosn.c: more work: convert pem keys to cryptoapi format.
9255
9256 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
9257
9258         * string-icalls.c: speedup IndexOf.
9259
9260 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
9261
9262         * icall.c: updates from Zoltan.2.Varga@nokia.com.
9263
9264 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
9265
9266         * icall.c: cleanup: use mono_object_domain ().
9267
9268 2002-09-23  Martin Baulig  <martin@gnome.org>
9269
9270         * debug-mono-symfile.c: Improved type support.
9271
9272 2002-09-22  Martin Baulig  <martin@gnome.org>
9273
9274         * debug-mono-symfile.c: Added support for reference types and strings.
9275
9276 2002-09-22  Martin Baulig  <martin@gnome.org>
9277
9278         * debug-mono-symfile.c: Started to work on the type table.
9279
9280 2002-09-21  Martin Baulig  <martin@gnome.org>
9281
9282         * debug-mono-symfile.c: Largely reworked the symbol table format.
9283         The symbol table is now incrementally updated each time a new
9284         method is added.  We're now also using our own magic and version
9285         so that you don't need to recompile all your classes if the
9286         dynamic table changes.
9287         (mono_debug_update_mono_symbol_file): Removed.
9288         (mono_debug_symfile_add_method): New function to add a method.
9289
9290 2002-09-21  Martin Baulig  <martin@gnome.org>
9291
9292         * icall.c
9293         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
9294         New interncall.
9295
9296         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
9297         New interncall to get a method from its metadata token.
9298
9299 2002-09-21  Martin Baulig  <martin@gnome.org>
9300
9301         * debug-mono-symfile.c: Create type table.
9302
9303 2002-09-20  Martin Baulig  <martin@gnome.org>
9304
9305         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
9306
9307 2002-09-20  Martin Baulig  <martin@gnome.org>
9308
9309         * debug-mono-symfile.c: Provide information about params and locals.
9310
9311 2002-09-20  Martin Baulig  <martin@gnome.org>
9312
9313         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
9314         New interncall.
9315
9316         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
9317         interncall to get a method from its metadata token.
9318
9319 2002-09-20  Martin Baulig  <martin@gnome.org>
9320
9321         * debug-mono-symfile.c: Added a few checks for method->header
9322         being non-NULL.  This should never happen, but for the moment
9323         let's use a g_warning() rather than a g_assert().
9324
9325 2002-09-19  Mark Crichton  <crichton@gimp.org>
9326
9327         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
9328         even if support for it isn't present.  Added an #ifdef to fix this.
9329
9330         * socket-io.c: Added checks back for Solaris support.
9331
9332 2002-09-19  Martin Baulig  <martin@gnome.org>
9333
9334         * debug-mono-symfile.c (read_string, write_string): Reflect latest
9335         changes in the symbol file format.
9336
9337 2002-09-18  Martin Baulig  <martin@gnome.org>
9338
9339         * debug-mono-symfile.c: Set version number to 21.
9340
9341 2002-09-18  Dick Porter  <dick@ximian.com>
9342
9343         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
9344         on netbsd.  Fixes bug 30051.
9345
9346 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9347
9348         * reflection.c:
9349         (set_version_from_string): little fix.
9350
9351 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
9352
9353         * monosn.c, Makefile.am: added strong name utility.
9354         * reflection.h, reflection.c: implemented delayed signing,
9355         locale, version and hash id assembly attributes.
9356
9357 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
9358
9359         * loader.c, metadata.c: load param attributes in signatures.
9360
9361 2002-09-16  Martin Baulig  <martin@gnome.org>
9362
9363         * debug-mono-symfile.c: Added string table with all method names.
9364
9365 2002-09-14  Martin Baulig  <martin@gnome.org>
9366
9367         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
9368         fast method lookup.
9369
9370 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
9371
9372         * reflection.c: record the public key token of referenced assemblies.
9373
9374 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
9375
9376         * image.c, image.h: added functions to get the strong name and the
9377         public key of an assembly.
9378         * pedump.c: use them.
9379
9380 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
9381
9382         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
9383
9384 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
9385
9386         * marshal.c (mono_marshal_get_managed_wrapper): Added
9387         MONO_TYPE_BOOLEAN 
9388
9389 2002-09-11  Martin Baulig  <martin@gnome.org>
9390
9391         * gc.c: Call GC_unregister_disappearing_link() on all links when
9392         finalizing them, this is necessary to aviod a crash in boehm's
9393         finalize handler.
9394
9395 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
9396
9397         * gc.c: handle GetTarget for finalized objects spotted and fixed by
9398         nick@chemlab.org.
9399
9400 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
9401
9402         * icall.c: implemented MonoType::Module.
9403         * reflection.c, reflection.h: mono_module_get_object () from
9404         Tomi Pakarinen <tomi.pakarinen@welho.com>.
9405
9406 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
9407
9408         * icall.c: ignore overridden methods in GetMethods ().
9409         Fix for FieldInfo::SetValue().
9410         * object.c: handle float/double in runtime invoke.
9411
9412 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
9413
9414         * object.c: allow a constructor to be called again on an object.
9415
9416 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
9417
9418         * class.h, class.c: move field layout code to it's own function and
9419         export it. Get an interface id earlier. Move fields in MonoClass
9420         so they are more cache friendly and align the bitfields.
9421         * loader.c: temporary handle get_param_names() for a runtime method.
9422         * reflection.c, reflection.h: more code to handle runtime creation of
9423         types.
9424
9425 2002-09-09  Martin Baulig  <martin@gnome.org>
9426
9427         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
9428         signature with the pinvoke field being set for the actual call.
9429
9430 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
9431
9432         * icall.c: removed some unused icalls. Start of map of glib charsets
9433         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
9434
9435 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
9436
9437         * debug-helpers.c: break infinite loop (found and fixed by
9438         Holger Arnold <harnold@gmx.de>).
9439
9440 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
9441
9442         * icall.c: target may be null in create_delegate.
9443
9444 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
9445
9446         * marshal.c: handle a boolean return type.
9447
9448 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
9449
9450         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
9451
9452 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
9453
9454         * gc.c: fix weakreferences.
9455
9456 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
9457
9458         * icall.c: added icall to get default codepage.
9459
9460 2002-09-03  Dick Porter  <dick@ximian.com>
9461
9462         * threads.h: 
9463         * threads.c: Use MonoThread instead of MonoObject where
9464         apropriate.
9465
9466         Store running thread objects in a hash table, so that we have all
9467         the info to hand when waiting for them to finish
9468         (means we don't need OpenThread() any more, so mingw builds should
9469         be fully functional again.)
9470
9471         * verify.c:
9472         * object.h: Added thread ID to MonoThread
9473
9474 2002-09-03  Martin Baulig  <martin@gnome.org>
9475
9476         * icall.c (System.Reflection.Assembly::get_location): New interncall.
9477
9478 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9479
9480         * icall.c: fixed leak in get_temp_path. Thanks lupus.
9481
9482 2002-09-03  Martin Baulig  <martin@gnome.org>
9483
9484         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
9485         argument to store the end address of the disassembled instruction.
9486
9487         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
9488         here from debug-symfile.h.
9489         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
9490         JIT into this struct.
9491         (MonoSymbolFile): Added `char *image_file' field.
9492         (MonoDebugGetMethodFunc): Removed.
9493         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
9494         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
9495         (mono_debug_find_method): New method.
9496
9497         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
9498         create a full symbol file.
9499         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
9500         and static symbol files.
9501         (mono_debug_find_method): The symbol file keeps an internal method hash,
9502         call this to get a MonoDebugMethodInfo from a MonoMethod.
9503
9504         * debug-symfile.[ch]: Removed.
9505
9506 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
9507
9508         * image.c (do_mono_image_open): Remove linker version check.
9509
9510 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
9511
9512         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
9513         wrappers for instance methods.
9514         
9515 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9516
9517         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
9518
9519 2002-08-28  Dick Porter  <dick@ximian.com>
9520
9521         * Makefile.am: Export HOST_CC for w32 builds
9522
9523 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
9524
9525         * file-io.c process.c: MonoString are null terminated, no
9526         need for mono_string_to_utf16() anymore.
9527
9528 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
9529
9530         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
9531
9532 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
9533
9534         * icall.c, reflection.h: speedup System.MonoType.
9535
9536 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
9537
9538         * reflection.c: allow null as the value of a string argument in
9539         custom attributes constructors.
9540
9541 2002-08-27  Martin Baulig  <martin@gnome.org>
9542
9543         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
9544         `trampoline_address' field.
9545
9546 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
9547
9548         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
9549         check (fixes bug #29486) 
9550
9551 2002-08-27  Martin Baulig  <martin@gnome.org>
9552
9553         * debug-mono-symfile.c: Changed the file format in a way that allows us
9554         open it read-only and to use a specially malloced area for all the
9555         dynamic data.  We can now also generate a symbol file on-the-fly if we're
9556         debugging IL code and there is no MCS generated symbol file for it.
9557
9558 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
9559
9560         * object.c: added a define for a good string and array
9561         creation speedup (not enabled by default because we need to deal with
9562         the synch stuff).
9563
9564 2002-08-26  Martin Baulig  <martin@gnome.org>
9565
9566         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
9567         function to create a dynamic symbol file.  This is used by the
9568         debugger to create a symbol file for IL code on-the-fly.
9569
9570 2002-08-26  Martin Baulig  <martin@gnome.org>
9571
9572         * loader.c (mono_lookup_pinvoke_call): Include the error message
9573         from g_module_error() in the error message.
9574
9575 2002-08-24  Martin Baulig  <martin@gnome.org>
9576
9577         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
9578         function to update the symbol file.  The symbol file is mmap()ed
9579         writable, but private.  This allows us to install the symbol file
9580         together with the assembly.
9581
9582 2002-08-24  Martin Baulig  <martin@gnome.org>
9583
9584         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
9585         but they can read the new symbol file format which mcs is now creating.
9586
9587         * debug-symfile.c (mono_debug_find_source_location): Moved to
9588         debug-mono-symfile.c; this is now operating on the new symbol file.
9589
9590 2002-08-23  Martin Baulig  <martin@gnome.org>
9591
9592         * debug-helpers.c (mono_method_desc_from_method): New function to get
9593         a MonoMethodDesc from a MonoMethod.
9594
9595 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
9596
9597         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
9598         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
9599
9600 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
9601
9602         * string-icalls.[ch]: make helper methods static.
9603
9604 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9605
9606         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
9607         types to it and to SetValueInternal.
9608
9609         * object.c: Moved handle_enum label to its proper place. This was the
9610         f... bug! ;-)
9611
9612         This time i compiled mcs and gtk-sharp and they both work.
9613
9614 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9615
9616         * icall.c: reverted partially my previous patch until 
9617         object.c:set_value handles enums correcly.
9618
9619 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9620
9621         * icall.c:
9622         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
9623         (ves_icall_System_Environment_get_MachineName): removed warning when
9624         compiling under cygwin.
9625
9626 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
9627
9628         * object.c: fixed field_get_value() for reference types.
9629
9630 2002-08-22  Dick Porter  <dick@ximian.com>
9631
9632         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
9633         Don't free a buffer while it's still needed.  Patch from Jonathan
9634         Liger <Jonathan.liger@wanadoo.fr>
9635
9636 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
9637
9638         * icall.c (ves_icall_System_Environment_get_Platform): Add new
9639         internal call.
9640
9641 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
9642
9643         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
9644         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
9645
9646         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
9647         we call unmanaged code which throws exceptions.
9648
9649 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
9650
9651         * appdomain.h: added per-domain entry_assembly.
9652         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
9653         arguments.
9654         * icall.c: Assembly::GetEntryAssembly icall.
9655         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
9656         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
9657
9658 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
9659
9660         * appdomain.h, gc.c: added mono_domain_finalize ().
9661
9662 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9663
9664         * object.c:
9665         (mono_print_unhandled_exception): changed g_warning by g_printerr
9666         because g_log has a 1024 characters limit (yeah, i got a big stack
9667         trace). Don't print exception name, that should be in ToString 
9668         returned string.
9669
9670 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9671
9672         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
9673         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
9674
9675 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9676
9677         * object.c:
9678         (mono_print_unhandled_exception): after previous commit, i realized
9679         that MS calls ToString on the exception. I changed this function to
9680         do that. This way we get stack_trace for free.
9681
9682 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9683
9684         * object.c:
9685         (mono_print_unhandled_exception): invoke Message property instead of
9686         getting 'message' field from Exception. Don't allocate memory for
9687         'trace' and 'message' if not needed.
9688
9689 2002-08-18  Dick Porter  <dick@ximian.com>
9690
9691         * unicode.c: Fix asserts to match Encoder.cs checks
9692
9693 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9694
9695         * marshal.c: fix unaligned store issue and a few wrong
9696         opcode argument types.
9697
9698 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9699
9700         * icall.c: added GetUninitializedObjectInternal internal call.
9701
9702 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
9703
9704         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
9705         to the right domain.
9706
9707 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
9708
9709         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
9710
9711         * class.c (class_compute_field_layout): set blittable to false for Strings
9712
9713         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
9714
9715 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
9716
9717         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
9718         first chunk of code to create types at runtime. Code to
9719         handle ReflectedType/DeclaringType. Make reflection handles
9720         domain specific.
9721
9722 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
9723
9724         * class.c: set correct name in arrays.
9725
9726 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
9727
9728         * appdomain.c (mono_domain_transfer_object): make it work with
9729         valuetypes. bug fixes.
9730
9731 2002-08-12  Dick Porter  <dick@ximian.com>
9732
9733         * object.h: Rename some parameters to avoid c++ keywords (Patch
9734         from Joseph Wenninger <kde@jowenn.at>)
9735
9736 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
9737
9738         * icall.c: added icall to implement Assembly.GetFile*.
9739
9740 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
9741
9742         * reflection.h, reflection.c: code to embed managed resources.
9743
9744 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
9745
9746         * class.c: move all the type size stuff into
9747         class_compute_field_layout().
9748
9749 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
9750
9751         * class.c: ensure enums have always the correct instance size.
9752         * unicode.c: remove wrong assert.
9753
9754 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
9755
9756         * assembly.c: fix mem corruption issue.
9757         * image.h, image.c: added mono_image_get_resource () to access
9758         managed resources.
9759         * icall.c: implemented Assembly.EntryPoint property and some
9760         Managed Resources related internalcalls.
9761
9762
9763 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
9764
9765         * image.c, image.h: impemented mono_image_get_entry_point ().
9766         * appdomain.c: use mono_image_get_entry_point.
9767
9768 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
9769
9770         * reflection.c: support the object type argument when loading
9771         custom attributes.
9772
9773 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
9774
9775         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
9776         String as return type.
9777
9778 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
9779
9780         * reflection.c: fix encoding of named args for custom attrs to match
9781         the ms implementation. Read them back when instantiating custom
9782         attributes.
9783
9784 2002-08-02  Radek Doulik  <rodo@ximian.com>
9785
9786         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
9787         by Dietmar as quick fix
9788         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
9789         16 as stack size, used on more places as quick fix before Dietmar
9790         will fix it properly
9791
9792 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
9793
9794         * object.h, object.c: added accessors for fields and properties.
9795
9796 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
9797
9798         * class.c, class.h: made mono_class_get_field_from_name ()
9799         loop on parent types.
9800         Added mono_class_get_property_from_name ().
9801
9802 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
9803
9804         * class.c, class.h: move the code to setup the type vtable in its own
9805         function so that it can be reused also for types created at runtime.
9806         Eliminate the "class" identifier from the header file.
9807         * reflection.c: setup the vtable for enums so that we can create
9808         objects for use in SetConstant ().
9809
9810 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
9811
9812         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
9813         instead of the delegate itself as this pointer (bug #28383)
9814
9815 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
9816
9817         * marshal.c (mono_marshal_get_managed_wrapper): added return type
9818         conversions.
9819
9820 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9821
9822         * loader.c: don't set the pinvoke bit on icalls.
9823
9824 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
9825
9826         * debug-helpers.c (mono_method_full_name): only print a number to
9827         indicate wrapper type (so that the output is more readable in traces).
9828
9829 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
9830
9831         * class.c (mono_class_init): include method override patch from Paolo
9832
9833 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
9834
9835         * icall.c: fixed GetTypeCode().
9836
9837 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
9838
9839         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
9840         use real delegate invoke function to make it work with multicast
9841         delegates (fix bug# 28291).
9842
9843 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
9844
9845         * object.c: load constant strings.
9846
9847 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9848
9849         * reflection.c: no magic numbers.
9850         * tabledefs.h: security action enum.
9851
9852 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
9853
9854         * assembly.c: fix possible memory corruption.
9855
9856 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
9857
9858         * reflection.h, reflection.c: added support for linking resources.
9859         * verify.c: check we have an updated corlib.
9860
9861 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
9862
9863         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
9864         string arrays.
9865         (mono_marshal_string_array): null terminate unmanaged string arrays.
9866         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
9867
9868 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9869
9870         * icall.c: Type.GetType () can now return also types from the
9871         calling assembly.
9872
9873 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
9874
9875         * loader.h, loader.c: stack walking support.
9876         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
9877         GetCallingAssembly.
9878
9879 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
9880
9881         * marshal.c: added optimisations for blittable types 
9882
9883         * class.c (mono_array_class_get): do not set blittable attribute on arrays
9884         (mono_class_setup_mono_type): set blittable attribute for single
9885         and double.
9886
9887         * marshal.c (mono_string_utf8_to_builder): impl.
9888         (mono_string_builder_to_utf8): impl.
9889         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
9890
9891 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
9892
9893         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
9894         (mono_marshal_get_managed_wrapper): impl. byref types
9895
9896 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9897
9898         * icall.c:
9899         (search_method): don't display debug message. 
9900
9901 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
9902
9903         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
9904
9905 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
9906
9907         * appdomain.c: set the missing filename when throwing exception.
9908
9909 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
9910
9911         * metadata.c (mono_type_size): code cleanup
9912         (mono_type_stack_size): removed some test code
9913
9914 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
9915
9916         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
9917         mono_get_exception_file_not_found now.
9918
9919         * exception.c (mono_exception_from_name_two_strings): New version
9920         that will call a constructor with two string arguments. 
9921         (mono_get_exception_file_not_found): New helper routine, used to
9922         report file-not-found errors.
9923
9924 2002-07-20  Dick Porter  <dick@ximian.com>
9925
9926         * process.h:
9927         * process.c: Pass file handles to CreateProcess
9928         
9929         * icall.c:
9930         * file-io.h:
9931         * file-io.c: Implemented CreatePipe
9932
9933 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
9934
9935         * metadata.c (mono_get_param_info): set alignment for value types
9936
9937 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
9938
9939         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
9940         Constify mono_domain_assembly_open().
9941         * loader.c: handle null namespace in icalls.
9942
9943 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
9944
9945         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
9946         (emit_str_to_ptr_conv): marshal object as structs
9947
9948         * metadata.c (mono_type_to_unmanaged): marshal object as structs
9949
9950         * marshal.c (mono_marshal_get_runtime_invoke): support value types
9951
9952 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
9953
9954         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
9955         (mono_marshal_get_native_wrapper): we an now return value types
9956
9957 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9958
9959         * verify.c: more checks implemented.
9960
9961 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
9962
9963         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
9964         (fix bug #27695)
9965         (mono_marshal_get_native_wrapper): allow byref arguments
9966         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
9967         impl. PtrToStringXXX methods
9968         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
9969         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
9970         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
9971         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
9972         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
9973
9974 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9975
9976         * reflection.c: fix buglet in parsing an assembly name.
9977
9978 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
9979
9980         * marshal.c (emit_ptr_to_str_conv): first impl.
9981
9982 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
9983
9984         * object.c, class.h: cache the vtable in the class as suggested by
9985         vargaz@freemail.hu (Zoltan Varga).
9986
9987 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9988
9989         * class.h, loader.c: added mono_field_from_token().
9990         * verify.c: first cut of type checking code.
9991
9992 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
9993
9994         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
9995
9996 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
9997
9998         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
9999         (fix bug #27782)
10000         (mono_marshal_get_remoting_invoke): impl.
10001         (mono_delegate_begin_invoke): impl.
10002         (mono_mb_emit_save_args): impl.
10003         (mono_delegate_end_invoke): impl.
10004         (mono_marshal_get_delegate_begin_invoke):
10005         (mono_marshal_get_delegate_end_invoke):
10006         (mono_marshal_get_delegate_invoke): generate a special name for
10007         those methods (including the signature) and associate them whith
10008         the delegate class. 
10009
10010 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
10011
10012         * reflection.[ch]: 
10013         (mono_reflection_type_from_name): now it has a MonoImage parameter
10014         which is used as the default image to search the type in. If the image
10015         is NULL or getting the type from it fails, it defaults to corlib.
10016
10017         * icall.c: changed 1 call to mono_reflection_type_from_name to match
10018         new parameter.
10019
10020 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10021
10022         * reflection.c: update the parameter table index.
10023
10024 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10025
10026         * domain.c: don't include the mark byte in the string hash.
10027
10028 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10029
10030         * icall.cs: icall for Type.GetTypeCode ().
10031         * verify: a couple of fixes and disabled local initialization checks.
10032
10033 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
10034
10035         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
10036
10037         * debug-helpers.c (mono_method_full_name): print the type of the
10038         runtime wrapper
10039
10040         * metadata.c (mono_signature_hash): a hash function for signatures
10041         (mono_signature_hash): better hash algorithm
10042
10043         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
10044
10045         * debug-helpers.c (mono_method_full_name): this can now generate
10046         method names with signatures
10047
10048         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
10049         method dont have this pointers.
10050
10051 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
10052
10053         * reflection.c: fixup typebuilder tokens.
10054         * image.c: fix buglet.
10055         * marshal.h: remove whitespace.
10056         * metadata.h, metadata.c: reinstate code that was removed.
10057         * verify.c: handle catch directives and fix another couple of bugs.
10058
10059 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
10060
10061         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
10062         (mono_marshal_get_native_wrapper): make it comp. with the old code
10063         (mono_marshal_get_native_wrapper): support boolean
10064         (mono_marshal_get_managed_wrapper): support more types
10065
10066 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
10067
10068         * class.c (class_compute_field_layout): compute class->blittable attribute.
10069
10070 2002-07-09  Dick Porter  <dick@ximian.com>
10071
10072         * threads.c: Make the thread cleaning up cope with threads that
10073         call ExitThread()
10074
10075 2002-07-08  Radek Doulik  <rodo@ximian.com>
10076
10077         * reflection.c (method_encode_code): use non-translated values to
10078         compute finally_start, this fixes exception handling on ppc, yay!
10079
10080         * decimal.h (struct signscale): fix endianess
10081
10082 2002-07-07  Radek Doulik  <rodo@ximian.com>
10083
10084         * reflection.c: swap box_val and not val
10085
10086 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
10087
10088         * reflection.c, reflection.h: handle full assembly info in type name.
10089         Handle Type arguments when loading custom attributes.
10090         * icall.c: updated to use new mono_reflection_type_from_name () method.
10091
10092 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10093
10094         * loader.c:
10095         (method_from_memberref): also print assembly name when method not found.
10096
10097 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10098
10099         * icall.c:
10100         (ves_icall_TypeGetProperties): fixed bug #27473. 
10101
10102 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10103
10104         * reflection.c: display image name and token when cannot find the
10105         .ctor for an attribute.
10106
10107 2002-07-05  Martin Baulig  <martin@gnome.org>
10108
10109         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
10110
10111 2002-07-04  Dick Porter  <dick@ximian.com>
10112
10113         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
10114         compile on mingw.  This will cause mingw builds to not wait for
10115         subthreads to terminate after the main thread does.  I've lodged a
10116         bug with the mingw developers for them to wrap OpenThread().
10117
10118 2002-07-03  Dick Porter  <dick@ximian.com>
10119
10120         * threads.c: Store thread IDs instead of handles, because
10121         GetCurrentThread() returns a pseudohandle and therefore stores
10122         useless values.  mono_thread_cleanup() continues checking the
10123         array of threads until it is empty, to cope with subthreads
10124         spawning new threads after the main thread has finished.
10125
10126         * profiler.h:
10127         * profiler.c:
10128         * profiler-private.h: Pass the thread ID to thread profiler
10129         functions, instead of a handle
10130
10131 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10132
10133         * verify.c: fixes to make it more usable.
10134         * pedump.c: added --verify code to verify IL code in an assembly.
10135
10136 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10137
10138         * reflection.c: turn errors into warnings to allow compiling corlib.
10139
10140 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
10141
10142         * reflection.c: add special cases to compile corlib.
10143
10144 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10145
10146         * reflection.c: handle properties with only a set method.
10147
10148 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10149
10150         * opcodes.h: add enum with opcodes in opval order.
10151
10152 2002-07-01  Dick Porter  <dick@ximian.com>
10153         
10154         * object.h:
10155         * object.c (mono_runtime_run_main): Removed unneeded argument
10156
10157 2002-06-28  Martin Baulig  <martin@gnome.org>
10158
10159         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
10160
10161 2002-06-27  Dick Porter  <dick@ximian.com>
10162
10163         * threads.c: Store the handle in both the parent thread and in the
10164         subthread, to minimise the time between starting a new thread and
10165         storing its ID.
10166
10167 2002-06-26  Dick Porter  <dick@ximian.com>
10168
10169         * appdomain.c (mono_runtime_cleanup): Close the socket library
10170         after all the threads have finished, not before
10171
10172 2002-06-26  Martin Baulig  <martin@gnome.org>
10173
10174         * debug-symfile.c (mono_debug_find_source_location): Added
10175         `guint32 *line_number' argument.  If it's not NULL, store the line number
10176         there and return the file name without the line number.
10177
10178 2002-06-25  Dick Porter  <dick@ximian.com>
10179
10180         * icall.c:
10181         * process.h:
10182         * process.c: Process forking and other support functions
10183
10184 2002-06-25  Dick Porter  <dick@ximian.com>
10185
10186         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
10187         things dont happen when the image is closed.
10188         (mono_image_lookup_resource): Walk the resource section looking
10189         for a particular entry
10190
10191         * cil-coff.h: PE resource section decoding
10192
10193 2002-06-25  Dick Porter  <dick@ximian.com>
10194         
10195         * assembly.h:
10196         * assembly.c: 
10197         (mono_assembly_foreach): Accessor functions to walk the list of
10198         loaded assemblies
10199         (mono_assembly_set_main):
10200         (mono_assembly_get_main): Process methods need to know which
10201         assembly is the "main" one
10202
10203         * object.c (mono_runtime_run_main): Record the main assembly
10204
10205         * debug-helpers.c: Fix typo
10206
10207 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
10208
10209         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
10210         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
10211
10212 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
10213
10214         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
10215
10216 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
10217
10218         * image.c (do_mono_image_open): Initialize reference count,
10219         otherwise we leak the MonoImage.
10220
10221 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
10222
10223         * reflection.c: small tweak to handle self-hosting.
10224
10225 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10226
10227         * reflection.c: fix type name parse code.
10228
10229 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10230
10231         * reflection.c: break out of the loop.
10232         * image.c: special case corlib.
10233
10234 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10235
10236         * reflection.c: add all the custom attrs at the end to ensure the
10237         ctors have been properly initialized when the attributes are defined
10238         in the current assembly.
10239
10240 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10241
10242         * reflection.c: handle correctly multiple-nested types.
10243
10244 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
10245
10246         * row-indexes.h: fix typos.
10247         * reflection.c: adjust for typos and fix method_def_or_ref
10248         encoding in MethodImpl table.
10249
10250 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10251
10252         * reflection.c: fix entry point patching (thanks Serge!).
10253
10254 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
10255
10256         * verify.c: add check for System.Exception
10257
10258 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10259
10260         * image.c, class.c: minifix for code just c&p'ed.
10261         * reflection.c: warning fix.
10262         * object.h, loader.h, domain.c: load also StringBuilder.
10263
10264 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10265
10266         * marshal.h, marshal.c: some support code to handle complex marshaling.
10267
10268 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10269
10270         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
10271         Better signatures with vtable error dump.
10272
10273 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
10274
10275         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
10276
10277 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
10278
10279         * icall.c (ves_icall_Type_GetField): impl.
10280
10281 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10282
10283         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
10284         to retrieve a marshal description blob for a field or param.
10285
10286 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
10287
10288         * reflection.h, reflection.c: change order of nested type emission
10289         to avoid table corruption. The NestedTypes table is sorted.
10290         * icall.c: change order of GetConstructor results to workaround mcs bug.
10291
10292 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10293
10294         * reflection.h, reflection.c: handle field and param marshal
10295         information.
10296
10297 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10298
10299         * icall.c, marshal.c marshal.h: more Marshal class implementation.
10300
10301 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10302
10303         * reflection.c: fix call convention.
10304
10305 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10306
10307         * reflection.h, reflection.c: mono_image_get_memberref_token()
10308         takes a type instead of a class, now. Added
10309         mono_image_get_array_token() to create tokens for the special
10310         multi-dim array methods.
10311
10312 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
10313
10314         * assembly.c: handle modules (no assembly table). Split
10315         loading references in its own function.
10316         * class.c: handle moduleref resolution scope.
10317         * image.c, image.h: cache module name in image.
10318
10319 2002-06-07  Martin Baulig  <martin@gnome.org>
10320
10321         * reflection.c (mono_image_get_type_info): Only add a class layout entry
10322         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
10323
10324 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
10325
10326         * icall.c: more signature fixes that used uint instead of int.
10327
10328 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10329
10330         * reflection.c: fixed signature of field refs.
10331
10332 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10333
10334         * class.c, reflection.c: handle typerefs of nested types
10335         (both on read and when writing files).
10336
10337 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
10338
10339         * icall.c: fix method signatures that tried to workaround the previous
10340         typo, d'oh!
10341
10342 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
10343
10344         * debug-helpers.c: fix typo.
10345
10346 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
10347
10348         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
10349         rewrote the PE/COFF writing code (our programs are understood by the
10350         ms runtime, now).
10351
10352 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
10353
10354         * gc.c, gc.h, icall.c: weakreference support.
10355
10356 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10357
10358         * Makefile.am, mono-config.c: use $(sysconfdir).
10359
10360 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10361
10362         * icall.c: changed default precision of Double.ToString() to 15.
10363         Fixed memory leak. Unified with Single.ToString.
10364
10365 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
10366
10367         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
10368
10369 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
10370
10371         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
10372         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
10373         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
10374         and myself.
10375
10376 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10377
10378         * debug-symfile.c, sysmath.c: yet more compilation fixes.
10379
10380 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10381
10382         * reflection.c, socket-io.c: more compilation fixes.
10383
10384 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
10385
10386         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
10387         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
10388         unicode.c: warning and compiler compatibility fixes.
10389
10390 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
10391
10392         * class.h, metadata.c: fixed warnings/compilation errors.
10393
10394 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
10395
10396         * Makefile.am, mono-config.c, mono-config.h: configuration file
10397         support routines.
10398         * loader.c, loader.h: make Dll mapping configurable at runtime in the
10399         config file. Export methods to insert and lookup mappings.
10400
10401 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
10402
10403         * reflection.c: handle types and boxed objects in custom attr
10404         constructors.
10405
10406 2002-05-30  Martin Baulig  <martin@gnome.org>
10407
10408         * debug-symfile.c
10409         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
10410
10411 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
10412
10413         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
10414         to lookup the implmap row for a P/Invoke method.
10415         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
10416         P/Invoke method from the runtime on an as needed basis.
10417
10418 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
10419
10420         * metadata.c (mono_metadata_parse_signature): impl.
10421
10422 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10423
10424         * class.c: handle .pack directive.
10425
10426 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10427
10428         * object.c: initialize static fields with RVA data.
10429
10430 2002-05-25  Martin Baulig  <martin@gnome.org>
10431
10432         * debug-symfile.c
10433         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
10434
10435 2002-05-24  Martin Baulig  <martin@gnome.org>
10436
10437         * debug-symfile.c
10438         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
10439         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
10440         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
10441
10442 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
10443
10444         * object.c: special case string ctros in invoke.
10445         * gc.c: silly whitespace changes.
10446
10447 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
10448
10449         * threadpool.[ch]: impl. a threadpool that can
10450         be used by mint and mono.
10451
10452 2002-05-22  Martin Baulig  <martin@gnome.org>
10453
10454         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
10455         The first argument is now a `MonoReflectionModuleBuilder *', the return
10456         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
10457         `methods' field to get the method builder.  The `token' argument is the
10458         unfixed token.
10459
10460         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
10461         invalid characters instead of g_assert_not_reached()ing.  This seems
10462         to be the behaviour of mscorlib.
10463
10464 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
10465
10466         * object.c (mono_runtime_invoke_array): applied patch from Rachel
10467         Hestilow to fix bug #25104
10468
10469 2002-05-21  Martin Baulig  <martin@gnome.org>
10470
10471         * debug-symfile.c (mono_debug_find_source_location): New function.
10472         Looks up an IL offset in the line number table and returns the source
10473         location as a string.
10474
10475 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10476
10477         * icall.c:
10478         (mono_double_ToStringImpl): changed %f by %g until we have something
10479         better.
10480
10481 2002-05-21  Nick Drochak  <ndrochak@gol.com>
10482
10483         * icall.c : Use different name for Math.Pow's icall.  Needed to check
10484         parameters first in C#.
10485
10486 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10487
10488         * icall.c, reflection.h: added icall to get info about an event.
10489
10490 2002-05-20  Radek Doulik  <rodo@ximian.com>
10491
10492         * object.c (mono_value_box): don't use memcpy for boxing on BIG
10493         endian
10494         (mono_value_box): don't use memcpy for small sizes on
10495         architectures with unaligned access
10496
10497 2002-05-20  Martin Baulig  <martin@gnome.org>
10498
10499         * reflection.c (mono_reflection_setup_internal_class): Don't crash
10500         if `tb->parent == NULL'.
10501         (mono_reflection_create_internal_class): New function.  This is
10502         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
10503         for enum types.
10504
10505         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
10506         New interncall.
10507
10508 2002-05-19  Martin Baulig  <martin@gnome.org>
10509
10510         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
10511         argument to get the length, don't default to the array length.
10512
10513 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
10514
10515         * assembly.c (mono_assembly_setrootdir): New function used to
10516         override the MONO_ASSEMBLIES directory.
10517
10518 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
10519
10520         * icall.c: ValueType_GetHashCode() initialize local var.
10521
10522 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
10523
10524         * reflection.c: sort custom attributes table.
10525
10526 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
10527
10528         * reflection.c: support named args in custom attributes (write support).
10529
10530 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
10531
10532         * reflection.c: fix finally position calculation.
10533
10534 2002-05-15  Radek Doulik  <rodo@ximian.com>
10535
10536         * reflection.c: fixed endianess at many places
10537
10538         * icall.c (ves_icall_InitializeArray): comment out debug msg
10539
10540 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
10541
10542         * object.c (mono_unhandled_exception): new function to handle
10543         unhandled exceptions.
10544         (mono_unhandled_exception): call the UnhandledException event.
10545         (mono_runtime_delegate_invoke): impl.
10546
10547 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
10548
10549         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
10550         returns the RVA, not the direct pointer to the data. Handle the case
10551         when the class size is fixed.
10552
10553 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10554
10555         * reflection.c: fix some endianess issues.
10556
10557 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
10558
10559         * object.c (mono_runtime_invoke): is now able to catch exceptions.
10560
10561         * threads.c (mono_thread_init): added a callback which is invoked
10562         at thread start.
10563
10564 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
10565         
10566         * icall.c: make GetHashCode return non-negative values.
10567
10568 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
10569
10570         * object.c, icall.c, gc.c: revert to address-based hashcode.
10571
10572 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
10573
10574         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
10575
10576 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10577
10578         * icall.c, class.c: special case <Module>.
10579
10580 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
10581
10582         * icall.c: fix bug in GetNow().
10583
10584 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
10585
10586         * object.c (mono_runtime_class_init): make sure that we call all
10587         static class constructors.
10588
10589 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
10590
10591         * reflection.c: sort methodsemantics table.
10592
10593 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10594
10595         * reflection.h, reflection.c: honour init locals setting.
10596
10597 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
10598
10599         * icall.c: copied Double ToStringImpl for Single ToStringImpl
10600
10601 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
10602
10603         * reflection.c: support ContructorBuilders in attribute blob creation.
10604
10605 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10606
10607         * reflection.c: some changes to build a binary that can be run
10608         directly in windows.
10609
10610 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
10611
10612         * loader.c: print a big message when an icall can't be found.
10613
10614 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10615
10616         * string-icalls.c: fix bug 24248.
10617
10618 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
10619
10620         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
10621         icall.c, reflection.h: separate assembly loading by pathname and by
10622         assembly name. Use the MONO_PATH env var to search for assemblies.
10623
10624 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10625
10626         * assembly.c, image.h: add some support for assemblies
10627         with multiple modules.
10628         * class.c, class.h: export mono_class_from_typeref().
10629         * loader.c: remove duplicated code and use mono_class_from_typeref(),
10630         instead.
10631
10632 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10633
10634         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
10635         documentation says (the ECMA one is correct).
10636
10637 2002-05-02  Dick Porter  <dick@ximian.com>
10638
10639         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
10640         Don't name the synchronisation mutex.
10641
10642 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
10643
10644         * rand.c
10645         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
10646         Make the prototypes match.
10647         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
10648         Same.
10649
10650         * icall.c
10651         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
10652         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
10653         all systems have tm.tm_zone, so use strftime() with %Z to print
10654         the timezone abreviation into a temp string.
10655
10656         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
10657         rather than mono_array_addr() on a MonoString on Big Endian
10658         machines.
10659
10660 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
10661
10662         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
10663         fix bug 24041
10664
10665 2002-04-30  Dick Porter  <dick@ximian.com>
10666
10667         * socket-io.c: Cope with SOCKET being an integer rather than a
10668         pointer now.
10669
10670         * threads.c: Added Thread_free_internal, to deal with thread
10671         handle cleanup.  Moved calls to handle_store() and handle_remove()
10672         to start_wrapper(), so each can only be called once.  Allocate
10673         synchronisation blocks with GC_malloc(), and use GC finalisation
10674         to close the handles.
10675
10676         * icall.c: added System.Threading.Thread::Thread_free_internal
10677
10678 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10679
10680         * icall.c: support Environment.Exit, CommandLineArgs().
10681
10682 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10683
10684         * object.c, object.h: added mono_runtime_run_main () and
10685         mono_runtime_get_main_args () for use in System.Environment.
10686
10687 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10688
10689         * gc.c: fix thinko, enable actual finalization since the jit is now
10690         fixed.
10691
10692 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10693
10694         * gc.c, object.c: take into account that an object may be offset wrt the address
10695         returned by GC_malloc().
10696
10697 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
10698
10699         * image.c: handle files without entries in the assembly table (modules).
10700
10701 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
10702
10703         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
10704         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
10705         allowed to be null when it's System.Object class setup.
10706
10707 2002-04-27  Martin Baulig  <martin@gnome.org>
10708
10709         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
10710         if `tb->parent == NULL' rather than crashing.
10711
10712 2002-04-28  Nick Drochak  <ndrochak@gol.com>
10713
10714         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
10715         calling acos() where asin() should have been called.
10716
10717 2002-04-26  Martin Baulig  <martin@gnome.org>
10718
10719         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
10720         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
10721         there's a subdirectory called `System', but we don't want to read that
10722         subdirectory as an assembly.
10723
10724 2002-04-25  Martin Baulig  <martin@gnome.org>
10725
10726         * debug-symfile.c: Reflect latest MonoString changes.
10727
10728 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
10729
10730         * rand.c, rand.h: instance method icalls need to have an explicit
10731         this pointer as first argument in the C implementation.
10732
10733 2002-04-25  Nick Drochak <ndrochak@gol.com>
10734
10735         * icall.c: Fix typo in map for GetNonZeroBytes
10736
10737 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
10738
10739         * string-icalls.c : String does now passes unit tests without any 
10740         errors, the following changes has been made:
10741         
10742         Implemented replace methods.
10743         Renaming of methods to (try) follow the standard.
10744         Fixed compare ordinal
10745         Made all memory allocated directly to function instead of via icall function.
10746         Small performance fix in is_in_array function
10747                         
10748  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
10749
10750         c (mono_string_Internal_ctor_charp_int_int):
10751         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
10752         sindex < 0, throw ArgumentOutOfRangeException instead of
10753         ArgumentNullException.
10754
10755         Added new check for length == 0, however
10756         I need to make it return String.Empty from the C code.
10757         
10758         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
10759         that calculate the length for us here.
10760         
10761         (mono_string_Internal_ctor_sbytep_int_int): Replaced
10762         mono_string_new_utf16 with mono_string_new, since value is utf8.
10763
10764 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10765
10766         * object.c: register the object for finalization if needed.
10767         Allocate one more char in the string for the terminating 0 char.
10768
10769 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10770
10771         * class.c, class.h, image.c: check if a type implemenst a destructor.
10772         Use the proper key for array class lookups.
10773         * icall.c: register the icalls in the System.GC class.
10774         * gc.c, gc.h: GC-related functions and icalls.
10775
10776 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10777
10778         * icall.c:
10779         * socket-io.c:
10780         * unicode.c: free some strings gotten from mono_string_to_utf8 and
10781         changed a couple of free () by g_free ().
10782
10783         * decimal.c: one-liner in the comments for decimal2string ().
10784
10785 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
10786
10787         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
10788
10789 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
10790
10791         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
10792         * object.c (mono_runtime_invoke_array) : handle null in params
10793
10794 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
10795
10796         * string-icalls.c: fixed bug in split (one off bug)
10797
10798 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
10799
10800         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
10801         * icalls.c: added String::Equals as internal method
10802
10803 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
10804
10805         * threads.c: fixed bug in the double interlocked functions
10806
10807 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
10808
10809         * threads.c: implemented all of the new interlocked icalls.
10810         * string-icalls.c: fix a bug in insert.
10811         * icalls.c: added the icalls for interlocked, removed old string functions.
10812         
10813 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
10814
10815         * loader.c: fix off-by-one error when reading argument names.
10816
10817 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10818
10819         * profiler.c: win32 counter implementation (untested).
10820         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
10821         (the latter needs testing and more complete impl. from win32 folks).
10822
10823 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
10824
10825         * object.c: mono_array_new_full workaround mono_array_class_get
10826         problem.
10827
10828 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
10829
10830         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
10831         * object.h (mono_string_chars): Changed casting type.
10832
10833 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
10834
10835         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
10836                            method signatures to use gunichar2 instead of gint16.
10837
10838 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
10839
10840         * object.h, object.c: domain-specific versions of mono_object_new and
10841         mono_array_new.
10842
10843 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
10844
10845         * object.c: changed String layout
10846
10847         * string-icalls.c (mono_string_Internal_ctor_chara): added
10848         internal string constructors.
10849
10850 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
10851
10852         * threads.c: pass 'this' to the thread start routine.
10853
10854 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10855
10856         * string-icalls.c: fix IndexOf and LastIndexOf. Now
10857         InternalCompareStr don't call twice mono_string_cmp_char for the last
10858         character. Improved performance in mono_string_cmp_char.
10859
10860 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
10861
10862         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
10863         code into its own library: libmonoruntime.
10864
10865 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
10866
10867         * object.h, object.c: changed array format so that szarrays do not
10868         require a bounds structure.
10869         * icall.c, appdomain.c: support for new szarray format.
10870
10871 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
10872
10873         * metadata.c: compare also the retuns type when comparing signatures:
10874         we didn't do this as an optimization since really overloaded methods
10875         must differ also in the arguments, but this doesn't work with
10876         low-level IL code (or when using explicit conversion operators: see
10877         bug#23498 for an example).
10878
10879 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10880
10881         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
10882
10883 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
10884
10885         * icall.c: make MonoType::GetElementType its own icall.
10886
10887 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10888
10889         * icall.c: remove MonoMethod_get_Name().
10890         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
10891         object.
10892
10893 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
10894
10895         * string-icalls.c: optimized a few methods.
10896
10897 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
10898
10899         * icall.c: added all new string internal calls
10900         * string-icalls.c: added, new string internal call implementation.
10901         * object.c: added mono_string_new_size for allocating a string a size
10902
10903 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
10904
10905         * object.c (mono_object_isinst): use the same code as in the
10906         optimized x86 version.
10907
10908 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10909
10910         * profiler.c: TSC-based timer code (faster and more accurate).
10911         Not hooked up in configure, yet (set USE_X86TSC to 1).
10912
10913 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
10914
10915         * profiler.c, profiler.h: track time spent compiling methods.
10916         * threads.c: track thread creation/destruction.
10917
10918 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
10919
10920         * profiler.c, profiler.h, profiler-private.h: profiling interface
10921         and sample implementation. Moved here so that it can be used also by
10922         the jit.
10923
10924 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
10925
10926         * reflection.c, reflection.h: keep types and other handles separate in
10927         the hash tables for referred tokens. Add guid for modules.
10928
10929 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
10930
10931         * assembly.c: fix bugs found with valgrind.
10932         * metadata.h, metadata.c: added mono_metadata_guid_heap().
10933
10934 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
10935
10936         * threads: added icall support for getting current domain for
10937                    the thread.
10938  
10939 2002-04-13  Martin Baulig  <martin@gnome.org>
10940
10941         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
10942         (MonoDebugVarInfo): Added `index' field for register based addresses.
10943         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
10944         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
10945         `MonoDebugVarInfo *params' and `guint32 this_offset' with
10946         `MonoDebugVarInfo *this_var'.
10947
10948         * debug-symfile.c (relocate_variable): New static function to write
10949         a location description for a local variable or method parameter.
10950
10951 2002-04-12  Martin Baulig  <martin@gnome.org>
10952
10953         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
10954         stack offset and begin/end scope address of a local variable.
10955         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
10956         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
10957         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
10958
10959         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
10960         Added new relocation types for start/end scope of a local variable.
10961
10962 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10963
10964         * object.h: add mono_object_domain() macro.
10965         * reflection.c: handle typespecs.
10966         * icall.c: MonoMethod::get_Name() implementation.
10967
10968 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10969
10970         * icall.c: String::GetHashCode() icall implementation.
10971
10972 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10973
10974         * icall.c: String::IndexOfAny icall.
10975         * object.c, object.h: make array->max_length more useful.
10976         Intrduced mono_object_class() and mono_string_length() macros.
10977
10978 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10979
10980         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
10981         instead of g_unichar_isdigit.
10982
10983 2002-04-11  Nick Drochak  <ndrochak@gol.com>
10984
10985         * icall.c: Implement a simple Double.ToString().
10986
10987 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
10988
10989         * appdomain.h: only io-layer.h is supposed to be included.
10990         * icall.c: explicitly import environ. Fix warning.
10991
10992 2002-04-10  Nick Drochak  <ndrochak@gol.com>
10993
10994         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
10995                 return true even if it's not Daylight Savings time.
10996                 Only return false for the case where the function isn't
10997                 implemented for a plaform (read Windows).
10998
10999 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11000
11001         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
11002         data with a mutex.
11003
11004 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
11005
11006         * mempool.c (mono_mempool_alloc): only use g_malloc when
11007         absolutely necessary.
11008
11009 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
11010
11011         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
11012
11013         * class.c (mono_class_vtable): use domain mempool to allocate vtable
11014         (mono_class_proxy_vtable): use domain mempool
11015
11016 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
11017
11018         * appdomain.h, appdomain.c: split initialization that requires the
11019         execution engine support into mono_runtime_init().
11020
11021 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
11022
11023         * class.c (mono_class_init): don't include vtable inside MonoClass
11024         to save some memory, gather some statistics.
11025         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
11026
11027 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
11028
11029         * icall.c: internalcall implementation for ValueType.Equals().
11030
11031 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
11032
11033         * object.c (mono_message_init): moved 
11034         (mono_runtime_exec_main): new arch. independent impl.
11035         (mono_runtime_invoke_array): new method - like
11036         mono_runtime_invoke, but you can pass an array of objects.
11037         (mono_remoting_invoke): new arch. independent impl.
11038         (mono_message_invoke): new arch. independent impl.
11039         (mono_runtime_class_init): new arch. independent impl.
11040         (mono_runtime_object_init): new arch. independent impl.
11041
11042 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11043
11044         * metadata.c, object.c, reflection.c: documented the exported
11045         functions.
11046
11047 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
11048
11049         * icall.c: simpler code to pass the assembly builder data to corlib.
11050         Implement GetNestedTypes() internalcall.
11051
11052 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
11053
11054         * class.c: warn if a type can't be loaded.
11055
11056 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
11057
11058         * image.h: typedef MonoImageOpenStatus
11059         * types.h: removed unused file
11060         
11061 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
11062
11063         * icall.c: Enum_ToObject accepts enum value arguments.
11064
11065 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
11066
11067         * class.c: move initialization of properties, events and nested
11068         classes, so that they happen for interfaces, too.
11069
11070 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
11071
11072         * icall.c: cleanup some ugly casts in Array_SetValue*.
11073
11074 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11075
11076         * icall.c: the values array fro enums is of the correct type, now.
11077         Implement (correctly) getFullName instead of assQualifiedName for
11078         MonoType.
11079         * reflection.h, reflection.c: added mono_type_get_name ().
11080
11081 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11082
11083         * assembly.c, image.h: for each MonoImage, record from wich assembly
11084         it was loaded.
11085         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
11086         Make Type.Assembly work.
11087
11088 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
11089
11090         * debug-symfile.h: use char* instead of gpointer to avoid
11091         unnecessary casts.
11092
11093         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
11094
11095         * icall.c (ves_icall_InternalExecute): impl. FielSetter
11096         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
11097
11098 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
11099
11100         * icall.c (mono_message_init): impl. (code cleanup)
11101         (ves_icall_InternalExecute): impl. FieldGetter
11102
11103         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
11104         defined we call all (non-static)methods through the vtable. 
11105
11106 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
11107
11108         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
11109         finalizer even though the memory is still referenced (and the chunk of
11110         memory is not freed).
11111
11112 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
11113
11114         * assembly.c: fix brokeness.
11115
11116 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
11117
11118         * class.c: kill some warnings. Check explicit interface method
11119         implementation also without considering the namespace.
11120         Load also literal strings in static class data.
11121
11122 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
11123
11124         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
11125         (default_assembly_name_resolver): Make the resolver take the
11126         "base" directory where the assembly was originally defined, so we
11127         can load DLLs that are in the same directory as the assembly that
11128         is being referenced.
11129
11130 2002-03-28  Dick Porter  <dick@ximian.com>
11131
11132         * file-io.h: 
11133         * file-io.c:
11134         * socket-io.c: 
11135         * unicode.h: 
11136         * unicode.c: Warning cleanups
11137
11138 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
11139
11140         * object.h, reflection.h: use the correct type instead of MonoObject.
11141
11142 2002-03-28  Martin Baulig  <martin@gnome.org>
11143
11144         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
11145         (mono_debug_update_symbol_file): Initialize classes if necessary.
11146
11147 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
11148
11149         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
11150         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
11151
11152 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
11153
11154         * assembly.h: fix function prototype.
11155         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
11156         * mono-endian.h: use const cast.
11157
11158 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
11159
11160         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
11161
11162 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
11163
11164         * loader.c: don't assert when a typeref can't be loaded, give
11165         a chance to the runtime to trow an exception instead.
11166         * loader.h: fix warning.
11167
11168 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
11169
11170         * class.c (mono_class_proxy_vtable): added proxy support
11171
11172 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
11173
11174         * icall.c: removed last of PAL calls, added System.Environment
11175         * file-io.h, file-io.c: MonoIO implementation
11176         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
11177
11178 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
11179
11180         * appdomain.c: do not use the byte marker in ldstr table lookup.
11181         * debug-helpers.c: allow two ':' to separate class and method name.
11182         * object.c: allocate arrays bounds with the GC, too.
11183         * verify: add a few more checks.
11184
11185 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
11186
11187         * reflection.c: output also literal strings. Allocate parameter data
11188         with GC_malloc() (thanks, Martin, for catching this!).
11189
11190 2002-03-26  Martin Baulig  <martin@gnome.org>
11191
11192         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
11193         include the `this' offset in the `param_offsets'.
11194
11195 2002-03-25  Martin Baulig  <martin@gnome.org>
11196
11197         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
11198         mono_debug_get_class() function to get the classes. Added new
11199         relocation types for arrays and strings.
11200         (mono_debug_get_class): New static function to search in all
11201         referenced assemblies for a metadata token.
11202
11203         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
11204
11205 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
11206
11207         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
11208         hold gc-allocated objects. Make the string heap a stream like the
11209         others. Removed duplicated code when writing stream info.
11210         Added asserts to catch possible buffer overflows. Set the sorted map
11211         for tables that need sorting. Added some documentation.
11212
11213 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
11214
11215         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
11216         for interned strings and vtables.
11217
11218 2002-03-24  Martin Baulig  <martin@gnome.org>
11219
11220         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
11221         it in the array since it was created with g_slist_prepend().
11222
11223 2002-03-24  Martin Baulig  <martin@gnome.org>
11224
11225         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
11226         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
11227         (mono_debug_method_from_token): Renamed to
11228         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
11229         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
11230
11231         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
11232         relocation types.
11233
11234         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
11235
11236 2002-03-24  Martin Baulig  <martin@gnome.org>
11237
11238         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
11239         (mono_debug_method_from_token): New func.
11240
11241         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
11242         New interncall, calls mono_debug_local_type_from_signature().
11243         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
11244         calls mono_debug_method_from_token().
11245
11246 2002-03-23  Martin Baulig  <martin@gnome.org>
11247
11248         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
11249         specifies the number of bytes to be converted, not the array size.
11250         Return the number of chars, not the number of bytes.
11251         (ves_icall_iconv_get_chars): The `byteCount' argument
11252         specifies the number of bytes to be converted, not the array size.
11253
11254 2002-03-23  Martin Baulig  <martin@gnome.org>
11255
11256         * reflection.h (MonoReflectionSigHelper): New type.
11257
11258         * reflection.c (mono_reflection_sighelper_get_signature_local),
11259         (mono_reflection_sighelper_get_signature_local): New functions.
11260
11261         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
11262         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
11263         interncalls.
11264
11265 2002-03-23  Martin Baulig  <martin@gnome.org>
11266
11267         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
11268         is_writeable is set.
11269         (mono_raw_buffer_update): New function to write the modified map
11270         back to disk.
11271
11272         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
11273
11274         * debug-symfile.c (mono_debug_update_symbol_file): Call
11275         mono_raw_buffer_update() when done writing.
11276
11277 2002-03-23  Martin Baulig  <martin@gnome.org>
11278
11279         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
11280
11281         * debug-symfile.c: Added support for arguments and local variables.
11282
11283 2002-03-23  Dick Porter  <dick@ximian.com>
11284
11285         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
11286         protected by ifdefs, hence breaking the w32 build.
11287
11288 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
11289
11290         * object.c: implement is_interned() the right way.
11291
11292 2002-03-21  Martin Baulig  <martin@gnome.org>
11293
11294         * debug-symfile.[ch]: New files to handle debugging information
11295         files. There's also support to dynamically update these symbol
11296         files to include machine dependent information.
11297
11298 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
11299
11300         * threads.c (mono_thread_create): new function to create thread
11301         from C
11302
11303 2002-03-20  Martin Baulig  <martin@gnome.org>
11304
11305         * icall.c (ves_icall_InternalInvoke): Create a new object if the
11306         method is a constructor.
11307         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
11308         points to ves_icall_InternalInvoke().
11309
11310 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
11311
11312         * file-io.c: Flush shouldn't throw exceptions.
11313
11314 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
11315
11316         * file-io.c: FileStream flush support; FileSetLength now
11317         restores file pointer.
11318
11319 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
11320
11321         * class.c: set image for pointer classes.
11322
11323 2002/03/19  Nick Drochak <ndrochak@gol.com>
11324
11325         * sysmath.c: Forgot one.
11326
11327 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
11328
11329         * sysmath.c: Avoid redefining existing names.
11330
11331 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
11332
11333         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
11334         handled by runtime as icall rather than dllimport from libm.so
11335         * file-io.c, file-io.h: fixed handle argument type.
11336
11337 2002-03-18  Dick Porter  <dick@ximian.com>
11338
11339         * reflection.c (mono_image_get_type_info): rename interface to
11340         iface, because of "#define interface struct" on windows.
11341
11342 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
11343
11344         * class.c, class.h: rename and export mono_ptr_class_get().
11345         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
11346         * reflection.c, reflection.h, icall.c: better/saner type name
11347         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
11348         method signatures.
11349
11350 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
11351
11352         * class.c (mono_class_init): removed hardcoded GHC_SLOT
11353
11354         * icall.c (ves_icall_InternalInvoke): impl.
11355
11356 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
11357
11358         * reflection.c: output the interface map table, too.
11359
11360 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
11361
11362         * class.c (class_compute_field_layout): separate computation of 
11363         static field layout
11364
11365 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
11366
11367         * icall.c: added System.Buffer support.
11368         * file-io.c: moved file icalls from PAL to FileStream.
11369
11370 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
11371
11372         * icall.c (ves_icall_System_Object_GetHashCode): impl.
11373
11374 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
11375
11376         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
11377
11378 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
11379
11380         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
11381
11382 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
11383
11384         * debug-helpers.{c,h}: moved here from monograph some useful functions
11385         to locate a method by name/signature in a class or image. Included
11386         also a small and flexible IL disassembler.
11387
11388 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
11389
11390         * reflection.c: fixup tokens in methods with small header size, too.
11391
11392 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
11393
11394         * object.c (mono_string_to_utf8): remove assert(!error), instead
11395         print a warning. 
11396
11397 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
11398
11399         * icall.c: update to the new mono_Array_class_get interface.
11400
11401 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
11402
11403         * appdomain.c, object.c: Boehm-GC enable.
11404         * icall.c: make get_data_chunk() support split data requests.
11405         Ensure a class is initialized in more cases. Return only the first
11406         property found in GetProperties() or the compiler gets confused. 
11407         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
11408         * reflection.h, reflection.c: add fixup mechanism for field and method
11409         tokens. Initialize assembly->typeref in a single place. Output
11410         properties after events. Support custom attributes for events, too.
11411         Typo fix for paramter custom attrs.
11412
11413 2002-03-07  Martin Baulig  <martin@gnome.org>
11414
11415         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
11416
11417 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
11418
11419         * class.c (mono_array_class_get): fix. for multi. dim. arrays
11420
11421 2002-03-06  Martin Baulig  <martin@gnome.org>
11422
11423         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
11424         non-zero lower bounds. See testcases #F10-#F13.
11425
11426 2002-03-05  Martin Baulig  <martin@gnome.org>
11427
11428         * exception.c (mono_get_exception_argument_out_of_range): New exception.
11429
11430         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
11431         ves_icall_System_Array_GetValue(), only calculate the absolute array position
11432         here.
11433         (ves_icall_System_Array_SetValue): Likewise.
11434         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
11435         as argument and does the actual work. This function is used when copying a
11436         multi-dimensional array.
11437         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
11438         now do all the widening conversions of value types.
11439         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
11440
11441 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
11442
11443         * class.c: remove some magic numbers and use the smbolic names,
11444         instead. Added init_events() to load event info at class init time.
11445         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
11446         and mono_metadata_methods_from_event().
11447         * reflection.h, reflection.c: added support for writing out the evnets
11448         related information.
11449
11450 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
11451
11452         * reflection.h, icall.c: use a different method (GetInterfaces)
11453         to gather interface info and add isbyref, isprimitive and
11454         ispointer to the ves_icall_get_type_info() return value.
11455
11456 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
11457
11458         * class.h: stared adding support for events.
11459         * icall.c: split find_members implementation. Added debug icall to get
11460         the address of an object.
11461         * reflection.c: handle TypeBuilders in mono_type_get_object().
11462
11463 2002-03-01  Martin Baulig  <martin@gnome.org>
11464
11465         * icall.c (ves_icall_System_Array_GetLength): This must throw an
11466         ArgumentOutOfRangeException(), not an ArgumentException().
11467         (ves_icall_System_Array_GetLowerBound): Likewise.
11468         (ves_icall_System_Array_GetValue): Improved argument checking.
11469         (ves_icall_System_Array_SetValue): Improved argument checking.
11470
11471 2002-03-01  Martin Baulig  <martin@gnome.org>
11472
11473         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
11474         called with invalid arguments rather than just dying with g_assert().
11475         (ves_icall_System_Array_SetValue): Likewise.
11476         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
11477         raise a NotImplementedException instead.
11478         (ves_icall_System_Array_GetLength): Added argument checking.
11479         (ves_icall_System_Array_GetLowerBound): Added argument checking.
11480
11481 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
11482
11483         * object.h (mono_assert): new macros mono_assert and
11484         mono_assert_not_reached
11485
11486 2002-02-28  Martin Baulig  <martin@gnome.org>
11487
11488         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
11489         and "System::String::IsInterned" to "System::String::_IsInterned".
11490
11491 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
11492
11493         * icall.c: remove hacks for typebuilder. Added icall to create a
11494         modified type from a tybebuilder.
11495         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
11496         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
11497         to create a backing MonoClass for a TypeBuilder.
11498
11499 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
11500
11501         * class.c, class.h: more refactoring of class init.
11502         Export mono_class_setup_mono_type() and mono_class_setup_parent().
11503
11504 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
11505
11506         * marshal.c, marshal.h: start of marshaling interface.
11507
11508 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
11509
11510         * icall.c: fix order in assembly qualified name icall.
11511
11512 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
11513
11514         * class.c: do not free str, since we store it in the hash table.
11515         * reflection.h: add label field to MonoILExceptionInfo.
11516         * reflection.c: handle references to more than one assembly. Handle
11517         case when there isn't a module created in the assembly.
11518
11519 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
11520
11521         * class.c: Fix typo. Start refactoring of class init code.
11522
11523 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
11524
11525         * appdomain.c: exit with 1 on error.
11526         * class.c: we already have the name in MonoClassField.
11527         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
11528         MonoStreamHeader instead of an offset of image->raw_metadata.
11529
11530 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
11531
11532         * appdomain.c (mono_init): Be even more descriptive about the error.
11533
11534 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
11535
11536         * appdomain.c: give the user an informative message when corlib can't
11537         be loaded.
11538
11539 2002-02-26  Martin Baulig  <martin@gnome.org>
11540
11541         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
11542         New icall to get the time zone data.
11543
11544 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
11545
11546         * reflection.c: set virtual and raw size of section correctly.
11547         * threads.c: transfer domain information to newly created threads.
11548
11549 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
11550
11551         * class.c: when instancing a class in a domain, load the default
11552         vaules for static fields from the constant table. Fix System.Enum to
11553         not be an enum.
11554         * icall.c: implement Object::GetType() internalcall. Implemented
11555         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
11556         Fixed checking of binding flags in find_members().
11557         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
11558         * reflection.c: handle enumerations when writing to the constant
11559         table. Use a different object cache for types.
11560
11561
11562 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
11563
11564         * object.c (mono_object_isinst): fix for arrays
11565
11566         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
11567
11568 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
11569
11570         * object.c: don't use mprotect ()  and fix intern pool hash table
11571         lookup for big endian systems.
11572
11573 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
11574
11575         * icall.c: change type_is_subtype_of () signature.
11576
11577 2002-02-21  Mark Crichton  <crichton@gimp.org>
11578
11579         * rand.c, rand.h: Added random number generator for
11580         System.Security.Cryptography classes.
11581
11582         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
11583
11584         * icall.c: Added System.Security.Cryptography calls.
11585
11586 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
11587
11588         * class.c, icall.c, metadata.c: better support for pointer types.
11589         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
11590         * reflection.c: Add support for getting custom attrs for properties
11591         and simplify some code.
11592
11593 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
11594
11595         * icall.c: change getToken () and add custom attribute GetBlob()helper
11596         method.
11597         * reflection.h: add custom attrs array to the reflection builder structures.
11598         * reflection.c: encode and emit custom attributes for all the relevant
11599         reflection objects. Cache fieldref and methodref tokens. Change
11600         mono_image_create_token() interface to take a MonoDynamicAssembly.
11601         More complete custom attributes decoder. Load custom attributes for
11602         Assembly, Field, Method and Constructor objects, too. Make the
11603         returned array an Attribute[] one, not object[]. Added
11604         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
11605         custom attribute constructor.
11606
11607 2002-02-20  Dick Porter  <dick@ximian.com>
11608
11609         * icall.c:
11610         * rawbuffer.c:
11611         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
11612         problem code out for now).
11613
11614 2002-02-19  Radek Doulik  <rodo@ximian.com>
11615
11616         * object.c (mono_ldstr): use hash table to avoid multiple swapping
11617
11618 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
11619
11620         * icall.c: register the GetCustomAttributes method.
11621         * object.c, object.h: add mono_string_new_len ().
11622         * reflection.h, reflection.c: added mono_runtime_invoke(),
11623         mono_install_runtime_invoke(). Added
11624         mono_reflection_get_custom_attrs () to load custom attributes and
11625         create the attribute objects.
11626
11627 2002-02-19  Dick Porter  <dick@ximian.com>
11628         * threads-dummy-types.c:
11629         * threads-dummy-types.h:
11630         * threads-dummy.c:
11631         * threads-dummy.h:
11632         * threads-pthread-types.c:
11633         * threads-pthread-types.h:
11634         * threads-pthread.c:
11635         * threads-pthread.h:  Deleted obsolete files
11636
11637 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
11638
11639         * class.c (mono_class_vtable): runtime init the class when we
11640         allocate static class data.
11641
11642         * icall.c (ves_icall_System_Array_SetValue): check for null values.
11643
11644         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
11645         and String - but we will need generic marshalling support in the
11646         future. 
11647         (mono_init): set the domain name in a ms compatible way
11648
11649         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
11650         String[].
11651
11652 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
11653
11654         * object.c (mono_array_clone): use alloca() instead of g_malloc  
11655         for sizes
11656
11657         * appdomain.c (mono_domain_unload): impl.
11658
11659 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
11660
11661         * appdomain.c, object.c: fix intern pool implementation.
11662         * class.c: fix alignment code.
11663
11664 2002-02-16  Radek Doulik  <rodo@ximian.com>
11665
11666         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
11667         and s2 > s1, just copy lower bytes to be compatible with little
11668         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
11669         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
11670
11671         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
11672         force big_endian to be 1 for big endian machines 
11673         (ves_icall_iconv_new_decoder): ditto
11674
11675 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
11676
11677         * socket-io.c (convert_sockopt_level_and_name): If the system
11678         doesn't define SOL_IP or SOL_TCP, get them by hand using
11679         getprotobyname() and caching the values (because this could be a
11680         slow operation).
11681         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
11682         Use the appropriate struct when the system does support it. Ie,
11683         not all systems have struct ip_mreqn so use struct ip_mreq when
11684         appropriate.
11685
11686 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
11687
11688         * reflection.c: handle finally clauses.
11689
11690 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
11691
11692         * socket-io.c: use g_snprintf() instead of snprintf.
11693
11694 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
11695
11696         * reflection.c (mono_param_get_objects): Cast second argument to
11697         mono_method_get_param_names to a const char** to silence the
11698         compiler warning.
11699
11700         * appdomain.c (mono_domain_assembly_open): Put parens around the
11701         truth statement in the for-loop.
11702
11703         * unicode.c (iconv_convert): Got rid of a compiler warning about
11704         int i being unused when the system has a new iconv.
11705         (iconv_get_length): Same.
11706
11707         * image.c (load_class_names): Cast the second argument to
11708         g_hash_table_insert() to char* to hush compiler warnings about the
11709         arg being a const.
11710         (mono_image_open): Same here.
11711
11712         * socket-io.c: Don't conditionally include sys/filio.h or
11713         sys/sockio.h here anymore since we now get them from
11714         io-layer/io-layer.h
11715         (inet_pton): If the system doesn't support inet_aton, implement
11716         using inet_addr and also #define INADDR_NONE if it isn't defined
11717         by the system.
11718
11719 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
11720
11721         * metadata.c, metadata.h: added function to get packing and size info
11722         of a typedef.
11723         * reflection.h, reflection.c: handle field RVA data. Save info about
11724         the table layout if needed. Assign typedef indexes to all the types
11725         before dumping the info about them to avoid forward reference problems.
11726
11727 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
11728
11729         * socket-io.c (convert_sockopt_level_and_name): ifdef
11730         SO_ACCEPTCONN because it is not defined on my system (old debian)
11731
11732 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
11733
11734         * opcode.c: use stddef.h to get NULL.
11735
11736 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
11737
11738         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
11739         for FIONBIO, FIONREAD and SIOCATMARK.
11740         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
11741         define INADDR_NONE and besides, inet_addr() is deprecated and
11742         should not be used. Use inet_pton() instead - it also has the
11743         added bonus that it can easily handle IPv6 addresses as well.
11744         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
11745
11746 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
11747
11748         * decimal.c: remove _MSC_VER conditional.
11749
11750 2002-02-13  Dick Porter  <dick@ximian.com>
11751
11752         * socket-io.c: 
11753         * icall.c: Internal calls for Blocking, Select, Shutdown,
11754         GetSocketOption and SetSocketOption
11755
11756 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
11757
11758         * assembly.cs: better resolver: use it instead of some kludgy
11759         code.
11760
11761 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
11762
11763         * reflection.c: the best way to speed-up the compiler is to avoid
11764         infinite loops.
11765
11766 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
11767
11768         * class.c (mono_class_vtable): changed the object layout
11769         (obj->vtable->class). 
11770         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
11771
11772 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
11773
11774         * assembly.c: look for assemblies in the assembly dir, too.
11775
11776 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
11777
11778         * class.c: fix thinko in mono_class_from_type().
11779
11780 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
11781
11782         * exception.h, exception.c: added TypeLoadException.
11783         * object.h, object.c: added mono_array_clone ().
11784         * icall.c: handle throwOnError in AssemblyGetType().
11785         Added Array.Clone().
11786         * opcode.h, opcode.c: use a single value for the opcode val.
11787         Compile fix for non-gcc compilers.
11788
11789 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
11790
11791         * opcodes.c, opcodes.h: export interesting info about opcodes.
11792
11793 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
11794
11795         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
11796         icalls. 
11797
11798         * class.c (class_compute_field_layout): set element_class for enums
11799         (mono_class_create_from_typedef): set element_class for normal classes
11800
11801         * icall.c (ves_icall_System_Enum_get_value): impl.
11802
11803         * class.c (mono_class_create_from_typedef): do not set valuetype
11804         flag for System.ValueType and System.Enum
11805
11806 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
11807
11808         * unicode.c (iconv_convert): fix big endian problem.
11809
11810 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
11811
11812         * class.c: add asserts if we are ever going to scribble over memory.
11813         * socket-io.c: not all systems have AF_IRDA defined.
11814
11815 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
11816
11817         * class.c (class_compute_field_layout): do not consider static
11818         fields to compute alignment
11819
11820 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
11821
11822         * appdomain.c (mono_appdomain_get): impl.
11823         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
11824
11825 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
11826
11827         * icall.c: ignore "file://" prefix when loading an assembly.
11828
11829 2002-01-23  Dick Porter  <dick@ximian.com>
11830
11831         * socket-io.c:
11832         * icall.c:
11833         * Makefile.am: Added socket support
11834
11835 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
11836
11837         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
11838         code back.  This should return the assemblies that are loaded by
11839         the runtime on behalf of an application domain. 
11840
11841         The current implementation is still broken, it just returns every
11842         assembly loaded, but until we get real applications domain this
11843         will do.
11844
11845 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
11846
11847         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
11848         AppDomain object.
11849
11850 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
11851
11852         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
11853         the mono_class_from_name lookup.
11854         (ves_icall_get_parameter_info): ditto.
11855         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
11856         method.
11857         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
11858
11859 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
11860
11861         * class.c: load also nested classes on class init.
11862         System.ValueType instance methods gets passed boxed
11863         values, unless methods in derived classed that get a pointer to the
11864         data.
11865         * icall.c: use better name parsing code in GetType().
11866         * image.c, image.h: add mono_image_loaded ().
11867         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
11868         * reflection.c, reflection.h: added mono_reflection_parse_type().
11869
11870 2002-01-22  Veronica De Santis <veron78@interfree.it>
11871
11872         * icall.c : Added mapping of internal calls for Manual and Auto reset events
11873         * threads.c : Added the implementation of internal calls for events
11874         * threads.h : Added prototypes of internal calls for events
11875         
11876 2002-01-21  Radek Doulik  <rodo@ximian.com>
11877
11878         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
11879
11880 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
11881
11882         * class.c (mono_class_init): set min_align to 1 (instead of 0)
11883         (mono_class_value_size): use min_align
11884
11885 2002-01-20  Dick Porter  <dick@ximian.com>
11886
11887         * threads.h:
11888         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
11889         so it compiles on w32.
11890
11891 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
11892
11893         * metadata.c (mono_type_stack_size): impl.
11894
11895         * class.c (mono_class_get_field): impl. memberref token
11896
11897 2002-01-16 Veronica De Santis <veron78@@interfree.it>
11898
11899         * icall.h : Added the internal calls mapping for CreateMutex_internal
11900                     and ReleaseMutex_internal.
11901         * threads.h : Added the prototype of mutexes internal calls.
11902         * threads.c : Added the implementations of mutexes internal calls.
11903
11904 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
11905
11906         * metaparse.h: removed unused file.
11907         * reflection.c, reflection.h: added stream_data_align () function 
11908         to align data in streams and keep stream aligned. Add support for
11909         exception support in method headers.
11910
11911 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
11912
11913         * unicode.c: make iconv_convert () return the number of bytess written
11914         in the output buffer.
11915
11916 2002-01-15  Dick Porter  <dick@ximian.com>
11917         * threads.c: Make the runtime's idea of infinite timeouts coincide
11918         with the class library's
11919
11920         Fix a particularly egregious bug in mono_thread_cleanup(). That
11921         code was so utterly bogus it must have been written on a Monday.
11922
11923 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
11924
11925         * reflection.h: add subtypes field to TypeBuilder.
11926         * reflection.c: encode constants for literal fields.
11927         Handle subtypes. Fix user string token (and add a zero byte)
11928         at the end.
11929         
11930 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
11931
11932         * class.c (mono_class_init): bug fix: assign slot numbers for
11933         abstract methods.
11934
11935 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
11936
11937         * reflection.c: don't try to output a code RVA for abstract methods.
11938         Small fixes for method header format. Output parameter info to the
11939         ParamDef table. Save method overriding info to MethodImpl table.
11940         Fix property support. Allow typedef.extends to be a type in the
11941         building assembly.
11942         * verify.c: fix off-by-one error.
11943
11944 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
11945
11946         * class.c: fix mono_class_from_mono_type () for szarray types.
11947         Remove unused cache check in mono_class_from_type_spec().
11948         * icall.c: *type_from_name () functions handle simple arrays and byref.
11949         * reflection.c: handle byref and szarray types. Handle methods without
11950         body (gets P/Invoke compilation working). Handle types and fields in
11951         get_token ().
11952         * reflection.h: add rank to MonoTypeInfo.
11953
11954 2002-01-10  Dick Porter  <dick@ximian.com>
11955
11956         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
11957         internal calls
11958
11959 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
11960
11961         * icall.c: initialize class in type_from_handle ().
11962         Loop also in parent classes for get_method ().
11963         * reflection.c: properly encode class and valuetype types.
11964         Start on encoding TypeBuilder types. Handle fieldrefs.
11965         Use correct length when registering a user string.
11966         Handle ConstructorBuilder and MonoMethod in get_token ().
11967         Make mono_type_get_object () aware of cached types.
11968         * object.c: back out change to mono_string_new ().
11969
11970 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
11971         * object.c: mono_string_new should return a NULL when the string 
11972         passed in is NULL -- not try to deference it.
11973         
11974 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
11975
11976         * icall.c: hack to make IsSubType work for TypeBuilders.
11977         * reflection.c: emit constructors before methods.
11978         Retrieve param names in mono_param_get_objects().
11979
11980 2002/01/05  Nick Drochak  <ndrochak@gol.com>
11981
11982         * Makefile.am: fix list of headers and sources so automake 1.5
11983         doesn't complain. Removed \# at end of list.
11984
11985 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
11986
11987         * reflection.c: get token for a method ref. Set return type of
11988         constructor to void.
11989         * loader.c: debug message.
11990         * class.c: typo fix.
11991
11992 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
11993
11994         * icall.c: fix array init with rank > 1. FindMembers
11995         loops in parent class as well.
11996         * image.c: do not insert nested types in name cache.
11997         * reflection.c: warning fix.
11998         * reflection.h: add override method (for interface impl).
11999
12000 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
12001
12002         * metadata.c: fix customattr decoding.
12003
12004 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
12005
12006         * rawbuffer.cs: Added native Win32 implementation, avoids using
12007         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
12008
12009 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
12010
12011         * class.c: make the low-level routines handle the cache.
12012
12013 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
12014
12015         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
12016
12017 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
12018
12019         * class.c: fix mono_array_element_size() for objects.
12020         * class.h, class.c: add properties to MonoClass and load them
12021         at init time.
12022         * icall.c: check with isinst() when assigning a value to an array
12023         instead of requiring the classes to match exactly.
12024         Implemented icall for System.Type::GetType().
12025         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
12026         enums. Handle bindingflags when looking for methods and fields.
12027         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
12028         and mono_metadata_methods_from_property().
12029         * reflection.h, reflection.c: added structures for propreties,
12030         parameters and enums. Implemented mono_property_get_object() and
12031         mono_param_get_objects().
12032
12033 2001-12-18  Dick Porter  <dick@ximian.com>
12034
12035         * file-io.c: Use mono_string_to_utf16() instead of
12036         mono_string_chars()
12037
12038         * object.c: Added mono_string_to_utf16(), which copies the non
12039         NULL-terminated MonoString into a new double-null-terminated
12040         buffer.
12041
12042 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
12043
12044         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
12045
12046 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
12047
12048         * file-io.c: raise exceptions if handle is invalid.
12049
12050 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
12051
12052         * assembly.c: yet another check for mscorlib.
12053         * class.c, class.h: load nesting info for classes.
12054         * icall.c: many new functions to support the Reflection classes.
12055         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
12056         * reflection.h, reflection.c: mono_image_create_token(),
12057         mono_assembly_get_object(), mono_type_get_object(),
12058         mono_method_get_object(), mono_field_get_object(): methods to return
12059         objects that parallel the C representation of assemblies, types,
12060         methods, fields.
12061
12062 2001-12-11  Dick Porter  <dick@ximian.com>
12063
12064         * icall.c:
12065         * file-io.c: Internal calls for file IO.
12066
12067 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
12068
12069         * tabledefs.h: missing FileAttributes.
12070         * verify.h, verify.c: use is_valid_string () to simplify and check for
12071         valid strings more correctly. Fix warnings and speeling.
12072         Check more tables: Filed, File, ModuleRef, StandAloneSig.
12073         Check code: branches, maxstack, method calls.
12074
12075 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
12076
12077         * object.c (mono_object_allocate): removed static, so that the jit
12078         can allocate value types.
12079
12080         * icall.c (ves_icall_System_DateTime_GetNow): impl.
12081
12082 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
12083
12084         * class.c: init enum types right away and register the
12085         token->MonoClass map in mono_class_create_from_typedef ().
12086         * verify.h, verify.c: first cut of the verifier.
12087         * pedump.c: add --verify switch to verify metadata tables.
12088         * tabledefs.h: add some missing enums.
12089
12090 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
12091
12092         * class.c (mono_install_runtime_class_init): impl.
12093         (mono_class_init): renamed mono_class_metadata_init to
12094         mono_class_init, also removed the metadata_inited flag
12095
12096         * object.c (mono_object_isinst): use faster algorithm
12097
12098 2001-11-30  Radek Doulik  <rodo@ximian.com>
12099
12100         * mono-endian.h: reverted last change
12101         added function prototypes
12102
12103         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
12104         add mono-endian.c back
12105
12106         * mono-endian.c: returned back, as Paolo pointed out, it's needed
12107         for unaligned access, I've mistaked it with endianess. I am
12108         sorry.
12109         (mono_read16): fix reverted endianess
12110         (mono_read64): ditto
12111         (mono_read32): ditto
12112
12113 2001-11-30  Dick Porter  <dick@ximian.com>
12114
12115         * exception.c: Implement mono_exception_from_name()
12116
12117 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
12118
12119         * metadata.h, metadata.c: remove params_size and locals_size and their
12120         calculation from the metadata code: they are only usefult to the
12121         interp.
12122
12123 2001-11-29  Radek Doulik  <rodo@ximian.com>
12124
12125         * object.c (mono_ldstr): swap bytes here, it's probably not the
12126         best place, but works for me now, I'll redo it once I know mono
12127         better, also note that I add PROT_WRITE and don't reset back, also
12128         note that it's only affects big endians, so x86 should be OK
12129
12130         * mono-endian.h (read16): use just glib macros for both endians
12131
12132         * mono-endian.c: removed as glib macros are used in in
12133         mono-endian.h so we don't need to care about endianess for read
12134         macros as glib does that for us already
12135
12136 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
12137
12138         * class.h, class.h: take minimum alignment into consideration so
12139         that the fields of a class remain aligned also when in an array.
12140
12141 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
12142
12143         * loader.h, loader.c: add mono_method_get_param_names().
12144         * class.c: 0-init class fields.
12145
12146 2001-11-26  Dick Porter  <dick@ximian.com>
12147
12148         * icall.c:
12149         * threads-types.h:
12150         * threads.c: New file that handles System.Threading on all platforms
12151
12152         * object.c: 
12153         * object.h: Remove the synchronisation struct from MonoObject,
12154         replace it with a pointer that gets initialised on demand
12155
12156         * Makefile.am: Replace all the system-specific threading code with
12157         a single file that uses the new wrapper library
12158
12159 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
12160
12161         * class.c, class.h: add mono_install_trampoline() so that the runtime
12162         can register a function to create a trampoline: removes the ugly
12163         requirement that a runtime needed to export arch_create_jit_trampoline.
12164         * object.h, object.c: added mono_install_handler() so that the runtime
12165         can install an handler for exceptions generated in C code (with
12166         mono_raise_exception()). Added C struct for System.Delegate.
12167         * pedump.c: removed arch_create_jit_trampoline.
12168         * reflection.c: some cleanups to allow registering user strings and
12169         later getting a token for methodrefs and fieldrefs before the assembly
12170         is built.
12171         * row-indexes.h: updates and fixes from the new ECMA specs.
12172
12173 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
12174
12175         * class.h, class.c: add enum_basetype field to MonoClass.
12176         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
12177         to get index in the constant table reated to a field, param or
12178         property.
12179         * reflection.h, reflection.c: handle constructors. Set public-key and
12180         version number of the built assembly to 0.
12181         * row-indexes.h: update from new ECMA spec.
12182
12183 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
12184
12185         * class.h, class.c: add a max_interface_id to MonoClass.
12186         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
12187         since it's used to do that. Added mono_type_type_from_obj().
12188         Make GetType() return NULL instead of segfaulting if the type was not
12189         found. Handle simple arrays in assQualifiedName.
12190         * object.h: add a struct to represent an Exception.
12191         * reflection.c: output call convention in method signature.
12192         Add code to support P/Invoke methods and fixed offsets for fields.
12193
12194 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
12195
12196         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
12197         the value.
12198         * icall.c: use mono_array_addr instead of array->vector: fixes the
12199         reflection image writing.
12200         * reflection.c: init call convention byte to 0 in method signature.
12201         Encode the property signature. Don't output property-related methods
12202         twice. Really process the properties for a type (don't cast a field to
12203         a property, my mom always told me that).
12204         Fix 64 bit issues in pointer alignment in a different and more
12205         readable way.
12206
12207 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
12208
12209         * loader.h: Removed type class from MonoDefaults, added monotype
12210
12211         * loader.c: Loaded MonoType, removed loading of Type
12212
12213         * icall.c (my_mono_new_object): Now returns a System.MonoType,
12214         and fills in System.Type._impl with a RuntimeTypeHandle rather
12215         than the actual MonoClass *
12216
12217         (ves_icall_type_from_handle): change from type_class to
12218         monotype_class
12219
12220         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
12221         implemented
12222
12223         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
12224         implemented
12225
12226         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
12227
12228         (ves_icall_System_Reflection_Assembly_GetType): implemented
12229
12230         (ves_icall_System_MonoType_assQualifiedName): implemented
12231
12232         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
12233
12234 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
12235
12236         * assembly.c (mono_assembly_open): Implement a cache for the
12237         assemblies. 
12238
12239         (mono_assembly_close): only destroy the assembly when the last
12240         reference is gone.
12241         
12242 2001-11-09  Dick Porter  <dick@ximian.com>
12243
12244         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
12245
12246 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
12247
12248         * class.c (mono_class_metadata_init): bug fix: compute the right slot
12249
12250 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
12251
12252         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
12253         from Martin Weindel.
12254         * object.h: add mono_string_chars ().
12255
12256 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
12257
12258         * reflection.c (build_compressed_metadata): Eliminates warnings
12259         and uses 64-bit clean code.
12260
12261         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
12262         (mono_type_equal): Change signature to eliminate warnings.
12263
12264 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
12265
12266         * icall.c, loader.c: remove the internalcall array constructors.
12267         Changes to match the new MonoArray structure.
12268         * object.h, object.c: an array object doesn't allocate an extra
12269         vector. Add mono_array_new_full () to create jagged arrays easily.
12270
12271 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
12272
12273         * metadata.h, metadata.c: add mono_metadata_field_info () to
12274         retreive all the info about a field from vairous tables.
12275         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
12276         * class.h, class.c: augment MonoClassField with more info.
12277         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
12278         policy and load a field's RVA if needed.
12279
12280 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
12281
12282         * class.c (mono_class_metadata_init): create a trampoline for all
12283         virtual functions instead of actually compiling them.
12284
12285 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
12286
12287         * class.h, class.c: include name in MonoClassField.
12288         * class.c: fix fundamental type of System.Object and System.String.
12289         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
12290         tokens in ldtoken.
12291         * icall.c: remove internalcalls for the Reflection stuff that is now
12292         done in C# code.
12293         * loader.c: mono_field_from_memberref () implementation.
12294         * mono-endian.c: thinko (s/struct/union/g).
12295         * object.c, object.h: make the mono_string_* prototypes actually use
12296         MonoString instead of MonoObject.
12297         * reflection.c, reflection.h: updates for changes in the reflection
12298         code in corlib: we use C structures that map to the actual C# classes.
12299         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
12300         fat method header if needed and use the info from the ILGenerator for
12301         methods. Handle fields in types. Misc fixes.
12302
12303 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
12304
12305         * class.c (mono_class_metadata_init): bug fix: always allocate
12306         space for static class data
12307
12308 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
12309
12310         * class.c (mono_compute_relative_numbering): use relative
12311         numbering to support fast runtime type checks.
12312
12313 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
12314
12315         * class.c (mono_class_create_from_typeref): added debugging output
12316         to print class name when MonoDummy is returned instead of real class
12317
12318 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
12319
12320         * class.c (mono_class_metadata_init): interface offset table now
12321         contains pointers into the vtable - this is more efficient for the jit
12322
12323 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
12324
12325         * class.c (mono_class_metadata_init): use a temporary vtable (the
12326         old algorithm only worked for the interpreter, but not for the jit)
12327
12328 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
12329
12330         * loader.c (method_from_memberref): use mono_class_get to get the
12331         class of an array instead of using System.Array directly.
12332         (mono_get_method): also add MEMBERREF methods to the method cache
12333         which usefull for arrays.
12334
12335 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
12336
12337         * pedump.c (arch_compile_method): added to compute vtable entry
12338
12339         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
12340         number of interfaces.
12341         
12342         * class.h: merged MonoArrayClass into MonoClass
12343
12344         * class.c (mono_class_create_from_typedef): compute the vtable size and
12345         allocate space to include the vtable inside MonoClass
12346         (mono_class_metadata_init): initialize the vtable
12347
12348 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
12349
12350         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
12351         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
12352         * image.c: endian fixes by Laurent Rioux.
12353         * object.h, object.c: rename MonoStringObject to MonoString and
12354         MonoArrayObject to MonoArray. Change some function names to conform to
12355         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
12356         guint16* as first argument, so don't use char*.
12357         Provide macros to do the interesting things on arrays in a portable way.
12358         * threads-pthread.c: updates for the API changes and #include <sched.h>
12359         (required for sched_yield()).
12360         * icall.c: updates for the API changes above.
12361         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
12362         platforms that need them.
12363
12364 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
12365
12366         * class.c: set the correct type for all the fundamental
12367         type when loading the class.
12368
12369 2001-10-05  Dick Porter  <dick@ximian.com>
12370
12371         * threads-pthread.c (pthread_mutex_timedlock): Simple
12372         compatibility version for C libraries that lack this call.
12373
12374 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
12375
12376         * class.c: MonoTypes stored in MonoClass are stored as
12377         fundamental MonoTypes when the class represents a
12378         fundamental type (System.Int32, ...).
12379         The TypeHandle return by ldtoken is a MonoType*.
12380         * icall.c: ves_icall_get_data_chunk () write out all the
12381         PE/COFF stuff. Implement ves_icall_define_method (),
12382         ves_icall_set_method_body (), ves_icall_type_from_handle ().
12383         * image.c: properly skip unknown streams.
12384         * loader.h, loader.c: add type_class to mono_defaults.
12385         * metadata.c, metadata.h: export compute_size () as
12386         mono_metadata_compute_size () with a better interface.
12387         Typo and C&P fixes.
12388         * pedump.c: don't try to print the entry point RVA if there is no entry point.
12389         * reflection.c, reflection.h: many cleanups, fixes, output method
12390         signatures and headers, typedef and typeref info, compress the metadata
12391         tables, output all the heap streams, cli header etc.
12392         * row-indexes.h: typo fixes.
12393
12394 2001-10-04  Dick Porter  <dick@ximian.com>
12395
12396         * object.h: Add a synchronisation mutex struct to MonoObject
12397
12398         * object.c (mono_new_object): Initialise the object
12399         synchronisation mutexes
12400
12401         * icall.c: System.Threading.Monitor internal calls
12402         
12403         * threads-pthread.h:
12404         * threads-pthread.c: System.Threading.Monitor internal calls
12405
12406         * threads-types.h: New file, includes the system-specific thread
12407         structures
12408         
12409         * threads-pthread-types.h:
12410         * threads-pthread-types.c: New files, handle pthread-specific
12411         synchronisation types
12412
12413         * threads-dummy-types.h: 
12414         * threads-dummy-types.c: New files of dummy support for
12415         thread-specific types
12416
12417         * metadata.c:
12418         * image.c:
12419         * pedump.c: include mono-endian.h not endian.h
12420         
12421         * Makefile.am: More threads files.
12422         Name mono-endian.h not endian.h
12423
12424 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
12425
12426         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
12427         stuff and implement a few more bits.
12428         * icall.c: a field needs to be dereferenced twice. Do not use the same
12429         name for two variables in the same scope.
12430         * image.c, image.h: cleanups.
12431
12432 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
12433
12434         * class.c (mono_class_metadata_init): bug fix: compute the right size
12435
12436 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
12437
12438         * icall.c: implemented some of the Reflection internalcalls.
12439         * image.c, image.h: start writing out the PE/COFF image.
12440         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
12441         that does the reverse than decode_blob_size ().
12442         * object.c: use mono_metadata_encode_value (). Move here
12443         temporary implementation of mono_string_to_utf8 ().
12444         * rawbuffer.c: make malloc_map static.
12445
12446 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
12447
12448         * metadata.c: fix type comparison for arrays.
12449         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
12450         Added a couple of new classes to monodefaults.
12451         * icall.c: added a couple of Reflection-related internalcalls.
12452         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
12453         Added a byval_arg MonoType to MonoClass.
12454
12455 2001-09-28  Dick Porter  <dick@ximian.com>
12456
12457         * icall.c:
12458         * threads-pthread.h: 
12459         * threads-pthread.c: Implemented internal calls for
12460         LocalDataStoreSlot operations.  Applied mutexes around all shared
12461         data.  Reworked the thread creation and Start() operations to
12462         avoid a race condition.
12463         
12464         * threads-dummy.h:
12465         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
12466
12467 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
12468
12469         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
12470
12471 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
12472
12473         * class.c, loader.c: warn and return NULL instead of erroring out.
12474         * icall.c: added System.AppDomain::getCurDomain().
12475         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
12476
12477 2001-09-25  Dick Porter  <dick@ximian.com>
12478
12479         * threads-pthread.h:
12480         * threads-pthread.c: Implemented timed thread joining and added
12481         System.Threading.Thread::Join_internal internal call
12482
12483         * icall.c: Added System.Threading.Thread::Join_internal internal call
12484
12485         * threads-dummy.h:
12486         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
12487
12488 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
12489
12490         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
12491         mono_string_intern () to implement the semantics of the ldstr opcode
12492         and the interning of System.Strings.
12493         * icall.c: provide hooks to make String::IsIntern and String::Intern
12494         internalcalls.
12495
12496 2001-09-23  Dick Porter  <dick@ximian.com>
12497
12498         * threads-dummy.c: 
12499         * threads-dummy.h: New files of dummy threading routines
12500
12501         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
12502         support code based on system specifics
12503
12504         Rename PTHREAD_LIBS to THREAD_LIBS
12505         
12506 2001-09-23  Dick Porter  <dick@ximian.com>
12507
12508         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
12509         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
12510         internal calls.
12511         (mono_thread_init): Set up a Thread object instance to return when
12512         the main thread calls Thread.CurrentThread
12513         (mono_thread_cleanup): Wait for all subthreads to exit
12514
12515         * icall.c: New internal calls for System.Threading.Thread::Sleep
12516         (including Schedule) and CurrentThread
12517
12518         * threads.h: New file, to insulate thread-specific stuff from the
12519         rest of the code
12520
12521 2001-09-21  Dick Porter  <dick@ximian.com>
12522
12523         * threads-pthread.h: 
12524         * threads-pthread.c: New file, for handling pthreads-style
12525         threading support.  Start() now starts a new thread and executes
12526         the ThreadStart delegate instance.
12527
12528         * icall.c: Added the internalcall for
12529         System.Threading.Thread::Start_internal
12530
12531         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
12532
12533 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
12534
12535         * loader.c: work around the different signatures for delegates
12536         constructors csc generates in compiled code vs the ones compiled in mscorlib.
12537
12538 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
12539
12540         * class.h, class.c: add mono_class_get_field_from_name ().
12541         * *: Fix C comments and other ANSI C issues.
12542
12543 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
12544
12545         * endian.h, assembly.c: fix some endianness issues.
12546
12547 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
12548
12549         * loader.h, load.c: add delegate_class to mono_defaults.
12550         Handle runtime provided methods in mono_get_method ().
12551
12552 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
12553
12554         * loader.c (mono_get_method): use pinvoke for internal call
12555
12556         * icall.c: use pinvoke for internal call
12557
12558         * loader.c (method_from_memberref): set the method name
12559
12560 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
12561
12562         * metadata.c: help the compiler generate better code for
12563         mono_class_from_mono_type ().
12564
12565 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
12566
12567         * class.c (mono_class_metadata_init): delayed computing of the
12568         class size to mono_class_metadata_init ()
12569
12570 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
12571
12572         * class.c, class.h: add an interfaces member to MonoClass.
12573         * image.c, image.h: add assembly_name field to MonoImage
12574         from the assembly table.
12575         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
12576
12577 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
12578
12579         * class.c: Handle Array in mono_class_from_mono_type ().
12580         * metadata.c, pedump.c: some endian fixes.
12581
12582 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
12583
12584         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
12585         * metadata.c: fix small problem introduced with the latest commit.
12586
12587 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
12588
12589         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
12590         We don't need a MonoMetadata pointer anymore to compare signatures in
12591         mono_metadata_signature_equal (), update callers.
12592         Reduced memory usage an number of allocations for MonoMethodHeader and
12593         MonoMethodSignature.
12594
12595 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
12596
12597         * metadata.c: added compare for szarray.
12598
12599 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
12600
12601         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
12602         and add a couple more types to it and mono_defaults. Give an hint on
12603         classes that need implementing in our corlib and are referenced
12604         in mscorlib.
12605
12606 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
12607
12608         * class.h, class.c: keep track if a class is also an Enum.
12609         * loader.c: Implement a couple more types for use in libffi
12610         marshalling. Gives better diagnostics when failing to dlopen
12611         a library. Set method->klass for P/Invoke methods, too.
12612
12613 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
12614
12615         * class.c, class.h: add a MonoType this_arg to MonoClass that
12616         represents a pointer to an object of the class' type that
12617         can be used by the interpreter and later the type cache.
12618         Add best guess alignment info for valuetype objects.
12619
12620 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
12621
12622         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
12623         into MonoType: one less level of indirection and allocation and
12624         simplifies quite a bit of code. Added cache for MonoTypes that are
12625         used frequently, so that we don't need to allocate them all the time.
12626
12627 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
12628
12629         * class.c (mono_class_create_from_typedef): System.Enum is also a
12630         value type, although it does not derive from System.ValueType
12631         (maybe a bug in the ms compiler?)
12632
12633         * metadata.c (mono_type_size): return the right size for value types
12634
12635         * loader.c (mono_get_method): only initialize method header if not abstract
12636
12637         * class.c (mono_class_from_mono_type): use mono_default values. 
12638
12639 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
12640
12641         * *: use MonoClass pointers instead of <type_tokens>
12642         
12643         * class.h: new flag: metadata_inited.
12644
12645         * class.c (mono_class_metadata_init): impl.
12646         (mono_class_instance_size): impl.
12647         (mono_class_data_size): impl.
12648
12649 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
12650
12651         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
12652         MonoClass now has the name and name_space fields. 
12653         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
12654         mono_get_method () takes and optional MonoClass as argument.
12655         Removed mono_typedef_from_name() and added mono_class_token_from_name()
12656         instead that takes advantage of a map from class names to typedef
12657         tokens in MonoImage.
12658
12659 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
12660
12661         * metadata.c: zero is not a valid alignment boundary.
12662         Merge MONO_TYPE_VOID in default decoding code.
12663
12664 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
12665
12666         * image.h: merged MonoMetadata into MonoImage
12667
12668         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
12669         identify the type of elements.
12670
12671 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
12672
12673         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
12674         * cil-coff.h: split MonoMSDOSHeader and add size info.
12675         * image.c: add some consistency checks.
12676         * metadata.c: fix row size computation: one programmer
12677         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
12678         add explanation for the locator routine.
12679         Fix decoding of size in method header.
12680         
12681 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
12682
12683         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
12684         (g_concat_dir_and_file): Bring g_concat_dir_and_file
12685         function from gnome-libs.  This uses the right path separator
12686         based on the OS, and also works around a bug in some systems where
12687         a double slash is not allowed. 
12688         (default_assembly_name_resolver): Use g_concat_dir_and_file
12689         (mono_assembly_open): ditto.
12690
12691 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
12692
12693         * metadata.c (mono_metadata_signature_equal): impl.
12694
12695         * *: void is now a realy MonoType (instead of using NULL)
12696         
12697         * metadata.c (do_mono_metadata_parse_type): use
12698         mono_metadata_parse_type to parse void value.
12699
12700 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
12701
12702         * metadata.c, metadata.h: in the signature and method header store
12703         only the space required for holding the loca vars and incoming arguments.
12704
12705 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
12706
12707         * metadata.c (do_mono_metadata_parse_type): treat void like any
12708         other type (instead of assigning NULL);
12709
12710 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
12711
12712         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
12713
12714 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
12715
12716         * image.c (do_mono_image_open): added a cache for arrays.
12717
12718 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
12719
12720         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
12721         decode a single column from a row in a metadata table and changes
12722         to take advantage of it in the typedef locator (gives a nice speed up).
12723         Store offset info for function params.
12724
12725 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
12726
12727         * image.h (MONO_IMAGE_IS_CORLIB): removed 
12728
12729 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
12730
12731         * assembly.c: how could mono_assembly_close () had ever worked?
12732         * metadata.c, metadata.h: provide offset info for local vars.
12733         Implement mono_type_size () to take care of alignment as well
12734         as size (it was mono_field_type_size in cli/class.c before).
12735
12736 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
12737
12738         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
12739
12740         * assembly.h (CORLIB_NAME): set to corlib.dll
12741
12742         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
12743
12744 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
12745
12746         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
12747         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
12748         tokentype.h: massive namespace cleanup.
12749
12750 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
12751
12752         * metadata.h, metadata.c: decode exception clauses when parsing method header.
12753
12754 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
12755
12756         * metadata.c (mono_metadata_free_type): added check for type !=
12757         NULL (void) before calling mono_metadata_free_type()
12758
12759 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
12760
12761         * metadata.h, row_indexes.h: added header with enumerations to use
12762         to index in the columns from tables in metadata and to decode coded
12763         tokens: we should start using this instead of embedding magic numbers
12764         all over the code.
12765
12766 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
12767
12768         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
12769         Move metadata_t info from cli_image_info_t to MonoImage, where
12770         it's easily accessible. Changed all the uses accordingly.
12771         Added the method and class caches to MonoImage.
12772         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
12773         and mono_metadata_decode_value () signature to be more consistent
12774         with the other parse functions (and simplify code). Taken advantage
12775         of zero-length array allocation with GCC. Removed reduntant (and
12776         wrong) MonoFieldType struct and use MonoParam instead. Changed
12777         mono_metadata_parse_field_type () to use common code for parsing.
12778         Added mono_metadata_typedef_from_field () and
12779         mono_metadata_typedef_from_method () to lookup a typedef index from a
12780         field or method token.
12781         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
12782
12783 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
12784
12785         * metadata.c (mono_metadata_parse_field_type): Implement. 
12786         (do_mono_metadata_parse_type): Split engine from
12787         mono_metadata_parse_type, so that we can create smaller structures
12788         for things that just have one pointer to the MonoType (look at
12789         the MonoFieldType)
12790
12791 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
12792
12793         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
12794         as Jan Gray found out, it is incorrect. 
12795
12796 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
12797
12798         * assembly.c: Implement asssembly loading.  This loads an image
12799         and loads all the referenced assemblies.  Come to think of it, we
12800         could always do lazy loading of the assemblies. 
12801
12802         * image.c (mono_image_open): Keep loaded images in a hashtable.
12803
12804         * image.h (MonoImage): Add reference count.
12805
12806 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
12807
12808         * assembly.c (mono_assembly_open): Keep track of the file name in
12809         case the assembly has no ASSEMBLY table.
12810
12811         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
12812         from get.c here.
12813
12814 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
12815
12816         * metadata.c, metadata.h: decode local vars in method header
12817         parse function. Change callers accordingly.
12818
12819 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
12820
12821         * metadata.h, cil-coff.h: protect against multiple inclusion.
12822         Added some new structures to hold information decoded from metadata:
12823         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
12824         and relevant decoding/free functions.
12825         * metadata.c: implement decoding functions. Add warning for out of bounds
12826         index in mono_metadata_locate(). Implement mono_get_method () to retreive
12827         all the info about a method signature and invocation. Remove check on
12828         uninitialized local var in parse_mh() and fix memory leak.
12829
12830 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
12831
12832         * metadata.h: More macros.
12833
12834         * tokentype.h: New file.
12835
12836 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
12837
12838         * assembly.c: added a consistency check and initialize
12839         some structures with g_new0().
12840         * metadata.c: fixed a couple more bugs in table size computation
12841         and add other checks for out-of bound access to metadata.
12842
12843 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
12844
12845         * metatada.c: fix bugs computing table sizes. Spew a
12846         warning when index in string heap is out of bounds.
12847
12848 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
12849
12850         * metadata.h: Add a couple of macros to manipulate tokens. 
12851
12852 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
12853
12854         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
12855         cli_section_tables).
12856
12857 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
12858
12859         * metadata.c (mono_metadata_user_string): New function, provides
12860         access to the UserString heap. 
12861
12862 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
12863
12864         * metadata.c: Add inline documentation.
12865
12866 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
12867
12868         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
12869         files. 
12870
12871 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
12872
12873         * typeattr.h: New file, TypeAttribute flags. 
12874
12875 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
12876
12877         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
12878         mono_assembly_ensure_section): Section loading code.
12879         (load_section_tables): Load the sections.
12880
12881         * mono/metadata/metadata.c (mono_metadata_locate_token,
12882         mono_metadata_locate): Functions to locate the information
12883         definition given a token or a table and an index.
12884         (mono_metadata_compute_table_bases): New.
12885         (compute_size): New function to compute the sizes of the various
12886         tables.
12887
12888         * mono/metadata/metadata.h: Finish listing the different index
12889         types. 
12890
12891         * mono/metadata/pedump.c: Improve to dump new information.
12892
12893 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
12894
12895         * mono/metadata/metadata.c: Entered all the tables matching
12896         Beta2. 
12897
12898         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
12899