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