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