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