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