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