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