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