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