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