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