2003-12-01 Dick Porter <dick@ximian.com>
[mono.git] / mono / metadata / ChangeLog
1 2003-12-01  Dick Porter  <dick@ximian.com>
2
3         * icall.c: 
4         * locales.c: Implement string compares and searching
5
6         * object.h: Add extra Thread field
7
8 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
9
10         * reflection.c (fixup_method): Add support for MonoCMethod.
11
12 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
13
14         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
15
16         * reflection.c (assembly_name_to_aname): Allow extra characters in
17         assembly names. Fixes #51468.
18
19 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
20
21         * exception.c (mono_exception_from_name_domain): New helper function.
22
23         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
24         exception object in the correct domain.
25
26         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
27         formatting + make a copy a the input data.
28
29         * loader.c (mono_get_method_from_token): Methods which contain
30         native code do not have entries in the ImplMap.
31
32         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
33         Thanks to Gonzalo for spotting this.
34         
35         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
36         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
37
38         * assembly.h (mono_assembly_load_from): Split the second part of 
39         assembly loading into a new public function.
40
41         * exception.h (mono_get_exception_bad_image_format): New function.
42
43 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
44
45         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
46         Enumerate all modules inside a dynamic assembly. Fixes #51293.
47         
48         * icall.c: Add new icall for creating dynamic methods.
49
50         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
51
52         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
53
54         * reflection.c (mono_reflection_create_dynamic_method): New icall to
55         create a dynamic method.
56
57         * reflection.c (resolve_object): New helper function.
58
59         * reflection.c: Generalize ReflectionMethodBuilder and the functions
60         which manipulate it so they can also work on dynamic methods.
61
62         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
63         creating the MonoReflectionMethodAux structure if it is not needed.
64         
65         * reflection.h verify.c: Update after changes to object layout.
66
67         * reflection.c (method_builder_encode_signature): Fix compilation on
68         gcc 2.95.x.
69
70 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
71
72         * appdomain.h: Added support for context static fields. Added static_data
73           field to MonoAppContext and renamed thread_static_fields to a more
74           generic special_static_fields in MonoAppDomain, since it can now contain
75           context static fields.
76         * domain.c: Updated hashtable name.
77         * object.c: Replaced field_is_thread_static() for a more generic
78           field_is_special_static() which also checks for context static attribute.
79           In mono_class_vtable(), added support for static context fields.
80         * threads.c: Changed methods that manage thread static fields to more
81           generic methods so they can be reused both for thread and context static
82           data.
83         * threads.h: Declared some new methods.
84
85 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
86
87         * reflection.h: Update after changes to the managed types.
88
89         * reflection.c (encode_custom_modifiers): New helper function.
90
91         * reflection.c (method_encode_signature): Emit custom modifiers.
92
93         * reflection.c (field_encode_signature): Emit custom modifiers.
94
95 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
96
97         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
98
99         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
100         implementation.
101
102         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
103         icall.
104
105         * object.c (mono_field_get_value_object): New function.
106
107         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
108         specific.
109
110 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
111
112         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
113         return a preallocated out-of-memory exception instance.
114
115         * object.c (out_of_memory): Use the new function.
116
117         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
118         flag is before the custom modifiers. Fixes #49802.
119
120 2003-11-16  Martin Baulig  <martin@ximian.com>
121
122         * class.c (mono_class_is_open_constructed_type): Implemented the
123         MONO_TYPE_GENERICINST case.
124
125 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
126
127         * assembly.c (mono_assembly_fill_assembly_name): New function to
128         fill out the MonoAssemblyName structure.
129         (mono_assembly_open): Use the new function.
130
131         * icall.c (fill_reflection_assembly_name): New helper function.
132
133         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
134         new function.
135
136         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
137
138 2003-11-15  Martin Baulig  <martin@ximian.com>
139
140         * class.c (mono_class_is_open_constructed_type): New public
141         function; checks whether a type is an open constructed type,
142         ie. whether it still contains type parameters.
143         (mono_class_inflate_generic_type): If we're a type parameter and
144         the inflated type is also a MONO_TYPE_(M)VAR, return the original
145         type.
146
147         * class.h (MonoGenericInst): Added `guint32 is_open'.
148
149         * loader.c (method_from_methodspec): Check whether we're an open
150         or closed constructed type and set `ginst->is_open'.
151
152         * reflection.c (mono_reflection_bind_generic_parameters): Check
153         whether we're an open or closed constructed type and set
154         `ginst->is_open'.
155         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
156         from open constructed types.
157
158 2003-11-15  Martin Baulig  <martin@ximian.com>
159
160         * reflection.c (mono_reflection_bind_generic_parameters): If we're
161         a generic instance (instead of a generic type declaration) with
162         unbound generic parameters, bind them to our actual types.
163
164 2003-11-14  Martin Baulig  <martin@ximian.com>
165
166         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
167
168         * reflection.c (mono_reflection_bind_generic_parameters): If we're
169         an interface type, populate `res->interfaces' with instantiated
170         versions of all the interfaces we inherit.
171
172 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
173
174         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
175         when MONO_PATH is set but doesn't contain the install dir.
176
177 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
178
179         * icall.c:
180         (ves_icall_Type_GetInterfaces): don't return an interface twice when
181         it's also implemented in base classes. Fixes bug #50927.
182
183 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
184
185         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
186         if this method is called from a finalizer. Fixes #50913.
187
188 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
189
190         * threads.c: Implement VolatileRead/VolatileWrite
191
192         * icall.c: Add new icalls for VolatileRead/VolatileWrite
193
194 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
195
196         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
197         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
198         2.95.3.
199
200         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
201         from Peter Ross (pro@missioncriticalit.com).
202         
203 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
204
205         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
206
207 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
208
209         * assembly.c (mono_assembly_load_references): Disable check because it
210         triggers on older corlibs which lots of people have.
211
212 2003-11-12  Jackson Harper  <jackson@ximian.com>
213
214         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
215         load corlib.dll if mscorlib.dll is not found.
216         * assembly.h: Remove corlib name define.
217         * class.c:
218         * domain.c:
219         * image.c: Change corlib name to mscorlib.
220         
221 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
222
223         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
224
225 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
226
227         * appdomain.h: Added loader_optimization here to sync with the C#
228         code, and add disallow_binding_redirects field.
229
230 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
231
232         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
233
234         * reflection.c (mono_image_build_metadata): Fix crash on modules
235         with no types.
236
237         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
238
239         * icall.c (ves_icall_get_method_info): Return callingConvention as
240         well.
241
242         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
243         namespaces from the EXPORTEDTYPE table as well.
244
245         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
246         from all modules inside the assembly.
247         
248 2003-11-11  Martin Baulig  <martin@ximian.com>
249
250         * reflection.c (mono_reflection_bind_generic_parameters): Make
251         this work for interfaces.
252
253 2003-11-11  Martin Baulig  <martin@ximian.com>
254
255         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
256
257 2003-11-11  Martin Baulig  <martin@ximian.com>
258
259         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
260         "MonoInflatedMethod" and "MonoInflatedCtor".
261
262 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
263
264         * reflection.c (resolution_scope_from_image): Use the assembly table
265         from the manifest module, since other modules don't have it.
266
267         * debug-helpers.c (mono_type_full_name): New helper function.
268
269         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
270
271         * image.c (mono_image_load_file_for_image): New public function which
272         is a replacement for the load_file_for_image in class.c.
273
274         * assembly.c (mono_assembly_load_module): A wrapper for the function
275         above which does assembly association and reference loading too.
276
277         * class.c (mono_class_from_name): Call mono_assembly_load_module.
278
279 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
280
281         * appdomain.c: not all of the attributes for the full assembly name
282         are required and the order doesn't matter. Fixes bug #50787.
283
284 2003-11-10  Dick Porter  <dick@ximian.com>
285
286         * locales.c: Use platform-endian UTF16
287
288 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
289
290         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
291         
292 2003-11-10  Martin Baulig  <martin@ximian.com>
293
294         * metadata.c
295         (mono_metadata_load_generic_params): Make this actually work.
296
297         * reflection.c (mono_reflection_bind_generic_parameters): If our
298         parent is a generic instance, pass all the `types' to it, no
299         matter whether it has the same number of type parameters or not.
300
301 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
302
303         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
304
305         * assembly.c (mono_assembly_load_references): Move the image<->assembly
306         assignment code to this function so it gets called recursively for all
307         modules.
308
309         * image.c (load_modules): Remove the assembly assignment since it is
310         now done by mono_assembly_load_references.
311         
312         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
313         Add 'module' argument.
314         (mono_module_get_types): New helper function.
315         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
316
317 2003-11-08  Martin Baulig  <martin@ximian.com>
318
319         * class.c (mono_class_inflate_generic_method): Interface method
320         don't have a header.
321
322         * reflection.c (mono_image_get_methodspec_token): Take an
323         additional `MonoGenericInst *' argument instead of reading it from
324         the header; this is necessary to support interfaces.
325         (mono_image_create_token): Pass the `MonoGenericInst *' from the
326         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
327         (inflated_method_get_object): Take an additional `MonoGenericInst *'
328         argument.
329
330         * reflection.h (MonoReflectionInflatedMethod): Added
331         `MonoGenericInst *ginst'.
332
333 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
334
335         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
336
337 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
338
339         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
340
341 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
342
343         * reflection.c 
344         (reflection_methodbuilder_from_method_builder):
345         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
346         initialize a ReflectionMethodBuilder structure.
347         (mono_image_get_methodbuilder_token):
348         (mono_image_get_ctorbuilder_token): New functions to emit memberref
349         tokens which point to types in another module inside the same assembly.
350
351         * reflection.c: Use the new helper functions.
352         
353         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
354
355         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
356         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
357
358         * reflection.c (resolution_scope_from_image): Emit a moduleref if
359         neccesary.
360
361         * reflection.c (mono_image_build_metadata): Emit metadata only for the
362         current module. Emit the manifest only for the main module.
363
364         * reflection.c (mono_image_create_token): Add assertion when a 
365         memberref needs to be created.
366
367         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
368
369         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
370         larger buffer for the custom attribute blob. Fixes #50637.
371         
372 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
373
374         * threadpool.c: notify listener on async processing handles after
375         invoking the async callback. Thanks to Zoltan.
376
377 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
378
379         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
380         avoid code duplication.
381
382         * reflection.h (MonoDynamicImage): New type which is currently unused,
383         but will be used through the ref.emit code in place of 
384         MonoDynamicAssembly.
385
386         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
387         object layout.
388
389         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
390         a MonoDynamicImage instead of just a MonoImage.
391         
392         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
393         icalls to ModuleBuilder but keep their semantics, so they will work
394         with moduleb->assemblyb. This will change later.
395         
396 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
397
398         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
399         object layout.
400
401         * reflection.c (mono_image_build_metadata): Avoid creation of a default
402         main module, since it is now done by the managed code.
403
404 2003-11-03  Martin Baulig  <martin@ximian.com>
405
406         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
407         `ginst->klass' here.
408         (method_encode_methodspec): Don't use the `ginst->generic_method's
409         klass if it's a generic instance, use `ginst->klass' in this case.
410
411 2003-11-03  Martin Baulig  <martin@ximian.com>
412
413         * reflection.c (mono_image_get_generic_method_param_info):
414         Removed, use mono_image_get_generic_param_info() instead.
415         (mono_image_get_type_info): Write the GenericParam table before
416         the Method table.  This is neccessary because in the GenericParam
417         table, type parameters of the class (ie. '!0' etc.) must come
418         before the ones from its generic methods (ie. '!!0' etc).
419
420 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
421
422         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
423
424 2003-11-02  Martin Baulig  <martin@ximian.com>
425
426         * reflection.c (create_generic_typespec): Take a
427         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
428         the generic parameters from it.
429
430 2003-11-02  Martin Baulig  <martin@ximian.com>
431
432         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
433         instead of a `MonoClassField *' since we just need the type.
434         (create_generic_typespec): New static function.  Creates a
435         TypeSpec token for a generic type declaration.
436         (mono_image_get_generic_field_token): New static function.
437         (mono_image_create_token): If we're a FieldBuilder in a generic
438         type declaration, call mono_image_get_generic_field_token() to get
439         the token.
440
441 2003-11-02  Martin Baulig  <martin@ximian.com>
442
443         * reflection.h
444         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
445         `MonoReflectionGenericInst *declaring_type' and
446         `MonoReflectionGenericInst *reflected_type' fields.
447
448         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
449         `MonoReflectionGenericInst *declaring_type' and a
450         `MonoReflectionGenericInst *reflected_type' argument instead of a
451         single `MonoReflectionGenericInst *type' one.  Set
452         `res->declaring_type' and `res->reflected_type' from them.
453         (mono_reflection_inflate_field): Likewise.      
454
455 2003-11-02  Martin Baulig  <martin@ximian.com>
456
457         * class.c (mono_class_setup_vtable): Don't store generic methods
458         in the vtable.  
459
460 2003-11-02  Martin Baulig  <martin@ximian.com>
461
462         * reflection.h (MonoReflectionGenericInst): Added
463         `MonoReflectionType *declaring_type'.
464
465         * reflection.c (mono_reflection_bind_generic_parameters): Use
466         `if (tb->parent)' instead of `klass->parent'.
467
468 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
469
470         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
471         with an empty ASSEMBLY table.
472
473         * reflection.c (mono_image_build_metadata): Avoid using the same loop
474         variable in the inner and outer loops.
475
476 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
477
478         * metadata.h (mono_metadata_make_token): Put parentheses around macro
479         argument.
480
481         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
482         
483         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
484         icalls. Instead, do everything in managed code. This is needed since
485         it is hard to restore the original domain etc. in unmanaged code in the
486         presence of undeniable exceptions.
487
488         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
489         New icalls to push and pop appdomain refs.
490
491 2003-10-31  Martin Baulig  <martin@ximian.com>
492
493         * class.c (inflate_generic_type): Renamed to
494         mono_class_inflate_generic_type() and made it public.
495
496         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
497         New interncall.
498
499         * loader.c (mono_field_from_memberref): Also set the retklass for
500         typespecs.
501
502         * fielder.c (mono_image_get_inflated_field_token): New static
503         method; creates a metadata token for an inflated field.
504         (mono_image_create_token, fixup_method): Added support for
505         "MonoInflatedField".
506         (fieldbuilder_to_mono_class_field): New static function.
507         (mono_reflection_inflate_field): New public function.
508
509         * reflection.h
510         (MonoReflectionGenericInst): Added `MonoArray *fields'.
511         (MonoReflectionInflatedField): New typedef.     
512
513 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
514
515         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
516         for Solaris and other platforms without s6_addr16
517
518 2003-10-30  Martin Baulig  <martin@ximian.com>
519
520         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
521         argument instead of two.
522         (mono_class_inflate_generic_signature): Likewise.
523         (inflate_generic_header): Likewise.
524         (mono_class_inflate_generic_method): Likewise.  In addition, if
525         `ginst->klass' is set, it becomes the new `method->klass'.
526
527         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
528         field.
529
530         * reflection.c (encode_generic_method_sig): Write a 0xa as the
531         first byte. [FIXME]
532         (method_encode_methodspec): If we have generic parameters, create
533         a MethodSpec instead of a MethodRef.
534         (fixup_method): Added support for "MonoInflatedMethod" and
535         "MonoInflatedCtor".
536         (mono_image_create_token): Added support for "MonoInflatedMethod"
537         and "MonoInflatedCtor".
538         (inflated_method_get_object): New static function; returns a
539         managed "System.Reflection.MonoInflatedMethod" object.
540         (mono_reflection_bind_generic_method_parameters): Return a
541         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
542         (mono_reflection_inflate_method_or_ctor): Likewise.
543         (mono_image_get_generic_method_param_info): Initialize unused
544         fields to zero.
545         (mono_image_get_generic_param_info): Likewise.
546
547         * reflection.h (MonoReflectionInflatedMethod): New public
548         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
549         "S.R.MonoInflatedCtor" classes.
550
551         * loader.c (method_from_memberref): If we're a TypeSpec and it
552         resolves to a generic instance, inflate the method.
553
554 2003-10-28  Dick Porter  <dick@ximian.com>
555
556         * object.c (mono_runtime_run_main): Convert command-line arguments
557         into utf8, falling back to the user's locale encoding to do so.
558
559 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
560
561         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
562         at this time.
563
564         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
565
566         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
567         up icalls at method definition time. Partially fixes #33569.
568
569 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
570
571         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
572         marshalling of arrays. Fixes #50116.
573
574         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
575
576         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
577         points to a vtable in the dying appdomain.
578
579         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
580         listeners into unmanaged code inside the lock.
581
582         * object.c (mono_class_vtable): Turn off typed allocation in non-root
583         domains and add some comments.
584
585 2003-10-25  Martin Baulig  <martin@ximian.com>
586
587         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
588
589         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
590
591         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
592         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
593         currently parsing.  Create the generic class and store it in
594         `generic_inst->klass' before parsing the type arguments.  This is
595         required to support "recursive" definitions; see mcs/tests/gen-23.cs
596         for an example.
597         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
598         to support recursive typespec entries.
599
600         * class.c (mono_class_setup_parent): If our parent is a generic
601         instance, we may get called before it has its name set.
602         (mono_class_from_generic): Splitted into
603         mono_class_create_from_generic() and mono_class_initialize_generic().
604
605 2003-10-25  Martin Baulig  <martin@ximian.com>
606
607         * icall.c (ves_icall_Type_BindGenericParameters): Return a
608         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
609         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
610         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
611
612         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
613         (create_typespec): Likewise.
614         (mono_reflection_bind_generic_parameters): Return a
615         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
616         (mono_reflection_inflate_method_or_ctor): New public function.
617
618         * reflection.h (MonoReflectionGenericInst): New typedef.        
619
620 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
621
622         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
623         inside the domain lock. Fixes #49993.
624         
625         * object.c (mono_class_vtable): When typed allocation is used, 
626         allocate vtables in the GC heap instead of in the mempool, since the
627         vtables contain GC descriptors which are used by the collector even
628         after the domain owning the mempool is unloaded.
629
630         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
631
632         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
633         reflect what it does. Also invalidate mempools instead of freeing
634         them if a define is set.
635
636         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
637         of the appdomain.
638         
639         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
640         hold the finalizable objects in this domain.
641
642         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
643         appdomain.
644
645         * appdomain.c (mono_domain_set): New function to set the current
646         appdomain, but only if it is not being unloaded.
647
648         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
649         appdomain which is being unloaded.
650         
651         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
652         unloading of the root appdomain.
653
654         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
655         icall to execute a method in another appdomain. Intended as a 
656         replacement for InternalSetDomain, which can confuse the code 
657         generation in the JIT.
658
659         * appdomain.c (mono_domain_is_unloading): New function to determine
660         whenever an appdomain is unloading.
661
662         * appdomain.c (mono_domain_unload): New function to correctly unload
663         an appdomain.
664
665         * assembly.c (mono_assembly_load_references): Check that an assembly
666         does not references itself.
667
668         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
669         domain manually, it asks the finalizer thread to do it, then waits for
670         the result. Also added a timeout.
671
672         * icall.c: Register the new icalls.
673
674         * threads.h threads.c: Export the mono_gc_stop_world and 
675         mono_gc_start_world functions.
676         
677         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
678         function to fill out the mempool with 0x2a.
679
680 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
681
682         * reflection.h (MonoReflectionMethodAux): New structure to store
683         information which is rarely used, thus is not in the MonoMethod
684         structure.
685
686         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
687         store the aux info.
688
689         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
690         and marshalling info into the aux structure.
691
692         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
693         from the aux structure.
694
695         * loader.c (mono_method_get_param_names): Retrieve the param names from
696         the aux structure.
697         
698 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
699
700         * exception.h exception.c: Add AppDomainUnloadedException && fix 
701         warning.
702
703 2003-10-21  Dick Porter  <dick@ximian.com>
704
705         * socket-io.c
706         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
707         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
708
709 2003-10-21  Martin Baulig  <martin@ximian.com>
710
711         * reflection.c (mono_reflection_bind_generic_parameters):
712         `klass->parent' is NULL for interfaces.
713
714 2003-10-21  Martin Baulig  <martin@ximian.com>
715
716         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
717
718 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
719
720         * exception.c (mono_exception_from_name_msg): New helper function for
721         creating exceptions and initializing their message field.
722
723         * exception.c: Simplify functions using the new helper.
724
725         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
726         New function.
727
728         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
729         mono_raise_exception, since otherwise gcc doesn't generate the function
730         epilog for raise_exception, confusing the stack unwinding in the JIT.
731         Fixes #45043.
732
733         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
734         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
735         Fixes #49499.
736
737 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
738
739         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
740         utf8.
741
742 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
743
744         * icall.c: Removed GetUninitializedObject method because
745           AllocateUninitializedClassInstance does the same.
746
747 2003-10-18  Martin Baulig  <martin@ximian.com>
748
749         * class.c (inflate_generic_signature): Renamed to
750         mono_class_inflate_generic_signature() and made it public.
751         (my_mono_class_from_generic_parameter): New static function; if we
752         don't already have the generic parameter's MonoClass, create a
753         very simple one which is just used internally in the runtime and
754         not passed back to managed code.
755
756         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
757
758         * metadata.h (MonoMethodSignature): Moved the
759         `MonoGenericParam *gen_params' to the MonoMethodHeader.
760         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
761
762         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
763         ves_icall_MonoMethod_GetGenericArguments(); this is now an
764         interncall on the MonoMethod class, not on MethodInfo.
765         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
766         calling mono_reflection_bind_generic_method_parameters() directly.
767
768         * loader.c (mono_method_get_signature): If this is a MethodSpec;
769         return the already computed `method->signature'.
770         (method_from_methodspec): New static function to load a method
771         from a MethodSpec entry.
772         (mono_get_method_from_token): Call the new method_from_methodspec()
773         for MethodSpec tokens.  
774         (mono_get_method_from_token): If we're a generic method, load the
775         type parameters.
776
777         * reflection.c (mono_image_get_memberref_token): Allow
778         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
779         table.
780         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
781         (mono_image_create_token): First check whether it's a generic
782         method (so we'd need to create a MethodSpec), then do the other
783         two alternatives.
784         (mono_reflection_bind_generic_method_parameters): Return a
785         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
786         called directly from the interncall.
787
788 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
789
790         * reflection.c (load_public_key): Move loading of the public key
791         into managed code.
792
793         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
794
795         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
796         fields.
797
798         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
799         culture, hash_alg and public_key. Fixes #49555.
800
801 2003-10-17  Martin Baulig  <martin@ximian.com>
802
803         * class.h (MonoGenericInst): Moved this declaration here and added
804         `MonoMethod *generic_method'.
805
806         * icall.c
807         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
808         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
809
810         * metadata.c (mono_metadata_type_equal): Two types of
811         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
812         index; ie. don't compare the address of the `MonoGenericParam'
813         structure.
814         (mono_metadata_load_generic_params): Removed the `MonoMethod
815         *method' argument.
816
817         * metadata.h (MonoGenericInst): Moved declaration to class.h.
818         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
819
820         * reflection.c (method_encode_signature): Encode the number of
821         generic parameters.
822         (encode_generic_method_sig): New static function.
823         (method_encode_methodspec): New static function; creates an entry
824         in the MethodSpec table for a generic method.
825         (mono_image_get_methodspec_token): New static function.
826         (mono_image_create_token): Call mono_image_get_methodspec_token()
827         for generic methods.
828         (mono_reflection_bind_generic_method_parameters): New public
829         function.  Instantiates a generic method.
830
831 2003-10-16  Martin Baulig  <martin@ximian.com>
832
833         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
834         *gen_params' here from MonoMethodHeader.
835
836         * metadata.c (mono_metadata_parse_method_signature): If we have
837         generic parameters, initialize `method->gen_params' and then set
838         the correct `type->data.generic_param' in all the parameters.
839
840 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
841
842         * threads.c (mono_threads_get_default_stacksize): New function to 
843         return the default stacksize.
844
845         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
846         termination of the finalizer thread, since the previous method had
847         race conditions. Fixes #49628.
848
849         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
850         as for the other managed threads.
851
852 2003-10-16  Martin Baulig  <martin@ximian.com>
853
854         * class.c (inflate_generic_signature): Copy `generic_param_count'
855         and `gen_params'.
856
857         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
858         New interncall.
859
860         * metadata.c (mono_metadata_parse_method_signature): Actually set
861         the `method->generic_param_count' here.
862         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
863
864 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
865
866         * object.h: Add a new field to TypedRef to simplify the implementation
867         of the REFANY opcodes in the JIT.
868
869         * icall.c: Make use of the new field.
870
871         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
872         dynamically.
873
874 2003-10-15  Martin Baulig  <martin@ximian.com>
875
876         * class.c (mono_class_from_gen_param): Renamed to
877         mono_class_from_generic_parameter() and moved most of the
878         functionality from mono_reflection_define_generic_parameter()
879         here; ie. we create a "real" class here.
880         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
881         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
882         previously been called.
883
884         * class.h (MonoGenericParam): Moved the declaration of this struct
885         here from metadata.h and added `MonoMethod *method'.
886
887         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
888         interncall.
889
890         * loader.c (mono_get_method_from_token): If we have any generic
891         parameters, call mono_metadata_load_generic_params() to read them
892         from the MONO_TABLE_GENERICPAR.
893
894         * metadata.c (mono_metadata_load_generic_params): Added
895         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
896
897         * metadata.h (MonoMethodSignature): Replaced
898         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
899         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
900
901         * reflection.c (mono_reflection_define_generic_parameter): Moved
902         most of the functionality into the new
903         mono_class_from_generic_parameter(); set the `method' field if
904         we're a method parameter.       
905
906 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
907
908         * marshal.c (emit_struct_conv): if native size is 0
909         emit no code.
910
911 2003-10-14  Martin Baulig  <martin@ximian.com>
912
913         * icall.c: The generics API has changed in the spec since it was
914         added to System.Type; these modifications make it match the spec
915         again.
916         (ves_icall_Type_GetGenericParameters): Renamed to
917         `ves_icall_Type_GetGenericArguments'.
918         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
919         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
920         `ves_icall_MonoType_get_HasGenericArguments'.
921         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
922         `ves_icall_MonoType_get_IsGenericParameter'.
923         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
924         this is no interncall anymore.
925         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
926         `ves_icall_TypeBuilder_get_IsGenericParameter'.
927
928 2003-10-14  Martin Baulig  <martin@ximian.com>
929
930         * reflection.c (mono_reflection_bind_generic_parameters): Also
931         inflate generic methods if we're reading the class from IL.
932
933 2003-10-13  Martin Baulig  <martin@ximian.com>
934
935         * reflection.c (mono_reflection_define_generic_parameter): This
936         method isn't called directly from the icall anymore; take a
937         `MonoReflectionAssemblyBuilder *' so we can use this for type and
938         method generic parameters.
939         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
940         (method_builder_encode_signature): Encode generic parameters.
941         (mono_image_get_method_info): Write generic params to the
942         MONO_TABLE_GENERICPARAM table.
943
944         * reflection.h (MonoReflectionMethodBuilder): Added
945         `MonoArray *generic_params'.
946
947         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
948
949         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
950         wrapper for mono_reflection_define_generic_parameter().
951         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
952
953 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
954
955         * marshal.h: Add missing function to fix build.
956
957         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
958         the SetLastError pinvoke attribute.
959
960         * marshal.c (mono_marshal_set_last_error): New helper function called
961         by the generated code.
962         
963         * marshal.c (mono_mb_emit_branch): New helper function.
964
965         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
966
967         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
968         classes as parameters and return values of delegates. Fixes #29256. 
969
970 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
971
972         * locales.c: use gint32 in non HAVE_ICU case
973
974 2003-10-11  Martin Baulig  <martin@ximian.com>
975
976         * mono-debug.c (mono_debug_add_method): Added a workaround for
977         bug #48591.
978
979 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
980
981         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
982         delegates passed to native code must use the STDCALL calling 
983         convention. Fixes #35987.
984
985 2003-10-10  Martin Baulig  <martin@ximian.com>
986
987         * class.c (inflate_generic_type): If we're inflating for a generic
988         type instance (and not for a generic method), return
989         MONO_TYPE_MVAR unchanged.
990
991 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
992
993         * string-icalls.c: Join ignores null strings in the source array.
994         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
995         * threads.c: GetAvailableTheads is slightly more accurate.
996
997 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
998
999         * threads.h threads.c : add mono_threads_set_default_stacksize
1000         and pass default to CreateThread calls.
1001
1002 2003-10-09  Dick Porter  <dick@ximian.com>
1003
1004         * icall.c:
1005         * locales.h:
1006         * locales.c: Internal calls for constructing CultureInfo and
1007         related objects from libicu (if its available.)
1008
1009 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
1010
1011         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
1012
1013 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1014
1015         * threadpool.c: added an argument to async_invoke_thread that is the
1016         item to process, pass the MonoAsyncResult to the thread start function
1017         when creating a new thread. This way we don't need to acquire any lock
1018         when we're creating a new thread. Readded a semaphore for faster
1019         response times (instead of that Sleep i added).
1020
1021 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
1022
1023         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
1024         get daylight change dates better on Windows, fix handling
1025         of platforms without tm_gmtoff.
1026
1027 2003-10-06  Martin Baulig  <martin@ximian.com>
1028
1029         * class.c (inflate_generic_method): Renamed to
1030         mono_class_inflate_generic_method() and made public.
1031         (mono_class_init): Don't inflate the generic methods here.
1032         (mono_class_from_generic): Added `gboolean inflate_methods'
1033         argument.  Inflate the methods here.
1034
1035         * loader.c (mono_method_get_param_names): Ignore instances of
1036         generic types for the moment.
1037
1038         * reflection.c (fixup_method): Added support for inflated methods.
1039         (mono_image_create_token): Use mono_image_get_methodref_token()
1040         for inflated methods.
1041         (mono_custom_attrs_from_param): Ignore instances of generic types
1042         for the moment.
1043         (mono_reflection_bind_generic_parameters): New public function.
1044         Moved all the functionality from
1045         ves_icall_Type_BindGenericParameters() here and added support for
1046         dynamic types.
1047         (mono_reflection_define_generic_parameter): Initialize
1048         `klass->methods' here.
1049
1050         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
1051         functionality into mono_reflection_define_generic_parameter().
1052         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
1053         TypeBuilder, return that TypeBuilder.
1054
1055 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1056
1057         * appdomain.c: removed mono_delegate_semaphore.
1058
1059         * threadpool.c:
1060         (mono_thread_pool_add): moved hash table creation inside and the thread 
1061         creation outside of the critical region.
1062         (mono_thread_pool_finish): removed obsolete code.
1063         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
1064         continue or exit the thread depending on the queue.
1065
1066 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
1067
1068         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
1069         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
1070         handle more bool marshalling options
1071
1072 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
1073
1074         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
1075         arrays of structs. Also add a more descriptive error message when
1076         a structure member is marshalled as LPArray.
1077
1078 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
1079
1080         * marshal.c (mono_marshal_get_native_wrapper): Add support for
1081         marshalling arrays of complex types. Fixes #29098. Also remove an
1082         usused and incomplete function.
1083
1084 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
1085
1086         * gc.c: report heap_size - free_bytes as total memory allocated
1087         (bug#49362).
1088
1089 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
1090
1091         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
1092         fix timezone handling problems on Windows.
1093         
1094         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
1095         asserts when the year is outside the range handled by ms the functions.
1096
1097         * class.c (setup_interface_offsets): If the class is an interface,
1098         fill out its interface_offsets slot.
1099
1100 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1101
1102         * threadpool.c: mark threadpool threads as background.
1103
1104 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
1105
1106         * decimal.c - define DECINLINE to nothing if not using GCC
1107
1108 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
1109
1110         * assembly.c: More refcount fixes.
1111
1112 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1113
1114         * string-icalls.c: if we're not trimming, return the same string.
1115         When not splitting, don't create a new string.
1116
1117 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1118
1119         * image.c:
1120         (mono_image_open): increment the ref_count inside the critical section.
1121
1122 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
1123
1124         * image.c (mono_image_open): Fix reference counting bug.
1125
1126 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
1127
1128         * marshal.c (mono_marshal_type_size) struct alignment changed for 
1129         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
1130         64bits. Avoid leak in mono_marshal_get_native_wrapper when
1131         mono_lookup_pinvoke_call throws.        
1132
1133 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
1134
1135         * reflection.c (mono_reflection_parse_type): Fix #49114.
1136
1137         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
1138         temporary workaround for cygwin header problem.
1139
1140         * object.c (mono_object_isinst): Synchronize this with the code
1141         generated by the JIT for casts.
1142
1143 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
1144
1145         * reflection.c (encode_type): Fix #38332.
1146
1147 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
1148
1149         * marshal.c (mono_marshal_method_from_wrapper): New function to return
1150         the original method from the wrapper method.
1151
1152 2003-09-25  Martin Baulig  <martin@ximian.com>
1153
1154         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
1155         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
1156         (ves_icall_Type_get_IsGenericInstance): New interncall.
1157
1158 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
1159
1160         * object.c: fix cast warning in big endian code.
1161
1162 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
1163
1164         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
1165         
1166 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1167
1168         * assembly.c: don't call check_env from mono_assembly_load. It's
1169         already done once in mono_assemblies_init and may cause headaches when
1170         multiple threads are loading assemblies.
1171
1172 2003-09-19  Martin Baulig  <martin@ximian.com>
1173
1174         * reflection.c (mono_reflection_define_generic_parameter): Don't
1175         allocate `klass->methods', set `klass->flags' to
1176         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
1177
1178 2003-09-18  Martin Baulig  <martin@ximian.com>
1179
1180         * class.c (mono_class_init): Don't create `class->methods' if it's
1181         already initialized.
1182
1183         * metadata.c (mono_metadata_load_generic_params): Make this
1184         actually work.
1185
1186         * reflection.c (mono_reflection_define_generic_parameter): Set
1187         parent class and interfaces from the constraints.
1188
1189         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
1190         to keep this struct in sync with the declaration in TypeBuilder.cs.
1191
1192 2003-09-17  Martin Baulig  <martin@ximian.com>
1193
1194         * metadata.h (MonoType): Replaced the data's `int type_param'
1195         field with `MonoGenericParam *generic_param'.
1196         (MonoGenericParam): Added `MonoClass *klass'.
1197
1198         * class.c (mono_class_from_gen_param): Removed the
1199         `MonoImage *image' and `int type_num' arguments.
1200
1201         * metadata.c (mono_metadata_parse_generic_param): New static
1202         method; creates a MonoGenericParam which just contains the index.
1203         (do_mono_metadata_parse_type): Call
1204         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
1205         MONO_TYPE_MVAR.
1206
1207         * reflection.c (mono_image_typedef_or_ref): Generic type
1208         parameters may be in the same assembly, but never use a typedef
1209         for them.
1210         (mono_reflection_define_generic_parameter): We're now creating a
1211         "real" class for the type parameter; it's now safe to call
1212         mono_class_from_mono_type() on the class'es type, it'll do the
1213         right thing.
1214
1215 2003-09-16  Martin Baulig  <martin@ximian.com>
1216
1217         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
1218         `symfile->range_entry_size' and `symfile->class_entry_size' here;
1219         the `symfile' data structure must be fully initialized before it
1220         gets added to the table.
1221
1222 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
1223
1224         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
1225
1226         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
1227         class init trampolines.
1228
1229 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
1230
1231         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
1232         to the built-in profiler to turn off time and allocation profiling
1233         respectively.
1234
1235 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
1236
1237         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
1238         g_direct_equal.
1239
1240         * debug-helpers.c (mono_method_full_name): Print the wrapper type
1241         in human readable form.
1242
1243 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
1244
1245         * reflection.c icall.c: Fixed warnings.
1246
1247         * image.c (load_class_names): Use a temporary hash table to hold the
1248         namespaces in order to avoid doing many string comparisons.
1249
1250         * image.h: Fix typo.
1251
1252         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
1253         Pass NULL instead of g_direct_equal to the GHashTable constructor 
1254         since the NULL case is short-circuited inside g_hash_table_lookup, 
1255         leading to better performance.  
1256
1257         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
1258         obtain the first custom attribute for a given index. Depends on the
1259         CustomAttribute table being sorted by the parent field.
1260
1261         * reflection.c (mono_custom_attrs_from_index): Use the new function 
1262         for better performance.
1263
1264 2003-09-07  Martin Baulig  <martin@ximian.com>
1265
1266         * class.c (mono_class_init): If we're a generic instance, inflate
1267         all our methods instead of loading them from the image.
1268         (mono_class_from_generic): Set `class->methods = gklass->methods'.
1269
1270 2003-09-07  Martin Baulig  <martin@ximian.com>
1271
1272         * mono-debug-debugger.c: Added support for constructors.
1273
1274 2003-09-06  Martin Baulig  <martin@ximian.com>
1275
1276         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
1277         New interncall.
1278
1279         * reflection.c (mono_reflection_setup_generic_class): Call
1280         ensure_runtime_vtable() to create the vtable.
1281
1282 2003-09-05  Martin Baulig  <martin@ximian.com>
1283
1284         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
1285         MONO_TYPE_MVAR.
1286
1287 2003-09-04  Martin Baulig  <martin@ximian.com>
1288
1289         * reflection.c (mono_reflection_define_generic_parameter): Generic
1290         parameters start with zero.
1291
1292 2003-09-04  Martin Baulig  <martin@ximian.com>
1293
1294         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
1295
1296         * reflection.h (MonoReflectionGenericParam): New typedef.
1297         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
1298         the generic parameters from the managed TypeBuilder.
1299
1300         * reflection.c (mono_reflection_define_generic_parameter): New function.
1301         (mono_reflection_create_runtime_class): Encode generic parameters.
1302         (mono_reflection_setup_generic_class): New function; this is
1303         called after adding adding all generic params to the TypeBuilder.
1304         (encode_type): Added MONO_TYPE_VAR.
1305
1306 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
1307
1308         * class.h class.c (mono_class_needs_cctor_run): Moved this method
1309         here from the JIT.
1310
1311         * assembly.h assembly.c: Moved the AOT loading code into an assembly
1312         load hook.
1313
1314 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
1315
1316         * reflection.h reflection.c class.h class.c: Delete duplicate 
1317         definition of mono_type_get_name () from reflection.c and export the
1318         one in class.c.
1319
1320         * class.c: Class loading fixes from Bernie Solomon 
1321         (bernard@ugsolutions.com).
1322
1323         * reflection.c: Endianness fixes from Bernie Solomon 
1324         (bernard@ugsolutions.com).
1325         
1326 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
1327
1328         * assembly.h assembly.c: Define a file format version for AOT
1329         libraries.
1330         
1331         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
1332
1333         * appdomain.h (MonoJitInfo): New field to determine whenever the
1334         code is domain neutral.
1335         
1336 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
1337
1338         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
1339
1340 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
1341
1342         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
1343         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
1344         Avoid caching the result since strings must be domain specific. Fixes
1345         #48050.
1346
1347 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
1348
1349         * marshal.c (mono_marshal_init): Make this callable multiple times
1350         since it is hard to find a correct place to call it.
1351
1352         * object.c (mono_runtime_class_init): Execute static constructors in
1353         the correct appdomain.
1354
1355         * image.c (build_guid_table): Handle the case when multiple images have
1356         the same GUID.
1357
1358 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1359
1360         * icall.c: added a couple of icalls for System.Web.
1361
1362 2003-08-28  Martin Baulig  <martin@ximian.com>
1363
1364         * icall.c (ves_icall_Type_BindGenericParameters): Use
1365         `klass->generic_inst' instead of `&klass->byval_arg' in the
1366         mono_type_get_object() call.  The returned type must be
1367         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
1368
1369 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
1370
1371         * NOTES: New file.
1372
1373         * object.c (mono_class_proxy_vtable): Make it thread safe.
1374
1375         * pedump.c: Fix warning.
1376
1377         * object.c appdomain.h: Get rid of metadata_section. 
1378         It is no longer needed and it was causing deadlocks with domain->lock.
1379
1380         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
1381
1382 2003-08-26  Martin Baulig  <martin@ximian.com>
1383
1384         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
1385
1386 2003-08-26  Martin Baulig  <martin@ximian.com>
1387
1388         * pedump.c (main): Call mono_metadata_init(),
1389         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
1390         and mono_loader_init().
1391
1392 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
1393
1394         * loader.h: Add missing include to fix build.
1395
1396         * image.h: mono_image_load_references is no more.
1397
1398         * assembly.c: Reworked assembly loading to make it really thread safe.
1399         After these changes, the assembly returned by mono_assembly_open is
1400         fully initialized, i.e. all its references assemblies are loaded.
1401
1402         * assembly.c (mono_image_load_references): Renamed to 
1403         mono_assembly_load_references, and made private, since clients no
1404         longer need to call it.
1405
1406         * class.c: Removed calls to mono_assembly_load_references, since it was
1407         a source of deadlocks.
1408
1409         * loader.h loader.c class.h class.c: Protect data structures using a 
1410         new lock, the loader lock.
1411
1412         * class.c (mono_class_setup_vtable): Create temporary hash tables and
1413         GPtrArrays only when needed.
1414
1415         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
1416         into empty structures by mcs. Fixes pinvoke7.cs.
1417         
1418         * domain.c (mono_init): Call a new initialization function.
1419
1420         * appdomain.c (mono_runtime_init): Call the new initializer function
1421         of the marshal module.
1422
1423         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
1424         inserted into empty structures by mcs. Fixes pinvoke7.cs.
1425
1426         * marshal.h marshal.c: Added locks around the wrapper caches to make
1427         this module thread safe.
1428
1429         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
1430         this argument. Fixes pinvoke1.exe.
1431
1432 2003-08-25  Lluis Sanchez <lluis@ximian.com>
1433
1434         * object.h: Added call_type field to MonoMethodMessage and the corresponding
1435         enumeration of values. Removed fields to store remote call output values in
1436         MonoAsyncResult. Not needed any more.
1437         * object.c: Initialize call_type and async_result fields in mono_message_init.
1438         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
1439         dispatching the message.
1440         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
1441         async call to finish. To do it use a message with EndInvoke call type.
1442
1443 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
1444
1445         * loader.h loader.c (mono_method_hash_marhal_info): New function which
1446         determines whenever a method has marshalling info.
1447
1448 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1449
1450         * assembly.c: fix the build on windows.
1451
1452 2003-08-22 Lluis Sanchez <lluis@ximian.com>
1453
1454         * object.cs: Fixed bug #47785.
1455
1456 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
1457
1458         * string-icalls.c (StringReplace): If their are no occurances of
1459         the old string found return a reference to the supplied
1460         string. This saves some memory and matches MS behavoir.
1461         
1462 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1463
1464         * socket-io.c: fixed compilation for systems that define AF_INET6
1465         and don't define SOL_IP/SOL_IPV6.
1466
1467 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
1468
1469         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
1470         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
1471
1472         * rawbuffer.c rawbuffer.h: Make this module thread safe.
1473
1474         * domain.c: Make this module thread safe.
1475
1476         * domain.c (mono_init): Call new initialization function.
1477
1478         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
1479         reference types too. Fixes #38812.
1480
1481         * image.c (mono_image_init): Fixed warnings.
1482
1483         * class.c (mono_class_from_typeref): Handle assembly load failure
1484         correctly.
1485
1486         * appdomain.c (add_assemblies_to_domain): Handle the case when
1487         the references of an assembly are not yet loaded.
1488
1489         * metadata.c image.c assembly.c: Moved initialization of global
1490         variables to a separate function called at startup since lazy 
1491         initialization of these variables is not thread safe.
1492         
1493         * image.c assembly.c: Made this module thread safe by adding locks in 
1494         the appropriate places.
1495
1496         * domain.c (mono_init): Call the new initialization functions of the
1497         three modules.
1498
1499 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
1500
1501         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
1502           make a direct call. It is proxy's work to make the call asynchronous.
1503           mono_delegate_end_invoke(): If the targe is a proxy, just collect
1504           the return values.
1505         * object.cs: mono_method_call_message_new(): read AsyncResult and
1506           state object from parameters list, if this info is requested.
1507         * object.h: Added fields to store remote call output values in
1508           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
1509
1510 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
1511
1512         * object.h: add needed fields to MonoThread.
1513         * threads.c, threads.h: allow registering a function to cleanup data
1514         allocated per thread by the JIT.
1515
1516 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
1517
1518         * loader.h: portability fix by Bernie Solomon
1519         * <bernard@ugsolutions.com>.
1520
1521 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
1522
1523         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
1524         return a MonoArray. This simplifies the code and also ensures that
1525         the cache allways contains an object reference as a value.
1526
1527         * icall.c (ves_icall_get_parameter_info): Simplified using the new
1528         function.
1529
1530 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1531
1532         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
1533         fixes a problem with byte ordering when getting the address family for
1534         a socket.
1535
1536 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
1537
1538         * .cvsignore: Added monosn.
1539
1540         * reflection.h reflection.c loader.c: Added support for parameter
1541         marshalling to dynamically created types. Fixes #47295.
1542
1543 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
1544
1545         * rand.c: remove useless warnings.
1546
1547 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
1548
1549         * class.c: implemented ldtoken for methods and fieldrefs.
1550
1551 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1552
1553         * threadpool.c: when mono_async_invoke was called, no one took care of
1554         monitoring the queue. So if the method invoked took some time and we
1555         got new async invoke requests after 500 ms (the thread created waited
1556         that long in WaitForSingleObject), the new async invoke was not called
1557         until the previous one finished.
1558
1559         This is fixed now. Thanks to Totte for helping with it.
1560
1561 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1562
1563         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
1564
1565 2003-08-11  Martin Baulig  <martin@ximian.com>
1566
1567         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
1568
1569 2003-08-06  Martin Baulig  <martin@ximian.com>
1570
1571         * mono-debug-debugger.c: Added support for static fields,
1572         properties and methods.
1573
1574 2003-08-06  Martin Baulig  <martin@ximian.com>
1575
1576         * mono-debug-debugger.c: Don't store the MonoString's vtable to
1577         make this work for applications with multiple application domains.
1578
1579 2003-08-04  Martin Baulig  <martin@ximian.com>
1580
1581         * mono-debug-debugger.c: Completely reworked the type support; the
1582         most important thing is that we're now just using one single
1583         `MonoType' instance per type.
1584
1585 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
1586
1587         * mono-endian.h, mono-endian.c, icall.c: Added icall
1588         ves_icall_System_Double_AssertEndianity to assert double word endianity
1589         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
1590
1591 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
1592
1593         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
1594         support, icalls and fixes.
1595
1596 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
1597
1598         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
1599         classes that are a punctuation character in .NET is not the same a
1600         g_unichar_ispunct.
1601
1602 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
1603
1604         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
1605
1606 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
1607
1608         * icall.c: Add new MemCopy internalcall.
1609         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
1610         Simplified code; It is not necessary to handle all the cases here,
1611         as the C# code takes care of it.  Only handle the case of the name
1612         resource embedded into the assembly.
1613
1614         Changed signature to return the data pointer and the size of the
1615         data. 
1616
1617 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
1618
1619         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
1620         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
1621
1622 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
1623
1624         * socket-io.c: ignore EINTR error in select.
1625
1626 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
1627
1628         * class.h, class.c: removed unused subclasses field in MonoClass.
1629
1630 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
1631
1632         * icall.c: improve fix of get_base_definition(). If the parent class
1633           doesn't have the mehod, look at the parent of the parent.
1634         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
1635           to check if a parameter is an in or out parameter
1636           (PARAM_ATTRIBUTE_IN is not set by default).
1637           mono_method_return_message_restore(): Use mono_class_value_size to
1638           get the size of a value type. mono_type_stack_size (parameterType)
1639           does not return the correct value if parameterType is byRef.
1640           mono_load_remote_field(), mono_load_remote_field_new(),
1641           mono_store_remote_field(), mono_store_remote_field_new():
1642           raise exception if the remote call returns an exception.
1643
1644 2003-07-28  Martin Baulig  <martin@ximian.com>
1645
1646         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
1647         method.  This is a wrapper around mono_runtime_invoke() which
1648         boxes the instance object if neccessary.
1649
1650 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
1651
1652         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
1653         metadata.h, row-indexes.h, verify.c: first cut of generics support.
1654
1655 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
1656
1657         * icall.c: disable mcs bug workaround.
1658
1659 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
1660
1661         * object.c (mono_runtime_class_init): Take the metadata_section
1662         mutex before obtaining the domain mutex.
1663
1664         * appdomain.h: Added definition of metadata_section mutex here. 
1665
1666         * object.c: define metadata_mutex here.
1667
1668 2003-07-24  Ravi Pratap  <ravi@ximian.com>
1669
1670         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
1671         fixed.
1672
1673 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
1674
1675         * reflection.c: Fix bug #46669
1676
1677 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1678
1679         * exception.c:
1680         * exception.h:
1681         * icall.c:
1682         * object.h: fill in the type name for TypeLoadException.
1683
1684 2003-07-23  Ravi Pratap  <ravi@ximian.com>
1685
1686         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
1687         relationship between TypeBuilders while compiling corlib) and bug
1688         45993 (Array types returned from the runtime while compiling
1689         corlib were from the loaded corlib).
1690
1691 2003-07-22  Martin Baulig  <martin@ximian.com>
1692
1693         * mono-debug-debugger.c: Reworked the type support a bit more;
1694         distinguish between types and classes.
1695
1696 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
1697
1698         * icall.c: add IsArrayImpl icall.
1699
1700 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
1701
1702         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
1703         initializing real_size only once. Also fix bug #46602.
1704
1705 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
1706
1707         * object.c: Renamed mono_metadata_section to metadata_section.
1708
1709 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
1710
1711         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
1712           empty array if the type is an array. Fixed.
1713           ves_icall_MonoMethod_get_base_definition: if the base method
1714           is abstract, get the MethodInfo from the list of methods of
1715           the class.
1716         * reflection.c: ParameterInfo.PositionImpl should be zero-based
1717           and it was 1-based. Fixed in mono_param_get_objects.
1718
1719 2003-07-20  Martin Baulig  <martin@ximian.com>
1720
1721         * mono-debug.h: Set version number to 31.
1722         (mono_debug_init): Added `MonoDomain *' argument.
1723
1724         * mono-debug-debugger.c: Reworked the type support; explicitly
1725         tell the debugger about builtin types; pass the `klass' address to
1726         the debugger.
1727
1728 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
1729
1730         * image.c: Allow new metadata tables to be loaded without a
1731         warning. Also update the warning message to give the new constant value.
1732                 
1733 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
1734
1735         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
1736         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
1737         array type representation changes.
1738
1739 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
1740
1741         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
1742         on Environment.Exit () call.
1743
1744 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
1745
1746         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
1747         requires a matching corlib.
1748
1749 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
1750
1751         * Changelog: My editor decided to add a CR to each line. Sorry about that.
1752           Committed again without the CRs.
1753         
1754 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
1755
1756         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
1757           getting it from the "this" socket instance. Did not work
1758           if the socket is a subclass of Socket.
1759           Also fixed bug #35371.
1760
1761 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
1762
1763         * metadata.c: fixed size for TypedByRef.
1764         * loader.c: when searching for a method, consider the vararg amrker.
1765         * unicode.c, decimal.c: constify some arrays.
1766
1767 2003-07-15  Dick Porter  <dick@ximian.com>
1768
1769         * socket-io.c: Fixed compilation for gcc < 3.2.
1770
1771         Fixed compilation for machines that don't have AF_INET6 (thanks to
1772         Bernie Solomon <bernard@ugsolutions.com> for that part.)
1773
1774         Fixed compile warnings.
1775         
1776         Fixed formatting and line endings.
1777
1778 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
1779
1780         * socket-io.h:
1781         * socket-io.c: Added IPv6 support.
1782
1783 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
1784
1785         * class.c (mono_class_is_assignable_from): New function to implement
1786         the is_assignable_from logic. Used by mono_object_isinst, 
1787         Type::IsAssignableFrom () and the interpreter.
1788
1789         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
1790         Object, even interfaces.
1791         
1792         * object.c (mono_object_isinst): Implement in terms of 
1793         is_assignable_from.
1794
1795         * icall.c (ves_icall_type_is_assignable_from): New icall.
1796
1797 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
1798
1799         * domain.c (foreach_domain): fix compiler warning.
1800
1801 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
1802
1803         * image.c (load_metadata_ptrs): use g_strndup because strndup is
1804         not available on all plattforms
1805
1806 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
1807
1808         * image.h image.c: Store the metadata version string in MonoImage.
1809         * icall.c: New icall to retrieve the image version.
1810         * reflection.c (create_dynamic_image): Fill in the image version field
1811         * reflection.c (build_compressed_metadata): Use the image version
1812         from the image structure.
1813
1814 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1815
1816         * appdomain.c: modified comment.
1817         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
1818         That will be its last iteration when mono_gc_cleanup is called from
1819         mono_runtime_cleanup and before the domain is unloaded.
1820
1821         Fixes bug #45962.
1822
1823 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
1824
1825         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
1826         attributes.
1827
1828 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
1829
1830         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
1831         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
1832         Bernie Solomon <bernard@ugsolutions.com>.
1833
1834 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
1835
1836         * object.c, object.h: provide mono_object_new_fast() for faster
1837         allocation in some special cases.
1838
1839 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
1840
1841         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
1842         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
1843
1844 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
1845
1846         * threadpool.c: fix leaks.
1847
1848 2003-07-01  Dick Porter  <dick@ximian.com>
1849
1850         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
1851         using MonoGHashTables.  Fixes threadpool bug posted to list.
1852
1853 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
1854
1855         * image.h, image.c: added support to load an assembly from a byte array.
1856         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
1857         assembly bundle support.
1858
1859 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
1860
1861         * threadpool.c (mono_thread_pool_add): keep a reference to the
1862         AsyncResult to prevent GC
1863
1864 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
1865
1866         * class.c: leak fix.
1867
1868 2003-06-25  Dick Porter  <dick@ximian.com>
1869
1870         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
1871         for the async object, the WaitHandle object will close the handle.
1872         Fixes bug 45321.
1873
1874 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
1875
1876         * class.c: in mono_array_class_get (), lookup from the hash with the
1877         same type we insert: this works around a bug in
1878         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
1879         lluis. The real fix will have to wait for after the release.
1880
1881 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
1882
1883         * icall.c: fix memory leak when getting type members.
1884
1885 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
1886
1887         * reflection.c: added more pubtoken special cases.
1888
1889 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
1890
1891         * class.c: handle field offset correctly when class size
1892         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
1893
1894 2003-06-20  Martin Baulig  <martin@ximian.com>
1895
1896         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
1897         *image' field.
1898
1899 2003-06-20  Martin Baulig  <martin@ximian.com>
1900
1901         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
1902
1903 2003-06-20  Martin Baulig  <martin@ximian.com>
1904
1905         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
1906         just distinguish between variables in registers and variables at
1907         an offset relative to a register.
1908
1909 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1910
1911         * icall.c: #ifdef out latest changes until mcs is fixed.
1912
1913 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
1914
1915         * icall.c: return members in metadata order.
1916
1917 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
1918
1919         * icall.c: avoid infinite loop in GetTimeZoneData.
1920
1921 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
1922
1923         * icall.c: added Marshal.Prelink/All icalls.
1924
1925 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
1926
1927         * object.c, object.h: fix warnings and do some overflow checking
1928         when creating arrays.
1929
1930 2003-06-17  Dick Porter  <dick@ximian.com>
1931
1932         * file-io.h:
1933         * file-io.c: File attributes need to be tweaked slightly when
1934         passed from the managed to the w32 world.
1935
1936 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
1937         * profiler.h profiler-private.h profiler.c: Rework last patch
1938         based on suggestion by Paolo.
1939         
1940 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
1941
1942         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
1943         instruction level coverage data collection.
1944         * profiler.h profiler.c (: Added new callback function which can be
1945         used by the profiler to limit which functions should have coverage
1946         instrumentation.
1947         * profiler.c (mono_profiler_load): Call g_module_build_path to
1948         generate the file name of the profiler library.
1949
1950 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
1951
1952         * profiler.c, profiler.h, profiler-private.h: added basic block 
1953         coverage profiling API.
1954
1955 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
1956
1957         * reflection.c (mono_reflection_create_runtime_class): Add support
1958         for events in dynamically generated code.
1959
1960         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
1961         not allocated.
1962
1963 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
1964
1965         * icall.c: when getting timezone info, return reasonable values if we
1966         can't get the actual data.
1967
1968 2003-06-14  Dick Porter  <dick@ximian.com>
1969
1970         * threads.c (start_wrapper): Remove the reference to the thread
1971         object in the TLS data, so the thread object can be finalized.
1972         This won't be reached if the thread threw an uncaught exception,
1973         so those thread handles will stay referenced :-( (This is due to
1974         missing support for scanning thread-specific data in the Boehm GC
1975         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
1976
1977 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
1978
1979         * reflection.c: ensure streams and tables are first allocated with
1980         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
1981
1982 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
1983
1984         * icall.c: fixed GetElementType for byrefs (bug# 44792).
1985
1986 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
1987
1988         * reflection.c (mono_reflection_create_runtime_class): Add support for
1989         properties to dynamically created classes.
1990         * reflection.c: Fix a few places where non-MonoObjects were inserted
1991         into the tokens hashtable.
1992
1993 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
1994
1995         * object.c: some support to handle out of memory exceptions.
1996
1997 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
1998
1999         * marshal.c (mono_marshal_get_native_wrapper): support reference
2000         return types
2001
2002 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
2003
2004         * object.h, object.c: more portability stuff from Bernie Solomon.
2005         Unexport mono_object_allocate(). Added mono_object_unbox ().
2006         Set exitcode when an unhandled exception is thrown.
2007
2008 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
2009
2010         * marshal.c (mono_marshal_get_native_wrapper): use custom
2011         marshaler for return types.
2012
2013 2003-06-10  Dick Porter  <dick@ximian.com>
2014
2015         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
2016         ip_mreq is available
2017
2018 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
2019
2020         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
2021         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
2022         by Bernie Solomon <bernard@ugsolutions.com>.
2023
2024 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
2025
2026         * gc.c (mono_gc_init): Avoid error message on shutdown when
2027         GC_DONT_GC=1 is used.
2028
2029         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
2030         New icall to return the GUID of a module.
2031
2032 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
2033
2034         * class.c: ensure instance size always includes the parent's size
2035         even whem class size is set explicitly (fixes bug#44294).
2036
2037 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
2038
2039         * profiler.h, profiler.c: made the simple profiler thread-safe,
2040         get more accurate timing info. Allow the loading of an
2041         externally-developed profiler module.
2042
2043 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
2044
2045         * marshal.c (mono_marshal_get_native_wrapper): improved
2046         class/byref arguments.
2047         (mono_marshal_get_native_wrapper): better string marshaling support.
2048
2049 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
2050
2051         * class.c: ensure .pack and .size are handled correctly and
2052         simplified layout of static fields.
2053
2054 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
2055
2056         * appdomain.c
2057         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
2058
2059         * loader.c (mono_lookup_pinvoke_call): look for modules in the
2060         current directory (fix bug 44008)
2061
2062 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
2063
2064         * marshal.c (mono_marshal_get_native_wrapper): started support for
2065         custom marshalers.
2066         (mono_delegate_to_ftnptr): consider marshalling specifications
2067
2068 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
2069
2070         * reflection.c, reflection.h: emit custom marshal info.
2071
2072 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2073
2074         * object.c: free the GError.
2075         * icall.c: added CloseEvent_internal.
2076         * threads.[ch]:
2077         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
2078         call.
2079
2080 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
2081
2082         * loader.c (mono_method_get_signature): Add support for dynamic
2083         assemblies.
2084
2085 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
2086
2087         * reflection.c: fixed bug #43905.
2088
2089 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
2090
2091         * class.c, domain.c, icall.c, metadata.h, object.h: support for
2092         handling TypedReference and ArgIterator.
2093         * loader.c, loader.h: added function to get signature at call site.
2094
2095 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
2096
2097         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
2098         data readonly. Buglets and warning fixes. Some MethodSpec support.
2099
2100 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
2101
2102         * class.h, class.c, object.c: remove relative numbering support.
2103
2104 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
2105
2106         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
2107         free the string, until we get a chance to fix Gtk#
2108
2109 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2110
2111         * marshal.c: revert last patch.
2112
2113 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
2114
2115         * icall.c: updates for new mono_class_vtable() not calling
2116         the type constructor anymore.
2117
2118 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
2119
2120         * object.h, object.c: separate vtable creation from type
2121         initialization. Make running the .cctor thread safe.
2122
2123 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
2124
2125         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
2126
2127 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
2128
2129         * loader.c (mono_get_method): consider calling convention
2130
2131 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
2132
2133         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
2134         to return the invisible global type for a module.
2135
2136         * reflection.c (mono_image_build_metadata): Emit global fields too.
2137
2138 2003-05-20  Peter Williams  <peterw@ximian.com>
2139
2140         * loader.c (mono_lookup_internal_call): Add a few newlines.
2141
2142 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
2143
2144         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
2145         literal strings.
2146
2147         * appdomain.c (set_domain_search_path): Recalculate search path when
2148         AppDomainSetup.PrivateBinPath changes.
2149
2150         * object.c (mono_class_compute_gc_descriptor): It turns out some
2151         parts of the class libs (like System.Thread) holds pointers to
2152         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
2153         to treat native int a pointer type here.
2154         
2155 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
2156
2157         * appdomain.h, domain.c: add hashtable for jump target resolution.
2158
2159 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
2160
2161         * reflection.h reflection.c icall.c: Added new icalls 
2162         GetManifestResourceInfoInternal, GetModulesInternal and support
2163         infrastructure.
2164
2165 2003-05-16  Dick Porter  <dick@ximian.com>
2166
2167         * icall.c:
2168         * file-io.h:
2169         * file-io.c: Implement System.IO.MonoIO::GetTempPath
2170
2171 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
2172
2173         * object.c: mono_store_remote_field: little fix to previous patch.
2174
2175 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
2176
2177         * class.c: add constructors to array classes.
2178         * icall.c: special case array construction for InternalInvoke (),
2179
2180 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
2181
2182         * class.h class.c reflection.c object.c: Added support for field
2183         defaults in dynamically generated classes.
2184
2185 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
2186
2187         * reflection.c: properly encode charset for ddlimport.
2188
2189 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
2190
2191         * threads.c: allow compiling without GC.
2192
2193 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
2194
2195         * appdomain.h, object.c, object.h, threads.c, threads.h: added
2196         handling of thread static data.
2197
2198 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
2199
2200         * reflection.h, reflection.c: added mono_custom_attrs_free ().
2201
2202 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
2203
2204         * class.c (mono_array_class_get): always set the serializable flags
2205         (mono_array_class_get): always set the SEALED attribute for array types
2206
2207 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
2208
2209         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
2210         attributes (fix for bug 42021).
2211
2212 2003-05-12  Dick Porter  <dick@ximian.com>
2213
2214         * gc.c: Don't run finalizers when the finalizer thread is
2215         finishing up, because the default domain has already been
2216         destroyed.
2217
2218 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
2219
2220         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
2221         value is null, we should throw an exception.   This is slightly
2222         different than the other conventions used for the constructor.
2223
2224 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2225
2226         * socket-io.c: fixed windows build.
2227
2228 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2229
2230         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
2231
2232 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
2233
2234         * object.c (mono_string_new_wrapper): Compatibility fix for MS
2235         compilers.
2236
2237 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
2238
2239         * class.c (mono_class_layout_fields): Add experimental GC aware
2240         auto layout facility. Requires class library changes to work correctly.
2241
2242         (mono_class_setup_vtable): Avoid overriding explicit interface
2243         method implementations. Fixes iface3.exe test.
2244
2245         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
2246         object reference.
2247         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
2248         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
2249
2250         * metadata.h: Add new type classification macro which determines
2251         whenever the type holds an object reference.
2252
2253 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
2254
2255         * marshal.c (mono_marshal_get_native_wrapper): cleanups
2256
2257 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
2258
2259         * gc.c (finalizer_thread): Work around a GC bug.
2260
2261 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
2262
2263         * marshal.c (emit_struct_conv): allow unions
2264
2265         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
2266
2267 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
2268
2269         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
2270
2271 2003-05-06  Martin Baulig  <martin@ximian.com>
2272
2273         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
2274
2275 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2276
2277         * socket-io.c:
2278         (Select_internal): allow NULLs, don't create arrays if not needed.
2279         Coupled with Socket.cs changes.
2280
2281         * threadpool.c:
2282         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
2283         register a finalizer for it that will close the semaphore handle. This
2284         fixes the leak and make Lupus' test run with > 4080 loops.
2285
2286 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
2287
2288         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
2289         Jerome Laban (bug #42287)
2290
2291 2003-05-02  Martin Baulig  <martin@ximian.com>
2292
2293         * debug-mono-symfile.h
2294         (MonoSymbolFile): Moved declaration into mono-debug.h.
2295         (MonoDebugMethodJitInfo): Likewise.
2296         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
2297         argument.
2298         (_mono_debug_address_from_il_offset): Take a
2299         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
2300
2301         * mono-debug.h
2302         (MonoDebugDomainData): New struct.
2303         (mono_debug_get_domain_data): New function.
2304         (mono_debug_add_method): Take an additional `MonoDomain *'
2305         argument.
2306         (mono_debug_source_location_from_address): Likewise.
2307         (mono_debug_il_offset_from_address): Likewise.
2308         (mono_debug_address_from_il_offset): Likewise.
2309
2310 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
2311
2312         * reflection.c: one more check for null type in custom attrs.
2313
2314 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2315
2316         * reflection.c: avoid warning (comparison is always false due to limited
2317         range of data type).
2318
2319 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2320
2321         * icall.c: throw an exception in Type.GetField if the argument 'name'
2322         is NULL.
2323
2324 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
2325
2326         * reflection.c: fixed handling of enums in named arguments to custom
2327         attributes (bug #42123).
2328
2329 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
2330
2331         * reflection.c: use the right array element type and handle
2332         a null for a Type argument, too.
2333
2334 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
2335
2336         * reflection.c: handle arrays as arguments to custom attributes.
2337
2338 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
2339
2340         * reflection.c: handle a string value in a custom attr
2341         ctor that takes an object.
2342
2343 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
2344
2345         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
2346         (fix bug #42063)
2347
2348 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
2349
2350         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
2351
2352 2003-04-27  Martin Baulig  <martin@ximian.com>
2353
2354         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
2355         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
2356         MONO_DEBUGGER_EVENT_BREAKPOINT.
2357         (mono_breakpoint_trampoline_code): Removed.
2358         (mono_debugger_event_handler): The last argument is now a
2359         `guint32'.
2360         (mono_debugger_insert_breakpoint_full): Removed the
2361         `use_trampoline' argument.
2362         (mono_debugger_method_has_breakpoint): Likewise.
2363         (mono_debugger_trampoline_breakpoint_callback): Renamed to
2364         mono_debugger_breakpoint_callback(); take the method and
2365         breakpoint number as arguments.
2366
2367 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
2368
2369         * metadata.c: fix off by one when loading parameters attributes.
2370
2371 2003-04-24  Martin Baulig  <martin@ximian.com>
2372
2373         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
2374
2375 2003-04-24  Martin Baulig  <martin@ximian.com>
2376
2377         * mono-debug-debugger.c: Moved all code which interacts with the
2378         Mono Debugger here.
2379
2380         * debug-mono-symfile.c: This code now just deals with the symbol
2381         file itself, the debugger code is now in mono-debug-debugger.c.
2382
2383 2003-04-23  Martin Baulig  <martin@ximian.com>
2384
2385         * mono-debug.c (mono_debug_source_location_from_il_offset):
2386         New method; like mono_debug_source_location_from_address(), but
2387         takes an IL offset instead of a machine address.
2388
2389 2003-04-23  Martin Baulig  <martin@ximian.com>
2390
2391         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
2392         `line' field; this is now computed by the debugger.
2393
2394 2003-04-23  Martin Baulig  <martin@ximian.com>
2395
2396         * mono-debug.[ch]: New files.  This is the new debugging interface.
2397
2398         * mono-debug-debugger.[ch]: New files.  Moved all code which
2399         interacts with the Mono Debugger here.
2400
2401 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
2402
2403         * domain.c (mono_init): initialize mono_defaults.monitor_class
2404
2405 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
2406
2407         * reflection.c (method_encode_code): Add a spicy exception to help
2408         future compiler authors.
2409
2410 2003-04-21  Martin Baulig  <martin@ximian.com>
2411
2412         * icall.c
2413         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
2414         Make this work with relative pathnames; g_filename_to_uri() needs
2415         an absolute filename.
2416
2417 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
2418
2419         * icall.c: Track name changes in Object and ValueType.
2420
2421 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
2422
2423         * metadata.c (mono_type_stack_size): size should be a multiple of
2424         sizeof (gpointer)
2425
2426 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2427
2428         * gc.c:
2429         (internal_domain_finalize): moved into mono_domain_finalize. No need
2430         to create another thread because the finalizers will be run in the
2431         finalizer thread.
2432         
2433         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
2434         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
2435         to be run (MS does this too).
2436
2437 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
2438
2439         * object.c (mono_class_compute_gc_descriptor): Update comment.
2440
2441         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
2442
2443         * image.h: Add synchronized wrapper cache.
2444
2445         * image.c (do_mono_image_open): Initialize cache.
2446
2447         * reflection.c (create_dynamic_mono_image): Initialize cache.
2448
2449 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2450
2451         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
2452         ves_icall_System_Buffer_ByteLengthInternal.
2453
2454 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
2455
2456         * reflection.c: setup klass->nested_in earlier. Allow
2457         a dash in the assembly name.
2458
2459 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
2460
2461         * metadata.c (mono_type_to_unmanaged): dont access
2462         type->data.klass for MONO_TYPE_OBJECT
2463         (mono_type_to_unmanaged): consider System.Delegate class
2464
2465 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
2466
2467         * class.c: just setup supertypes in the proper place instead of
2468         initializing the full element class for arrays.
2469
2470 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
2471
2472         * class.c: ensure the element class of arrays is initialized.
2473         Setup the supertype info for array classes, too.
2474
2475 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
2476
2477         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
2478
2479 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2480
2481         * Makefile.am: re-added -m option when running cygpath. This way,
2482         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
2483         separator.
2484         * mono-config.c: same codepath for locating mono config file for WIN32
2485         and the rest.
2486         * assembly.c: if mono_assembly_setrootdir is called, don't override
2487         the value set.
2488
2489 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2490
2491         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
2492         MONO_ASSEMBLIES variable.
2493
2494 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
2495
2496         * icall.c: added Assembly::GetNamespaces() icall.
2497
2498 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2499
2500         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
2501
2502 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
2503
2504         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
2505         * object.c: fixed bug in the construction of vtable for proxies
2506
2507 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
2508
2509         * object.c (mono_array_new): Mark mono_array_new as an icall.
2510
2511 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2512
2513         * class.c: fixed test for public method when overriding interfaces.
2514         Closes bug #40970.
2515
2516 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
2517
2518         * appdomain.h, domain.c: added mono_domain_foreach() to
2519         be able to access the currently loaded appdomains.
2520         * object.c: make string interning work across sppdomains.
2521         Mark some functions for use as icalls.
2522
2523 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
2524
2525         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
2526
2527         * reflection.h reflection.c: Allocate long living data using 
2528         GC_MALLOC_ATOMIC so the collector does not need to scan it.
2529
2530         * reflection.c: Double the allocation size in streams instead of
2531         increasing it, to prevent unneccesary copying on large assemblies.
2532         
2533         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
2534         creation if the assembly does not have the Run flag set.
2535
2536 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
2537
2538         * class.h: avoid the C++ keywords in header files (Jerome Laban
2539         spotted and fixed this).
2540
2541 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2542
2543         * object.c:
2544         (mono_unhandled_exception): fill in the arguments for the
2545         UnhandledException event. Only trigger that event for the default
2546         domain (as MS does).
2547
2548 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
2549
2550         * object.c: Improve typed allocation stuff based on suggestions from
2551         Paolo. Also turn it on if the GC library supports it.
2552
2553 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
2554
2555         * object.c object.h class.h: Added experimental typed allocation
2556         facility using the interfaces in gc_gcj.h.
2557
2558         * os/gc_wrapper.h: Added new include files.
2559         
2560 2003-04-03  Martin Baulig  <martin@ximian.com>
2561
2562         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
2563         which is not yet enabled by default.
2564
2565         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
2566         functions.
2567         (mono_gc_lock, mono_gc_unlock): New static functions.
2568
2569         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
2570         functions; stop/start the world for the garbage collector.  This
2571         is using the windows API; we need to complete the SuspendThread()/
2572         ResumeThread() implementation in the io-layer to make this work on Unix.
2573         (mono_gc_push_all_stacks): New public function; tells the garbage
2574         collector about the stack pointers from all managed threads.
2575
2576 2003-04-03  Martin Baulig  <martin@ximian.com>
2577
2578         * object.h (MonoThread): Added `gpointer stack_ptr'.
2579
2580         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
2581
2582 2003-04-03  Martin Baulig  <martin@ximian.com>
2583
2584         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
2585
2586 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
2587
2588         * reflection.c (typebuilder_setup_fields): Initialize field.first and
2589         field.last.
2590
2591 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
2592
2593         * loader.c (mono_lookup_internal_call): Report the corlib that is
2594         out of sync.
2595
2596 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
2597
2598         * icall.c (ves_icall_type_GetTypeCode): fixed check for
2599         System.DBNull (it's class not valuetype).
2600
2601 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
2602
2603         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
2604         if the array method was already assigned a token (fixes bug#40646).
2605
2606 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
2607
2608         * reflection.c (mono_reflection_get_type): Attempt type resolve even
2609         if no assembly is given.
2610
2611 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
2612
2613         * metadata.h: Added the new tables.
2614
2615         * row-indexes.h: Added definitions for new tables.
2616
2617         * metadata.c: Add schemas for new tables, and add support for
2618         computing the sizes of them.
2619
2620         * class.c: Update for handling the new type cases.
2621
2622 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
2623
2624         * metadata.h (MONO_TYPE_IS_VOID): new macro
2625
2626 2003-03-31  Martin Baulig  <martin@ximian.com>
2627
2628         * threads.h (MonoThreadCallbacks): Added `thread_created'.
2629
2630         * threads.c (mono_thread_new_init): Call `thread_created' in the
2631         mono_thread_callbacks.
2632
2633 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
2634
2635         * loader.h: added marshalbyrefobject_class to mono_defaults
2636         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
2637         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
2638           generation of output parameters.
2639           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
2640         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
2641           contextbound and the target object belongs to the context of the caller.
2642         * object.h: added context and unwrapped_server variables in MonoRealProxy.
2643         * object.c: Implemented support for interfaces and abstract classes
2644           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
2645           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
2646
2647 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
2648
2649         * class.h class.c (mono_class_is_subclass_of): New function.
2650         
2651         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
2652         routines for most common case (calls from ArrayList::ToArray).
2653
2654         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
2655         routine so programs which call Environment::Exit() can be profiled.
2656
2657         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
2658         Added MONO_ARCH_SAVE_REGS.
2659
2660         * icall.c (ves_icall_type_is_subtype_of): Use new function.
2661
2662 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
2663
2664         * blob.h: Add a couple of new MonoType types definitions.
2665
2666         * tabledefs.h: Add a couple of new call convs.
2667
2668 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
2669
2670         * reflection.h (MonoReflectionDynamicAssembly): track changes in
2671         the layout of the class.
2672
2673         * reflection.c (alloc_table): double the size on overflow to avoid
2674         unnecessary copying.
2675
2676         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
2677         avoid filling out metadata tables and blobs. Also set mb->ilgen to
2678         null so it can be garbage collected.
2679         
2680 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
2681
2682         * reflection.c (mono_reflection_get_type): Return the resolved type
2683         only if it is in the assembly we searched.
2684
2685         * reflection.c (ensure_runtime_vtable): Initialize method slots.
2686
2687         * class.c (mono_class_setup_vtable): Set the slot of the overriding
2688         method.
2689
2690 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2691
2692         * appdomain.c:
2693         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
2694         the right one is 'file:///blah', but MS allows it.
2695         * assembly.c:
2696         (mono_assembly_open): allow 'file://blah'
2697
2698         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
2699
2700 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
2701
2702         * socket-io.c: fixes bug #40310.
2703
2704 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
2705
2706         * reflection.c (mono_reflection_parse_type): handle deeply nested
2707         types correctly.
2708
2709         * reflection.c (mono_image_create_token): Use unique token values
2710         since they will be put into a hash table.
2711
2712         * class.c (mono_class_setup_vtable): If a method occurs in more than
2713         one place in the vtable, and it gets overriden, then change the
2714         other occurances too.
2715
2716         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
2717         object as return type.
2718
2719 2003-03-22  Pedro Martínez Juliá  <yoros@wanadoo.es>
2720
2721         * icall.c: Deleted "ToString" implementation for double and float
2722         because they are full implemented in managed code.
2723
2724 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
2725
2726         * reflection.c, reflection.h: implemented and exported functions
2727         to retrieve info about custom attributes.
2728
2729 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2730
2731         * appdomain.c: moved Uri handling to assembly.c
2732         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
2733         work when using a file Uri in *nix and windows.
2734
2735         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
2736         GetReferencedAssemblies.
2737
2738 2003-03-18  Dick Porter  <dick@ximian.com>
2739
2740         * icall.c: Rename a couple of internal calls
2741
2742         * threads.c: Set the thread state to Stopped when a thread exits.
2743         Fixes bug 39377.
2744
2745 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
2746
2747         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
2748         New icall.
2749
2750         * object.c (mono_class_vtable): fix warning.
2751
2752 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
2753
2754         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
2755
2756         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
2757         memory.
2758         (method_encode_clauses): Create exception info structures in the right
2759         order.
2760         (mono_reflection_setup_internal_class): Initialize supertypes field.
2761
2762         * class.c object.c: Handle interfaces which implement other interfaces 
2763         correctly.
2764
2765         * class.h class.c: Move the supertypes array initialization code into 
2766         a separate function so it can be used for dynamic types too. Also call
2767         it earlier, in mono_class_init(), since it can be used before the
2768         type is initialized.
2769
2770 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2771
2772         * Makefile.am:
2773         * assembly.c:
2774         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
2775
2776         * appdomain.c:
2777         * appdomain.h:
2778         * marshal.c:
2779         * object.c: remove warnings.
2780
2781 2003-03-13  Martin Baulig  <martin@ximian.com>
2782
2783         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
2784         (MonoDebugLexicalBlockEntry): New types.
2785
2786         * debug-mono-symfile.c
2787         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
2788
2789 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2790
2791         * process.c: ret can be any non-zero value accroding to MS doc.
2792
2793 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
2794
2795         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
2796         fixing a warning for a miss-used prototype, would have cause
2797         random memory corruption.
2798
2799 2003-03-07  Martin Baulig  <martin@ximian.com>
2800
2801         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
2802         getting really annoying ....
2803
2804 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
2805
2806         * reflection.c (fixup_method): added support for array methods.
2807
2808 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
2809
2810         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
2811         (pointed out by Michael Adams).
2812
2813 2003-03-04  Dick Porter  <dick@ximian.com>
2814
2815         * icall.c: Temporarily reverted the Double and Single ToString()
2816         change, because it broke nunit.
2817
2818 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
2819
2820         * object.h, threads.h: make include files compatible with C++
2821         (patch by Jerome Laban <jlaban@wanadoo.fr>).
2822
2823 2003-03-04  Pedro Martínez Juliá  <yoros@wanadoo.es>
2824
2825         * icall.c: Erased ToString helper functions for Double and Single.
2826         Now, that implementations ar all in managed code (Double and Single
2827         Formatters).
2828
2829 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
2830
2831         * appdomain.c: Added method for initializing the default context of
2832         a domain. Added internal call for getting the default context.
2833         * appdomain.h: Added context variable in MonoDomain struct.
2834         * domain.c: mono_domain_set also sets the default context of the domain
2835         * icall.c: Mapped internal method InternalGetDefaultContext.
2836         * object.c: mono_object_get_virtual_method returns always a remoting
2837         wrapper if the object is a transparent proxy.
2838         mono_runtime_invoke_array: when creating an object by calling the
2839         constructor, if the created object is a proxy, then the constructor should
2840         be called using the a remoting wrapper.
2841
2842 2003-03-03  Dick Porter  <dick@ximian.com>
2843
2844         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
2845         variable so it compiles on solaris.  Problem spotted by
2846         Christopher Taylor <ct@cs.clemson.edu>
2847
2848 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2849
2850         * appdomain.c:
2851         (get_info_from_assembly_name): don't leak value.
2852
2853         * icall.c:
2854         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
2855         result.
2856
2857 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
2858
2859         * assembly.c: export mono_image_load_references ().
2860         * class.c: handle function pointers. mono_class_from_name() now
2861         supports nested type names directly.
2862
2863 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
2864
2865         * reflection.h reflection.c: Encode already created dynamic methods 
2866         and fields correctly as a DEF instead of a REF.
2867
2868         * reflection.c: Get rid of the force_ref argument to 
2869         mono_image_typedef_or_ref since it was wrong in the first place.
2870
2871         * string-icalls.c: add error checking to string constructors according
2872         to the MSDN docs.
2873
2874         * reflection.c: Emit types in the order their TypeBuilders were 
2875         created. Previously, a new table index was assigned to each type before
2876         the tables were emitted. This was wrong because the signature blob
2877         might already refer to a type by its original table index.
2878
2879 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
2880
2881         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
2882         change.
2883         
2884 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2885
2886         * Makefile.am: make assemblies dir have \ instead of / on windows.
2887
2888 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
2889
2890         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
2891         iterate over the NESTEDCLASS table using a linear search since the
2892         table is not guaranteed to be sorted by the secondary key.
2893
2894         * class.c (mono_class_create_from_typedef): fixed up call to
2895         mono_metadata_nesting_typedef.
2896         
2897 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
2898
2899         * marshal.c (mono_string_to_byvalstr): clear the memory as
2900         suggested by Jerome Laban <jlaban@wanadoo.fr>
2901
2902 2003-02-26  Dick Porter  <dick@ximian.com>
2903
2904         * process.c: Cope with padding in .rsrc blocks
2905
2906 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
2907
2908         * metadata.h: reverted the filter_len change, it breaks reflection
2909         
2910 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
2911
2912         * metadata.h: added a new field to store the filter_len
2913         
2914
2915 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
2916
2917         * reflection.c: handle custom attributes for types and members
2918         created with Reflection.Emit (bug#38422).
2919
2920 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
2921
2922         * reflection.c: define RTSpecialName automatically for constructors for
2923         compatibility with MS.NET.
2924
2925         * reflection.c (mono_reflection_create_runtime_class): initialize
2926         nested_in field of dynamically created classes.
2927
2928 2003-02-22  Martin Baulig  <martin@ximian.com>
2929
2930         * debug-mono-symfile.h: Incremented version number.
2931
2932 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
2933
2934         * object.h icall.c process.c: fix warnings.
2935
2936 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
2937
2938         * appdomain.h appdomain.c:
2939         (mono_domain_try_type_resolve): split the 
2940         name_or_tb argument into a name and a tb argument.
2941         (mono_domain_has_type_resolve): new function to check whenever the
2942         application has registered a TypeResolve event handler.
2943         
2944         * icall.c reflection.h reflection.c: move the type resolve logic into
2945         mono_reflection_get_type () so it will be invoked when 
2946         Assembly::GetType () is called.
2947
2948         * reflection.c:
2949         (mono_reflection_get_type): renamed to get_type_internal.
2950         (mono_reflection_get_type): fixed type name generation so it works 
2951         for nested types too.
2952         (mono_reflection_get_type): call has_type_resolve () to avoid the 
2953         costly type name generation if there is no resolve event handler.
2954
2955 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
2956
2957         * class.c, image.c: load exported types from file references.
2958
2959 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
2960
2961         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
2962           used to cache the managed methods used to create proxies and make 
2963           remote invocation of methods.
2964         * class.h: Added in MonoVTable a flag to indicate that a class needs 
2965           to be remotely created.
2966         * object.c: Modified the method mono_class_vtable(). It now initializes 
2967           the remote flag of the vtable. Modified mono_object_new_specific(), 
2968           so now it checks the remote flag.
2969         * icall.c: Added a couple of internal methods, one for enabling instance 
2970           creation interception for a type, and one for creating objects bypassing
2971           the remote check.
2972
2973 2003-02-18  Martin Baulig  <martin@ximian.com>
2974
2975         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
2976         New interncall to get a method's metadata token.
2977
2978         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
2979         New interncall for the debugger.
2980
2981 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
2982
2983         * class.c (mono_class_setup_vtable): allocate supertype array
2984
2985 2003-02-18  Martin Baulig  <martin@ximian.com>
2986
2987         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
2988
2989 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2990
2991         * reflection.c:
2992         (assembly_name_to_aname): jump over unknown properties (i've found
2993         something like: 'type, assembly, version=xxx, custom=null, public...',
2994         so now will ignore custom=null and still get the rest of the values).
2995
2996 2003-02-17  Dick Porter  <dick@ximian.com>
2997
2998         * threads.c: Have Thread.Start() wait for a semaphore to signal
2999         that the thread has set up all its local data.  This fixes bug
3000         34323, where Abort() raced the new thread's TLS data.
3001
3002         Also removes the handle_store() call from start_wrapper, because
3003         threads are now always created suspended and there is no longer a
3004         race between the parent and child threads to store the info.
3005
3006 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
3007
3008         * image.c: explain the #- heap issue in a message, hopefully
3009         avoiding FAQs on mono-list.
3010
3011 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3012
3013         * icall.c:
3014         (GetEntryAssembly): if the domain has not invoked
3015         AppDomain.ExecuteAssembly yet, return the assembly of the default
3016         AppDomain.
3017
3018 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
3019
3020         * class.c (mono_ldtoken): make it work in dynamic assemblies.
3021
3022 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
3023
3024         * metadata.c, reflection.c: simple speedup to type hash
3025         and equals code.
3026
3027 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
3028
3029         * image.c, image.h, class.c, assembly.c: move module loading
3030         to MonoImage. When loading metadata, consider alignemnet from
3031         the start of metadata, not from the metadata address in memory.
3032
3033 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
3034
3035         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
3036         AssemblyBuilder objects. Factored out custom attribute creation into
3037         a separate function.
3038         (create_custom_attr): new function to create custom attributes.
3039
3040 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
3041
3042         * Makefile.am: Got tired of typing the full pathname to pedump.
3043         Until there is another option, am installing this.
3044
3045 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
3046
3047         * class.c (class_compute_field_layout): always set field->parent 
3048         (mono_ldtoken): use mono_defaults.fieldhandle_class;
3049
3050 2003-02-11  Dick Porter  <dick@ximian.com>
3051
3052         * threads-types.h:
3053         * monitor.c: Rewrote Monitor, making lock much faster and
3054         Pulse/Wait work as specified.  Also uses much fewer handles, and only
3055         creates them as needed.
3056
3057         * exception.c: Added SynchronizationLockException
3058
3059         * threads.c: Deleted old Monitor implementation.  The new one is
3060         in a new file.
3061
3062 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
3063
3064         * class.c: handled TypedReference type code. Set the correct size for
3065         class data. Setup interface_offsets for interface classes, too.
3066
3067 2003-02-09  Martin Baulig  <martin@ximian.com>
3068
3069         * debug-mono-symfile.h: Reflect latest symbol writer changes.
3070
3071 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
3072
3073         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
3074         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
3075         * object.c: fixed mono_object_get_virtual_method () for interfaces.
3076         * verify.c: check for code that runs after the end of the method.
3077
3078 2003-02-08  Pedro Martínez Juliá  <yoros@wanadoo.es>
3079
3080         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
3081         "System.Math::Round2".
3082         * sysmath.h: Added Floor, Round and Round2 definitions.
3083         * sysmath.c: Modified certain functions that were not 100% compliant
3084         with MS.NET (math precision) and added the implementation of Floor,
3085         Round and Round2.
3086
3087 2003-02-07  Martin Baulig  <martin@ximian.com>
3088
3089         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
3090
3091 2003-02-07  Martin Baulig  <martin@ximian.com>
3092
3093         * debug-mono-symfile.c: Reflected latest symwriter changes.
3094         (mono_debug_create_mono_symbol_file): Removed.
3095         (mono_debug_open_mono_symbol_file): Take an argument which
3096         specifies whether to create a dynamic symbol file.
3097
3098 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
3099
3100         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
3101
3102 2003-02-05  Martin Baulig  <martin@ximian.com>
3103
3104         * reflection.c (mono_image_build_metadata): Make this public,
3105         protect it against being called multiple times, don't create
3106         resources and don't build the compressed metadata here.
3107         (mono_image_create_pefile): Do this here.
3108
3109         * icall.c
3110         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
3111
3112 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3113
3114         * socket-io.c: fixed bug #36322.
3115
3116 2003-02-06  Piers Haken <piersh@friskit.com>
3117
3118         * appdomain.[ch]:
3119         * class.h:
3120         * debug-mono-symfile.c:
3121         * icall.c:
3122         * loader.c:
3123         * mono-config.c:
3124         * monosn.c:
3125         * reflection.c:
3126         * socket-io.c: warning cleanups
3127
3128 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
3129
3130         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
3131         function. works like remoting invoke, but does a check for the Proxy first.
3132
3133 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
3134
3135         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
3136
3137 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
3138
3139         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
3140         array of pointers.
3141         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
3142         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
3143
3144         * object.c (mono_store_remote_field_new): used by the new jit
3145         instead of mono_store_remote_field
3146         (mono_load_remote_field_new): used by the new jit
3147         instead of mono_load_remote_field
3148
3149 2003-02-05  Patrik Torstensson
3150
3151         * appdomain.c: changed unload to take the domain id instead
3152         of domain
3153         
3154         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
3155
3156
3157 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3158
3159         * appdomain.c: don't look for assemblies in ApplicationBase if
3160         PrivateBinPathProbe is set.
3161
3162 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3163
3164         * object.c: make the first argument in main_args contain the absolute
3165         path to the assembly. Fixes bug #37511.
3166
3167 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3168
3169         * icall.c: get correct UTC offset for countries not using daylight
3170         time saving. Fixes bug #30030.
3171
3172 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3173
3174         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
3175         and 1 are the family).
3176
3177 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
3178
3179         * icall.c (ves_icall_InternalExecute): removed wrong assertion
3180
3181         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
3182
3183 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
3184
3185         * reflection.c: added support for SignatureHelper tokens, which is
3186         needed by the Calli opcode.
3187
3188         * reflection.h: track changes to SignatureHelper class.
3189
3190         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
3191
3192 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3193
3194         * appdomain.c: fixed loading assemblies from PrivateBinPath.
3195
3196 2003-02-03  Patrik Torstensson
3197         * appdomain.[c|h], domain.c : 
3198          - Added support for getting a domain via domain id
3199          - Support for setting and getting domain from System.AppDomain 
3200            (used in cross appdomain channel)
3201          - Added support for get/set for a MonoAppContext on a thread 
3202            (Context class in System.Runtime.Remoting.Contexts),
3203          - Removed hack in Get/SetData and ExecuteAssembly.
3204         
3205         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
3206         the managed world to get control when a proxy is created.
3207
3208         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
3209         
3210 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
3211
3212         * icall.c
3213         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
3214         Populate the codebase field as well.
3215
3216 2003-02-02  Martin Baulig  <martin@ximian.com>
3217
3218         * debug-mono-symfile.c
3219         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
3220         (mono_debug_symfile_add_method): Allow interncalls.
3221
3222 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3223
3224         * icall.c: throw parse exception if strtod fails or the string is empty.
3225
3226 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
3227
3228         * marshal.c: handle object type separately from defined
3229         class types.
3230
3231 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
3232
3233         * marshal.c: handle NATIVE_LPSTR for strings when it's
3234         explicitly specified.
3235
3236 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
3237
3238         * reflection.c, reflection.h, icall.c: setup the reflection
3239         handle cache for ModuleBuilders and AssemblyBuilders.
3240
3241 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
3242
3243         * reflection.c (reflection_methodbuilder_to_mono_method): set
3244         pinvoke flag
3245
3246 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3247
3248         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
3249
3250 2003-01-29  Dick Porter  <dick@ximian.com>
3251
3252         * threads.c: No need for the fake_thread kludge now that Thread
3253         doesn't run a class constructor
3254         
3255 2003-01-29  Dick Porter  <dick@ximian.com>
3256
3257         * threads.c: Use g_direct_hash instead of the rather bogus
3258         g_int_hash
3259
3260 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
3261
3262         * marshal.c (mono_marshal_get_native_wrapper): add check for null
3263         (fix pinvoke12.exe)
3264         (mono_marshal_get_struct_to_ptr): generate valid IL code
3265         (mono_marshal_get_ptr_to_struct): generate valid IL code
3266         (*): correctly set sig->pinvoke, we need to memdup the signature
3267         to do that
3268
3269 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
3270
3271         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
3272         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
3273
3274 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
3275
3276         * profiler.c: provide more callers information.
3277
3278 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
3279
3280         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
3281
3282         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
3283
3284         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
3285
3286 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
3287
3288         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
3289         exception instead of going into an infinite loop on dates which it 
3290         can't yet handle.
3291
3292         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
3293         out-of-range exception if needed.
3294
3295         * class.c (mono_class_setup_vtable): allow a virtual method to provide
3296         an implementation for an interface method and to override an inherited
3297         method at the same time. 
3298         Imagine a scenario when a virtual method is used to override a
3299         virtual abstract method in a parent class, and this same method 
3300         provides an implementation for an method inherited from an interface. 
3301         In this case, the interface resolution code will set im->slot, which 
3302         means that the virtual method override pass will skip this method 
3303         which means a pointer to the abstract method inherited from the parent
3304         will remain in the vtable of this non-abstract class.
3305
3306         * class.c: (mono_class_setup_vtable): continue search for a real 
3307         method if only an abstract method is found.     
3308
3309 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
3310
3311         * reflection.c: add size to encoding for ByValStr and ByValArray
3312         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
3313
3314 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
3315
3316         * class.c (mono_class_setup_vtable): pass the override info as an
3317         argument.
3318
3319         * class.c (mono_class_setup_vtable): set the slot of overriding methods
3320         correctly.
3321         
3322         * reflection.c (ensure_runtime_vtable); add support for method 
3323         overrides.
3324         
3325 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
3326
3327         * reflection.c (resolution_scope_from_image): Hack to work to work with
3328         dynamic assemblies.
3329
3330         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
3331         added a 'force_ref' argument to force this function to allways return 
3332         a TypeRef. This is needed by mono_image_get_memberref_token ().
3333         
3334 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
3335
3336         * reflection.c (mono_image_get_type_info): interfaces really don't have
3337         a parent.
3338
3339         * reflection.c (mono_image_basic_init): fill out missing fields of
3340         image structure.
3341
3342         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
3343         dynamic assemblies. This is required so dynamic assemblies show up in
3344         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
3345         Type::GetType() etc. This is consistent with MS behaviour.
3346
3347         * image.c image.h reflection.c: add newly created classes to the name 
3348         cache so mono_class_get () will find them.      
3349
3350 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
3351
3352         First part of changes to get IKVM.NET running under mono.
3353         
3354         * appdomain.h, appdomain.c: added new function 
3355         mono_domain_try_type_resolve() which will emit TypeResolve events. 
3356         This function will call AppDomain::DoTypeResolve to do the actual work.
3357
3358         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
3359         moved existing code dealing with dynamic tokens to a new function 
3360         called mono_reflection_lookup_dynamic_token (). This function will 
3361         raise TypeResolve events when appropriate. Since reflection.c is not 
3362         part of libmetadata, a new hook function called 
3363         mono_lookup_dynamic_token() is added to class.c which will call this.
3364
3365         * assembly.h assembly.c: make the invoke_load_hook function public,
3366         so it can be called for dynamic assemblies.
3367
3368         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
3369
3370         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
3371         type isn't found.
3372
3373         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
3374         MonoGHashTable, since it contains pointers to objects which the GC 
3375         needs to track.
3376
3377         * assembly.c (search_loaded): remove unused variable.
3378         
3379 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
3380
3381         * object.c: fixed issue exposed by gcc-generated IL programs
3382         that use RVA data for pointers.
3383
3384 2003-01-25  Martin Baulig  <martin@ximian.com>
3385
3386         * threads.c (start_wrapper): Moved the initialization of
3387         `start_func' above the mono_new_thread_init() call to which we
3388         pass it as argument.
3389
3390 2003-01-24  Martin Baulig  <martin@ximian.com>
3391
3392         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
3393         the MonoThread pointer.
3394
3395 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
3396
3397         * icall.c: Rename `PowImpl' to Pow.
3398
3399 2003-01-23  Dick Porter  <dick@ximian.com>
3400
3401         * threads.c (start_wrapper): Create a Thread object if needed, so
3402         the Main() thread can do the class initialisation in a subthread
3403         that has been set up to allow managed code execution.
3404
3405         Pass the thread ID instead of the MonoThread pointer to the thread
3406         start and attach callbacks.  This change is required, because the
3407         jit thread start callback must be called _before_ the Thread
3408         object can be created.
3409         
3410         (mono_thread_init): Removed much object creation code that is no
3411         longer needed.  No managed code is called from here now.
3412
3413         * object.c (mono_runtime_exec_managed_code): Create a subthread
3414         for Main, and call back to the runtime to use it.
3415         Set the exit code when Main exits.
3416
3417         * gc.c: Make sure domain finalisation happens in a subthread.
3418         Re-enable threaded GC, fixing bug 31333 (again).
3419
3420         * environment.c: System.Environment internall calls (so far just
3421         ExitCode is here, the others are still in icall.c)
3422
3423         * appdomain.c (mono_runtime_cleanup): All threads running managed
3424         code should have finished before mono_runtime_cleanup() is
3425         reached, so no need to clean up threads.
3426
3427 2003-01-22  Martin Baulig  <martin@ximian.com>
3428
3429         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
3430         `gpointer func' arguments.      
3431         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
3432         but added `MonoThread *thread' argument.
3433         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
3434
3435         * threads.c (mono_new_thread_init): Added `gpointer func' argument
3436         and pass it to the mono_thread_start_cb callback.
3437         (mono_install_thread_callbacks): New public function to install a
3438         set of callbacks which are set by the debugger.
3439         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
3440
3441 2003-01-22  Martin Baulig  <martin@ximian.com>
3442
3443         * Makefile.am: Install debug-mono-symfile.h.
3444
3445 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
3446
3447         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
3448
3449 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
3450
3451         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
3452         * class.c (mono_ptr_class_get): correctly set access levels of pointers
3453         (mono_array_class_get): correctly set access levels of arrays
3454
3455 2003-01-20      Patrik Torstensson
3456         * image.h (MonoAssemblyName): changed major, minor, build, revision
3457         from signed to unsigned.
3458
3459 2003-01-20  sean kasun <skasun@azstarnet.com>
3460
3461         * reflection.c (load_cattr_value): Now this handles
3462         MONO_TYPE_SZARRAY.  Fixes bug #35629
3463
3464 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
3465
3466         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
3467         integer value
3468
3469 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3470
3471         * decimal.c: fixed bug #26056.
3472
3473 2003-01-17  Martin Baulig  <martin@ximian.com>
3474
3475         * gc.c: Raise an ExecutionEngineException instead of using g_error().
3476
3477 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3478
3479         * exception.[ch]:
3480         (mono_get_exception_type_initialization): new function.
3481
3482         * object.c: throw a TypeInitializationException when an exception is
3483         thrown invoking the class constructor.
3484
3485 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3486
3487         * reflection.c: fixed attribute reading.
3488
3489 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3490
3491         * icall.c:
3492         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
3493         provided, look for the type in the calling assembly and then in
3494         mscorlib; if the assembly name is provided, only try that one.
3495
3496 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
3497
3498         * object.c: register the vtable before there is a chance it's
3499         queried again recursively.
3500
3501 2003-01-13  Duncan Mak  <duncan@ximian.com>
3502
3503         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
3504         gc-internal.h. 
3505         
3506 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
3507
3508         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
3509
3510 2003-01-11  Martin Baulig  <martin@ximian.com>
3511
3512         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
3513         this to 20 for the release.
3514
3515 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
3516
3517         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
3518
3519         * loader.c (mono_method_get_marshal_info): bug fix
3520
3521         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
3522         structures with explicit layout
3523
3524 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
3525
3526         * profiler.c: made the output more readable (and sorted). 
3527         Added caller information for the allocation profiler.
3528
3529 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
3530
3531         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
3532
3533 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3534
3535         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
3536         to get value types.
3537         
3538 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
3539
3540         * object.c, profiler.h, profiler.c, profiler-private.h:
3541         Added object allocation profiler.
3542
3543 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
3544
3545         * reflection.h, reflection.c: handle global methods.
3546         Compress blob entries.
3547
3548 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
3549
3550         * marshal.c: fix compilation.
3551
3552 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
3553
3554         * loader.c (mono_method_get_marshal_info): impl.
3555
3556         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
3557
3558 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3559
3560         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
3561         for reference types.
3562
3563 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
3564
3565         * loader.c: fixed off by one error in loaded parameter names.
3566
3567 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
3568
3569         * marshal.c (mono_marshal_get_icall_wrapper): like
3570         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
3571         instead of a MonoMethod.
3572
3573 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3574
3575         * decimal.c: fixed bug #36537.
3576
3577 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
3578
3579         * marshal.c: throw a missing method exception if a
3580         P/Invoke method is not found.
3581
3582 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
3583
3584         * icall.c: allow a null this for constructors.
3585
3586 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
3587
3588         * icall.c: raise the proper exceptions if the arguments to the
3589         internal Invoke are incorrect.
3590
3591 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
3592
3593         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
3594
3595 2003-01-03  Martin Baulig  <martin@ximian.com>
3596
3597         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
3598
3599 2002-12-31  Martin Baulig  <martin@ximian.com>
3600
3601         * debug-mono-symfile.c: Completely rewrote the type section.
3602         Instead of using individual malloc()ed fields, we use one big
3603         continuous memory area and offsets into this area.
3604         See the comments in the source code for details.
3605
3606 2002-12-30  Martin Baulig  <martin@ximian.com>
3607
3608         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
3609
3610 2002-12-30  Martin Baulig  <martin@ximian.com>
3611
3612         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
3613         line number table in this data blob instead of using an external
3614         pointer.
3615
3616 2002-12-28  Martin Baulig  <martin@ximian.com>
3617
3618         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
3619
3620 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
3621
3622         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
3623         as a boxed return type.
3624
3625 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
3626
3627         * appdomain.c
3628         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
3629         g_build_filename to properly get separators on the filename created.
3630
3631         * object.h: Small change, introduce MonoMarshalByRefObject to
3632         track the layout of that structure in the C# universe as we make
3633         changes there.
3634
3635 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
3636
3637         * object.c: removed assert to allow static fields on interfaces.
3638         * loader.c: a TypeSpec may be used for any type, not just arrays.
3639
3640 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
3641
3642         * class.c, class.h: added mono_class_array_element_size ().
3643         Ignore static methods in interfaces.
3644
3645 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3646
3647         * threads.c: fixed the build under cygwin.
3648
3649 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
3650
3651         * reflection.c: handle nullref constants. Allocate keys for
3652         reflection handles with the GC.
3653
3654 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
3655
3656         * threads.c, threads.h: added mono_thread_get_abort_signal()
3657         to get a suitable signal for thread abort.
3658
3659 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
3660
3661         * metadata.c: fix handling of ExportedType table.
3662
3663 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3664
3665         * icall.c: added WriteWindowsDebugString internal call.
3666
3667 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3668
3669         * reflection.h: added fields to match C# implementation.
3670
3671 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3672
3673         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
3674
3675 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
3676
3677         * gc.h, gc-internal.h: Rename header for GC internal calls to
3678         gc-internal.h from gc.h as to not clash with Boehm GC having its
3679         header installed as <gc.h> in outside include paths.
3680         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
3681         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
3682
3683 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3684
3685         * icall.c: assign minor, build and revision in FillName.
3686
3687 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
3688
3689         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
3690         Added support for running code generated by Reflection.Emit.
3691
3692 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3693
3694         * appdomain.c: check for NULL argument in LoadFrom.
3695
3696 2002-12-10  Dick Porter  <dick@ximian.com>
3697
3698         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
3699
3700 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3701
3702         * appdomain.c: fix buglet when building exe file name.  Handle full
3703         assembly name (needed after latest changes to AssemblyName).
3704         * image.c:
3705         (mono_image_close): free some hashtables.
3706
3707 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
3708
3709         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
3710         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
3711         on some systems (redhat 7.3) 
3712
3713 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
3714
3715         * threads.c: delete the critical section of a sync block,
3716         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
3717
3718 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
3719
3720         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
3721
3722 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3723
3724         * appdomain.[ch]: handle the assembly preload event to try loading the
3725         assemblies using the paths we have in the current domain.
3726
3727         * assembly.[ch]: created an assembly preload hook that is called to try
3728         loading the assembly by other means that the ones provided here.
3729
3730         * domain.c: initialize the domain search path.
3731
3732         From now on, assemblies (TODO: except corlib and System) are loaded
3733         according to these rules when using mono_assembly_load ():
3734
3735                 1. It tries to load the assembly from the ApplicationBase
3736                 of the current domain appending .dll and .exe (TODO: have to
3737                 try loading from name/name.dll and name/name.exe).
3738
3739                 2. It tries the search path specified in PrivateBinPath for the
3740                 current domain (if any).
3741
3742                 3. Previous behavior.
3743
3744 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
3745
3746         * icall.c: implemented GetInterfaceMap() related icall.
3747         * domain.c, loader.h: load MethodInfo in mono_defaults.
3748
3749 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
3750
3751         * gc.c: disable the finalizer thread for now, untill all the issues
3752         with it are resolved.
3753
3754 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
3755
3756         * string-icalls.c: handle embedded nulls in string ctor when the
3757         length is specified.
3758
3759 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
3760
3761         * class.c: look for explicit interface implementation in parent
3762         classes, too.
3763
3764 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
3765
3766         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
3767
3768 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
3769
3770         * gc.c: protect handles with a critical section.
3771
3772 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3773
3774         * icall.c:
3775         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
3776         parameters. If no assembly specified, try getting the type from all
3777         the assemblies in the current domain, else, load the assembly and get
3778         the type from it.
3779
3780 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3781
3782         * marshal.c: applied patch from Aleksey Demakov that fixes
3783         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
3784
3785 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3786
3787         * icall.c: fixed get_location.
3788
3789 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
3790
3791         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
3792         declarations to make it work with older gcc. 
3793
3794         * loader.c (mono_get_method): set signature->pinvoke for native calls
3795
3796 2002-11-20  Dick Porter  <dick@ximian.com>
3797
3798         * threads.c (mono_thread_init): Set the main thread's handle
3799
3800 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
3801
3802         * gc.c: allow compilation without GC support. Changed to match the
3803         mono coding style.
3804
3805 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
3806
3807         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
3808
3809 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
3810
3811         * reflection.c: set a public key token on the core assemblies.
3812
3813 2002-11-18  Dick Porter  <dick@ximian.com>
3814
3815         * threads.c: Split out some thread initialisation so that other
3816         files can set the start callback function.
3817
3818         * gc.c: Run finalisers in a separate thread, to avoid stack
3819         overflow.  Fixes bug 31333.
3820
3821         * appdomain.c: Set up GC finalisation thread.
3822
3823         * reflection.c: 
3824         * object.c: 
3825         * domain.c: Use gc.h macros for GC_malloc
3826         
3827 2002-11-15  Dick Porter  <dick@ximian.com>
3828
3829         * threadpool.c: 
3830         * threads.c:
3831         * appdomain.c: Removed mono_runtime_init_with_attach(),
3832         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
3833         merging the extra parameter with the existing function.  Removed
3834         unneeded code in mono_thread_attach().
3835
3836 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
3837
3838         * image.c (mono_image_loaded_by_guid): a method to get loaded
3839         images by guid. 
3840         (load_metadata_ptrs): we store the guid as string.
3841
3842 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
3843
3844         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
3845
3846         * metadata.c (mono_guid_to_string): imported method form Zoltan
3847         Varga (slightly modified)
3848
3849         * assembly.c (mono_assembly_open): load precompiled code
3850
3851         * loader.h (MonoMethod): we store the method token for use in the
3852         aot compiler. 
3853
3854 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3855
3856         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
3857         the hook function called when an assembly is loaded.
3858         
3859         * domain.c: Modified file.
3860         (mono_domain_assembly_load): removed hash table insertion of assemblies.
3861
3862         Fixes bug #33196.
3863
3864 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
3865
3866         * reflection.c: Map PEFileKind to the value expected by the WinNT
3867         image loader. 
3868
3869 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3870
3871         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
3872         Read until the buffer is filled completely.
3873
3874 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3875
3876         * icall.c: implemented MonoType.InternalGetEvent ().
3877
3878 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3879
3880         * appdomain.c: implemented InitAppDomainSetup. Delayed
3881         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
3882         the entry_assembly.
3883
3884         * assembly.c: base_dir is now an absolute path ending with
3885         G_DIR_SEPARATOR.
3886
3887         * icall.c: modified get_location according to the above changes.
3888
3889         * object.c: init AppDomain.SetupInformation for the default domain after
3890         we have the entry assembly.
3891
3892         * domain.c: when unloading a domain, setup = NULL.
3893
3894 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
3895
3896         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
3897
3898 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
3899
3900         * object.h, object.c: introduced mono_object_get_virtual_method ()
3901         to lookup the method invoked on an object when a callvirt is done on
3902         a method.
3903         * icall.c: make MethodInfo::Invoke() always do a virtual call.
3904
3905 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3906
3907         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
3908         current domain when loaded an assembly and failed to load it.
3909
3910         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
3911
3912 2002-10-31  Dick Porter  <dick@ximian.com>
3913
3914         * icall.c: 
3915         * file-io.h: 
3916         * file-io.c: Return the error status in a parameter, as the
3917         GetLastError() value has long since been blown away if we try and
3918         look it up in a subsequent internal call invocation.  Delete the
3919         GetLastError() internal call, because it's useless.
3920
3921 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
3922
3923         * class.[ch]: added cast_class to fix bug 29517
3924
3925 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
3926
3927         * marshal.c: create valid IL code in the filter clause:
3928         the new JIT is less forgiving:-)
3929
3930 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3931
3932         * icall.c: removed get_property internal call.
3933
3934 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
3935
3936         * appdomain.h domain.c: Added an ID to appdomains.
3937         
3938         * threads.c threads.h icall.c: Implement icall
3939         Thread:GetDomainID(), and remove unused icall 
3940         CurrentThreadDomain_internal.
3941
3942 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3943
3944         * icall.c: Don't recurse through the base types in GetConstructor.
3945         Fixes bug #32063. 
3946
3947 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
3948
3949         * mempool.h, mempool.c: added mono_mempool_empty() and
3950         mono_mempool_stats().
3951
3952 2002-10-23  Dick Porter  <dick@ximian.com>
3953
3954         * file-io.c: 
3955         * file-io.h: 
3956         * icall.c: Added MonoIO.GetFileType internal call
3957
3958 2002-10-17  Dick Porter  <dick@ximian.com>
3959
3960         * appdomain.c (mono_runtime_cleanup): Don't signal the async
3961         delegate semaphore before waiting for all threads to finish,
3962         because new threads can also call async delegates.  Fixes bug
3963         32004.
3964
3965         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
3966         of 3 seconds, in case another async job is queued.  (This part is
3967         needed because the bug fix reintroduced the 3s exit lag.)  This
3968         makes the mono_runtime_shutdown flag superfluous.
3969
3970 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
3971
3972         * reflection.c: include ehader size in method section headers.
3973         Really check for suplicated modules entries.
3974
3975 2002-10-17  Martin Baulig  <martin@gnome.org>
3976
3977         * debug-mono-symfile.c: Added back support for locals.
3978
3979 2002-10-14  Martin Baulig  <martin@gnome.org>
3980
3981         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
3982         MONO_TYPE_VOID.
3983
3984 2002-10-14  Martin Baulig  <martin@gnome.org>
3985
3986         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
3987         mono_class_get() instead of looking in the class cache. 
3988
3989 2002-10-13  Martin Baulig  <martin@gnome.org>
3990
3991         * debug-mono-symfile.c: Set version number to 28, include the
3992         signature in method names.
3993
3994 2002-10-13  Martin Baulig  <martin@gnome.org>
3995
3996         * debug-mono-symfile.h: Set version number to 27.
3997
3998 2002-10-11  Martin Baulig  <martin@gnome.org>
3999
4000         * gc.c: Don't register/unregister NULL pointers as disappearing links.
4001
4002 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
4003
4004         * metadata.c, metadata.h: added helper function to allocate signatures.
4005
4006 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4007
4008         * icall.c: added internal call to get the location of machine.config.
4009
4010 2002-10-08  Martin Baulig  <martin@gnome.org>
4011
4012         * debug-mono-symfile.c: Ignore classes with a pending init for the
4013         moment.
4014
4015 2002-10-03  Dick Porter  <dick@ximian.com>
4016
4017         * threads.c: Freebsd pthread_t is a pointer
4018
4019 2002-10-03  Dick Porter  <dick@ximian.com>
4020
4021         * socket-io.c: Implemented GetHostName_internal
4022
4023 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4024
4025         * mono-config.c:
4026         (mono_config_parse_file): don't leak the text.
4027
4028 2002-10-02  Martin Baulig  <martin@gnome.org>
4029
4030         * debug-mono-symfile.c: Added support for methods.
4031
4032 2002-10-01  Martin Baulig  <martin@gnome.org>
4033
4034         * debug-mono-symfile.c: Don't emit methods and line numbers for
4035         the dynamic symbol file, just write the type table.  We can easily
4036         have an external helper program which creates a symbol file for an
4037         IL file.        
4038
4039 2002-10-01  Dick Porter  <dick@ximian.com>
4040
4041         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
4042         Only add the handle to the cleanup array when we're about to
4043         launch the thread.  Bug 31425 deadlocked when the test was run on
4044         mono under w32.
4045
4046 2002-10-01  Martin Baulig  <martin@gnome.org>
4047
4048         * debug-mono-symfile.c: Added support for properties.
4049
4050 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
4051
4052         * reflection.c: unaligned store fix from Mark Crichton
4053         <crichton@gimp.org>.
4054
4055 2002-09-27  Martin Baulig  <martin@gnome.org>
4056
4057         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
4058         New interncall.
4059
4060 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
4061
4062         * assembly.h, assembly.c: use a sane API to hook into the assembly
4063         loading process instead of a useless special-purpouse hack
4064         (ngen needs a hook, too, for example).
4065
4066 2002-09-27  Dick Porter  <dick@ximian.com>
4067
4068         * threads.c (mono_thread_init): Call GetCurrentProcess() so
4069         io-layer can set up some process handle info.  Not needed on w32,
4070         but doesn't hurt either.
4071
4072         * process.c: Pass the program name in the second parameter to
4073         CreateProcess, so the path is searched.  Include the working
4074         directory. Implemented process name, process enumeration, and some
4075         process detail internal calls.
4076         
4077         * icall.c: Added internal calls for process lookup, and some
4078         process details
4079
4080 2002-09-26  Martin Baulig  <martin@gnome.org>
4081
4082         * assembly.c (mono_install_open_assembly_hook): New global
4083         function to install a function to be invoked each time a new
4084         assembly is loaded.
4085         (mono_assembly_open): Run this callback function if set.
4086
4087         * debug-mono-symfile.c: Put back line numbers for the dynamic
4088         symbol file and also record the .il file as source file.  This
4089         allows us to install the temporary symbol file as `file.dbg' just
4090         like a compiler-generated one.
4091
4092 2002-09-26  Nick Zigarovich <nick@chemlab.org>
4093
4094         * Corrected typo in gc.c (BOHEM vs BOEHM).
4095
4096 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4097
4098         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
4099         GetProperties. Also avoid calling g_slist_length in GetProperties and
4100         GetMethods.
4101
4102 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
4103
4104         * reflection.c: avoid unaligned stores (bug spotted by
4105         Mark Crichton  <crichton@gimp.org>).
4106
4107 2002-09-25  Martin Baulig  <martin@gnome.org>
4108
4109         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
4110         instead of guint64 for addresses and added prologue/epilogue info.
4111
4112 2002-09-25  Martin Baulig  <martin@gnome.org>
4113
4114         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
4115         store line number info.  For the dynamic symbol file, we only need
4116         to provide the JIT generated dynamic line number info for the dynamic
4117         symbol file.
4118
4119 2002-09-25  Martin Baulig  <martin@gnome.org>
4120
4121         * debug-mono-symfile.h: Incremented version number.
4122
4123 2002-09-24  Martin Baulig  <martin@gnome.org>
4124
4125         * class.c (mono_debugger_class_init_func): New global function
4126         pointer variable.
4127         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
4128         call it.
4129
4130         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
4131         function.  This is called via the mono_debugger_class_init_func
4132         hook to add all types to the dynamic type table.
4133         (ves_icall_MonoDebugger_GetType): New interncall to get a class
4134         from its metadata token.
4135
4136         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
4137         New interncall for the debugger.
4138
4139 2002-09-24  Nick Drochak <ndrochak@gol.com>
4140
4141         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
4142         before using it in case it is null.
4143         
4144 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
4145
4146         * metadata.c: allow custom modifiers in local var signatures
4147         (bug spotted by Zoltan Varga).
4148
4149 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
4150
4151         * class.c: deal with the <Module> class that may have a NULL vtable.
4152         Eliminate warnings.
4153
4154 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
4155
4156         * image.c, image.h: more strong name helpers.
4157         * monosn.c: more work: convert pem keys to cryptoapi format.
4158
4159 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
4160
4161         * string-icalls.c: speedup IndexOf.
4162
4163 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
4164
4165         * icall.c: updates from Zoltan.2.Varga@nokia.com.
4166
4167 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
4168
4169         * icall.c: cleanup: use mono_object_domain ().
4170
4171 2002-09-23  Martin Baulig  <martin@gnome.org>
4172
4173         * debug-mono-symfile.c: Improved type support.
4174
4175 2002-09-22  Martin Baulig  <martin@gnome.org>
4176
4177         * debug-mono-symfile.c: Added support for reference types and strings.
4178
4179 2002-09-22  Martin Baulig  <martin@gnome.org>
4180
4181         * debug-mono-symfile.c: Started to work on the type table.
4182
4183 2002-09-21  Martin Baulig  <martin@gnome.org>
4184
4185         * debug-mono-symfile.c: Largely reworked the symbol table format.
4186         The symbol table is now incrementally updated each time a new
4187         method is added.  We're now also using our own magic and version
4188         so that you don't need to recompile all your classes if the
4189         dynamic table changes.
4190         (mono_debug_update_mono_symbol_file): Removed.
4191         (mono_debug_symfile_add_method): New function to add a method.
4192
4193 2002-09-21  Martin Baulig  <martin@gnome.org>
4194
4195         * icall.c
4196         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
4197         New interncall.
4198
4199         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
4200         New interncall to get a method from its metadata token.
4201
4202 2002-09-21  Martin Baulig  <martin@gnome.org>
4203
4204         * debug-mono-symfile.c: Create type table.
4205
4206 2002-09-20  Martin Baulig  <martin@gnome.org>
4207
4208         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
4209
4210 2002-09-20  Martin Baulig  <martin@gnome.org>
4211
4212         * debug-mono-symfile.c: Provide information about params and locals.
4213
4214 2002-09-20  Martin Baulig  <martin@gnome.org>
4215
4216         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
4217         New interncall.
4218
4219         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
4220         interncall to get a method from its metadata token.
4221
4222 2002-09-20  Martin Baulig  <martin@gnome.org>
4223
4224         * debug-mono-symfile.c: Added a few checks for method->header
4225         being non-NULL.  This should never happen, but for the moment
4226         let's use a g_warning() rather than a g_assert().
4227
4228 2002-09-19  Mark Crichton  <crichton@gimp.org>
4229
4230         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
4231         even if support for it isn't present.  Added an #ifdef to fix this.
4232
4233         * socket-io.c: Added checks back for Solaris support.
4234
4235 2002-09-19  Martin Baulig  <martin@gnome.org>
4236
4237         * debug-mono-symfile.c (read_string, write_string): Reflect latest
4238         changes in the symbol file format.
4239
4240 2002-09-18  Martin Baulig  <martin@gnome.org>
4241
4242         * debug-mono-symfile.c: Set version number to 21.
4243
4244 2002-09-18  Dick Porter  <dick@ximian.com>
4245
4246         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
4247         on netbsd.  Fixes bug 30051.
4248
4249 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4250
4251         * reflection.c:
4252         (set_version_from_string): little fix.
4253
4254 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
4255
4256         * monosn.c, Makefile.am: added strong name utility.
4257         * reflection.h, reflection.c: implemented delayed signing,
4258         locale, version and hash id assembly attributes.
4259
4260 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
4261
4262         * loader.c, metadata.c: load param attributes in signatures.
4263
4264 2002-09-16  Martin Baulig  <martin@gnome.org>
4265
4266         * debug-mono-symfile.c: Added string table with all method names.
4267
4268 2002-09-14  Martin Baulig  <martin@gnome.org>
4269
4270         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
4271         fast method lookup.
4272
4273 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
4274
4275         * reflection.c: record the public key token of referenced assemblies.
4276
4277 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
4278
4279         * image.c, image.h: added functions to get the strong name and the
4280         public key of an assembly.
4281         * pedump.c: use them.
4282
4283 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
4284
4285         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
4286
4287 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
4288
4289         * marshal.c (mono_marshal_get_managed_wrapper): Added
4290         MONO_TYPE_BOOLEAN 
4291
4292 2002-09-11  Martin Baulig  <martin@gnome.org>
4293
4294         * gc.c: Call GC_unregister_disappearing_link() on all links when
4295         finalizing them, this is necessary to aviod a crash in boehm's
4296         finalize handler.
4297
4298 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
4299
4300         * gc.c: handle GetTarget for finalized objects spotted and fixed by
4301         nick@chemlab.org.
4302
4303 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
4304
4305         * icall.c: implemented MonoType::Module.
4306         * reflection.c, reflection.h: mono_module_get_object () from
4307         Tomi Pakarinen <tomi.pakarinen@welho.com>.
4308
4309 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
4310
4311         * icall.c: ignore overridden methods in GetMethods ().
4312         Fix for FieldInfo::SetValue().
4313         * object.c: handle float/double in runtime invoke.
4314
4315 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
4316
4317         * object.c: allow a constructor to be called again on an object.
4318
4319 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
4320
4321         * class.h, class.c: move field layout code to it's own function and
4322         export it. Get an interface id earlier. Move fields in MonoClass
4323         so they are more cache friendly and align the bitfields.
4324         * loader.c: temporary handle get_param_names() for a runtime method.
4325         * reflection.c, reflection.h: more code to handle runtime creation of
4326         types.
4327
4328 2002-09-09  Martin Baulig  <martin@gnome.org>
4329
4330         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
4331         signature with the pinvoke field being set for the actual call.
4332
4333 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
4334
4335         * icall.c: removed some unused icalls. Start of map of glib charsets
4336         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
4337
4338 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
4339
4340         * debug-helpers.c: break infinite loop (found and fixed by
4341         Holger Arnold <harnold@gmx.de>).
4342
4343 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
4344
4345         * icall.c: target may be null in create_delegate.
4346
4347 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
4348
4349         * marshal.c: handle a boolean return type.
4350
4351 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
4352
4353         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
4354
4355 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
4356
4357         * gc.c: fix weakreferences.
4358
4359 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
4360
4361         * icall.c: added icall to get default codepage.
4362
4363 2002-09-03  Dick Porter  <dick@ximian.com>
4364
4365         * threads.h: 
4366         * threads.c: Use MonoThread instead of MonoObject where
4367         apropriate.
4368
4369         Store running thread objects in a hash table, so that we have all
4370         the info to hand when waiting for them to finish
4371         (means we don't need OpenThread() any more, so mingw builds should
4372         be fully functional again.)
4373
4374         * verify.c:
4375         * object.h: Added thread ID to MonoThread
4376
4377 2002-09-03  Martin Baulig  <martin@gnome.org>
4378
4379         * icall.c (System.Reflection.Assembly::get_location): New interncall.
4380
4381 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4382
4383         * icall.c: fixed leak in get_temp_path. Thanks lupus.
4384
4385 2002-09-03  Martin Baulig  <martin@gnome.org>
4386
4387         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
4388         argument to store the end address of the disassembled instruction.
4389
4390         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
4391         here from debug-symfile.h.
4392         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
4393         JIT into this struct.
4394         (MonoSymbolFile): Added `char *image_file' field.
4395         (MonoDebugGetMethodFunc): Removed.
4396         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
4397         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
4398         (mono_debug_find_method): New method.
4399
4400         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
4401         create a full symbol file.
4402         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
4403         and static symbol files.
4404         (mono_debug_find_method): The symbol file keeps an internal method hash,
4405         call this to get a MonoDebugMethodInfo from a MonoMethod.
4406
4407         * debug-symfile.[ch]: Removed.
4408
4409 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
4410
4411         * image.c (do_mono_image_open): Remove linker version check.
4412
4413 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
4414
4415         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
4416         wrappers for instance methods.
4417         
4418 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4419
4420         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
4421
4422 2002-08-28  Dick Porter  <dick@ximian.com>
4423
4424         * Makefile.am: Export HOST_CC for w32 builds
4425
4426 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
4427
4428         * file-io.c process.c: MonoString are null terminated, no
4429         need for mono_string_to_utf16() anymore.
4430
4431 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
4432
4433         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
4434
4435 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
4436
4437         * icall.c, reflection.h: speedup System.MonoType.
4438
4439 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
4440
4441         * reflection.c: allow null as the value of a string argument in
4442         custom attributes constructors.
4443
4444 2002-08-27  Martin Baulig  <martin@gnome.org>
4445
4446         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
4447         `trampoline_address' field.
4448
4449 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
4450
4451         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
4452         check (fixes bug #29486) 
4453
4454 2002-08-27  Martin Baulig  <martin@gnome.org>
4455
4456         * debug-mono-symfile.c: Changed the file format in a way that allows us
4457         open it read-only and to use a specially malloced area for all the
4458         dynamic data.  We can now also generate a symbol file on-the-fly if we're
4459         debugging IL code and there is no MCS generated symbol file for it.
4460
4461 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
4462
4463         * object.c: added a define for a good string and array
4464         creation speedup (not enabled by default because we need to deal with
4465         the synch stuff).
4466
4467 2002-08-26  Martin Baulig  <martin@gnome.org>
4468
4469         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
4470         function to create a dynamic symbol file.  This is used by the
4471         debugger to create a symbol file for IL code on-the-fly.
4472
4473 2002-08-26  Martin Baulig  <martin@gnome.org>
4474
4475         * loader.c (mono_lookup_pinvoke_call): Include the error message
4476         from g_module_error() in the error message.
4477
4478 2002-08-24  Martin Baulig  <martin@gnome.org>
4479
4480         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
4481         function to update the symbol file.  The symbol file is mmap()ed
4482         writable, but private.  This allows us to install the symbol file
4483         together with the assembly.
4484
4485 2002-08-24  Martin Baulig  <martin@gnome.org>
4486
4487         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
4488         but they can read the new symbol file format which mcs is now creating.
4489
4490         * debug-symfile.c (mono_debug_find_source_location): Moved to
4491         debug-mono-symfile.c; this is now operating on the new symbol file.
4492
4493 2002-08-23  Martin Baulig  <martin@gnome.org>
4494
4495         * debug-helpers.c (mono_method_desc_from_method): New function to get
4496         a MonoMethodDesc from a MonoMethod.
4497
4498 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
4499
4500         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
4501         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
4502
4503 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
4504
4505         * string-icalls.[ch]: make helper methods static.
4506
4507 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4508
4509         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
4510         types to it and to SetValueInternal.
4511
4512         * object.c: Moved handle_enum label to its proper place. This was the
4513         f... bug! ;-)
4514
4515         This time i compiled mcs and gtk-sharp and they both work.
4516
4517 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4518
4519         * icall.c: reverted partially my previous patch until 
4520         object.c:set_value handles enums correcly.
4521
4522 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4523
4524         * icall.c:
4525         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
4526         (ves_icall_System_Environment_get_MachineName): removed warning when
4527         compiling under cygwin.
4528
4529 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
4530
4531         * object.c: fixed field_get_value() for reference types.
4532
4533 2002-08-22  Dick Porter  <dick@ximian.com>
4534
4535         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
4536         Don't free a buffer while it's still needed.  Patch from Jonathan
4537         Liger <Jonathan.liger@wanadoo.fr>
4538
4539 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
4540
4541         * icall.c (ves_icall_System_Environment_get_Platform): Add new
4542         internal call.
4543
4544 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
4545
4546         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
4547         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
4548
4549         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
4550         we call unmanaged code which throws exceptions.
4551
4552 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
4553
4554         * appdomain.h: added per-domain entry_assembly.
4555         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
4556         arguments.
4557         * icall.c: Assembly::GetEntryAssembly icall.
4558         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
4559         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
4560
4561 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
4562
4563         * appdomain.h, gc.c: added mono_domain_finalize ().
4564
4565 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4566
4567         * object.c:
4568         (mono_print_unhandled_exception): changed g_warning by g_printerr
4569         because g_log has a 1024 characters limit (yeah, i got a big stack
4570         trace). Don't print exception name, that should be in ToString 
4571         returned string.
4572
4573 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4574
4575         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
4576         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
4577
4578 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4579
4580         * object.c:
4581         (mono_print_unhandled_exception): after previous commit, i realized
4582         that MS calls ToString on the exception. I changed this function to
4583         do that. This way we get stack_trace for free.
4584
4585 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4586
4587         * object.c:
4588         (mono_print_unhandled_exception): invoke Message property instead of
4589         getting 'message' field from Exception. Don't allocate memory for
4590         'trace' and 'message' if not needed.
4591
4592 2002-08-18  Dick Porter  <dick@ximian.com>
4593
4594         * unicode.c: Fix asserts to match Encoder.cs checks
4595
4596 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
4597
4598         * marshal.c: fix unaligned store issue and a few wrong
4599         opcode argument types.
4600
4601 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4602
4603         * icall.c: added GetUninitializedObjectInternal internal call.
4604
4605 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
4606
4607         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
4608         to the right domain.
4609
4610 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
4611
4612         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
4613
4614         * class.c (class_compute_field_layout): set blittable to false for Strings
4615
4616         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
4617
4618 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
4619
4620         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
4621         first chunk of code to create types at runtime. Code to
4622         handle ReflectedType/DeclaringType. Make reflection handles
4623         domain specific.
4624
4625 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
4626
4627         * class.c: set correct name in arrays.
4628
4629 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
4630
4631         * appdomain.c (mono_domain_transfer_object): make it work with
4632         valuetypes. bug fixes.
4633
4634 2002-08-12  Dick Porter  <dick@ximian.com>
4635
4636         * object.h: Rename some parameters to avoid c++ keywords (Patch
4637         from Joseph Wenninger <kde@jowenn.at>)
4638
4639 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
4640
4641         * icall.c: added icall to implement Assembly.GetFile*.
4642
4643 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
4644
4645         * reflection.h, reflection.c: code to embed managed resources.
4646
4647 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
4648
4649         * class.c: move all the type size stuff into
4650         class_compute_field_layout().
4651
4652 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
4653
4654         * class.c: ensure enums have always the correct instance size.
4655         * unicode.c: remove wrong assert.
4656
4657 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
4658
4659         * assembly.c: fix mem corruption issue.
4660         * image.h, image.c: added mono_image_get_resource () to access
4661         managed resources.
4662         * icall.c: implemented Assembly.EntryPoint property and some
4663         Managed Resources related internalcalls.
4664
4665
4666 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
4667
4668         * image.c, image.h: impemented mono_image_get_entry_point ().
4669         * appdomain.c: use mono_image_get_entry_point.
4670
4671 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
4672
4673         * reflection.c: support the object type argument when loading
4674         custom attributes.
4675
4676 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
4677
4678         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
4679         String as return type.
4680
4681 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
4682
4683         * reflection.c: fix encoding of named args for custom attrs to match
4684         the ms implementation. Read them back when instantiating custom
4685         attributes.
4686
4687 2002-08-02  Radek Doulik  <rodo@ximian.com>
4688
4689         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
4690         by Dietmar as quick fix
4691         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
4692         16 as stack size, used on more places as quick fix before Dietmar
4693         will fix it properly
4694
4695 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
4696
4697         * object.h, object.c: added accessors for fields and properties.
4698
4699 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
4700
4701         * class.c, class.h: made mono_class_get_field_from_name ()
4702         loop on parent types.
4703         Added mono_class_get_property_from_name ().
4704
4705 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
4706
4707         * class.c, class.h: move the code to setup the type vtable in its own
4708         function so that it can be reused also for types created at runtime.
4709         Eliminate the "class" identifier from the header file.
4710         * reflection.c: setup the vtable for enums so that we can create
4711         objects for use in SetConstant ().
4712
4713 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
4714
4715         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
4716         instead of the delegate itself as this pointer (bug #28383)
4717
4718 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
4719
4720         * marshal.c (mono_marshal_get_managed_wrapper): added return type
4721         conversions.
4722
4723 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
4724
4725         * loader.c: don't set the pinvoke bit on icalls.
4726
4727 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
4728
4729         * debug-helpers.c (mono_method_full_name): only print a number to
4730         indicate wrapper type (so that the output is more readable in traces).
4731
4732 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
4733
4734         * class.c (mono_class_init): include method override patch from Paolo
4735
4736 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
4737
4738         * icall.c: fixed GetTypeCode().
4739
4740 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
4741
4742         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
4743         use real delegate invoke function to make it work with multicast
4744         delegates (fix bug# 28291).
4745
4746 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
4747
4748         * object.c: load constant strings.
4749
4750 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
4751
4752         * reflection.c: no magic numbers.
4753         * tabledefs.h: security action enum.
4754
4755 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
4756
4757         * assembly.c: fix possible memory corruption.
4758
4759 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
4760
4761         * reflection.h, reflection.c: added support for linking resources.
4762         * verify.c: check we have an updated corlib.
4763
4764 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
4765
4766         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
4767         string arrays.
4768         (mono_marshal_string_array): null terminate unmanaged string arrays.
4769         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
4770
4771 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
4772
4773         * icall.c: Type.GetType () can now return also types from the
4774         calling assembly.
4775
4776 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
4777
4778         * loader.h, loader.c: stack walking support.
4779         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
4780         GetCallingAssembly.
4781
4782 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
4783
4784         * marshal.c: added optimisations for blittable types 
4785
4786         * class.c (mono_array_class_get): do not set blittable attribute on arrays
4787         (mono_class_setup_mono_type): set blittable attribute for single
4788         and double.
4789
4790         * marshal.c (mono_string_utf8_to_builder): impl.
4791         (mono_string_builder_to_utf8): impl.
4792         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
4793
4794 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
4795
4796         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
4797         (mono_marshal_get_managed_wrapper): impl. byref types
4798
4799 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4800
4801         * icall.c:
4802         (search_method): don't display debug message. 
4803
4804 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
4805
4806         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
4807
4808 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
4809
4810         * appdomain.c: set the missing filename when throwing exception.
4811
4812 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
4813
4814         * metadata.c (mono_type_size): code cleanup
4815         (mono_type_stack_size): removed some test code
4816
4817 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
4818
4819         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
4820         mono_get_exception_file_not_found now.
4821
4822         * exception.c (mono_exception_from_name_two_strings): New version
4823         that will call a constructor with two string arguments. 
4824         (mono_get_exception_file_not_found): New helper routine, used to
4825         report file-not-found errors.
4826
4827 2002-07-20  Dick Porter  <dick@ximian.com>
4828
4829         * process.h:
4830         * process.c: Pass file handles to CreateProcess
4831         
4832         * icall.c:
4833         * file-io.h:
4834         * file-io.c: Implemented CreatePipe
4835
4836 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
4837
4838         * metadata.c (mono_get_param_info): set alignment for value types
4839
4840 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
4841
4842         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
4843         Constify mono_domain_assembly_open().
4844         * loader.c: handle null namespace in icalls.
4845
4846 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
4847
4848         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
4849         (emit_str_to_ptr_conv): marshal object as structs
4850
4851         * metadata.c (mono_type_to_unmanaged): marshal object as structs
4852
4853         * marshal.c (mono_marshal_get_runtime_invoke): support value types
4854
4855 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
4856
4857         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
4858         (mono_marshal_get_native_wrapper): we an now return value types
4859
4860 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
4861
4862         * verify.c: more checks implemented.
4863
4864 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
4865
4866         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
4867         (fix bug #27695)
4868         (mono_marshal_get_native_wrapper): allow byref arguments
4869         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
4870         impl. PtrToStringXXX methods
4871         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
4872         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
4873         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
4874         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
4875         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
4876
4877 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
4878
4879         * reflection.c: fix buglet in parsing an assembly name.
4880
4881 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
4882
4883         * marshal.c (emit_ptr_to_str_conv): first impl.
4884
4885 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
4886
4887         * object.c, class.h: cache the vtable in the class as suggested by
4888         vargaz@freemail.hu (Zoltan Varga).
4889
4890 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
4891
4892         * class.h, loader.c: added mono_field_from_token().
4893         * verify.c: first cut of type checking code.
4894
4895 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
4896
4897         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
4898
4899 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
4900
4901         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
4902         (fix bug #27782)
4903         (mono_marshal_get_remoting_invoke): impl.
4904         (mono_delegate_begin_invoke): impl.
4905         (mono_mb_emit_save_args): impl.
4906         (mono_delegate_end_invoke): impl.
4907         (mono_marshal_get_delegate_begin_invoke):
4908         (mono_marshal_get_delegate_end_invoke):
4909         (mono_marshal_get_delegate_invoke): generate a special name for
4910         those methods (including the signature) and associate them whith
4911         the delegate class. 
4912
4913 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
4914
4915         * reflection.[ch]: 
4916         (mono_reflection_type_from_name): now it has a MonoImage parameter
4917         which is used as the default image to search the type in. If the image
4918         is NULL or getting the type from it fails, it defaults to corlib.
4919
4920         * icall.c: changed 1 call to mono_reflection_type_from_name to match
4921         new parameter.
4922
4923 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
4924
4925         * reflection.c: update the parameter table index.
4926
4927 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
4928
4929         * domain.c: don't include the mark byte in the string hash.
4930
4931 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
4932
4933         * icall.cs: icall for Type.GetTypeCode ().
4934         * verify: a couple of fixes and disabled local initialization checks.
4935
4936 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
4937
4938         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
4939
4940         * debug-helpers.c (mono_method_full_name): print the type of the
4941         runtime wrapper
4942
4943         * metadata.c (mono_signature_hash): a hash function for signatures
4944         (mono_signature_hash): better hash algorithm
4945
4946         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
4947
4948         * debug-helpers.c (mono_method_full_name): this can now generate
4949         method names with signatures
4950
4951         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
4952         method dont have this pointers.
4953
4954 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
4955
4956         * reflection.c: fixup typebuilder tokens.
4957         * image.c: fix buglet.
4958         * marshal.h: remove whitespace.
4959         * metadata.h, metadata.c: reinstate code that was removed.
4960         * verify.c: handle catch directives and fix another couple of bugs.
4961
4962 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
4963
4964         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
4965         (mono_marshal_get_native_wrapper): make it comp. with the old code
4966         (mono_marshal_get_native_wrapper): support boolean
4967         (mono_marshal_get_managed_wrapper): support more types
4968
4969 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
4970
4971         * class.c (class_compute_field_layout): compute class->blittable attribute.
4972
4973 2002-07-09  Dick Porter  <dick@ximian.com>
4974
4975         * threads.c: Make the thread cleaning up cope with threads that
4976         call ExitThread()
4977
4978 2002-07-08  Radek Doulik  <rodo@ximian.com>
4979
4980         * reflection.c (method_encode_code): use non-translated values to
4981         compute finally_start, this fixes exception handling on ppc, yay!
4982
4983         * decimal.h (struct signscale): fix endianess
4984
4985 2002-07-07  Radek Doulik  <rodo@ximian.com>
4986
4987         * reflection.c: swap box_val and not val
4988
4989 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
4990
4991         * reflection.c, reflection.h: handle full assembly info in type name.
4992         Handle Type arguments when loading custom attributes.
4993         * icall.c: updated to use new mono_reflection_type_from_name () method.
4994
4995 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4996
4997         * loader.c:
4998         (method_from_memberref): also print assembly name when method not found.
4999
5000 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5001
5002         * icall.c:
5003         (ves_icall_TypeGetProperties): fixed bug #27473. 
5004
5005 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5006
5007         * reflection.c: display image name and token when cannot find the
5008         .ctor for an attribute.
5009
5010 2002-07-05  Martin Baulig  <martin@gnome.org>
5011
5012         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
5013
5014 2002-07-04  Dick Porter  <dick@ximian.com>
5015
5016         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
5017         compile on mingw.  This will cause mingw builds to not wait for
5018         subthreads to terminate after the main thread does.  I've lodged a
5019         bug with the mingw developers for them to wrap OpenThread().
5020
5021 2002-07-03  Dick Porter  <dick@ximian.com>
5022
5023         * threads.c: Store thread IDs instead of handles, because
5024         GetCurrentThread() returns a pseudohandle and therefore stores
5025         useless values.  mono_thread_cleanup() continues checking the
5026         array of threads until it is empty, to cope with subthreads
5027         spawning new threads after the main thread has finished.
5028
5029         * profiler.h:
5030         * profiler.c:
5031         * profiler-private.h: Pass the thread ID to thread profiler
5032         functions, instead of a handle
5033
5034 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
5035
5036         * verify.c: fixes to make it more usable.
5037         * pedump.c: added --verify code to verify IL code in an assembly.
5038
5039 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
5040
5041         * reflection.c: turn errors into warnings to allow compiling corlib.
5042
5043 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
5044
5045         * reflection.c: add special cases to compile corlib.
5046
5047 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
5048
5049         * reflection.c: handle properties with only a set method.
5050
5051 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
5052
5053         * opcodes.h: add enum with opcodes in opval order.
5054
5055 2002-07-01  Dick Porter  <dick@ximian.com>
5056         
5057         * object.h:
5058         * object.c (mono_runtime_run_main): Removed unneeded argument
5059
5060 2002-06-28  Martin Baulig  <martin@gnome.org>
5061
5062         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
5063
5064 2002-06-27  Dick Porter  <dick@ximian.com>
5065
5066         * threads.c: Store the handle in both the parent thread and in the
5067         subthread, to minimise the time between starting a new thread and
5068         storing its ID.
5069
5070 2002-06-26  Dick Porter  <dick@ximian.com>
5071
5072         * appdomain.c (mono_runtime_cleanup): Close the socket library
5073         after all the threads have finished, not before
5074
5075 2002-06-26  Martin Baulig  <martin@gnome.org>
5076
5077         * debug-symfile.c (mono_debug_find_source_location): Added
5078         `guint32 *line_number' argument.  If it's not NULL, store the line number
5079         there and return the file name without the line number.
5080
5081 2002-06-25  Dick Porter  <dick@ximian.com>
5082
5083         * icall.c:
5084         * process.h:
5085         * process.c: Process forking and other support functions
5086
5087 2002-06-25  Dick Porter  <dick@ximian.com>
5088
5089         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
5090         things dont happen when the image is closed.
5091         (mono_image_lookup_resource): Walk the resource section looking
5092         for a particular entry
5093
5094         * cil-coff.h: PE resource section decoding
5095
5096 2002-06-25  Dick Porter  <dick@ximian.com>
5097         
5098         * assembly.h:
5099         * assembly.c: 
5100         (mono_assembly_foreach): Accessor functions to walk the list of
5101         loaded assemblies
5102         (mono_assembly_set_main):
5103         (mono_assembly_get_main): Process methods need to know which
5104         assembly is the "main" one
5105
5106         * object.c (mono_runtime_run_main): Record the main assembly
5107
5108         * debug-helpers.c: Fix typo
5109
5110 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
5111
5112         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
5113         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
5114
5115 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
5116
5117         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
5118
5119 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
5120
5121         * image.c (do_mono_image_open): Initialize reference count,
5122         otherwise we leak the MonoImage.
5123
5124 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
5125
5126         * reflection.c: small tweak to handle self-hosting.
5127
5128 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
5129
5130         * reflection.c: fix type name parse code.
5131
5132 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
5133
5134         * reflection.c: break out of the loop.
5135         * image.c: special case corlib.
5136
5137 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
5138
5139         * reflection.c: add all the custom attrs at the end to ensure the
5140         ctors have been properly initialized when the attributes are defined
5141         in the current assembly.
5142
5143 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
5144
5145         * reflection.c: handle correctly multiple-nested types.
5146
5147 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
5148
5149         * row-indexes.h: fix typos.
5150         * reflection.c: adjust for typos and fix method_def_or_ref
5151         encoding in MethodImpl table.
5152
5153 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
5154
5155         * reflection.c: fix entry point patching (thanks Serge!).
5156
5157 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
5158
5159         * verify.c: add check for System.Exception
5160
5161 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
5162
5163         * image.c, class.c: minifix for code just c&p'ed.
5164         * reflection.c: warning fix.
5165         * object.h, loader.h, domain.c: load also StringBuilder.
5166
5167 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
5168
5169         * marshal.h, marshal.c: some support code to handle complex marshaling.
5170
5171 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
5172
5173         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
5174         Better signatures with vtable error dump.
5175
5176 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
5177
5178         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
5179
5180 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
5181
5182         * icall.c (ves_icall_Type_GetField): impl.
5183
5184 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
5185
5186         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
5187         to retrieve a marshal description blob for a field or param.
5188
5189 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
5190
5191         * reflection.h, reflection.c: change order of nested type emission
5192         to avoid table corruption. The NestedTypes table is sorted.
5193         * icall.c: change order of GetConstructor results to workaround mcs bug.
5194
5195 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
5196
5197         * reflection.h, reflection.c: handle field and param marshal
5198         information.
5199
5200 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
5201
5202         * icall.c, marshal.c marshal.h: more Marshal class implementation.
5203
5204 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
5205
5206         * reflection.c: fix call convention.
5207
5208 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
5209
5210         * reflection.h, reflection.c: mono_image_get_memberref_token()
5211         takes a type instead of a class, now. Added
5212         mono_image_get_array_token() to create tokens for the special
5213         multi-dim array methods.
5214
5215 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
5216
5217         * assembly.c: handle modules (no assembly table). Split
5218         loading references in its own function.
5219         * class.c: handle moduleref resolution scope.
5220         * image.c, image.h: cache module name in image.
5221
5222 2002-06-07  Martin Baulig  <martin@gnome.org>
5223
5224         * reflection.c (mono_image_get_type_info): Only add a class layout entry
5225         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
5226
5227 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
5228
5229         * icall.c: more signature fixes that used uint instead of int.
5230
5231 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
5232
5233         * reflection.c: fixed signature of field refs.
5234
5235 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
5236
5237         * class.c, reflection.c: handle typerefs of nested types
5238         (both on read and when writing files).
5239
5240 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
5241
5242         * icall.c: fix method signatures that tried to workaround the previous
5243         typo, d'oh!
5244
5245 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
5246
5247         * debug-helpers.c: fix typo.
5248
5249 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
5250
5251         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
5252         rewrote the PE/COFF writing code (our programs are understood by the
5253         ms runtime, now).
5254
5255 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
5256
5257         * gc.c, gc.h, icall.c: weakreference support.
5258
5259 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
5260
5261         * Makefile.am, mono-config.c: use $(sysconfdir).
5262
5263 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
5264
5265         * icall.c: changed default precision of Double.ToString() to 15.
5266         Fixed memory leak. Unified with Single.ToString.
5267
5268 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
5269
5270         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
5271
5272 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
5273
5274         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
5275         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
5276         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
5277         and myself.
5278
5279 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
5280
5281         * debug-symfile.c, sysmath.c: yet more compilation fixes.
5282
5283 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
5284
5285         * reflection.c, socket-io.c: more compilation fixes.
5286
5287 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
5288
5289         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
5290         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
5291         unicode.c: warning and compiler compatibility fixes.
5292
5293 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
5294
5295         * class.h, metadata.c: fixed warnings/compilation errors.
5296
5297 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
5298
5299         * Makefile.am, mono-config.c, mono-config.h: configuration file
5300         support routines.
5301         * loader.c, loader.h: make Dll mapping configurable at runtime in the
5302         config file. Export methods to insert and lookup mappings.
5303
5304 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
5305
5306         * reflection.c: handle types and boxed objects in custom attr
5307         constructors.
5308
5309 2002-05-30  Martin Baulig  <martin@gnome.org>
5310
5311         * debug-symfile.c
5312         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
5313
5314 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
5315
5316         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
5317         to lookup the implmap row for a P/Invoke method.
5318         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
5319         P/Invoke method from the runtime on an as needed basis.
5320
5321 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
5322
5323         * metadata.c (mono_metadata_parse_signature): impl.
5324
5325 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
5326
5327         * class.c: handle .pack directive.
5328
5329 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
5330
5331         * object.c: initialize static fields with RVA data.
5332
5333 2002-05-25  Martin Baulig  <martin@gnome.org>
5334
5335         * debug-symfile.c
5336         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
5337
5338 2002-05-24  Martin Baulig  <martin@gnome.org>
5339
5340         * debug-symfile.c
5341         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
5342         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
5343         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
5344
5345 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
5346
5347         * object.c: special case string ctros in invoke.
5348         * gc.c: silly whitespace changes.
5349
5350 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
5351
5352         * threadpool.[ch]: impl. a threadpool that can
5353         be used by mint and mono.
5354
5355 2002-05-22  Martin Baulig  <martin@gnome.org>
5356
5357         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
5358         The first argument is now a `MonoReflectionModuleBuilder *', the return
5359         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
5360         `methods' field to get the method builder.  The `token' argument is the
5361         unfixed token.
5362
5363         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
5364         invalid characters instead of g_assert_not_reached()ing.  This seems
5365         to be the behaviour of mscorlib.
5366
5367 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
5368
5369         * object.c (mono_runtime_invoke_array): applied patch from Rachel
5370         Hestilow to fix bug #25104
5371
5372 2002-05-21  Martin Baulig  <martin@gnome.org>
5373
5374         * debug-symfile.c (mono_debug_find_source_location): New function.
5375         Looks up an IL offset in the line number table and returns the source
5376         location as a string.
5377
5378 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5379
5380         * icall.c:
5381         (mono_double_ToStringImpl): changed %f by %g until we have something
5382         better.
5383
5384 2002-05-21  Nick Drochak  <ndrochak@gol.com>
5385
5386         * icall.c : Use different name for Math.Pow's icall.  Needed to check
5387         parameters first in C#.
5388
5389 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
5390
5391         * icall.c, reflection.h: added icall to get info about an event.
5392
5393 2002-05-20  Radek Doulik  <rodo@ximian.com>
5394
5395         * object.c (mono_value_box): don't use memcpy for boxing on BIG
5396         endian
5397         (mono_value_box): don't use memcpy for small sizes on
5398         architectures with unaligned access
5399
5400 2002-05-20  Martin Baulig  <martin@gnome.org>
5401
5402         * reflection.c (mono_reflection_setup_internal_class): Don't crash
5403         if `tb->parent == NULL'.
5404         (mono_reflection_create_internal_class): New function.  This is
5405         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
5406         for enum types.
5407
5408         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
5409         New interncall.
5410
5411 2002-05-19  Martin Baulig  <martin@gnome.org>
5412
5413         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
5414         argument to get the length, don't default to the array length.
5415
5416 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
5417
5418         * assembly.c (mono_assembly_setrootdir): New function used to
5419         override the MONO_ASSEMBLIES directory.
5420
5421 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
5422
5423         * icall.c: ValueType_GetHashCode() initialize local var.
5424
5425 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
5426
5427         * reflection.c: sort custom attributes table.
5428
5429 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
5430
5431         * reflection.c: support named args in custom attributes (write support).
5432
5433 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
5434
5435         * reflection.c: fix finally position calculation.
5436
5437 2002-05-15  Radek Doulik  <rodo@ximian.com>
5438
5439         * reflection.c: fixed endianess at many places
5440
5441         * icall.c (ves_icall_InitializeArray): comment out debug msg
5442
5443 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
5444
5445         * object.c (mono_unhandled_exception): new function to handle
5446         unhandled exceptions.
5447         (mono_unhandled_exception): call the UnhandledException event.
5448         (mono_runtime_delegate_invoke): impl.
5449
5450 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
5451
5452         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
5453         returns the RVA, not the direct pointer to the data. Handle the case
5454         when the class size is fixed.
5455
5456 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
5457
5458         * reflection.c: fix some endianess issues.
5459
5460 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
5461
5462         * object.c (mono_runtime_invoke): is now able to catch exceptions.
5463
5464         * threads.c (mono_thread_init): added a callback which is invoked
5465         at thread start.
5466
5467 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
5468         
5469         * icall.c: make GetHashCode return non-negative values.
5470
5471 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
5472
5473         * object.c, icall.c, gc.c: revert to address-based hashcode.
5474
5475 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
5476
5477         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
5478
5479 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
5480
5481         * icall.c, class.c: special case <Module>.
5482
5483 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
5484
5485         * icall.c: fix bug in GetNow().
5486
5487 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
5488
5489         * object.c (mono_runtime_class_init): make sure that we call all
5490         static class constructors.
5491
5492 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
5493
5494         * reflection.c: sort methodsemantics table.
5495
5496 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
5497
5498         * reflection.h, reflection.c: honour init locals setting.
5499
5500 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
5501
5502         * icall.c: copied Double ToStringImpl for Single ToStringImpl
5503
5504 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
5505
5506         * reflection.c: support ContructorBuilders in attribute blob creation.
5507
5508 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
5509
5510         * reflection.c: some changes to build a binary that can be run
5511         directly in windows.
5512
5513 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
5514
5515         * loader.c: print a big message when an icall can't be found.
5516
5517 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5518
5519         * string-icalls.c: fix bug 24248.
5520
5521 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
5522
5523         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
5524         icall.c, reflection.h: separate assembly loading by pathname and by
5525         assembly name. Use the MONO_PATH env var to search for assemblies.
5526
5527 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
5528
5529         * assembly.c, image.h: add some support for assemblies
5530         with multiple modules.
5531         * class.c, class.h: export mono_class_from_typeref().
5532         * loader.c: remove duplicated code and use mono_class_from_typeref(),
5533         instead.
5534
5535 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
5536
5537         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
5538         documentation says (the ECMA one is correct).
5539
5540 2002-05-02  Dick Porter  <dick@ximian.com>
5541
5542         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
5543         Don't name the synchronisation mutex.
5544
5545 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
5546
5547         * rand.c
5548         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
5549         Make the prototypes match.
5550         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
5551         Same.
5552
5553         * icall.c
5554         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
5555         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
5556         all systems have tm.tm_zone, so use strftime() with %Z to print
5557         the timezone abreviation into a temp string.
5558
5559         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
5560         rather than mono_array_addr() on a MonoString on Big Endian
5561         machines.
5562
5563 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
5564
5565         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
5566         fix bug 24041
5567
5568 2002-04-30  Dick Porter  <dick@ximian.com>
5569
5570         * socket-io.c: Cope with SOCKET being an integer rather than a
5571         pointer now.
5572
5573         * threads.c: Added Thread_free_internal, to deal with thread
5574         handle cleanup.  Moved calls to handle_store() and handle_remove()
5575         to start_wrapper(), so each can only be called once.  Allocate
5576         synchronisation blocks with GC_malloc(), and use GC finalisation
5577         to close the handles.
5578
5579         * icall.c: added System.Threading.Thread::Thread_free_internal
5580
5581 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
5582
5583         * icall.c: support Environment.Exit, CommandLineArgs().
5584
5585 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
5586
5587         * object.c, object.h: added mono_runtime_run_main () and
5588         mono_runtime_get_main_args () for use in System.Environment.
5589
5590 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
5591
5592         * gc.c: fix thinko, enable actual finalization since the jit is now
5593         fixed.
5594
5595 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
5596
5597         * gc.c, object.c: take into account that an object may be offset wrt the address
5598         returned by GC_malloc().
5599
5600 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
5601
5602         * image.c: handle files without entries in the assembly table (modules).
5603
5604 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
5605
5606         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
5607         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
5608         allowed to be null when it's System.Object class setup.
5609
5610 2002-04-27  Martin Baulig  <martin@gnome.org>
5611
5612         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
5613         if `tb->parent == NULL' rather than crashing.
5614
5615 2002-04-28  Nick Drochak  <ndrochak@gol.com>
5616
5617         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
5618         calling acos() where asin() should have been called.
5619
5620 2002-04-26  Martin Baulig  <martin@gnome.org>
5621
5622         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
5623         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
5624         there's a subdirectory called `System', but we don't want to read that
5625         subdirectory as an assembly.
5626
5627 2002-04-25  Martin Baulig  <martin@gnome.org>
5628
5629         * debug-symfile.c: Reflect latest MonoString changes.
5630
5631 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
5632
5633         * rand.c, rand.h: instance method icalls need to have an explicit
5634         this pointer as first argument in the C implementation.
5635
5636 2002-04-25  Nick Drochak <ndrochak@gol.com>
5637
5638         * icall.c: Fix typo in map for GetNonZeroBytes
5639
5640 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
5641
5642         * string-icalls.c : String does now passes unit tests without any 
5643         errors, the following changes has been made:
5644         
5645         Implemented replace methods.
5646         Renaming of methods to (try) follow the standard.
5647         Fixed compare ordinal
5648         Made all memory allocated directly to function instead of via icall function.
5649         Small performance fix in is_in_array function
5650                         
5651  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
5652
5653         c (mono_string_Internal_ctor_charp_int_int):
5654         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
5655         sindex < 0, throw ArgumentOutOfRangeException instead of
5656         ArgumentNullException.
5657
5658         Added new check for length == 0, however
5659         I need to make it return String.Empty from the C code.
5660         
5661         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
5662         that calculate the length for us here.
5663         
5664         (mono_string_Internal_ctor_sbytep_int_int): Replaced
5665         mono_string_new_utf16 with mono_string_new, since value is utf8.
5666
5667 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
5668
5669         * object.c: register the object for finalization if needed.
5670         Allocate one more char in the string for the terminating 0 char.
5671
5672 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
5673
5674         * class.c, class.h, image.c: check if a type implemenst a destructor.
5675         Use the proper key for array class lookups.
5676         * icall.c: register the icalls in the System.GC class.
5677         * gc.c, gc.h: GC-related functions and icalls.
5678
5679 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5680
5681         * icall.c:
5682         * socket-io.c:
5683         * unicode.c: free some strings gotten from mono_string_to_utf8 and
5684         changed a couple of free () by g_free ().
5685
5686         * decimal.c: one-liner in the comments for decimal2string ().
5687
5688 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
5689
5690         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
5691
5692 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
5693
5694         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
5695         * object.c (mono_runtime_invoke_array) : handle null in params
5696
5697 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
5698
5699         * string-icalls.c: fixed bug in split (one off bug)
5700
5701 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
5702
5703         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
5704         * icalls.c: added String::Equals as internal method
5705
5706 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
5707
5708         * threads.c: fixed bug in the double interlocked functions
5709
5710 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
5711
5712         * threads.c: implemented all of the new interlocked icalls.
5713         * string-icalls.c: fix a bug in insert.
5714         * icalls.c: added the icalls for interlocked, removed old string functions.
5715         
5716 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
5717
5718         * loader.c: fix off-by-one error when reading argument names.
5719
5720 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
5721
5722         * profiler.c: win32 counter implementation (untested).
5723         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
5724         (the latter needs testing and more complete impl. from win32 folks).
5725
5726 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
5727
5728         * object.c: mono_array_new_full workaround mono_array_class_get
5729         problem.
5730
5731 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
5732
5733         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
5734         * object.h (mono_string_chars): Changed casting type.
5735
5736 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
5737
5738         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
5739                            method signatures to use gunichar2 instead of gint16.
5740
5741 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
5742
5743         * object.h, object.c: domain-specific versions of mono_object_new and
5744         mono_array_new.
5745
5746 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
5747
5748         * object.c: changed String layout
5749
5750         * string-icalls.c (mono_string_Internal_ctor_chara): added
5751         internal string constructors.
5752
5753 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
5754
5755         * threads.c: pass 'this' to the thread start routine.
5756
5757 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5758
5759         * string-icalls.c: fix IndexOf and LastIndexOf. Now
5760         InternalCompareStr don't call twice mono_string_cmp_char for the last
5761         character. Improved performance in mono_string_cmp_char.
5762
5763 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
5764
5765         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
5766         code into its own library: libmonoruntime.
5767
5768 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
5769
5770         * object.h, object.c: changed array format so that szarrays do not
5771         require a bounds structure.
5772         * icall.c, appdomain.c: support for new szarray format.
5773
5774 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
5775
5776         * metadata.c: compare also the retuns type when comparing signatures:
5777         we didn't do this as an optimization since really overloaded methods
5778         must differ also in the arguments, but this doesn't work with
5779         low-level IL code (or when using explicit conversion operators: see
5780         bug#23498 for an example).
5781
5782 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
5783
5784         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
5785
5786 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
5787
5788         * icall.c: make MonoType::GetElementType its own icall.
5789
5790 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
5791
5792         * icall.c: remove MonoMethod_get_Name().
5793         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
5794         object.
5795
5796 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
5797
5798         * string-icalls.c: optimized a few methods.
5799
5800 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
5801
5802         * icall.c: added all new string internal calls
5803         * string-icalls.c: added, new string internal call implementation.
5804         * object.c: added mono_string_new_size for allocating a string a size
5805
5806 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
5807
5808         * object.c (mono_object_isinst): use the same code as in the
5809         optimized x86 version.
5810
5811 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
5812
5813         * profiler.c: TSC-based timer code (faster and more accurate).
5814         Not hooked up in configure, yet (set USE_X86TSC to 1).
5815
5816 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
5817
5818         * profiler.c, profiler.h: track time spent compiling methods.
5819         * threads.c: track thread creation/destruction.
5820
5821 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
5822
5823         * profiler.c, profiler.h, profiler-private.h: profiling interface
5824         and sample implementation. Moved here so that it can be used also by
5825         the jit.
5826
5827 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
5828
5829         * reflection.c, reflection.h: keep types and other handles separate in
5830         the hash tables for referred tokens. Add guid for modules.
5831
5832 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
5833
5834         * assembly.c: fix bugs found with valgrind.
5835         * metadata.h, metadata.c: added mono_metadata_guid_heap().
5836
5837 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
5838
5839         * threads: added icall support for getting current domain for
5840                    the thread.
5841  
5842 2002-04-13  Martin Baulig  <martin@gnome.org>
5843
5844         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
5845         (MonoDebugVarInfo): Added `index' field for register based addresses.
5846         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
5847         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
5848         `MonoDebugVarInfo *params' and `guint32 this_offset' with
5849         `MonoDebugVarInfo *this_var'.
5850
5851         * debug-symfile.c (relocate_variable): New static function to write
5852         a location description for a local variable or method parameter.
5853
5854 2002-04-12  Martin Baulig  <martin@gnome.org>
5855
5856         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
5857         stack offset and begin/end scope address of a local variable.
5858         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
5859         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
5860         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
5861
5862         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
5863         Added new relocation types for start/end scope of a local variable.
5864
5865 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
5866
5867         * object.h: add mono_object_domain() macro.
5868         * reflection.c: handle typespecs.
5869         * icall.c: MonoMethod::get_Name() implementation.
5870
5871 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
5872
5873         * icall.c: String::GetHashCode() icall implementation.
5874
5875 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
5876
5877         * icall.c: String::IndexOfAny icall.
5878         * object.c, object.h: make array->max_length more useful.
5879         Intrduced mono_object_class() and mono_string_length() macros.
5880
5881 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5882
5883         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
5884         instead of g_unichar_isdigit.
5885
5886 2002-04-11  Nick Drochak  <ndrochak@gol.com>
5887
5888         * icall.c: Implement a simple Double.ToString().
5889
5890 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
5891
5892         * appdomain.h: only io-layer.h is supposed to be included.
5893         * icall.c: explicitly import environ. Fix warning.
5894
5895 2002-04-10  Nick Drochak  <ndrochak@gol.com>
5896
5897         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
5898                 return true even if it's not Daylight Savings time.
5899                 Only return false for the case where the function isn't
5900                 implemented for a plaform (read Windows).
5901
5902 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
5903
5904         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
5905         data with a mutex.
5906
5907 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
5908
5909         * mempool.c (mono_mempool_alloc): only use g_malloc when
5910         absolutely necessary.
5911
5912 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
5913
5914         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
5915
5916         * class.c (mono_class_vtable): use domain mempool to allocate vtable
5917         (mono_class_proxy_vtable): use domain mempool
5918
5919 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
5920
5921         * appdomain.h, appdomain.c: split initialization that requires the
5922         execution engine support into mono_runtime_init().
5923
5924 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
5925
5926         * class.c (mono_class_init): don't include vtable inside MonoClass
5927         to save some memory, gather some statistics.
5928         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
5929
5930 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
5931
5932         * icall.c: internalcall implementation for ValueType.Equals().
5933
5934 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
5935
5936         * object.c (mono_message_init): moved 
5937         (mono_runtime_exec_main): new arch. independent impl.
5938         (mono_runtime_invoke_array): new method - like
5939         mono_runtime_invoke, but you can pass an array of objects.
5940         (mono_remoting_invoke): new arch. independent impl.
5941         (mono_message_invoke): new arch. independent impl.
5942         (mono_runtime_class_init): new arch. independent impl.
5943         (mono_runtime_object_init): new arch. independent impl.
5944
5945 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
5946
5947         * metadata.c, object.c, reflection.c: documented the exported
5948         functions.
5949
5950 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
5951
5952         * icall.c: simpler code to pass the assembly builder data to corlib.
5953         Implement GetNestedTypes() internalcall.
5954
5955 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
5956
5957         * class.c: warn if a type can't be loaded.
5958
5959 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
5960
5961         * image.h: typedef MonoImageOpenStatus
5962         * types.h: removed unused file
5963         
5964 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
5965
5966         * icall.c: Enum_ToObject accepts enum value arguments.
5967
5968 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
5969
5970         * class.c: move initialization of properties, events and nested
5971         classes, so that they happen for interfaces, too.
5972
5973 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
5974
5975         * icall.c: cleanup some ugly casts in Array_SetValue*.
5976
5977 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
5978
5979         * icall.c: the values array fro enums is of the correct type, now.
5980         Implement (correctly) getFullName instead of assQualifiedName for
5981         MonoType.
5982         * reflection.h, reflection.c: added mono_type_get_name ().
5983
5984 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
5985
5986         * assembly.c, image.h: for each MonoImage, record from wich assembly
5987         it was loaded.
5988         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
5989         Make Type.Assembly work.
5990
5991 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
5992
5993         * debug-symfile.h: use char* instead of gpointer to avoid
5994         unnecessary casts.
5995
5996         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
5997
5998         * icall.c (ves_icall_InternalExecute): impl. FielSetter
5999         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
6000
6001 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
6002
6003         * icall.c (mono_message_init): impl. (code cleanup)
6004         (ves_icall_InternalExecute): impl. FieldGetter
6005
6006         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
6007         defined we call all (non-static)methods through the vtable. 
6008
6009 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
6010
6011         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
6012         finalizer even though the memory is still referenced (and the chunk of
6013         memory is not freed).
6014
6015 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
6016
6017         * assembly.c: fix brokeness.
6018
6019 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
6020
6021         * class.c: kill some warnings. Check explicit interface method
6022         implementation also without considering the namespace.
6023         Load also literal strings in static class data.
6024
6025 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
6026
6027         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
6028         (default_assembly_name_resolver): Make the resolver take the
6029         "base" directory where the assembly was originally defined, so we
6030         can load DLLs that are in the same directory as the assembly that
6031         is being referenced.
6032
6033 2002-03-28  Dick Porter  <dick@ximian.com>
6034
6035         * file-io.h: 
6036         * file-io.c:
6037         * socket-io.c: 
6038         * unicode.h: 
6039         * unicode.c: Warning cleanups
6040
6041 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
6042
6043         * object.h, reflection.h: use the correct type instead of MonoObject.
6044
6045 2002-03-28  Martin Baulig  <martin@gnome.org>
6046
6047         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
6048         (mono_debug_update_symbol_file): Initialize classes if necessary.
6049
6050 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
6051
6052         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
6053         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
6054
6055 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
6056
6057         * assembly.h: fix function prototype.
6058         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
6059         * mono-endian.h: use const cast.
6060
6061 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
6062
6063         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
6064
6065 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
6066
6067         * loader.c: don't assert when a typeref can't be loaded, give
6068         a chance to the runtime to trow an exception instead.
6069         * loader.h: fix warning.
6070
6071 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
6072
6073         * class.c (mono_class_proxy_vtable): added proxy support
6074
6075 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
6076
6077         * icall.c: removed last of PAL calls, added System.Environment
6078         * file-io.h, file-io.c: MonoIO implementation
6079         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
6080
6081 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
6082
6083         * appdomain.c: do not use the byte marker in ldstr table lookup.
6084         * debug-helpers.c: allow two ':' to separate class and method name.
6085         * object.c: allocate arrays bounds with the GC, too.
6086         * verify: add a few more checks.
6087
6088 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
6089
6090         * reflection.c: output also literal strings. Allocate parameter data
6091         with GC_malloc() (thanks, Martin, for catching this!).
6092
6093 2002-03-26  Martin Baulig  <martin@gnome.org>
6094
6095         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
6096         include the `this' offset in the `param_offsets'.
6097
6098 2002-03-25  Martin Baulig  <martin@gnome.org>
6099
6100         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
6101         mono_debug_get_class() function to get the classes. Added new
6102         relocation types for arrays and strings.
6103         (mono_debug_get_class): New static function to search in all
6104         referenced assemblies for a metadata token.
6105
6106         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
6107
6108 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
6109
6110         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
6111         hold gc-allocated objects. Make the string heap a stream like the
6112         others. Removed duplicated code when writing stream info.
6113         Added asserts to catch possible buffer overflows. Set the sorted map
6114         for tables that need sorting. Added some documentation.
6115
6116 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
6117
6118         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
6119         for interned strings and vtables.
6120
6121 2002-03-24  Martin Baulig  <martin@gnome.org>
6122
6123         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
6124         it in the array since it was created with g_slist_prepend().
6125
6126 2002-03-24  Martin Baulig  <martin@gnome.org>
6127
6128         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
6129         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
6130         (mono_debug_method_from_token): Renamed to
6131         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
6132         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
6133
6134         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
6135         relocation types.
6136
6137         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
6138
6139 2002-03-24  Martin Baulig  <martin@gnome.org>
6140
6141         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
6142         (mono_debug_method_from_token): New func.
6143
6144         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
6145         New interncall, calls mono_debug_local_type_from_signature().
6146         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
6147         calls mono_debug_method_from_token().
6148
6149 2002-03-23  Martin Baulig  <martin@gnome.org>
6150
6151         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
6152         specifies the number of bytes to be converted, not the array size.
6153         Return the number of chars, not the number of bytes.
6154         (ves_icall_iconv_get_chars): The `byteCount' argument
6155         specifies the number of bytes to be converted, not the array size.
6156
6157 2002-03-23  Martin Baulig  <martin@gnome.org>
6158
6159         * reflection.h (MonoReflectionSigHelper): New type.
6160
6161         * reflection.c (mono_reflection_sighelper_get_signature_local),
6162         (mono_reflection_sighelper_get_signature_local): New functions.
6163
6164         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
6165         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
6166         interncalls.
6167
6168 2002-03-23  Martin Baulig  <martin@gnome.org>
6169
6170         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
6171         is_writeable is set.
6172         (mono_raw_buffer_update): New function to write the modified map
6173         back to disk.
6174
6175         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
6176
6177         * debug-symfile.c (mono_debug_update_symbol_file): Call
6178         mono_raw_buffer_update() when done writing.
6179
6180 2002-03-23  Martin Baulig  <martin@gnome.org>
6181
6182         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
6183
6184         * debug-symfile.c: Added support for arguments and local variables.
6185
6186 2002-03-23  Dick Porter  <dick@ximian.com>
6187
6188         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
6189         protected by ifdefs, hence breaking the w32 build.
6190
6191 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
6192
6193         * object.c: implement is_interned() the right way.
6194
6195 2002-03-21  Martin Baulig  <martin@gnome.org>
6196
6197         * debug-symfile.[ch]: New files to handle debugging information
6198         files. There's also support to dynamically update these symbol
6199         files to include machine dependent information.
6200
6201 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
6202
6203         * threads.c (mono_thread_create): new function to create thread
6204         from C
6205
6206 2002-03-20  Martin Baulig  <martin@gnome.org>
6207
6208         * icall.c (ves_icall_InternalInvoke): Create a new object if the
6209         method is a constructor.
6210         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
6211         points to ves_icall_InternalInvoke().
6212
6213 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
6214
6215         * file-io.c: Flush shouldn't throw exceptions.
6216
6217 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
6218
6219         * file-io.c: FileStream flush support; FileSetLength now
6220         restores file pointer.
6221
6222 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
6223
6224         * class.c: set image for pointer classes.
6225
6226 2002/03/19  Nick Drochak <ndrochak@gol.com>
6227
6228         * sysmath.c: Forgot one.
6229
6230 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
6231
6232         * sysmath.c: Avoid redefining existing names.
6233
6234 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
6235
6236         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
6237         handled by runtime as icall rather than dllimport from libm.so
6238         * file-io.c, file-io.h: fixed handle argument type.
6239
6240 2002-03-18  Dick Porter  <dick@ximian.com>
6241
6242         * reflection.c (mono_image_get_type_info): rename interface to
6243         iface, because of "#define interface struct" on windows.
6244
6245 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
6246
6247         * class.c, class.h: rename and export mono_ptr_class_get().
6248         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
6249         * reflection.c, reflection.h, icall.c: better/saner type name
6250         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
6251         method signatures.
6252
6253 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
6254
6255         * class.c (mono_class_init): removed hardcoded GHC_SLOT
6256
6257         * icall.c (ves_icall_InternalInvoke): impl.
6258
6259 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
6260
6261         * reflection.c: output the interface map table, too.
6262
6263 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
6264
6265         * class.c (class_compute_field_layout): separate computation of 
6266         static field layout
6267
6268 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
6269
6270         * icall.c: added System.Buffer support.
6271         * file-io.c: moved file icalls from PAL to FileStream.
6272
6273 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
6274
6275         * icall.c (ves_icall_System_Object_GetHashCode): impl.
6276
6277 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
6278
6279         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
6280
6281 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
6282
6283         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
6284
6285 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
6286
6287         * debug-helpers.{c,h}: moved here from monograph some useful functions
6288         to locate a method by name/signature in a class or image. Included
6289         also a small and flexible IL disassembler.
6290
6291 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
6292
6293         * reflection.c: fixup tokens in methods with small header size, too.
6294
6295 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
6296
6297         * object.c (mono_string_to_utf8): remove assert(!error), instead
6298         print a warning. 
6299
6300 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
6301
6302         * icall.c: update to the new mono_Array_class_get interface.
6303
6304 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
6305
6306         * appdomain.c, object.c: Boehm-GC enable.
6307         * icall.c: make get_data_chunk() support split data requests.
6308         Ensure a class is initialized in more cases. Return only the first
6309         property found in GetProperties() or the compiler gets confused. 
6310         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
6311         * reflection.h, reflection.c: add fixup mechanism for field and method
6312         tokens. Initialize assembly->typeref in a single place. Output
6313         properties after events. Support custom attributes for events, too.
6314         Typo fix for paramter custom attrs.
6315
6316 2002-03-07  Martin Baulig  <martin@gnome.org>
6317
6318         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
6319
6320 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
6321
6322         * class.c (mono_array_class_get): fix. for multi. dim. arrays
6323
6324 2002-03-06  Martin Baulig  <martin@gnome.org>
6325
6326         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
6327         non-zero lower bounds. See testcases #F10-#F13.
6328
6329 2002-03-05  Martin Baulig  <martin@gnome.org>
6330
6331         * exception.c (mono_get_exception_argument_out_of_range): New exception.
6332
6333         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
6334         ves_icall_System_Array_GetValue(), only calculate the absolute array position
6335         here.
6336         (ves_icall_System_Array_SetValue): Likewise.
6337         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
6338         as argument and does the actual work. This function is used when copying a
6339         multi-dimensional array.
6340         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
6341         now do all the widening conversions of value types.
6342         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
6343
6344 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
6345
6346         * class.c: remove some magic numbers and use the smbolic names,
6347         instead. Added init_events() to load event info at class init time.
6348         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
6349         and mono_metadata_methods_from_event().
6350         * reflection.h, reflection.c: added support for writing out the evnets
6351         related information.
6352
6353 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
6354
6355         * reflection.h, icall.c: use a different method (GetInterfaces)
6356         to gather interface info and add isbyref, isprimitive and
6357         ispointer to the ves_icall_get_type_info() return value.
6358
6359 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
6360
6361         * class.h: stared adding support for events.
6362         * icall.c: split find_members implementation. Added debug icall to get
6363         the address of an object.
6364         * reflection.c: handle TypeBuilders in mono_type_get_object().
6365
6366 2002-03-01  Martin Baulig  <martin@gnome.org>
6367
6368         * icall.c (ves_icall_System_Array_GetLength): This must throw an
6369         ArgumentOutOfRangeException(), not an ArgumentException().
6370         (ves_icall_System_Array_GetLowerBound): Likewise.
6371         (ves_icall_System_Array_GetValue): Improved argument checking.
6372         (ves_icall_System_Array_SetValue): Improved argument checking.
6373
6374 2002-03-01  Martin Baulig  <martin@gnome.org>
6375
6376         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
6377         called with invalid arguments rather than just dying with g_assert().
6378         (ves_icall_System_Array_SetValue): Likewise.
6379         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
6380         raise a NotImplementedException instead.
6381         (ves_icall_System_Array_GetLength): Added argument checking.
6382         (ves_icall_System_Array_GetLowerBound): Added argument checking.
6383
6384 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
6385
6386         * object.h (mono_assert): new macros mono_assert and
6387         mono_assert_not_reached
6388
6389 2002-02-28  Martin Baulig  <martin@gnome.org>
6390
6391         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
6392         and "System::String::IsInterned" to "System::String::_IsInterned".
6393
6394 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
6395
6396         * icall.c: remove hacks for typebuilder. Added icall to create a
6397         modified type from a tybebuilder.
6398         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
6399         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
6400         to create a backing MonoClass for a TypeBuilder.
6401
6402 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
6403
6404         * class.c, class.h: more refactoring of class init.
6405         Export mono_class_setup_mono_type() and mono_class_setup_parent().
6406
6407 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
6408
6409         * marshal.c, marshal.h: start of marshaling interface.
6410
6411 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
6412
6413         * icall.c: fix order in assembly qualified name icall.
6414
6415 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
6416
6417         * class.c: do not free str, since we store it in the hash table.
6418         * reflection.h: add label field to MonoILExceptionInfo.
6419         * reflection.c: handle references to more than one assembly. Handle
6420         case when there isn't a module created in the assembly.
6421
6422 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
6423
6424         * class.c: Fix typo. Start refactoring of class init code.
6425
6426 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
6427
6428         * appdomain.c: exit with 1 on error.
6429         * class.c: we already have the name in MonoClassField.
6430         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
6431         MonoStreamHeader instead of an offset of image->raw_metadata.
6432
6433 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
6434
6435         * appdomain.c (mono_init): Be even more descriptive about the error.
6436
6437 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
6438
6439         * appdomain.c: give the user an informative message when corlib can't
6440         be loaded.
6441
6442 2002-02-26  Martin Baulig  <martin@gnome.org>
6443
6444         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
6445         New icall to get the time zone data.
6446
6447 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
6448
6449         * reflection.c: set virtual and raw size of section correctly.
6450         * threads.c: transfer domain information to newly created threads.
6451
6452 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
6453
6454         * class.c: when instancing a class in a domain, load the default
6455         vaules for static fields from the constant table. Fix System.Enum to
6456         not be an enum.
6457         * icall.c: implement Object::GetType() internalcall. Implemented
6458         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
6459         Fixed checking of binding flags in find_members().
6460         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
6461         * reflection.c: handle enumerations when writing to the constant
6462         table. Use a different object cache for types.
6463
6464
6465 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
6466
6467         * object.c (mono_object_isinst): fix for arrays
6468
6469         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
6470
6471 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
6472
6473         * object.c: don't use mprotect ()  and fix intern pool hash table
6474         lookup for big endian systems.
6475
6476 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
6477
6478         * icall.c: change type_is_subtype_of () signature.
6479
6480 2002-02-21  Mark Crichton  <crichton@gimp.org>
6481
6482         * rand.c, rand.h: Added random number generator for
6483         System.Security.Cryptography classes.
6484
6485         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
6486
6487         * icall.c: Added System.Security.Cryptography calls.
6488
6489 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
6490
6491         * class.c, icall.c, metadata.c: better support for pointer types.
6492         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
6493         * reflection.c: Add support for getting custom attrs for properties
6494         and simplify some code.
6495
6496 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
6497
6498         * icall.c: change getToken () and add custom attribute GetBlob()helper
6499         method.
6500         * reflection.h: add custom attrs array to the reflection builder structures.
6501         * reflection.c: encode and emit custom attributes for all the relevant
6502         reflection objects. Cache fieldref and methodref tokens. Change
6503         mono_image_create_token() interface to take a MonoDynamicAssembly.
6504         More complete custom attributes decoder. Load custom attributes for
6505         Assembly, Field, Method and Constructor objects, too. Make the
6506         returned array an Attribute[] one, not object[]. Added
6507         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
6508         custom attribute constructor.
6509
6510 2002-02-20  Dick Porter  <dick@ximian.com>
6511
6512         * icall.c:
6513         * rawbuffer.c:
6514         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
6515         problem code out for now).
6516
6517 2002-02-19  Radek Doulik  <rodo@ximian.com>
6518
6519         * object.c (mono_ldstr): use hash table to avoid multiple swapping
6520
6521 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
6522
6523         * icall.c: register the GetCustomAttributes method.
6524         * object.c, object.h: add mono_string_new_len ().
6525         * reflection.h, reflection.c: added mono_runtime_invoke(),
6526         mono_install_runtime_invoke(). Added
6527         mono_reflection_get_custom_attrs () to load custom attributes and
6528         create the attribute objects.
6529
6530 2002-02-19  Dick Porter  <dick@ximian.com>
6531         * threads-dummy-types.c:
6532         * threads-dummy-types.h:
6533         * threads-dummy.c:
6534         * threads-dummy.h:
6535         * threads-pthread-types.c:
6536         * threads-pthread-types.h:
6537         * threads-pthread.c:
6538         * threads-pthread.h:  Deleted obsolete files
6539
6540 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
6541
6542         * class.c (mono_class_vtable): runtime init the class when we
6543         allocate static class data.
6544
6545         * icall.c (ves_icall_System_Array_SetValue): check for null values.
6546
6547         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
6548         and String - but we will need generic marshalling support in the
6549         future. 
6550         (mono_init): set the domain name in a ms compatible way
6551
6552         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
6553         String[].
6554
6555 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
6556
6557         * object.c (mono_array_clone): use alloca() instead of g_malloc  
6558         for sizes
6559
6560         * appdomain.c (mono_domain_unload): impl.
6561
6562 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
6563
6564         * appdomain.c, object.c: fix intern pool implementation.
6565         * class.c: fix alignment code.
6566
6567 2002-02-16  Radek Doulik  <rodo@ximian.com>
6568
6569         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
6570         and s2 > s1, just copy lower bytes to be compatible with little
6571         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
6572         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
6573
6574         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
6575         force big_endian to be 1 for big endian machines 
6576         (ves_icall_iconv_new_decoder): ditto
6577
6578 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
6579
6580         * socket-io.c (convert_sockopt_level_and_name): If the system
6581         doesn't define SOL_IP or SOL_TCP, get them by hand using
6582         getprotobyname() and caching the values (because this could be a
6583         slow operation).
6584         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
6585         Use the appropriate struct when the system does support it. Ie,
6586         not all systems have struct ip_mreqn so use struct ip_mreq when
6587         appropriate.
6588
6589 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
6590
6591         * reflection.c: handle finally clauses.
6592
6593 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
6594
6595         * socket-io.c: use g_snprintf() instead of snprintf.
6596
6597 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
6598
6599         * reflection.c (mono_param_get_objects): Cast second argument to
6600         mono_method_get_param_names to a const char** to silence the
6601         compiler warning.
6602
6603         * appdomain.c (mono_domain_assembly_open): Put parens around the
6604         truth statement in the for-loop.
6605
6606         * unicode.c (iconv_convert): Got rid of a compiler warning about
6607         int i being unused when the system has a new iconv.
6608         (iconv_get_length): Same.
6609
6610         * image.c (load_class_names): Cast the second argument to
6611         g_hash_table_insert() to char* to hush compiler warnings about the
6612         arg being a const.
6613         (mono_image_open): Same here.
6614
6615         * socket-io.c: Don't conditionally include sys/filio.h or
6616         sys/sockio.h here anymore since we now get them from
6617         io-layer/io-layer.h
6618         (inet_pton): If the system doesn't support inet_aton, implement
6619         using inet_addr and also #define INADDR_NONE if it isn't defined
6620         by the system.
6621
6622 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
6623
6624         * metadata.c, metadata.h: added function to get packing and size info
6625         of a typedef.
6626         * reflection.h, reflection.c: handle field RVA data. Save info about
6627         the table layout if needed. Assign typedef indexes to all the types
6628         before dumping the info about them to avoid forward reference problems.
6629
6630 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
6631
6632         * socket-io.c (convert_sockopt_level_and_name): ifdef
6633         SO_ACCEPTCONN because it is not defined on my system (old debian)
6634
6635 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
6636
6637         * opcode.c: use stddef.h to get NULL.
6638
6639 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
6640
6641         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
6642         for FIONBIO, FIONREAD and SIOCATMARK.
6643         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
6644         define INADDR_NONE and besides, inet_addr() is deprecated and
6645         should not be used. Use inet_pton() instead - it also has the
6646         added bonus that it can easily handle IPv6 addresses as well.
6647         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
6648
6649 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
6650
6651         * decimal.c: remove _MSC_VER conditional.
6652
6653 2002-02-13  Dick Porter  <dick@ximian.com>
6654
6655         * socket-io.c: 
6656         * icall.c: Internal calls for Blocking, Select, Shutdown,
6657         GetSocketOption and SetSocketOption
6658
6659 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
6660
6661         * assembly.cs: better resolver: use it instead of some kludgy
6662         code.
6663
6664 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
6665
6666         * reflection.c: the best way to speed-up the compiler is to avoid
6667         infinite loops.
6668
6669 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
6670
6671         * class.c (mono_class_vtable): changed the object layout
6672         (obj->vtable->class). 
6673         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
6674
6675 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
6676
6677         * assembly.c: look for assemblies in the assembly dir, too.
6678
6679 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
6680
6681         * class.c: fix thinko in mono_class_from_type().
6682
6683 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
6684
6685         * exception.h, exception.c: added TypeLoadException.
6686         * object.h, object.c: added mono_array_clone ().
6687         * icall.c: handle throwOnError in AssemblyGetType().
6688         Added Array.Clone().
6689         * opcode.h, opcode.c: use a single value for the opcode val.
6690         Compile fix for non-gcc compilers.
6691
6692 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
6693
6694         * opcodes.c, opcodes.h: export interesting info about opcodes.
6695
6696 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
6697
6698         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
6699         icalls. 
6700
6701         * class.c (class_compute_field_layout): set element_class for enums
6702         (mono_class_create_from_typedef): set element_class for normal classes
6703
6704         * icall.c (ves_icall_System_Enum_get_value): impl.
6705
6706         * class.c (mono_class_create_from_typedef): do not set valuetype
6707         flag for System.ValueType and System.Enum
6708
6709 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
6710
6711         * unicode.c (iconv_convert): fix big endian problem.
6712
6713 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
6714
6715         * class.c: add asserts if we are ever going to scribble over memory.
6716         * socket-io.c: not all systems have AF_IRDA defined.
6717
6718 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
6719
6720         * class.c (class_compute_field_layout): do not consider static
6721         fields to compute alignment
6722
6723 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
6724
6725         * appdomain.c (mono_appdomain_get): impl.
6726         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
6727
6728 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
6729
6730         * icall.c: ignore "file://" prefix when loading an assembly.
6731
6732 2002-01-23  Dick Porter  <dick@ximian.com>
6733
6734         * socket-io.c:
6735         * icall.c:
6736         * Makefile.am: Added socket support
6737
6738 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
6739
6740         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
6741         code back.  This should return the assemblies that are loaded by
6742         the runtime on behalf of an application domain. 
6743
6744         The current implementation is still broken, it just returns every
6745         assembly loaded, but until we get real applications domain this
6746         will do.
6747
6748 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
6749
6750         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
6751         AppDomain object.
6752
6753 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
6754
6755         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
6756         the mono_class_from_name lookup.
6757         (ves_icall_get_parameter_info): ditto.
6758         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
6759         method.
6760         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
6761
6762 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
6763
6764         * class.c: load also nested classes on class init.
6765         System.ValueType instance methods gets passed boxed
6766         values, unless methods in derived classed that get a pointer to the
6767         data.
6768         * icall.c: use better name parsing code in GetType().
6769         * image.c, image.h: add mono_image_loaded ().
6770         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
6771         * reflection.c, reflection.h: added mono_reflection_parse_type().
6772
6773 2002-01-22  Veronica De Santis <veron78@interfree.it>
6774
6775         * icall.c : Added mapping of internal calls for Manual and Auto reset events
6776         * threads.c : Added the implementation of internal calls for events
6777         * threads.h : Added prototypes of internal calls for events
6778         
6779 2002-01-21  Radek Doulik  <rodo@ximian.com>
6780
6781         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
6782
6783 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
6784
6785         * class.c (mono_class_init): set min_align to 1 (instead of 0)
6786         (mono_class_value_size): use min_align
6787
6788 2002-01-20  Dick Porter  <dick@ximian.com>
6789
6790         * threads.h:
6791         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
6792         so it compiles on w32.
6793
6794 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
6795
6796         * metadata.c (mono_type_stack_size): impl.
6797
6798         * class.c (mono_class_get_field): impl. memberref token
6799
6800 2002-01-16 Veronica De Santis <veron78@@interfree.it>
6801
6802         * icall.h : Added the internal calls mapping for CreateMutex_internal
6803                     and ReleaseMutex_internal.
6804         * threads.h : Added the prototype of mutexes internal calls.
6805         * threads.c : Added the implementations of mutexes internal calls.
6806
6807 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
6808
6809         * metaparse.h: removed unused file.
6810         * reflection.c, reflection.h: added stream_data_align () function 
6811         to align data in streams and keep stream aligned. Add support for
6812         exception support in method headers.
6813
6814 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
6815
6816         * unicode.c: make iconv_convert () return the number of bytess written
6817         in the output buffer.
6818
6819 2002-01-15  Dick Porter  <dick@ximian.com>
6820         * threads.c: Make the runtime's idea of infinite timeouts coincide
6821         with the class library's
6822
6823         Fix a particularly egregious bug in mono_thread_cleanup(). That
6824         code was so utterly bogus it must have been written on a Monday.
6825
6826 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
6827
6828         * reflection.h: add subtypes field to TypeBuilder.
6829         * reflection.c: encode constants for literal fields.
6830         Handle subtypes. Fix user string token (and add a zero byte)
6831         at the end.
6832         
6833 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
6834
6835         * class.c (mono_class_init): bug fix: assign slot numbers for
6836         abstract methods.
6837
6838 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
6839
6840         * reflection.c: don't try to output a code RVA for abstract methods.
6841         Small fixes for method header format. Output parameter info to the
6842         ParamDef table. Save method overriding info to MethodImpl table.
6843         Fix property support. Allow typedef.extends to be a type in the
6844         building assembly.
6845         * verify.c: fix off-by-one error.
6846
6847 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
6848
6849         * class.c: fix mono_class_from_mono_type () for szarray types.
6850         Remove unused cache check in mono_class_from_type_spec().
6851         * icall.c: *type_from_name () functions handle simple arrays and byref.
6852         * reflection.c: handle byref and szarray types. Handle methods without
6853         body (gets P/Invoke compilation working). Handle types and fields in
6854         get_token ().
6855         * reflection.h: add rank to MonoTypeInfo.
6856
6857 2002-01-10  Dick Porter  <dick@ximian.com>
6858
6859         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
6860         internal calls
6861
6862 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
6863
6864         * icall.c: initialize class in type_from_handle ().
6865         Loop also in parent classes for get_method ().
6866         * reflection.c: properly encode class and valuetype types.
6867         Start on encoding TypeBuilder types. Handle fieldrefs.
6868         Use correct length when registering a user string.
6869         Handle ConstructorBuilder and MonoMethod in get_token ().
6870         Make mono_type_get_object () aware of cached types.
6871         * object.c: back out change to mono_string_new ().
6872
6873 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
6874         * object.c: mono_string_new should return a NULL when the string 
6875         passed in is NULL -- not try to deference it.
6876         
6877 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
6878
6879         * icall.c: hack to make IsSubType work for TypeBuilders.
6880         * reflection.c: emit constructors before methods.
6881         Retrieve param names in mono_param_get_objects().
6882
6883 2002/01/05  Nick Drochak  <ndrochak@gol.com>
6884
6885         * Makefile.am: fix list of headers and sources so automake 1.5
6886         doesn't complain. Removed \# at end of list.
6887
6888 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
6889
6890         * reflection.c: get token for a method ref. Set return type of
6891         constructor to void.
6892         * loader.c: debug message.
6893         * class.c: typo fix.
6894
6895 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
6896
6897         * icall.c: fix array init with rank > 1. FindMembers
6898         loops in parent class as well.
6899         * image.c: do not insert nested types in name cache.
6900         * reflection.c: warning fix.
6901         * reflection.h: add override method (for interface impl).
6902
6903 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
6904
6905         * metadata.c: fix customattr decoding.
6906
6907 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
6908
6909         * rawbuffer.cs: Added native Win32 implementation, avoids using
6910         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
6911
6912 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
6913
6914         * class.c: make the low-level routines handle the cache.
6915
6916 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
6917
6918         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
6919
6920 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
6921
6922         * class.c: fix mono_array_element_size() for objects.
6923         * class.h, class.c: add properties to MonoClass and load them
6924         at init time.
6925         * icall.c: check with isinst() when assigning a value to an array
6926         instead of requiring the classes to match exactly.
6927         Implemented icall for System.Type::GetType().
6928         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
6929         enums. Handle bindingflags when looking for methods and fields.
6930         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
6931         and mono_metadata_methods_from_property().
6932         * reflection.h, reflection.c: added structures for propreties,
6933         parameters and enums. Implemented mono_property_get_object() and
6934         mono_param_get_objects().
6935
6936 2001-12-18  Dick Porter  <dick@ximian.com>
6937
6938         * file-io.c: Use mono_string_to_utf16() instead of
6939         mono_string_chars()
6940
6941         * object.c: Added mono_string_to_utf16(), which copies the non
6942         NULL-terminated MonoString into a new double-null-terminated
6943         buffer.
6944
6945 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
6946
6947         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
6948
6949 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
6950
6951         * file-io.c: raise exceptions if handle is invalid.
6952
6953 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
6954
6955         * assembly.c: yet another check for mscorlib.
6956         * class.c, class.h: load nesting info for classes.
6957         * icall.c: many new functions to support the Reflection classes.
6958         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
6959         * reflection.h, reflection.c: mono_image_create_token(),
6960         mono_assembly_get_object(), mono_type_get_object(),
6961         mono_method_get_object(), mono_field_get_object(): methods to return
6962         objects that parallel the C representation of assemblies, types,
6963         methods, fields.
6964
6965 2001-12-11  Dick Porter  <dick@ximian.com>
6966
6967         * icall.c:
6968         * file-io.c: Internal calls for file IO.
6969
6970 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
6971
6972         * tabledefs.h: missing FileAttributes.
6973         * verify.h, verify.c: use is_valid_string () to simplify and check for
6974         valid strings more correctly. Fix warnings and speeling.
6975         Check more tables: Filed, File, ModuleRef, StandAloneSig.
6976         Check code: branches, maxstack, method calls.
6977
6978 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
6979
6980         * object.c (mono_object_allocate): removed static, so that the jit
6981         can allocate value types.
6982
6983         * icall.c (ves_icall_System_DateTime_GetNow): impl.
6984
6985 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
6986
6987         * class.c: init enum types right away and register the
6988         token->MonoClass map in mono_class_create_from_typedef ().
6989         * verify.h, verify.c: first cut of the verifier.
6990         * pedump.c: add --verify switch to verify metadata tables.
6991         * tabledefs.h: add some missing enums.
6992
6993 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
6994
6995         * class.c (mono_install_runtime_class_init): impl.
6996         (mono_class_init): renamed mono_class_metadata_init to
6997         mono_class_init, also removed the metadata_inited flag
6998
6999         * object.c (mono_object_isinst): use faster algorithm
7000
7001 2001-11-30  Radek Doulik  <rodo@ximian.com>
7002
7003         * mono-endian.h: reverted last change
7004         added function prototypes
7005
7006         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
7007         add mono-endian.c back
7008
7009         * mono-endian.c: returned back, as Paolo pointed out, it's needed
7010         for unaligned access, I've mistaked it with endianess. I am
7011         sorry.
7012         (mono_read16): fix reverted endianess
7013         (mono_read64): ditto
7014         (mono_read32): ditto
7015
7016 2001-11-30  Dick Porter  <dick@ximian.com>
7017
7018         * exception.c: Implement mono_exception_from_name()
7019
7020 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
7021
7022         * metadata.h, metadata.c: remove params_size and locals_size and their
7023         calculation from the metadata code: they are only usefult to the
7024         interp.
7025
7026 2001-11-29  Radek Doulik  <rodo@ximian.com>
7027
7028         * object.c (mono_ldstr): swap bytes here, it's probably not the
7029         best place, but works for me now, I'll redo it once I know mono
7030         better, also note that I add PROT_WRITE and don't reset back, also
7031         note that it's only affects big endians, so x86 should be OK
7032
7033         * mono-endian.h (read16): use just glib macros for both endians
7034
7035         * mono-endian.c: removed as glib macros are used in in
7036         mono-endian.h so we don't need to care about endianess for read
7037         macros as glib does that for us already
7038
7039 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
7040
7041         * class.h, class.h: take minimum alignment into consideration so
7042         that the fields of a class remain aligned also when in an array.
7043
7044 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
7045
7046         * loader.h, loader.c: add mono_method_get_param_names().
7047         * class.c: 0-init class fields.
7048
7049 2001-11-26  Dick Porter  <dick@ximian.com>
7050
7051         * icall.c:
7052         * threads-types.h:
7053         * threads.c: New file that handles System.Threading on all platforms
7054
7055         * object.c: 
7056         * object.h: Remove the synchronisation struct from MonoObject,
7057         replace it with a pointer that gets initialised on demand
7058
7059         * Makefile.am: Replace all the system-specific threading code with
7060         a single file that uses the new wrapper library
7061
7062 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
7063
7064         * class.c, class.h: add mono_install_trampoline() so that the runtime
7065         can register a function to create a trampoline: removes the ugly
7066         requirement that a runtime needed to export arch_create_jit_trampoline.
7067         * object.h, object.c: added mono_install_handler() so that the runtime
7068         can install an handler for exceptions generated in C code (with
7069         mono_raise_exception()). Added C struct for System.Delegate.
7070         * pedump.c: removed arch_create_jit_trampoline.
7071         * reflection.c: some cleanups to allow registering user strings and
7072         later getting a token for methodrefs and fieldrefs before the assembly
7073         is built.
7074         * row-indexes.h: updates and fixes from the new ECMA specs.
7075
7076 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
7077
7078         * class.h, class.c: add enum_basetype field to MonoClass.
7079         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
7080         to get index in the constant table reated to a field, param or
7081         property.
7082         * reflection.h, reflection.c: handle constructors. Set public-key and
7083         version number of the built assembly to 0.
7084         * row-indexes.h: update from new ECMA spec.
7085
7086 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
7087
7088         * class.h, class.c: add a max_interface_id to MonoClass.
7089         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
7090         since it's used to do that. Added mono_type_type_from_obj().
7091         Make GetType() return NULL instead of segfaulting if the type was not
7092         found. Handle simple arrays in assQualifiedName.
7093         * object.h: add a struct to represent an Exception.
7094         * reflection.c: output call convention in method signature.
7095         Add code to support P/Invoke methods and fixed offsets for fields.
7096
7097 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
7098
7099         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
7100         the value.
7101         * icall.c: use mono_array_addr instead of array->vector: fixes the
7102         reflection image writing.
7103         * reflection.c: init call convention byte to 0 in method signature.
7104         Encode the property signature. Don't output property-related methods
7105         twice. Really process the properties for a type (don't cast a field to
7106         a property, my mom always told me that).
7107         Fix 64 bit issues in pointer alignment in a different and more
7108         readable way.
7109
7110 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
7111
7112         * loader.h: Removed type class from MonoDefaults, added monotype
7113
7114         * loader.c: Loaded MonoType, removed loading of Type
7115
7116         * icall.c (my_mono_new_object): Now returns a System.MonoType,
7117         and fills in System.Type._impl with a RuntimeTypeHandle rather
7118         than the actual MonoClass *
7119
7120         (ves_icall_type_from_handle): change from type_class to
7121         monotype_class
7122
7123         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
7124         implemented
7125
7126         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
7127         implemented
7128
7129         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
7130
7131         (ves_icall_System_Reflection_Assembly_GetType): implemented
7132
7133         (ves_icall_System_MonoType_assQualifiedName): implemented
7134
7135         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
7136
7137 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
7138
7139         * assembly.c (mono_assembly_open): Implement a cache for the
7140         assemblies. 
7141
7142         (mono_assembly_close): only destroy the assembly when the last
7143         reference is gone.
7144         
7145 2001-11-09  Dick Porter  <dick@ximian.com>
7146
7147         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
7148
7149 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
7150
7151         * class.c (mono_class_metadata_init): bug fix: compute the right slot
7152
7153 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
7154
7155         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
7156         from Martin Weindel.
7157         * object.h: add mono_string_chars ().
7158
7159 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
7160
7161         * reflection.c (build_compressed_metadata): Eliminates warnings
7162         and uses 64-bit clean code.
7163
7164         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
7165         (mono_type_equal): Change signature to eliminate warnings.
7166
7167 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
7168
7169         * icall.c, loader.c: remove the internalcall array constructors.
7170         Changes to match the new MonoArray structure.
7171         * object.h, object.c: an array object doesn't allocate an extra
7172         vector. Add mono_array_new_full () to create jagged arrays easily.
7173
7174 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
7175
7176         * metadata.h, metadata.c: add mono_metadata_field_info () to
7177         retreive all the info about a field from vairous tables.
7178         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
7179         * class.h, class.c: augment MonoClassField with more info.
7180         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
7181         policy and load a field's RVA if needed.
7182
7183 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
7184
7185         * class.c (mono_class_metadata_init): create a trampoline for all
7186         virtual functions instead of actually compiling them.
7187
7188 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
7189
7190         * class.h, class.c: include name in MonoClassField.
7191         * class.c: fix fundamental type of System.Object and System.String.
7192         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
7193         tokens in ldtoken.
7194         * icall.c: remove internalcalls for the Reflection stuff that is now
7195         done in C# code.
7196         * loader.c: mono_field_from_memberref () implementation.
7197         * mono-endian.c: thinko (s/struct/union/g).
7198         * object.c, object.h: make the mono_string_* prototypes actually use
7199         MonoString instead of MonoObject.
7200         * reflection.c, reflection.h: updates for changes in the reflection
7201         code in corlib: we use C structures that map to the actual C# classes.
7202         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
7203         fat method header if needed and use the info from the ILGenerator for
7204         methods. Handle fields in types. Misc fixes.
7205
7206 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
7207
7208         * class.c (mono_class_metadata_init): bug fix: always allocate
7209         space for static class data
7210
7211 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
7212
7213         * class.c (mono_compute_relative_numbering): use relative
7214         numbering to support fast runtime type checks.
7215
7216 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
7217
7218         * class.c (mono_class_create_from_typeref): added debugging output
7219         to print class name when MonoDummy is returned instead of real class
7220
7221 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
7222
7223         * class.c (mono_class_metadata_init): interface offset table now
7224         contains pointers into the vtable - this is more efficient for the jit
7225
7226 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
7227
7228         * class.c (mono_class_metadata_init): use a temporary vtable (the
7229         old algorithm only worked for the interpreter, but not for the jit)
7230
7231 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
7232
7233         * loader.c (method_from_memberref): use mono_class_get to get the
7234         class of an array instead of using System.Array directly.
7235         (mono_get_method): also add MEMBERREF methods to the method cache
7236         which usefull for arrays.
7237
7238 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
7239
7240         * pedump.c (arch_compile_method): added to compute vtable entry
7241
7242         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
7243         number of interfaces.
7244         
7245         * class.h: merged MonoArrayClass into MonoClass
7246
7247         * class.c (mono_class_create_from_typedef): compute the vtable size and
7248         allocate space to include the vtable inside MonoClass
7249         (mono_class_metadata_init): initialize the vtable
7250
7251 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
7252
7253         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
7254         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
7255         * image.c: endian fixes by Laurent Rioux.
7256         * object.h, object.c: rename MonoStringObject to MonoString and
7257         MonoArrayObject to MonoArray. Change some function names to conform to
7258         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
7259         guint16* as first argument, so don't use char*.
7260         Provide macros to do the interesting things on arrays in a portable way.
7261         * threads-pthread.c: updates for the API changes and #include <sched.h>
7262         (required for sched_yield()).
7263         * icall.c: updates for the API changes above.
7264         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
7265         platforms that need them.
7266
7267 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
7268
7269         * class.c: set the correct type for all the fundamental
7270         type when loading the class.
7271
7272 2001-10-05  Dick Porter  <dick@ximian.com>
7273
7274         * threads-pthread.c (pthread_mutex_timedlock): Simple
7275         compatibility version for C libraries that lack this call.
7276
7277 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
7278
7279         * class.c: MonoTypes stored in MonoClass are stored as
7280         fundamental MonoTypes when the class represents a
7281         fundamental type (System.Int32, ...).
7282         The TypeHandle return by ldtoken is a MonoType*.
7283         * icall.c: ves_icall_get_data_chunk () write out all the
7284         PE/COFF stuff. Implement ves_icall_define_method (),
7285         ves_icall_set_method_body (), ves_icall_type_from_handle ().
7286         * image.c: properly skip unknown streams.
7287         * loader.h, loader.c: add type_class to mono_defaults.
7288         * metadata.c, metadata.h: export compute_size () as
7289         mono_metadata_compute_size () with a better interface.
7290         Typo and C&P fixes.
7291         * pedump.c: don't try to print the entry point RVA if there is no entry point.
7292         * reflection.c, reflection.h: many cleanups, fixes, output method
7293         signatures and headers, typedef and typeref info, compress the metadata
7294         tables, output all the heap streams, cli header etc.
7295         * row-indexes.h: typo fixes.
7296
7297 2001-10-04  Dick Porter  <dick@ximian.com>
7298
7299         * object.h: Add a synchronisation mutex struct to MonoObject
7300
7301         * object.c (mono_new_object): Initialise the object
7302         synchronisation mutexes
7303
7304         * icall.c: System.Threading.Monitor internal calls
7305         
7306         * threads-pthread.h:
7307         * threads-pthread.c: System.Threading.Monitor internal calls
7308
7309         * threads-types.h: New file, includes the system-specific thread
7310         structures
7311         
7312         * threads-pthread-types.h:
7313         * threads-pthread-types.c: New files, handle pthread-specific
7314         synchronisation types
7315
7316         * threads-dummy-types.h: 
7317         * threads-dummy-types.c: New files of dummy support for
7318         thread-specific types
7319
7320         * metadata.c:
7321         * image.c:
7322         * pedump.c: include mono-endian.h not endian.h
7323         
7324         * Makefile.am: More threads files.
7325         Name mono-endian.h not endian.h
7326
7327 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
7328
7329         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
7330         stuff and implement a few more bits.
7331         * icall.c: a field needs to be dereferenced twice. Do not use the same
7332         name for two variables in the same scope.
7333         * image.c, image.h: cleanups.
7334
7335 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
7336
7337         * class.c (mono_class_metadata_init): bug fix: compute the right size
7338
7339 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
7340
7341         * icall.c: implemented some of the Reflection internalcalls.
7342         * image.c, image.h: start writing out the PE/COFF image.
7343         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
7344         that does the reverse than decode_blob_size ().
7345         * object.c: use mono_metadata_encode_value (). Move here
7346         temporary implementation of mono_string_to_utf8 ().
7347         * rawbuffer.c: make malloc_map static.
7348
7349 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
7350
7351         * metadata.c: fix type comparison for arrays.
7352         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
7353         Added a couple of new classes to monodefaults.
7354         * icall.c: added a couple of Reflection-related internalcalls.
7355         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
7356         Added a byval_arg MonoType to MonoClass.
7357
7358 2001-09-28  Dick Porter  <dick@ximian.com>
7359
7360         * icall.c:
7361         * threads-pthread.h: 
7362         * threads-pthread.c: Implemented internal calls for
7363         LocalDataStoreSlot operations.  Applied mutexes around all shared
7364         data.  Reworked the thread creation and Start() operations to
7365         avoid a race condition.
7366         
7367         * threads-dummy.h:
7368         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
7369
7370 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
7371
7372         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
7373
7374 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
7375
7376         * class.c, loader.c: warn and return NULL instead of erroring out.
7377         * icall.c: added System.AppDomain::getCurDomain().
7378         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
7379
7380 2001-09-25  Dick Porter  <dick@ximian.com>
7381
7382         * threads-pthread.h:
7383         * threads-pthread.c: Implemented timed thread joining and added
7384         System.Threading.Thread::Join_internal internal call
7385
7386         * icall.c: Added System.Threading.Thread::Join_internal internal call
7387
7388         * threads-dummy.h:
7389         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
7390
7391 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
7392
7393         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
7394         mono_string_intern () to implement the semantics of the ldstr opcode
7395         and the interning of System.Strings.
7396         * icall.c: provide hooks to make String::IsIntern and String::Intern
7397         internalcalls.
7398
7399 2001-09-23  Dick Porter  <dick@ximian.com>
7400
7401         * threads-dummy.c: 
7402         * threads-dummy.h: New files of dummy threading routines
7403
7404         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
7405         support code based on system specifics
7406
7407         Rename PTHREAD_LIBS to THREAD_LIBS
7408         
7409 2001-09-23  Dick Porter  <dick@ximian.com>
7410
7411         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
7412         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
7413         internal calls.
7414         (mono_thread_init): Set up a Thread object instance to return when
7415         the main thread calls Thread.CurrentThread
7416         (mono_thread_cleanup): Wait for all subthreads to exit
7417
7418         * icall.c: New internal calls for System.Threading.Thread::Sleep
7419         (including Schedule) and CurrentThread
7420
7421         * threads.h: New file, to insulate thread-specific stuff from the
7422         rest of the code
7423
7424 2001-09-21  Dick Porter  <dick@ximian.com>
7425
7426         * threads-pthread.h: 
7427         * threads-pthread.c: New file, for handling pthreads-style
7428         threading support.  Start() now starts a new thread and executes
7429         the ThreadStart delegate instance.
7430
7431         * icall.c: Added the internalcall for
7432         System.Threading.Thread::Start_internal
7433
7434         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
7435
7436 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
7437
7438         * loader.c: work around the different signatures for delegates
7439         constructors csc generates in compiled code vs the ones compiled in mscorlib.
7440
7441 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
7442
7443         * class.h, class.c: add mono_class_get_field_from_name ().
7444         * *: Fix C comments and other ANSI C issues.
7445
7446 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
7447
7448         * endian.h, assembly.c: fix some endianness issues.
7449
7450 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
7451
7452         * loader.h, load.c: add delegate_class to mono_defaults.
7453         Handle runtime provided methods in mono_get_method ().
7454
7455 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
7456
7457         * loader.c (mono_get_method): use pinvoke for internal call
7458
7459         * icall.c: use pinvoke for internal call
7460
7461         * loader.c (method_from_memberref): set the method name
7462
7463 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
7464
7465         * metadata.c: help the compiler generate better code for
7466         mono_class_from_mono_type ().
7467
7468 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
7469
7470         * class.c (mono_class_metadata_init): delayed computing of the
7471         class size to mono_class_metadata_init ()
7472
7473 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
7474
7475         * class.c, class.h: add an interfaces member to MonoClass.
7476         * image.c, image.h: add assembly_name field to MonoImage
7477         from the assembly table.
7478         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
7479
7480 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
7481
7482         * class.c: Handle Array in mono_class_from_mono_type ().
7483         * metadata.c, pedump.c: some endian fixes.
7484
7485 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
7486
7487         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
7488         * metadata.c: fix small problem introduced with the latest commit.
7489
7490 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
7491
7492         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
7493         We don't need a MonoMetadata pointer anymore to compare signatures in
7494         mono_metadata_signature_equal (), update callers.
7495         Reduced memory usage an number of allocations for MonoMethodHeader and
7496         MonoMethodSignature.
7497
7498 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
7499
7500         * metadata.c: added compare for szarray.
7501
7502 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
7503
7504         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
7505         and add a couple more types to it and mono_defaults. Give an hint on
7506         classes that need implementing in our corlib and are referenced
7507         in mscorlib.
7508
7509 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
7510
7511         * class.h, class.c: keep track if a class is also an Enum.
7512         * loader.c: Implement a couple more types for use in libffi
7513         marshalling. Gives better diagnostics when failing to dlopen
7514         a library. Set method->klass for P/Invoke methods, too.
7515
7516 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
7517
7518         * class.c, class.h: add a MonoType this_arg to MonoClass that
7519         represents a pointer to an object of the class' type that
7520         can be used by the interpreter and later the type cache.
7521         Add best guess alignment info for valuetype objects.
7522
7523 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
7524
7525         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
7526         into MonoType: one less level of indirection and allocation and
7527         simplifies quite a bit of code. Added cache for MonoTypes that are
7528         used frequently, so that we don't need to allocate them all the time.
7529
7530 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
7531
7532         * class.c (mono_class_create_from_typedef): System.Enum is also a
7533         value type, although it does not derive from System.ValueType
7534         (maybe a bug in the ms compiler?)
7535
7536         * metadata.c (mono_type_size): return the right size for value types
7537
7538         * loader.c (mono_get_method): only initialize method header if not abstract
7539
7540         * class.c (mono_class_from_mono_type): use mono_default values. 
7541
7542 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
7543
7544         * *: use MonoClass pointers instead of <type_tokens>
7545         
7546         * class.h: new flag: metadata_inited.
7547
7548         * class.c (mono_class_metadata_init): impl.
7549         (mono_class_instance_size): impl.
7550         (mono_class_data_size): impl.
7551
7552 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
7553
7554         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
7555         MonoClass now has the name and name_space fields. 
7556         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
7557         mono_get_method () takes and optional MonoClass as argument.
7558         Removed mono_typedef_from_name() and added mono_class_token_from_name()
7559         instead that takes advantage of a map from class names to typedef
7560         tokens in MonoImage.
7561
7562 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
7563
7564         * metadata.c: zero is not a valid alignment boundary.
7565         Merge MONO_TYPE_VOID in default decoding code.
7566
7567 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
7568
7569         * image.h: merged MonoMetadata into MonoImage
7570
7571         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
7572         identify the type of elements.
7573
7574 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
7575
7576         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
7577         * cil-coff.h: split MonoMSDOSHeader and add size info.
7578         * image.c: add some consistency checks.
7579         * metadata.c: fix row size computation: one programmer
7580         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
7581         add explanation for the locator routine.
7582         Fix decoding of size in method header.
7583         
7584 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
7585
7586         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
7587         (g_concat_dir_and_file): Bring g_concat_dir_and_file
7588         function from gnome-libs.  This uses the right path separator
7589         based on the OS, and also works around a bug in some systems where
7590         a double slash is not allowed. 
7591         (default_assembly_name_resolver): Use g_concat_dir_and_file
7592         (mono_assembly_open): ditto.
7593
7594 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
7595
7596         * metadata.c (mono_metadata_signature_equal): impl.
7597
7598         * *: void is now a realy MonoType (instead of using NULL)
7599         
7600         * metadata.c (do_mono_metadata_parse_type): use
7601         mono_metadata_parse_type to parse void value.
7602
7603 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
7604
7605         * metadata.c, metadata.h: in the signature and method header store
7606         only the space required for holding the loca vars and incoming arguments.
7607
7608 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
7609
7610         * metadata.c (do_mono_metadata_parse_type): treat void like any
7611         other type (instead of assigning NULL);
7612
7613 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
7614
7615         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
7616
7617 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
7618
7619         * image.c (do_mono_image_open): added a cache for arrays.
7620
7621 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
7622
7623         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
7624         decode a single column from a row in a metadata table and changes
7625         to take advantage of it in the typedef locator (gives a nice speed up).
7626         Store offset info for function params.
7627
7628 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
7629
7630         * image.h (MONO_IMAGE_IS_CORLIB): removed 
7631
7632 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
7633
7634         * assembly.c: how could mono_assembly_close () had ever worked?
7635         * metadata.c, metadata.h: provide offset info for local vars.
7636         Implement mono_type_size () to take care of alignment as well
7637         as size (it was mono_field_type_size in cli/class.c before).
7638
7639 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
7640
7641         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
7642
7643         * assembly.h (CORLIB_NAME): set to corlib.dll
7644
7645         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
7646
7647 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
7648
7649         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
7650         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
7651         tokentype.h: massive namespace cleanup.
7652
7653 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
7654
7655         * metadata.h, metadata.c: decode exception clauses when parsing method header.
7656
7657 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
7658
7659         * metadata.c (mono_metadata_free_type): added check for type !=
7660         NULL (void) before calling mono_metadata_free_type()
7661
7662 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
7663
7664         * metadata.h, row_indexes.h: added header with enumerations to use
7665         to index in the columns from tables in metadata and to decode coded
7666         tokens: we should start using this instead of embedding magic numbers
7667         all over the code.
7668
7669 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
7670
7671         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
7672         Move metadata_t info from cli_image_info_t to MonoImage, where
7673         it's easily accessible. Changed all the uses accordingly.
7674         Added the method and class caches to MonoImage.
7675         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
7676         and mono_metadata_decode_value () signature to be more consistent
7677         with the other parse functions (and simplify code). Taken advantage
7678         of zero-length array allocation with GCC. Removed reduntant (and
7679         wrong) MonoFieldType struct and use MonoParam instead. Changed
7680         mono_metadata_parse_field_type () to use common code for parsing.
7681         Added mono_metadata_typedef_from_field () and
7682         mono_metadata_typedef_from_method () to lookup a typedef index from a
7683         field or method token.
7684         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
7685
7686 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
7687
7688         * metadata.c (mono_metadata_parse_field_type): Implement. 
7689         (do_mono_metadata_parse_type): Split engine from
7690         mono_metadata_parse_type, so that we can create smaller structures
7691         for things that just have one pointer to the MonoType (look at
7692         the MonoFieldType)
7693
7694 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
7695
7696         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
7697         as Jan Gray found out, it is incorrect. 
7698
7699 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
7700
7701         * assembly.c: Implement asssembly loading.  This loads an image
7702         and loads all the referenced assemblies.  Come to think of it, we
7703         could always do lazy loading of the assemblies. 
7704
7705         * image.c (mono_image_open): Keep loaded images in a hashtable.
7706
7707         * image.h (MonoImage): Add reference count.
7708
7709 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
7710
7711         * assembly.c (mono_assembly_open): Keep track of the file name in
7712         case the assembly has no ASSEMBLY table.
7713
7714         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
7715         from get.c here.
7716
7717 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
7718
7719         * metadata.c, metadata.h: decode local vars in method header
7720         parse function. Change callers accordingly.
7721
7722 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
7723
7724         * metadata.h, cil-coff.h: protect against multiple inclusion.
7725         Added some new structures to hold information decoded from metadata:
7726         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
7727         and relevant decoding/free functions.
7728         * metadata.c: implement decoding functions. Add warning for out of bounds
7729         index in mono_metadata_locate(). Implement mono_get_method () to retreive
7730         all the info about a method signature and invocation. Remove check on
7731         uninitialized local var in parse_mh() and fix memory leak.
7732
7733 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
7734
7735         * metadata.h: More macros.
7736
7737         * tokentype.h: New file.
7738
7739 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
7740
7741         * assembly.c: added a consistency check and initialize
7742         some structures with g_new0().
7743         * metadata.c: fixed a couple more bugs in table size computation
7744         and add other checks for out-of bound access to metadata.
7745
7746 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
7747
7748         * metatada.c: fix bugs computing table sizes. Spew a
7749         warning when index in string heap is out of bounds.
7750
7751 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
7752
7753         * metadata.h: Add a couple of macros to manipulate tokens. 
7754
7755 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
7756
7757         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
7758         cli_section_tables).
7759
7760 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
7761
7762         * metadata.c (mono_metadata_user_string): New function, provides
7763         access to the UserString heap. 
7764
7765 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
7766
7767         * metadata.c: Add inline documentation.
7768
7769 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
7770
7771         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
7772         files. 
7773
7774 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
7775
7776         * typeattr.h: New file, TypeAttribute flags. 
7777
7778 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
7779
7780         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
7781         mono_assembly_ensure_section): Section loading code.
7782         (load_section_tables): Load the sections.
7783
7784         * mono/metadata/metadata.c (mono_metadata_locate_token,
7785         mono_metadata_locate): Functions to locate the information
7786         definition given a token or a table and an index.
7787         (mono_metadata_compute_table_bases): New.
7788         (compute_size): New function to compute the sizes of the various
7789         tables.
7790
7791         * mono/metadata/metadata.h: Finish listing the different index
7792         types. 
7793
7794         * mono/metadata/pedump.c: Improve to dump new information.
7795
7796 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
7797
7798         * mono/metadata/metadata.c: Entered all the tables matching
7799         Beta2. 
7800
7801         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
7802
7803
7804
7805
7806
7807
7808