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