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