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