2008-12-09 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / metadata / ChangeLog
1 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
2
3         * metadata.c (mono_image_alloc_lock): New helper function.
4         (mono_image_alloc0_lock): Ditto.
5
6         * metadata.c: Use the alloc_lock () helper functions for allocating
7         memory from the image mempool.
8
9 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
10
11         * class.c (mono_class_from_generic_parameter): Document it's
12         locking behavior. Fix double checked locking here, we stored in
13         param->pklass a partially initialized MonoClass and no membar was used.
14
15 2008-12-05  Marek Habersack  <mhabersack@novell.com>
16
17         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
18         (3) functions are present in the C library use them to do the
19         job. If they are absent, make sure that the sum of int_part and
20         dec_part is rounded before returning. This is necessary due to the
21         division of dec_part by the power of 10 before the final addition
22         is performed - if the result is not rounded in some cases it will
23         yield invalid results.
24
25 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
26
27         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
28         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
29         instruction instead of a pointer constant.
30
31 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
32
33         * loader.c (mono_method_get_header): Do most of the work outside the
34         loader lock, to avoid assembly load hook deadlocks.
35
36         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
37         (mono_metadata_parse_type_full): Ditto.
38
39 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
40
41         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
42         Make the stack depth fixed. Ensure proper argument passing to the backtrace
43         funtions. Finally, use a lock to produce well ordered output.
44
45         The lock looks silly, as all calls to the corlib mempool should be guarded
46         with the loader lock, but for some reason this fact doesn't help. 
47
48         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
49
50 2008-12-02  Mark Probst  <mark.probst@gmail.com>
51
52         * socket-io.c: 64 bit big-endian fixes.
53
54 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
55
56         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
57         targets that require strict compatibility between the types.
58
59         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
60         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
61         Kill the strict argument and create a new one valuetype_must_be_boxed.
62
63         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
64         state that all valuetypes must be boxed.
65
66         Fixes #448560.
67
68 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
69
70         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
71         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
72
73         Contributed under MIT/X11 license.
74
75 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
76
77         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
78         the inflate_generic_type machinery should handle it.
79
80         This avoids a crash when the field's flags is zero and it's type is
81         a primitive.
82         What happens is that mono_metadata_parse_type_full will see that opt_attrs
83         is zero and will return one of the cached built-in primitive types. Since
84         those types live in read-only memory, the code that copies it crashes.  
85
86 2008-11-28  Mark Probst  <mark.probst@gmail.com>
87
88         * object.c: Don't put function descriptors into generalized IMT
89         thunks.
90
91 2008-11-28  Mark Probst  <mark.probst@gmail.com>
92
93         * class.c: Enable generic code sharing on PPC64.
94
95 2008-11-27  Mark Probst  <mark.probst@gmail.com>
96
97         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
98         from mini/mini.c.
99
100         * generic-sharing.c: Allocate the method template slists from the
101         image mempool so it doesn't leak.
102
103 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
104
105         * class.c (generic_array_methods): Release the linked list.
106
107 2008-11-27  Mark Probst  <mark.probst@gmail.com>
108
109         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
110         invocation to g_utf16_to_utf8().
111
112 2008-11-26  Mark Probst  <mark.probst@gmail.com>
113
114         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
115         arguments on big endian archs.
116
117 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
118
119         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
120         the type name (test added in corlib).
121
122 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
123
124         * pedump.c: initialize perf. counters. Fixes a segv.
125
126 2008-11-25  Martin Baulig  <martin@ximian.com>
127
128         * mono-debug-debugger.c
129         (mono_debugger_runtime_invoke): Return the exception object if an
130         exception was thrown.  Visual Studio displays the exception object
131         in the locals window.
132
133 2008-11-24  Mark Probst  <mark.probst@gmail.com>
134
135         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
136         ftnptr.
137
138 2008-11-24  Mark Probst  <mark.probst@gmail.com>
139
140         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
141         MONO_TYPE_U are sizeof (gpointer), too.
142
143 2008-11-24  Mark Probst  <mark.probst@gmail.com>
144
145         * marshal.c (mono_type_native_stack_size): Fixed size and
146         alignment for reference types.
147
148 2008-11-23  Mark Probst  <mark.probst@gmail.com>
149
150         * class.c (mono_class_generic_sharing_enabled): Disable generic
151         code sharing for PPC64.
152
153 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
154
155         * icall.c (mono_method_get_equivalent_method): Make sure
156         method->klass->methods is inited before looping over it.
157
158 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
159
160         * object.c: when calling ExecuteAssembly in a newly created domain,
161         the configuration file and application base are already set up.
162         Bug #446353 take 2 fixed.
163
164 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
165
166         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
167         Fixes #444715. Fix a warning.
168
169 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
170
171         * appdomain.c: write the full path of the assembly to the .ini file
172         created when "shadow-copying"
173         Bug #446353 fixed.
174
175 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
176
177         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
178         if signature==FALSE.
179
180 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
181
182         * marshal.h : Fix the cygwin build.
183            marshal.c:12442: undefined reference to `_IID_IMarshal'
184           
185         Code is contributed under MIT/X11 license.
186
187 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
188
189         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
190           free threaded marshaler when QueryInterface is called on a COM callable
191           wrapper requesting the IMarshal interface.
192           
193         Code is contributed under MIT/X11 license.
194
195 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
196
197         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
198
199         * reflection.c (mono_type_get_object): Special case the very common
200         void type.
201
202         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
203         hold typeof(void).
204
205 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
206
207         * process.h : Adding method declaration for
208           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
209           
210         * process.c : Adding implementation for
211           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
212           
213         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
214           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
215
216         Code is contributed under MIT/X11 license.
217
218 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
219
220         * appdomain.c (unload_thread_main): Clean up threadpool by
221         calling mono_thread_pool_remove_domain_jobs.
222
223         * domain-internals.h (struct _MonoDomain): Add new fields to
224         help coordinate the cleanup of the threadpool.
225
226         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
227         that cleans up the threadpool of all jobs associated with an appdomain.
228         It does that by cleaning up the queues and making sure all active
229         threads are accounted.
230
231         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
232         unloaded or in the process of. Take this is such way that there is
233         no race condition between another thread starting the unload and the
234         current thread acknowledging it.
235
236         * threadpool.c (async_invoke_thread): Same.
237
238         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
239         firing the new thread.
240
241         * threadpool.c (start_tpthread): Same.
242
243         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
244
245         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
246
247 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
248
249         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
250         Add support for DuplicateHandle.
251         
252         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
253         Add support for DuplicateHandle.
254         
255         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
256         Add support for DuplicateHandle.
257
258         Code is contributed under MIT/X11 license.
259
260 2008-11-06  Mark Probst  <mark.probst@gmail.com>
261
262         * class-internals.h: Make min_align into a whole byte.
263
264         * class.c: Set min_align for SIMD types to 16.
265
266 2008-11-05  Geoff Norton  <gnorton@novell.com>
267
268         * attach.c: Default the attacher to enabled for all cases including
269         embedded.
270
271 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
272
273         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
274         change r117650.
275
276 2008-11-04  Mark Probst  <mark.probst@gmail.com>
277
278         * monitor.c, monitor.h: New function for querying offsets of
279         members of MonoThreadsSync.
280
281 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
282
283         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
284         to speed up this function and to avoid the boundless memory growth caused by
285         the signature_dup () calls.
286
287 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
288
289         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
290         wrapper.
291
292         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
293         by 1 bit.
294
295         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
296
297 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
298
299         * appdomain.c:
300         * domain-internals.h: made mono_set_private_bin_path_from_config()
301         "internal".
302         * object.c: call the above function after setting the configuration
303         file path for the root domain.
304         Fixes bug #314478.
305
306 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
307
308         * assembly.c: when the assembly is loaded from an absolute path, end
309         basedir with a directory separator.
310         Bug #440781 fixed.
311
312 2008-10-30  Mark Probst  <mark.probst@gmail.com>
313
314         * monitor.c (mono_monitor_get_fast_enter_method): If
315         CompareExchange is not available, don't create the fastpath
316         instead of asserting.  (The method is missing in the 1.1 profile.)
317
318 2008-10-30  Mark Probst  <mark.probst@gmail.com>
319
320         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
321
322         * monitor.c, monitor.h: Code for generating Monitor.Enter and
323         Monitor.Exit IL fastpaths.
324
325 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
326
327         * class.c (mono_class_create_from_typedef): Added Vector2ul.
328
329 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
330
331         * class.c (mono_class_create_from_typedef): Added Vector2l.
332
333 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
334
335         * class.c (mono_class_create_from_typedef): Added Vector2d.
336
337 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
338
339         * appdomain.c: translate \ into / for cache_path.
340         * domain-internals.h: new mono_is_shadow_copy_enabled().
341         * icall.c: (fill_reflection_assembly_name) do the same path
342         manipulations that get_code_base does.
343         (get_code_base) use mono_is_shadow_copy_enabled.
344
345 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
346
347         * appdomain.c: shadow-copied assemblies go to CachePath +
348         ApplicationName when both are set. DynamicBase has nothing to do with
349         shadow copies.
350         Bug #406877 fixed.
351
352 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
353
354         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
355         STANDALONESIG table.
356
357         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
358         standalone signatures.
359
360         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
361         comparison code: instead of comparing the signatures using a custom
362         equals function, transform them to a common signature and compare that. This
363         works better with AOT.
364
365 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
366
367         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
368
369         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
370         call for generic instances.
371         (mono_class_setup_properties): Call setup_properties () before accessing
372         gklass->properties.
373
374         * class.c (mono_class_get_virtual_methods): New helper function to iterate
375         over the virtual methods of a class using metadata if possible, avoiding the
376         creation of MonoMethod's for non-virtual methods.
377         
378         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
379         get_virtual_methods () to iterate over the virtual methods of classes.
380
381 2008-10-25  Martin Baulig  <martin@ximian.com>
382
383         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
384
385 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
386
387         * class.c (mono_class_create_from_typedef): Added Vector4i.
388
389 2008-10-24  Mark Probst  <mark.probst@gmail.com>
390
391         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
392         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
393         special-casing applies to eliminate the call completely.
394
395 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
396
397         * class.c (mono_class_create_from_typedef): Added Vector8s.
398
399 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
400
401         * class.c (mono_class_create_from_typedef): Added Vector16sb.
402
403 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
404
405         * icall.c: get rid of annoying warning.
406
407 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
408
409         * threadpool.c: in 1.x, if you change the background status of the
410         threadpool thread, it's not reset.
411         Remove unnecessary calls to SetState.
412
413 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
414
415         * threadpool.c: asynchronously create a set of idle threads upon first
416         use of the threadpool. SetMinThreads will now start the appropriate
417         number of idle threads if they are not already running. The default is
418         1 threadpool thread per CPU. Increased the maximum number of threads
419         per CPU to 10.
420
421 2008-10-22  Martin Baulig  <martin@ximian.com>
422
423         Revert r116521 from Zoltan, it breaks the debugger:
424
425         * class.c (mono_class_get_virtual_methods): New helper function to iterate
426         over the virtual methods of a class using metadata if possible, avoiding the
427         creation of MonoMethod's for non-virtual methods.
428         
429         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
430         get_virtual_methods () to iterate over the virtual methods of classes.
431
432 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
433
434         * threads.c: when creating a threadpool thread, set its state to
435         'background'.
436         * threadpool.c: reset the background state of a threadpool thread
437         after finishing each work item
438         Bug #437888 fixed.
439
440 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
441
442         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
443         
444         * class.c (mono_class_setup_vtable_general): Add an optimized version for
445         generic instances which works by inflating the methods in the container
446         class's vtable.
447
448         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
449         variant which doesn't make a copy if no inflation was done.
450         (mono_class_setup_fields): Use it.
451
452         * metadata.c (mono_metadata_get_shared_type): New helper function to
453         return a shared instance of a given MonoType.
454
455         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
456         a copy of most non-generic types.
457
458 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
459
460         * threadpool.c: remove one more GetSystemInfo () call.
461
462 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
463
464         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
465         use the code in mono-proclib.h to get processor information.
466
467 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
468
469         * appdomain.c: fixed the logic that determines whether assemblies in a
470         directory are "shadow-copied" or not. Bug #433483 fixed.
471
472 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
473
474         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
475         warning.
476
477 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
478
479         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
480         returning a vtype.
481
482         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
483         reflection.c: Use mono_field_get_name () for accessing a field's name.
484
485         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
486         class.c
487
488         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
489         field.
490
491         * loader.c (find_method_in_class): Reenable the metadata optimization by
492         not using it for generic instances.
493
494         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
495         data/def_type fields from MonoClassField into a separate structure.
496         (struct MonoClassField): Remove data/def_type fields.
497         (struct _MonoClass): Add a 'field_def_values' array to store the default
498         values/RVA for fields.
499
500         * class.c reflection.c: Update after the changes.
501         
502         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
503         for accessing field->data.
504
505         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
506
507         * loader.c (find_method_in_class): Revert the last change for now as
508         it breaks Mono.C5 unit tests.
509
510         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
511         'field_generic_types' and 'field_objects' which contain the information
512         previously stored in MonoInflatedField.
513         (MonoInflatedField): Delete.
514         (struct _MonoClassField): Delete 'generic_info' field.
515
516         * reflection.c: Store the information which was previously in 
517         field->generic_info in MonoDynamicGenericClass instead.
518
519         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
520         MonoClassField changes.
521
522 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
523
524         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
525         store the value inside the data array of the MonoMethodWrapper.
526         This saves memory, is faster and fixes the lifetime issues (methods
527         were never removed from the hash previously). May also fix bug#436996.
528
529 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
530
531         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
532         generic instances, compute the type from the generic definition instead of
533         looking in field->generic_info.
534
535         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
536         for inflated fields, the only user was get_fieldref_token () which no
537         longer needs it.
538
539         * class.c (mono_class_init): Revert the last change as it seems to cause
540         crashes.
541
542         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
543         bytes on 64 bit platforms.
544
545         * object.c (mono_class_create_runtime_vtable): Fix a warning.
546         
547         * object.c (mono_class_create_runtime_vtable): Don't initalize
548         field->data/field->def_type here, it is done lazily by 
549         mono_class_get_field_default_value ().
550
551         * icall.c (ves_icall_get_enum_info): Call 
552         mono_class_get_field_default_value () instead of directly accessing
553         field->data and field->def_type.
554
555         * object.c (get_default_field_value): Ditto.
556
557         * class.c (mono_field_get_data): Ditto.
558         
559         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
560         call for generic instances.
561
562         * loader.c (find_method_in_class): If klass != from_class, then inflate
563         the method with the context of from_class, since the caller assumes this.
564
565 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
566
567         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
568         for accessing method->slot.
569
570 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
571
572         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
573
574 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
575
576         * class.c (mono_method_get_vtable_index): Use
577         mono_method_get_vtable_slot () for accessing method->slot.
578
579         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
580         accessing klass->methods.
581
582         * class.c (mono_method_get_vtable_slot): New helper function.
583         (mono_class_get_vtable_entry): Ditto.
584         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
585         accessing method->slot.
586
587         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
588         method to get_inflated_method ().
589
590         * class.c (mono_class_get_inflated_method): New helper method to obtain
591         a method of an inflated class without calling setup_methods ().
592         (mono_class_get_cctor): Use get_inflated_method.
593
594         * generic-sharing.c (mono_class_get_method_generic): Ditto.
595         
596         * marshal.c image.c: Lazily create all the marshal caches.
597
598         * image.c (mono_image_init): Move initialization of runtime_invoke
599         caches to marshal.c.
600
601         * marshal.c (get_cache): New helper function to lazily initialize a 
602         wrapper cache.
603         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
604
605         * debug-helpers.c (mono_method_full_name): Include generic arguments.
606
607 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
608
609         * loader.c: fixed check for interface type.
610
611 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
612
613         * appdomain.c: check for NULL setup before it's referenced.
614
615 p
616 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
617
618         * class.c: remove the unused old vtable setup code.
619
620 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
621
622         * class.c: don't depend on interface order in
623         setup_interface_offsets (bug #435777).
624         * reflection.c: sort the InterfaceImpl table (patch from
625         Jb Evain  <jbevain@novell.com>).
626
627 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
628
629         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
630         the low level assemblies lock.
631
632 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
633
634         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
635         object.c, reflection.c, socket-io.c, threads.c: introduced
636         mono_framework_version () to return the major framewrok version,
637         changed the code that was using more complex patterns to use it.
638         Return the correct value for PlatformID for OSX.
639
640 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
641
642         * icall-def.h, process.h, process.c: added an icall to get info about
643         processes using mono-proclib.
644
645 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
646
647         * mono-perfcounters.c: use the mono-proclib functions to
648         access process information.
649
650 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
651
652         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
653         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
654         reflection.c: remove rawbuffer usage: mmap support is more sanely
655         provided by utils/mono-mmap.
656
657 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
658
659         * gc.c: use posix semaphores when possible so that
660         mono_gc_finalize_notify() is signal safe.
661
662 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
663
664         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
665         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
666         be #ifdef-ed out, the linker will remove the rest.
667
668         * marshal.c: Implement DISABLE_COM.
669
670         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
671
672 2008-10-11  Miguel de Icaza  <miguel@novell.com>
673
674         * locales.c (string_invariant_compare_char): Optimization: do not
675         call g_unichar_type unless we actually need the information.
676
677 2008-10-10  Mark Probst  <mark.probst@gmail.com>
678
679         * object.c, class-internals.h: Also create remoting trampolines
680         for generic methods.  Pass the domain to the remoting trampoline
681         creation function, too.
682
683 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
684
685         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
686
687 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
688
689         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
690         Vector4ui.
691
692 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
693
694         * assembly.c:
695         * locales.c: remove the use of g_strdown. Fixes bug #322313.
696
697 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
698
699         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
700         for the least possible amount of time (extending the fix in r113458).
701
702 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
703
704         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
705
706 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
707
708         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
709         as possible simd intrinsic types.
710         Optimized the test to check for the common prefix first.
711
712 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
713
714         * class.c: back out part of a broken optimization committed on
715         May 23th (bug #433908).
716
717 2008-10-09  Mark Probst  <mark.probst@gmail.com>
718
719         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
720         Win32.  Should fix #432388 for most cases until we have the new
721         profiler on Win32.
722
723 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
724
725         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
726         instead of using inst->id so the hash is stable for AOT.
727
728 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
729
730         * appdomain.c:
731         * icall.c: create a .ini file for shadow-copied assemblies that
732         contains the location of the original assembly. Use this to return the
733         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
734         Also fix the number of '/' for windows when returning the CodeBase.
735         Fixes bug #430920.
736
737 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
738
739         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
740
741         Code is contributed under MIT/X11 license.
742
743 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
744
745         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
746           if if the class vtable needs initialized.
747
748         Code is contributed under MIT/X11 license.
749
750 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
751
752         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
753           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
754           STRING->BSTR, and CLASS->INTERFACE.
755
756         Code is contributed under MIT/X11 license.
757
758 2008-10-07  Marek Habersack  <mhabersack@novell.com>
759
760         * sysmath.h: changed the declaration of the
761         ves_icall_System_Math_Round2 icall by adding an extra
762         away_from_zero parameter.
763
764         * sysmath.c (ves_icall_System_Math_Round2): added support for
765         away from zero rounding. The icall now takes an extra boolean
766         parameter to signal that away from zero operation is requested.
767
768 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
769
770         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
771         the delegate klass so it can work with full-aot.
772         (mono_marshal_get_delegate_end_invoke): Ditto.
773         (mono_marshal_get_delegate_invoke): Ditto.
774
775 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
776
777         * gc.c, attach.h, attach.c: remove a bad pattern:
778         add_finalizer_callback () is not implemented correctly, it can't
779         without adding more overhead to the finalizer loop and it's not
780         even needed, since we know exactly what we need to call, so there is
781         no need to do so through an expensive function pointer.
782
783 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
784
785         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
786         for the no-gc case.
787         * attach.c (mono_attach_init): Remove the #ifdef.
788
789 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
790
791         * attach.c (mono_attach_init): Don't use
792         mono_gc_add_finalizer_thread_callback when compiling without GC.
793         Fixes #432306.
794         
795         Code is contributed under MIT/X11 license.
796
797 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
798
799         * class.c (mono_class_create_from_typedef): Remove the 
800         #ifndef DISABLE_SIMD stuff.
801
802 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
803
804         * class-internals.h (MonoClass): Added simd_type bit field.
805
806         * class.c (mono_class_create_from_typedef): Check if type is a simd
807         intrinsic.
808
809 2008-10-03  Mark Probst  <mark.probst@gmail.com>
810
811         * object.c (mono_method_add_generic_virtual_invocation): Only add
812         instantiations to the thunk whose count is at least as large as
813         the threshold.
814
815 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
816
817         * icall.c: changed the Type of the exception thrown when trying to
818         invoke a constructor on an abstract class. Part of the fix for bug
819         #324185.
820
821 2008-10-02  Mark Probst  <mark.probst@gmail.com>
822
823         * class.c, class-internals.h (mono_method_get_vtable_index): New
824         function which returns the index into the vtable and properly
825         handles inflated virtual generic methods.
826
827 2008-10-01  Mark Probst  <mark.probst@gmail.com>
828
829         * object.c, domain.c, object-internals.h, domain-internals.h:
830         Generalize IMT thunk machinery to also handle thunks for virtual
831         generic method invokes.  When a virtual generic method is invoked
832         more than a number of times we insert it into the thunk so that it
833         can be called without lookup in unmanaged code.
834
835         * generic-sharing.c, class-internals.h: Fetching a
836         MonoGenericInst* for a method from an (M)RGCTX.
837
838 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
839
840         * marshal.c (emit_marshal_string): Applied a variant of a patch by
841         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
842         marshalling. Fixes #431304.
843
844 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
845
846         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
847           handle when ref is specified without In or Out.
848
849         Code is contributed under MIT/X11 license.
850
851 2008-09-30  Mark Probst  <mark.probst@gmail.com>
852
853         * loader.c (mono_get_method_constrained): Don't expand method with
854         the class's context, because it's already a method of that class.
855
856 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
857
858         * attach.c : should be correct build fix.
859
860 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
861
862         * attach.c: Fix the previous change.
863
864 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
865
866         * attach.c : quick w32 build fix.
867
868 2008-09-27  Miguel de Icaza  <miguel@novell.com>
869
870         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
871         crashes MonoDevelop: #430455.
872
873 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
874
875         * domain-internals.h (struct _MonoDomain): Move most fields used only by
876         the JIT do MonoJitDomainInfo in ../mini/mini.h.
877
878         * domain.c: Remove initialization/cleanup of the removed fields.
879
880 2008-09-27  Mark Probst  <mark.probst@gmail.com>
881
882         * class.c (mono_class_generic_sharing_enabled): Enable generic
883         code sharing for PPC.
884
885 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
886
887         * attach.c : Fixing the Windows builds.
888
889         Code is contributed under MIT/X11 license.
890
891 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
892
893         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
894         the default generic sharing mode to 'all'.
895
896 2008-09-25  Mark Probst  <mark.probst@gmail.com>
897
898         * generic-sharing.c, class-internals.h: New function for checking
899         whether a method needs a static RGCTX invoke wrapper.  A few
900         funtions moved from mini/generic-sharing.c.
901
902         * icall.c: New function used.
903
904 2008-09-25  Mark Probst  <mark.probst@gmail.com>
905
906         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
907         Static RGCTX invoke wrapping applies to value type methods, too.
908
909         * class.c (mono_class_setup_vtable_general): In generic-shared
910         value types, wrap methods with a static RGCTX invoke wrapper.
911
912 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
913
914         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
915         osx build.
916
917 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
918
919         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
920         register a callback which is called when the finalizer thread is woken
921         up.
922         (finalizer_thread): Call the callback if it exists.
923
924         * attach.h attach.c: New files, implementing the attach mechanism.
925
926         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
927         
928         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
929         by the previous change.
930
931 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
932
933         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
934         loader.c, marshal.c, metadata-internals.h, metadata.c,
935         method-builder.c, object.c, reflection.c: introduced specific functions
936         to allocate from the domain and image mempools and cleaned up most of
937         the code to use them (still missing a few in reflection.c).
938         Keep the loader bytes counter updated.
939
940 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
941
942         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
943         loader-related counters.
944
945 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
946
947         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
948         added more MS-compatible counters.
949
950 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
951
952         * class.c (mono_class_setup_fields): Call setup_fields before accessing
953         class->blittable. Fixes #428217.
954
955 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
956
957         * reflection.c (mono_image_get_field_on_inst_token): Call 
958         field_encode_signature () since that handles custom modifiers too.
959         Fixes #424663.
960
961 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
962
963         * reflection.c (add_custom_modifiers): New helper function to merge custom
964         modifiers stored in objects to a MonoType.
965         (fieldref_encode_signature): Encode custom modifiers.
966         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
967         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
968
969 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
970
971         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
972         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
973         64-bit IL only images because imports are not resolved for IL only images.
974         Special thanks to Bill Holmes for finding this bug and testing the patch.
975         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
976
977         Contributed under MIT/X11 license.
978
979 2008-09-19  Miguel de Icaza  <miguel@novell.com>
980
981         * mono-config.c (dllmap_start): Add support for the bits keyword
982         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
983
984 2008-09-19  Mark Probst  <mark.probst@gmail.com>
985
986         * reflection.c (inflate_mono_method): When the class the method is
987         to be inflated for is itself not inflated, just return the method.
988
989 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
990
991         * mono-perfcounters.c: use more user friendly process instance names.
992
993 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
994
995         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
996           handle "[in] ref" and "[in][out] ref" cases.
997
998         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
999           to mono_mb_create_method.  This was causing problems calling native to
1000           managed passing Variants by value.
1001
1002         Code is contributed under MIT/X11 license.
1003
1004 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
1005
1006         * class.c (can_access_internals): Call mono_assembly_load_friends ()
1007         before accessing the friend_assembly_names field.
1008
1009         * assembly.c (mono_assembly_load_friends): Make this callable multiple
1010         times.
1011         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
1012         called lazily when it is needed.
1013
1014         * metadata-internals.h (struct _MonoAssembly): Add 
1015         'friend_assembly_names_inited' flag.
1016
1017 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
1018
1019         * mono-perfcounters-def.h: fix the types of a few counters.
1020         * mono-perfcounters.c: implemented the instance names getter
1021         and a few bugfixes.
1022
1023 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
1024
1025         * culture-info-table.h : regenerated.
1026
1027 2008-09-17  Robert Jordan  <robertj@gmx.net>
1028
1029         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
1030         context bound objects. Fixes #415577.
1031
1032         Code is contributed under MIT/X11 license.
1033
1034 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
1035
1036         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
1037         implementation (bug #423582).
1038
1039 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
1040
1041         * object.c (mono_object_get_virtual_method): Handle the case method->slot
1042         is not set. Fixes #426309.
1043
1044 2008-09-16  Jb Evain  <jbevain@novell.com>
1045
1046         * class.c (mono_class_from_name): fix the exported type look up
1047         when the type is defined in a referenced assembly.
1048
1049 2008-09-16  Jb Evain  <jbevain@novell.com>
1050
1051         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
1052         increment the next index counter on each iteration to make that work
1053         for more than one type forwarder. Unmanaged part to fix #422929.
1054
1055 2008-09-15  Mark Probst  <mark.probst@gmail.com>
1056
1057         * object-internals.h: enum ComInterfaceType in
1058         MonoInterfaceTypeAttribute is guint32, not guint16.
1059
1060 2008-09-12  Mark Probst  <mark.probst@gmail.com>
1061
1062         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
1063         writing code.
1064
1065 2008-09-11  Mark Probst  <mark.probst@gmail.com>
1066
1067         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
1068         not gboolean.
1069
1070 2008-09-11  Mark Probst  <mark.probst@gmail.com>
1071
1072         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
1073         Endianness fixes for MonoSymbolFileOffsetTable.
1074
1075 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
1076
1077         * process.c (complete_path) : Removing quotes from the 
1078           input path.  The glib file routines do not handle file paths
1079           that have quotes around them.
1080
1081         Code is contributed under MIT/X11 license.
1082
1083 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
1084
1085         * socket-io.h : Adding a comment to provide locations where 
1086           changes to MonoSocketAsyncResult need to be synced.
1087
1088         Code is contributed under MIT/X11 license.
1089
1090 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
1091
1092         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
1093         parameters as well. Fixes #425001.
1094
1095 2008-09-08  Miguel de Icaza  <miguel@novell.com>
1096
1097         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
1098         windows build.
1099
1100 2008-09-07  Miguel de Icaza  <miguel@novell.com>
1101
1102         * console-io.c: Add support for tracking the window size if it
1103         changes.
1104
1105         The setup is very simple: the TtySetup function will now return a
1106         pointer to a location in memory that tracks the current console
1107         size.  The managed code checks its current value every time its
1108         queried against the last value set, and updates accordingly.
1109
1110         With this setup we can work with multiple consoles, and we do not
1111         require to poke into managed code from a signal handler.
1112
1113         Additionally, the environment for COLUMNS and LINES is now handled
1114         in unmanaged code.
1115
1116         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
1117
1118 2008-09-07  Mark Probst  <mark.probst@gmail.com>
1119
1120         * marshal.c (mono_type_native_stack_size): Treat
1121         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
1122
1123 2008-09-04  Jb Evain  <jbevain@novell.com>
1124
1125         * class.c (mono_class_is_assignable_from): fix assignability of nullables
1126         to nullables.
1127
1128 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
1129
1130         * verify.c (verify_type_compatibility_full): Revert change
1131         to allow converting a native int to unmanaged pointer be verifiable
1132         under non-strict mode.
1133         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
1134
1135         * verify.c: Added some TODOs.
1136
1137 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
1138
1139         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
1140           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
1141           Changed to use GlobalAlloc for the memory returned on Windows platforms.
1142
1143         Code is contributed under MIT/X11 license.
1144
1145 2008-09-02  Jb Evain  <jbevain@novell.com>
1146
1147         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
1148
1149 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
1150
1151         reflection.c (typebuilder_setup_fields): Handle classes with
1152         explicit size.
1153
1154 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
1155
1156         class.c (mono_class_setup_events): Add memory barrier due to
1157         double checked locking.
1158         
1159         class.c (mono_class_setup_properties): Same.
1160
1161 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
1162
1163         * class.c (mono_class_is_assignable_from): Fix the build.
1164         
1165         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
1166         before accessing klass->interface_bitmap. Fixes #421744.
1167
1168 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
1169
1170         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
1171         the runtime into no-exec mode, useful when running the AOT compiler.
1172
1173         * appdomain.c gc.c object.c: Avoid executing managed code when running
1174         in no-exec mode.
1175         
1176         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
1177
1178         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
1179         special case when the mono_assembly_loaded () returns NULL because the 
1180         search hook is not installed.
1181
1182 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
1183
1184         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
1185         crashes in bstr marshalling on linux.
1186
1187 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
1188
1189         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
1190         with more than one parameter.
1191
1192 2008-08-24  Miguel de Icaza  <miguel@novell.com>
1193
1194         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
1195         start/stop flow control as well when turning off ICANON (allows
1196         C-s and C-q to be read by Console.ReadKey).
1197
1198 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
1199
1200         * class.c (mono_class_init): Move the initialization of nested classes
1201         into mono_class_get_nested_types (). Fixes #418433.
1202
1203         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
1204         flag.
1205
1206         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
1207         iterating tough the nested classes of a class.
1208
1209 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
1210
1211         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
1212         on arm.
1213
1214 2008-08-22  Miguel de Icaza  <miguel@novell.com>
1215
1216         * console-io.c (sigcont_handler): Support signal chaining for
1217         SIGCONT.
1218
1219         (console_set_signal_handlers): Use best practices with sigaction,
1220         clear the structure before using it. 
1221
1222 2008-08-22  Robert Jordan  <robertj@gmx.net>
1223
1224         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
1225         Fix the Windows build.
1226
1227 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
1228
1229         * class.c (mono_class_generic_sharing_enabled): Make the default
1230         sharing mode 'corlib'.
1231
1232 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
1233
1234         * console-io.c (console_set_signal_handlers): Fix a warning.
1235
1236         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
1237         method normally, the JIT will take care of avoiding recursion.
1238
1239 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
1240
1241         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
1242
1243         Code is contributed under MIT/X11 license.
1244
1245 2008-08-20  Miguel de Icaza  <miguel@novell.com>
1246
1247         * console-io.c (sigcont_handler): We need to restore the entire
1248         termios state, not only the original settings, as things like echo
1249         can be controlled after this (Booish exposes this issue with its
1250         own ReadLine implementation).
1251
1252         Additionally, we need to set the terminal back into keypad_xmit
1253         mode.
1254         
1255         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
1256         string as a paramter as well.   Otherwise we get different
1257         keyboard sequences.
1258
1259 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
1260
1261         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
1262         delegates with byref out parameter passing. Fixes #351520.
1263
1264         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
1265         a generic context.
1266         (mono_type_get_desc): Add the type arguments for GENERICINST.
1267         (mono_method_full_name): Stringify the class name using mono_type_full_name
1268         so it picks up generic arguments.
1269
1270 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
1271
1272         * console-io.c: Removed debug output.
1273
1274 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
1275
1276         reflection.c (mono_reflection_create_runtime_class): Alloc
1277         the nested classes linked list using the dynamic image mempool.
1278         Fixes leak in corlib compilation.
1279
1280 2008-08-19  Miguel de Icaza  <miguel@novell.com>
1281
1282         * console-io.c: Fix incredibly annoying behavior on the console
1283         after resuming execution after control-z.   This affected every
1284         console application.
1285
1286 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
1287
1288         * mempool-internals.h: Header for mono private mempool functions. The first
1289         two function are for allocating glib linked lists using pools.
1290
1291         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
1292
1293         * Makefile.am: Added mempool-internals.h.
1294
1295 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
1296
1297         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
1298         (mono_domain_free): Ditto.
1299
1300         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
1301         be used by the JIT to store its domain-specific information, instead of putting
1302         it directly into MonoDomain.
1303
1304         * domain.c (mono_install_create_domain_hook): New helper function to install
1305         a hook which initializes domain->runtime_info.
1306
1307         * domain.c (mono_install_free_domain_hook): Ditto.
1308         
1309 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
1310
1311         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
1312         asserting if the ares parameter is null.
1313
1314         * mono-perfcounters.c: Fix warnings.
1315
1316         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
1317         is not needed, don't check for interruptions either.
1318         (mono_marshal_get_delegate_end_invoke): Ditto.
1319
1320 2008-08-15  Marek Habersack  <mhabersack@novell.com>
1321
1322         * mono-perfcounters.c (predef_readonly_counter): added support for
1323         reading the ASP.NET Requests Queued counter from another process.
1324
1325 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
1326
1327         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
1328         MonoImage to simplify the AOT code.
1329
1330 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
1331
1332         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
1333         marshalling. Fixes #416078.
1334
1335 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
1336         
1337         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
1338         it is set, looking up the icall address is deferred to the JIT, since 
1339         in embedded scenarios, the icall might not be registered in the runtime
1340         doing the AOT compilation. Backported from the 2.0 branch.
1341
1342 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
1343
1344         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
1345         Fixes #415621.
1346
1347 2008-08-05  Marek Habersack  <mhabersack@novell.com>
1348
1349         * Makefile.am: added support for cross-compilation.
1350
1351 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
1352
1353         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
1354
1355 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
1356
1357         * mono-perfcounters.c: jitted methods and jitted bytes counters.
1358
1359 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
1360
1361         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
1362         mono-perfcounters.c: performance counters implementation.
1363
1364 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
1365
1366         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
1367         to gpointer, letting the AOT code decide what to store in it.
1368
1369 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
1370
1371         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
1372           mono_class_setup_methods if the methods are not initialized.
1373
1374         Code is contributed under MIT/X11 license.
1375
1376 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
1377
1378         * verify.c: Remove some debug code I commited by accident.
1379
1380         * verify.c (mono_method_is_valid_in_context): Change the return value
1381         to make possible to distinguish between invalid and unverifiable.
1382
1383         * verify.c (verifier_load_method): Don't return NULL for unverifiable
1384         methods.
1385
1386 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
1387
1388         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
1389         constraints. Fixes regression in gtest-253.
1390
1391 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
1392
1393         * verify.c (mono_verifier_verify_class): Don't allow generic types
1394         with explicit layout.
1395
1396         * verify.c (mono_method_verify): Check locals and argument types.
1397
1398 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
1399
1400         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
1401         wait if the thread is in StopRequested state.
1402
1403         * class.c (mono_class_from_name): Refactor the module searching code into
1404         a separate function so it can be reused in the AOT case too.
1405
1406 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
1407
1408         * verify.c (mono_type_is_valid_in_context): Improve the error message.
1409         Check both the type and it's generic type definition for loader errors.
1410         
1411         * verify.c (mono_method_is_valid_in_context): Don't generate another
1412         error when a type errors occur, this leads to the wrong exception been
1413         thrown.
1414
1415 2008-07-28  Dick Porter  <dick@ximian.com>
1416
1417         * icall-def.h
1418         * process.c
1419         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
1420         New internal calls to duplicate and close a process handle.
1421
1422 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
1423
1424         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
1425
1426 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
1427
1428         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
1429
1430 2008-07-27  Robert Jordan  <robertj@gmx.net>
1431
1432         * class.c (mono_class_init): Don't compute class.has_finalize for
1433         valuetypes. Fixes #412477.
1434
1435 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
1436
1437         * verify.c: Implement constraint equivalence checking.
1438         This is required when a generic parameter is used as
1439         argument to a constrained one.
1440
1441         Fixes #410637.
1442
1443 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
1444
1445         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1446
1447         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
1448
1449         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
1450         synch with managed object layout.
1451
1452 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
1453
1454         * verify.c (do_branch_op): Handle valuetypes and generic
1455         arguments properly.
1456
1457         * verify.c (do_cmp_op): Same.
1458
1459         Fixes #410383.
1460
1461 2008-07-24  Mark Probst  <mark.probst@gmail.com>
1462
1463         * generic-sharing.c: Fix memory leaks.
1464
1465         * class.c, class-internals.h: Make
1466         mono_class_inflate_generic_type_with_mempool() non-static.
1467
1468 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
1469
1470         * pedump.c (dump_verify_info): Dump full class name.
1471
1472 2008-07-24  Mark Probst  <mark.probst@gmail.com>
1473
1474         * generic-sharing.c: Removed some old code that didn't do anything.
1475
1476 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
1477         * profiler.c: Added runtime_initialized_event,
1478         mono_profiler_install_runtime_initialized and
1479         mono_profiler_runtime_initialized. This new hook tells the profiler
1480         when the runtime is sufficiently initialized to be able to call
1481         mono_thread_attach on the root appdomain.
1482         * profiler.h, profiler-private.h: Likewise.
1483
1484 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
1485
1486         * verify.c (do_cast): Do boxing for generic arguments as well.
1487
1488         * class.c (is_nesting_type): Drop generic instantiations before
1489         checking for nesting.
1490
1491         * class.c (can_access_instantiation): Allow access to generic
1492         arguments.
1493
1494 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
1495
1496         * verify.c (verify_class_for_overlapping_reference_fields):
1497         On some cases, the field size might be zero, guard against that.
1498         Fix the explicit layout check to work as expected.
1499
1500 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
1501
1502         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
1503         mono_thread_resume () during shutdown, since the thread we want to abort
1504         might be suspended.
1505
1506 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
1507
1508         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
1509         warning.
1510
1511         * debug-mono-symfile.c: Fix a warning.
1512
1513         * mono-perfcounters.c (get_cpu_times): Fix a warning.
1514
1515         * object.c (mono_class_vtable): Check if exception_type is set, and return
1516         NULL as defined by the function comments.
1517
1518 2008-07-22  Mark Probst  <mark.probst@gmail.com>
1519
1520         * mempool.c: Use malloc for every single mempool allocation if the
1521         configure option is set.  This makes it easier to track mempool
1522         allocations with tools like Valgrind.
1523
1524 2008-07-22  Jb Evain  <jbevain@novell.com>
1525
1526         * reflection.c (create_dynamic_mono_image): emit the same
1527         metadata version that SL2 does when creating a SL2 image.
1528
1529 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
1530
1531         * icall-def.h:
1532         * icall.c: New icall System.Enum:get_hashcode. This function
1533         avoids the overhead of boxing the enum to the underlying type.
1534
1535 2008-07-21  Mark Probst  <mark.probst@gmail.com>
1536
1537         * reflection.c (mono_method_get_object): Don't let static RGCTX
1538         invoke wrappers get into MonoReflectionMethods.
1539
1540 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
1541
1542         * object-internals.h:
1543         * object.c: New mono_runtime_class_init_full function
1544         that makes throwing the exception optinal.
1545
1546         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
1547         for the case where the exception object is supplied.
1548
1549 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
1550
1551         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
1552         old ld versions.
1553
1554         Contributed under MIT/X11 license.
1555
1556 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
1557
1558         * string-icalls.c (ves_icall_System_String_InternalSplit):
1559         Optimize array allocation by caching the MonoClass of the
1560         array type.
1561
1562         * icall.c (ves_icall_Type_GetMethodsByName): Same.
1563
1564         * reflection.c (mono_param_get_objects): Same.
1565
1566 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
1567
1568         * icall-def.h:
1569         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
1570         It inflates the given type using the class context.
1571
1572 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
1573
1574         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
1575         the vtable if it already exists.
1576
1577         * object-internals.h: Add mono_class_try_get_vtable as part of the
1578         internal API.
1579
1580         * reflection.c (mono_type_get_object): Use the MonoObject from the
1581         vtable when possible. Reduces locking contention on reflection heavy
1582         code.
1583
1584 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
1585
1586         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
1587         g_bit_nth_msf () since that macro is not implemented in eglib.
1588
1589 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
1590
1591         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
1592         on platforms which do not support it.
1593
1594 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
1595
1596         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
1597
1598 2008-07-11  Martin Baulig  <martin@ximian.com>
1599
1600         * mono-debug-debugger.h
1601         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
1602
1603         * mono-debug-debugger.c
1604         (_mono_debugger_interruption_request): New global volatile variable.
1605         (mono_debugger_check_interruption): New public function.
1606
1607         * threads.c
1608         (mono_thread_current_check_pending_interrupt): Call
1609         mono_debugger_check_interruption().
1610         (mono_thread_interruption_checkpoint_request): Likewise.
1611
1612 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1613
1614         * verify.c: Add more type checks for loaded types. Verify the result
1615         handle from ldtoken.
1616
1617 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1618
1619         * loader.c (field_from_memberref): Don't crash if the field
1620         wasn't found.
1621
1622 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1623
1624         * verify.c: Verify if type and method instantiations
1625         don't have invalid VAR or MVAR arguments.
1626
1627 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1628
1629         * verify.c: Fix double free of function pointer list.
1630
1631 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1632
1633         * object.c (mono_string_to_utf8): Comment the new code as it
1634         breaks under eglib.
1635
1636 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
1637
1638         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
1639
1640 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
1641
1642         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
1643           is not throw too many times.
1644
1645         Code is contributed under MIT/X11 license.
1646
1647 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
1648
1649         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
1650         debugging is turned off.
1651
1652 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
1653
1654         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
1655
1656 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1657
1658         * class-internals.h, class.c: Added new generic sharing option:
1659         Share only stuff in System.Collections.Generic, which is now the
1660         default.
1661
1662 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1663
1664         * generic-sharing.c, class-internals.h: New function for getting a
1665         generic method in a generic class given the corresponding method
1666         for a different instantiation of the class.  Partly refactored
1667         from mini-trampolines.c.
1668
1669         * class.c: Make sure generic methods have a class_inst if they are
1670         part of a generic class.
1671
1672         * metadata.c (mono_type_stack_size_internal): Handle type
1673         variables.
1674
1675 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1676
1677         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
1678         Signifies whether information on the this/vtable/mrgctx variable
1679         is available.
1680
1681 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1682
1683         * object.c, object-internals.h, icall.c: New function
1684         mono_delegate_ctor_with_method(), which does the same as
1685         mono_delegate_ctor(), but takes an explicit method argument
1686         instead of taking the method from the jit info.
1687
1688         * marshal.c: When creating a delegate with an inflated method take
1689         the "this" argument as the target class for the castclass.
1690
1691 2008-07-03  Mark Probst  <mark.probst@gmail.com>
1692
1693         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
1694         mono_jit_info_table_find() to perform very badly in some cases.
1695
1696 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
1697
1698         * icall.c (type_from_typename): Handle 'string'.
1699
1700         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
1701         wrappers into the wrapper_hash, since the key is not a MonoMethod.
1702
1703 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
1704
1705         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
1706
1707         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
1708         number of available managed allocator types.
1709
1710         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
1711         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
1712
1713 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
1714
1715         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
1716         which is a low level lock protecting just the 'jit_code_hash' hash table.
1717
1718         * domain.c: Initialize+cleanup jit_code_hash_lock.
1719         
1720 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
1721
1722         * coree.c (mono_load_coree): Set coree_module_handle global variable only
1723         after initialization.
1724
1725         * coree.h: Make MonoFixupExe internal.
1726
1727         Contributed under MIT/X11 license.
1728
1729 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
1730
1731         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
1732         because that is platform independent. Check NumberOfRvaAndSizes in PE32
1733         as well.
1734         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
1735         image being loaded is a CLI image and _CorValidateImage gets called.
1736
1737         * coree.h: Add MonoLoadImage.
1738
1739         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
1740         instead of LoadLibrary.
1741
1742         Contributed under MIT/X11 license.
1743
1744 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
1745
1746         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
1747         for any primitive type.
1748
1749 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
1750
1751         * object.c (mono_array_new_specific): Optimize this and the other allocation
1752         functions a bit.
1753         
1754         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
1755         domains too if mono_dont_free_domains is set.
1756
1757         * domain-internals.h (mono_dont_free_domains): New internal option controlling
1758         whenever to free appdomain data after it has been unloaded.
1759
1760         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
1761         
1762 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
1763
1764         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
1765         (mono_method_get_equivalent_method): Fix a warning.
1766
1767         * object.c (mono_message_init): Avoid looking up array types for each call.
1768
1769 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
1770
1771         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
1772         call.
1773
1774         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
1775         even more.
1776
1777         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
1778         each iteration.
1779
1780         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
1781         fields of an enum.
1782
1783 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
1784
1785         * object.c (mono_value_box): Fix boxing of nullables.
1786
1787 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
1788
1789         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
1790         mono_module_handle that is defined by the linker; no initialization required.
1791         * coree.h: Remove mono_module_handle, add __ImageBase, update
1792         mono_image_open_from_module_handle.
1793         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
1794         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
1795         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
1796         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
1797         to 4 GB away from image base address. IA64 version is not tested but was very
1798         easy to implement and should work if we ever need it.
1799         * domain.c (mono_init_internal): Avoid system error message boxes.
1800         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
1801         with has_entry_point. Handle do_mono_image_load fauilre correctly.
1802         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
1803         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
1804         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
1805
1806         Contributed under MIT/X11 license.
1807
1808 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1809
1810         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
1811         as part of the private mono API.
1812         
1813         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
1814         Do proper argument checking for methods that belong to generic classes.
1815         Do proper type resolution for GMFH/2.
1816         Fixes #377324.
1817         
1818 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1819
1820         * verify.c (do_switch): Fix a memory corruption bug with
1821         the jump index is out of bound.
1822
1823 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1824
1825         * verify.c: Disable debug code.
1826
1827 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1828
1829         * reflection.c (mono_image_get_methodbuilder_token): Use
1830         mono_image_get_methodspec_token_for_generic_method_definition
1831         instead of mono_image_get_memberref_token. We cache more memberef
1832         entries now.
1833
1834 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1835
1836         * verify.c: Inflate exception clause types.
1837         Fixes #402606.
1838         
1839 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1840
1841         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
1842         name.
1843
1844         * reflection.c (mono_image_get_ctorbuilder_token): Same.
1845
1846         * reflection.c (mono_image_create_method_token): Same.
1847
1848 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1849
1850         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
1851         It does the same as mono_image_get_methodref_token but works on
1852         MethodBuilder.
1853
1854         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
1855         and always generate a methodspec. This follows the old behavior and fixes
1856         the regressions in System.Core. 
1857
1858 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
1859
1860         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
1861         don't event mono_class_get () succeeds. Fixes #402182.
1862
1863 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
1864
1865         * metadata-internals.h: Added MonoDynamicImage::methodspec
1866         hashtable to store methodspec tokens created for MethodBuilders.
1867
1868         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
1869         MethodBuilders as open instantiations if a methodspec was requested.
1870
1871         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
1872
1873         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
1874
1875         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
1876
1877         Fixes bug #349190.
1878
1879 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
1880
1881         * loader.c (method_from_methodspec): Avoid crashing if the
1882         method lookup fails.
1883
1884 2008-06-20  Dick Porter  <dick@ximian.com>
1885
1886         * socket-io.c (get_socket_assembly): Cope with Moonlight network
1887         classes being in a different assembly.  Fixes bug 399184.
1888
1889 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
1890
1891         * loader.c (mono_loader_init): Make this callable multiple times.
1892         (mono_dllmap_insert): Call mono_loader_init () so this works even before
1893         the runtime is initialized. Fixes #401755.
1894
1895 2008-06-19  Dick Porter  <dick@ximian.com>
1896
1897         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
1898         Fixes bug 349688.
1899
1900 2008-06-19  Dick Porter  <dick@ximian.com>
1901
1902         * socket-io.c:
1903         * icall-def.h: Implement Socket generic Send() and Receive()
1904         methods.  Fixes bug 395168.
1905
1906 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
1907
1908         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
1909
1910         Contributed under MIT/X11 license.
1911
1912 2008-06-18  Martin Baulig  <martin@ximian.com>
1913
1914         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
1915         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
1916         set to 80.0.  The debugger <-> runtime interface is now frozen as
1917         well.   
1918
1919         * mono-debug.c
1920         (mono_debug_debugger_version): Bump to 4.
1921
1922 2008-06-18  Martin Baulig  <martin@ximian.com>
1923
1924         * debug-mono-symfile.c
1925         (load_symfile): Don't check the minor version.
1926
1927         * debug-mono-symfile.h: Bump the version number to 50.0.
1928
1929 2008-06-18  Martin Baulig  <martin@ximian.com>
1930
1931         * debug-mono-symfile.c
1932         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
1933         minimum required version.
1934
1935 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
1936
1937         * reflection.c (mono_custom_attrs_from_property): Fix support for
1938         retriveving cattrs of dynamic inflated generic types.
1939
1940         * reflection.c (mono_custom_attrs_from_event): Same.
1941
1942         * reflection.c (mono_custom_attrs_from_field): Same;
1943
1944         * reflection.c (typebuilder_setup_events): Same cattrs of events.
1945
1946         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
1947         Moved to metadata.c.
1948
1949         * metadata.c: New functions to retrive the equivalent field, event
1950         of property from the generic type definition.
1951
1952         * metadata-internals.h: Added new functions from metadata.c.
1953
1954 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
1955
1956         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
1957         to cached in a mempool is used.
1958
1959         * metadata.c (free_generic_class): In some situations field generic_info type
1960         is not properly dup'ed and leads to double free'ing.
1961
1962         Fixes #400643.
1963
1964 2008-06-17  Mark Probst  <mark.probst@gmail.com>
1965
1966         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
1967         this arguments (will be needed later for generic methods).
1968         Collect stats.
1969
1970 2008-06-17  Mark Probst  <mark.probst@gmail.com>
1971
1972         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
1973         Create a static RGCTX invoke wrapper for methods which require it.
1974
1975 2008-06-17  Mark Probst  <mark.probst@gmail.com>
1976
1977         * object.c, class-internals.h: New function for checking whether
1978         an individual field is special static.
1979
1980 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
1981
1982         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
1983         linear search since the table is sorted.
1984
1985         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
1986         Fixes #324180.
1987
1988 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
1989
1990         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
1991         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
1992
1993         * gc.c (mono_domain_finalize): Allow an infinite timeout.
1994
1995         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
1996         
1997         * threads.c (mono_thread_request_interruption): Get rid of locking, use
1998         InterlockedCompareExchange to query and modify 
1999         thread->interruption_requested.
2000
2001         * object-internals.h (struct _MonoThread): Change interruption_requested
2002         to a gint32 so it can be modified by atomic operations. Add 
2003         'critical_region_level' from the managed side, change small_id to a guint32,
2004         add new set of 'unused' fields.
2005
2006         * appdomain.c: Bump corlib version.
2007
2008 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
2009
2010         * class.c (mono_class_from_name): Search modules as well. Fixes
2011         #322332.
2012
2013 2008-06-13  Mark Probst  <mark.probst@gmail.com>
2014
2015         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
2016         templates.  Templates are generalized with an additional type_argc
2017         argument.  RGCTX templates have type_argc==0, MRGCTX templates
2018         have type_argc>0.
2019
2020         * domain-internals.h, domain.c: New hash table for looking up
2021         MRGCTXs.
2022
2023         * metadata.c, metadata-internals.h: Rename hash and equal
2024         functions for MonoGenericInst's and make them public.
2025
2026         * class-internals.h: New data structures for the MRGCTX.  Macros
2027         for distinguishing slots in the RGCTX and the MRGCTX.
2028
2029 2008-06-13  Mark Probst  <mark.probst@gmail.com>
2030
2031         * object.c (mono_method_get_imt_slot): Put the same methods of
2032         different instantiations of the same generic interface in the same
2033         IMT slots, to make generic sharing simpler.
2034
2035 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2036
2037         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
2038
2039         * metadata.c (mono_metadata_field_info_with_mempool): Added.
2040         This function works just like mono_metadata_field_info, but
2041         accept a mempool as argument to be used allocating memory.
2042
2043         * marshal.c (mono_marshal_load_type_info): Use new function
2044         to load marshal data into image mempool.
2045
2046 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2047
2048         * class.c (mono_class_inflate_generic_type_with_mempool):
2049         This function allows to inflate a generic type using
2050         a mempool.
2051
2052         * class.c (inflate_generic_type): Take a mempool as argument
2053         and use it to do type dup'ing.
2054
2055         * class.c (mono_class_setup_fields): Field type for generic
2056         generic classes are allocated from the image mempool.
2057
2058         * metadata.c (free_generic_class): Inflated field type is
2059         now allocated in the image mempool.
2060
2061 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2062
2063         * threads.c (thread_cleanup): Free MonoThread::name.
2064
2065 2008-06-12  Marek Habersack  <mhabersack@novell.com>
2066
2067         * appdomain.c (ensure_directory_exists): avoid unnecessary
2068         mkdir(2) calls when the shadow directory already exists.
2069         (mono_make_shadow_copy): copy also satellite assemblies from the
2070         private bin directories.
2071
2072 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
2073
2074         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
2075         
2076         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
2077         a page boundary. Fixes #396219.
2078
2079 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2080
2081         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
2082         due to double-checked locking.
2083
2084 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2085
2086         * assembly.c (build_assembly_name): Release memory on failure.
2087
2088         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
2089
2090 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2091
2092         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
2093         memory on failure.
2094
2095 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2096
2097         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
2098         memory on failure.
2099
2100 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2101
2102         * loader.c (field_from_memberref): Check if field signature type is equal
2103         to the non-inflated type of the field. Fixes #398980.
2104
2105 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
2106
2107         * assembly.c (mono_assembly_load_from_full): Call 
2108         mono_assembly_load_friends () outside the assemblies lock, since it can
2109         acquire the loader lock. Fixes #323696.
2110
2111         * reflection.c (resolve_object): Inflate the inst with the context for
2112         FieldOnTypeBuilderInst. Fixes #399010.
2113
2114 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2115
2116         * reflection.c (mono_image_get_field_on_inst_token): Don't
2117         inflate the field to encode it's signature. If it's a
2118         VAR or MVAR it should stay that way in the signature.
2119         Fixes #399047.
2120
2121 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2122
2123         * reflection.c (resolve_object): Release memory of inflated types.
2124
2125 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2126
2127         * loader.c (mono_method_get_signature_full): Remove assert about
2128         loading a methodspec to a generic method. We have such methods, such as
2129         System.Threading.Interlocked::CompareExchange<T>.
2130         This assert was removed since it crashes the verifier when it checks
2131         methods calling CompareExchange<T>.
2132
2133 2008-06-10  Marek Safar  <marek.safar@gmail.com>
2134
2135         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
2136         of Type array and not MonoType.
2137
2138 2008-06-10  Marek Habersack  <mhabersack@novell.com>
2139
2140         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
2141         <lupus@ximian.com>
2142
2143 2008-06-10  Martin Baulig  <martin@ximian.com>
2144
2145         * debug-mono-symfile.h
2146         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
2147         changes to the file format, but we were generating incorrect
2148         source file indices in the line number table due to a bug, which
2149         made backtraces report an incorrect source file.
2150
2151 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2152
2153         * mono-debug.c: Moved mono_debug_free_method_jit_info from
2154         mini/debug-mini.c to here.
2155
2156         * mono-debug.c (il_offset_from_address): Free memory from find_method.
2157
2158         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
2159         use it to release structs returned by mono_debug_find_method.
2160
2161 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
2162
2163         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
2164         since it needs to set method->slot for all interface methods.
2165
2166 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2167
2168         * class-internals.h: Forgot to add.
2169
2170 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2171
2172         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
2173
2174         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
2175         Lookup the custom attributes from property_hash.
2176
2177         * reflection.c (mono_save_custom_attrs): Save the custom attributes
2178         in property_hash. Allocate all data using the image mempool.
2179
2180         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
2181         for dynamic_custom_attrs to checks if the image is dynamic.
2182
2183 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
2184
2185         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
2186         assemblies array.
2187         
2188         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
2189         runtime functions while holding the domain assemblies lock.
2190
2191 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2192
2193         * verify.c: Reapplied the last bit of the reverted changes.
2194
2195 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2196
2197         * verify.c: Reapplied more of the reverted changes.
2198
2199 2008-06-09  Martin Baulig  <martin@ximian.com>
2200
2201         * debug-mono-symfile.c (load_symfile): Check the major version
2202         first; if it's wrong, don't print the minor version in the error message.
2203
2204 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
2205
2206         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
2207         lock instead of the domain lock to avoid deadlocks, since the thread might
2208         already hold the loader lock.
2209
2210         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
2211         (mono_thread_attach): Ditto.
2212
2213         * monitor.c: Use a TLS variable for holding the current thread id instead
2214         of calling pthread_self ().
2215         (mono_monitor_init_tls): New internal function to initialize the TLS
2216         variable.
2217         (mono_monitor_try_enter_internal): Put the owner == id check after the
2218         owner == 0 check.
2219
2220         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
2221         missed optimizations when using gcc-4.3.
2222
2223 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
2224
2225         * reflection.c (mono_dynamic_image_free): Free the memory
2226         used by MonoGenericParam in MonoDynamicImage::gen_param.
2227
2228         * reflection.c (mono_reflection_setup_generic_class): Allocate
2229         container from mempool.
2230
2231         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
2232         container from mempool.
2233
2234 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
2235
2236         * threads.c (mono_set_pending_exception): New internal function to set the
2237         pending exception of the current thread.
2238         (mono_thread_get_and_clear_pending_exception): Check for 
2239         thread->pending_exception as well.
2240
2241         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
2242
2243         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
2244         it can trigger a collection.
2245
2246 2008-06-06  Martin Baulig  <martin@ximian.com>
2247
2248         Merged the `debugger-kahalo' branch.
2249
2250         * mono-debug.h
2251         (MONO_DEBUGGER_VERSION): Bumped to 72.
2252
2253         * debug-mono-symfile.h
2254         (MonoSymbolFileMethodIndexEntry): Removed.
2255         (MonoSymbolFileMethodEntry): New public typedef.
2256         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
2257         (MonoSymbolFileSourceEntry): Remove everything except `index' and
2258         `data_offset'.
2259         (MonoSymbolFileMethodEntry): Removed.
2260         (MonoSymbolFileLexicalBlockEntry): Removed.
2261         (MonoSymbolFileLineNumberEntry): Removed.
2262         (MonoDebugLexicalBlockEntry): Removed.
2263         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
2264         removed `num_il_offsets' and `il_offsets'.
2265         (MonoSymbolFile): Replace `version' with `major_version' and
2266         `minor_version'.
2267         (MONO_SYMBOL_FILE_VERSION): Replace with
2268         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
2269         `MONO_SYMBOL_FILE_MINOR_VERSION'.
2270
2271         * debug-mono-symfile.c
2272         (mono_debug_symfile_lookup_location): Add support for the new line
2273         number table format.
2274
2275 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2276
2277         * metadata.c (free_generic_class): Release the inflated
2278         MonoClass of dynamic generic classes if it's not a generic
2279         type definition.
2280
2281 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2282
2283         * verify.c: Reapplied more of the reverted changes.
2284
2285 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2286
2287         * reflection.c (lookup_custom_attr): Clean the cached flag or
2288         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
2289         for SRE types.
2290
2291 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2292
2293         * verify.c: Reapplied a small part of the reverted changes.
2294
2295 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
2296
2297         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2298
2299         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
2300         previously in managed code.
2301         (mono_monitor_exit): Ditto.
2302         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
2303
2304         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
2305         the managed definition.
2306
2307 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
2308
2309         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
2310
2311 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
2312
2313         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
2314         
2315         * monitor.c: Add some micro optimizations.
2316
2317         * icall.c (type_from_typename): Handle 'bool'.
2318
2319 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
2320
2321         * verify.c: Implement constructor verification per P III 1.8.1.4.
2322         Fixes #396716.
2323
2324 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
2325
2326         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
2327         holding the assemblies lock here too.
2328
2329 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2330
2331         * verify.c: Kill stack_top function.
2332
2333 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2334
2335         * verify.c: Kill stack_get function.
2336
2337 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2338
2339         * verify.c (mono_method_verify): Last change broke the build. Fixed.
2340
2341 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2342
2343         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
2344         more reliable.
2345
2346         * verify.c (mono_method_verify): Inflate params and locals to avoid
2347         mismatch when checking for compatibility.
2348
2349 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
2350
2351         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
2352         Length prefix should be size in bytes. Fix bug #339530.
2353         
2354         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
2355         Length prefix should be size in bytes. Fix bug #339530.
2356
2357         Code is contributed under MIT/X11 license.
2358
2359 2008-06-05  Bill Holmes <billholmes54@gmail.com>
2360
2361         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
2362
2363         Contributed under MIT/X11 license.
2364
2365 2008-06-05  Martin Baulig  <martin@ximian.com>
2366
2367         * mono-debug-debugger.c
2368         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
2369
2370 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
2371
2372         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
2373         while holding the assemblies lock to prevent deadlocks. Handle the case
2374         where the search hook returns NULL but the assembly was still loaded.
2375         Fixes #323696.
2376
2377         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
2378         modify domain state.
2379
2380 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
2381
2382         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
2383         * Makefile.am (pedump_LDADD): Post-process object files and
2384         add dtrace-generated object file, if necessary.
2385
2386         Code is contributed under MIT/X11 license.
2387
2388 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2389
2390         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
2391
2392 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2393
2394         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
2395
2396 2008-06-04  Mark Probst  <mark.probst@gmail.com>
2397
2398         * threads.c: Try to free everything from the delayed free table
2399         when shutting down threads, and set the variable to NULL after the
2400         table is freed so that calling
2401         mono_thread_hazardous_try_free_all() when shutting down the root
2402         domain doesn't crash.
2403
2404 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2405
2406         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
2407         the caller if resulting type was inflated.
2408
2409         * class.c (mono_class_create_from_typespec): Free the MonoType if it
2410         was inflated.
2411
2412         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
2413
2414
2415 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
2416
2417         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
2418         class library tests.
2419
2420         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
2421         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
2422         #396989.
2423
2424 2008-06-04  Mark Probst  <mark.probst@gmail.com>
2425
2426         * domain.c, domain-internals.h: The JIT infos are now freed by the
2427         JIT info table code.  They are freed immediately if there only a
2428         single JIT info table in circulation.  If there is more, the free
2429         is delayed via a queue.
2430
2431         * threads.c, threads-types.h: New hazard pointer function for
2432         freeing all freeable delayed items in one sitting.
2433
2434 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2435
2436         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
2437
2438         * reflection.c (typebuilder_setup_properties): Same.
2439
2440         * reflection.c (typebuilder_setup_events): Same.
2441
2442 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2443
2444         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
2445         and use it for allocating memory.
2446
2447         * reflection.c (mono_marshal_spec_from_builder): Same.
2448
2449         * reflection.c: Change code to use new signatures.
2450
2451         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
2452
2453 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
2454
2455         * decimal.c (rescale128): Put back one line which was accidently commented
2456         out.
2457         
2458         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
2459         to cause crashes.
2460
2461 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2462
2463         * reflection.c (mono_reflection_generic_class_initialize): Name must
2464         be always malloc'ed so we can free it later on. Do this for field, property
2465         and event.
2466
2467         * metadata.c (free_generic_class): Free field, property and event names.
2468
2469 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2470
2471         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
2472         instead of g_memdup.
2473
2474         * reflection.c (typebuilder_setup_fields): Same.
2475
2476 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
2477
2478         * decimal.c (rescale128): Optimize this function a bit more.
2479
2480 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2481
2482         * metadata.c (free_generic_class): Release some memory from
2483         SRE generic classes.
2484
2485 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2486
2487         * reflection.c (mono_image_get_generic_field_token): No reference
2488         to name is kept, free it.
2489
2490         * reflection.c (mono_reflection_generic_class_initialize): Free
2491         more memory of the inflated field.
2492
2493 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
2494
2495         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
2496         code.
2497
2498 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
2499
2500         * reflection.c (mono_dynamic_image_free): Release memory used by
2501         MonoDynamicImage::array_methods elements.
2502
2503         * reflection.c (assembly_add_win32_resources): Release memory after
2504         encoding.
2505
2506 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
2507
2508         * decimal.c (log2_32): Use an optimized version for this function too.
2509         
2510         * decimal.c (log2_64): Fix this on 32 bit machines.
2511
2512 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
2513
2514         * class.c (mono_dup_array_type): Implement allocation using a mempool.
2515
2516         * class.c (mono_metadata_signature_deep_dup): Same.
2517
2518         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
2519         a mempool.
2520
2521         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
2522
2523         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
2524
2525         * metadata-internals.h: Added mono_metadata_signature_dup_full.
2526
2527         * class-internals.h: Update signatures to take a MonoMemPool.
2528
2529 2008-06-02  Dick Porter  <dick@ximian.com>
2530
2531         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
2532         * icall-def.h: Add
2533         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
2534         FormatMessage API to get the error text.  Fixes bug 321827.
2535
2536 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
2537
2538         * decimal.c: Add some micro optimizations to make decimal operations faster.
2539
2540 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2541
2542         * reflection.c (method_encode_clauses): Take a mempool
2543         as parameter and use it to allocate the clause array.
2544
2545         * reflection.c (mono_image_get_field_on_inst_token): Free
2546         the inflated type after encoding it.
2547
2548         * reflection.c (mono_dynamic_image_free): Free each element
2549         of MonoDynamicImage::gen_params.
2550
2551         * reflection.c (reflection_methodbuilder_to_mono_method):
2552         Allocate the generic param array from the mempool.
2553         Allocate signature params from the mempool.
2554
2555         * reflection.c (mono_reflection_generic_class_initialize):
2556         Free inflated fields after been used.
2557
2558 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
2559
2560         * icall.c: Reapply the memory leak fixes as they no
2561         longer make mono crash.
2562
2563 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
2564
2565         * reflection.c (mono_type_get_object): Don't store the suplied
2566         MonoType with type_hash. A caller which pass a type that
2567         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
2568         might end with a pointer to freed memory.
2569         The solution is to use byval_arg or this_arg from the associated
2570         MonoClass of the supplied type.
2571
2572 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
2573
2574         * icall.c: Revert the rest of the last change as it breaks the build too.
2575
2576 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2577
2578         * icall.c: Revert a leak fix as it's breaking the build.
2579
2580 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2581
2582         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
2583
2584 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2585
2586         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
2587
2588 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2589
2590         * icall.c: Fix some memory leaks.
2591
2592 2008-05-29  Dick Porter  <dick@ximian.com>
2593
2594         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
2595         async socket operations from the pending list when a socket
2596         closes.  Leaving it until the threadpool services the event
2597         exposes a race condition when a socket descriptor is reused.
2598         Fixes bug 377589.
2599
2600 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2601
2602         * object.c: Fix negative index check for array alocation.
2603
2604 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2605
2606         * icall.c, marshal.c: Delegate wrappers should skip visibility.
2607         This check is performed by the verifier for IL created delegates
2608         and by Delegate::CreateDelegate for programatically created ones.
2609         Fixes #372406.
2610
2611 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2612
2613         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
2614         Fix code to use mono_array_size_t instead of int.
2615
2616         Based on patch by Luis F. Ortiz.
2617         Contributed under X11 license.
2618         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2619
2620 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2621
2622         * icall.c: Added ves_icall_System_Array_GetLongLength and
2623         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
2624         arrays.
2625
2626         * icall.h: Export both new functions.
2627
2628         Based on patch by Luis F. Ortiz.
2629         Contributed under X11 license.
2630         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2631
2632 2008-05-28  Martin Baulig  <martin@ximian.com>
2633
2634         The debugger now requires exactly r103463.
2635
2636         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
2637         This version is not supported by the debugger, wait for 72.
2638
2639 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2640
2641         * object.h: Changed array related functions to use
2642         mono_array_size_t instead of guint32. Forgot to commit this file.
2643
2644         Patch by Luis F. Ortiz.
2645         Contributed under X11 license.
2646         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2647
2648
2649 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2650
2651         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
2652         don't define it. Use the number literal instead.
2653
2654 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2655
2656         * icall.c: Changed array related functions to use
2657         mono_array_size_t instead of guint32.
2658
2659         * icall.c (ves_icall_System_Array_GetLength): Check for length
2660         overflow under MONO_BIG_ARRAYS.
2661
2662         Based on patch by Luis F. Ortiz.
2663         Contributed under X11 license.
2664         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2665
2666 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2667
2668         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
2669
2670         Based on patch by Luis F. Ortiz.
2671         Contributed under X11 license.
2672         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2673
2674 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2675
2676         * object.c, object.h: Changed array related functions to use
2677         mono_array_size_t instead of guint32.
2678
2679         Patch by Luis F. Ortiz.
2680         Contributed under X11 license.
2681         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2682
2683 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2684
2685         * object.h: Introduced mono_array_size_t typedef. This must be used
2686         in all places an array length is expected. This is 64bits wide if
2687         MONO_BIG_ARRAYS is enabled.
2688
2689         Patch by Luis F. Ortiz.
2690         Contributed under X11 license.
2691         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2692
2693 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
2694
2695         * security-manager.c class.c: Set the class exception info by calling
2696         mono_class_set_failure ().
2697
2698         * class.c (mono_class_get_exception_data): New accessor function.
2699         (mono_class_set_failure): Store exception_data in the property hash.
2700
2701         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
2702         the struct as a property.
2703
2704         * loader.c (mono_get_method_full): Store the lookup result for method
2705         tokens in method_cache, the others in methodref_cache to decrease the memory
2706         usage of hash tables.
2707
2708         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
2709         (mono_image_init): method_cache is lazy inited now.
2710
2711         * metadata-internals.h (struct _MonoImage): Change method_cache to
2712         a MonoValueHashTable, add a separate methodref_cache.
2713
2714 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
2715
2716         * number-formatter.h: Fix tables to avoid arithemtic overflow in
2717           Double.ToString as exposed by Bug #383531.
2718
2719 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
2720
2721         * number-formatter.h: Make some tables static.
2722
2723         * class.c (mono_method_set_generic_container): New accessor function.
2724         (mono_method_get_generic_container): Ditto.
2725
2726         * class-internals.h (struct _MonoMethod): Remove rarely used 
2727         'generic_container' field, store it in the property hash instead. Add 
2728         'is_generic' boolean field instead.
2729
2730         * image.c (mono_image_init): Initialize property_hash.
2731         (mono_image_close): Destroy property_hash.
2732
2733         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
2734         hold rarely used fields of runtime structures belonging to this image.
2735
2736         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
2737         to get/set method->generic_container.
2738
2739         * loader.c (mono_get_method_from_token): Avoid loading the method header for
2740         generic methods.
2741
2742 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
2743
2744         * class.c (mono_class_inflate_generic_method_full): Don't increase
2745         mono_stats.inflated_method_count for methods found in the cache.
2746
2747         * threads.c (mono_thread_request_interruption): Add a comment about 
2748         QueueUserAPC ().
2749
2750 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
2751
2752         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
2753         interface_offsets_packed table.
2754         
2755         * class.c (mono_class_init): Remove some dead code.
2756
2757         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
2758         mono_class_setup_vtable () when CAS is active to detect security problems.
2759
2760 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
2761
2762         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
2763
2764         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
2765         parameters as it's irrelevant for delegate checking.
2766
2767 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
2768
2769         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
2770
2771         * class.c (mono_class_init): Control the creation of a generic vtable using
2772         a global which is true by default, but set to false by the runtime startup code.
2773         
2774         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
2775         Disabled for now since it breaks the embedding API.
2776         Move the setup of class->methods for arrays to mono_class_setup_methods ().
2777         (mono_class_setup_methods): Add a memory barrier.
2778
2779         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
2780         when mono_class_init () doesn't compute the generic vtable.
2781         
2782 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
2783         * profiler.c: Added mono_profiler_install_statistical_call_chain,
2784         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
2785         to support call chains (backtrace) in the stat profiler.
2786         * profiler.c, profiler-private.h: Likewise.
2787
2788 2008-05-22  Mark Probst  <mark.probst@gmail.com>
2789
2790         * generic-sharing.c: Init generic class when a method of it is
2791         requested via a runtime generic context.
2792
2793 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
2794
2795         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
2796
2797         * reflection.c (mono_type_get_object): Add a FIXME.
2798
2799         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
2800
2801         * class.c (mono_class_get_method_by_index): New helper function, returning an
2802         entry in the class->methods array.
2803
2804 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
2805
2806         * class.c (mono_class_init): Only do the array optimization for szarrays. 
2807         Avoid creating a generic vtable for generic instances as well.
2808         (mono_class_get_method_from_name_flags): Don't search in the metadata for
2809         generic instances.
2810
2811 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
2812
2813         * loader.c (mono_get_method_constrained): Inflate the signature
2814         with class context. Fix #325283.
2815
2816 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
2817
2818         * object.c (mono_class_create_runtime_vtable): Add a comment.
2819
2820         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
2821         where needed.
2822         (setup_interface_offsets): Handle the case when this is called twice for arrays.
2823         (mono_class_setup_vtable_general): Add an assert.
2824         (mono_class_init): Avoid creating a generic vtable for arrays.
2825
2826         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
2827         here, let mono_class_init () do that.
2828
2829         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
2830         interfaces in mscorlib.
2831
2832         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
2833         interfaces. Add some comments.
2834         (mono_class_init): Call mono_class_setup_methods () here since it is no
2835         longer called by mono_class_setup_vtable ().
2836
2837         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
2838         not set in class->vtable.
2839         (mono_class_create_runtime_vtable): Reenable the disabled code.
2840
2841         * object.c (mono_class_create_runtime_vtable): Disable the last change for
2842         now as it causes some test failures.
2843
2844         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
2845         if using the vtable trampoline. Also remove some strange code which put the
2846         generic methods themselves into the vtable slots. Remove the AOT init_vtable
2847         stuff as it is no longer needed.
2848
2849 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2850
2851         * pedump.c: Give make --verify all option check code as well.
2852         Using --verify code won't check for metadata now.
2853
2854 2008-05-19  Martin Baulig  <martin@ximian.com>
2855
2856         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
2857
2858         * mono-debug.c
2859         (_mono_debug_using_mono_debugger): New global variable; it's set
2860         directly by the debugger, so mono_debug_using_mono_debugger() also
2861         works after attaching.
2862
2863 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
2864
2865         * object.c (mono_class_create_runtime_vtable): Use memory barriers
2866         as we do double checked locking on MonoClass::runtime_info and
2867         MonoClassRuntimeInfo::domain_vtables.
2868
2869 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
2870
2871         * debug-helpers.c (print_field_value): Fix a warning.
2872
2873 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
2874
2875         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
2876         set in the AOT case.
2877
2878 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
2879
2880         * class.c (mono_class_setup_vtable_general): Use memory barriers
2881         as we do double checked locking on MonoClass::vtable.
2882
2883 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
2884
2885         * reflection.c (resolve_object): Inflate only if the generic context
2886         is not null. Fixes #389886.
2887
2888 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
2889
2890         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
2891         instead of g_free.
2892
2893         Code is contributed under MIT/X11 license.
2894
2895 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
2896
2897         * class.c: Revert unrelated change.
2898
2899 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
2900
2901         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
2902         a generic instantiation, use mono_class_from_mono_type instead of playing
2903         with MonoType directly.
2904
2905 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
2906
2907         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
2908         checks must ignore generic instantiations, so mono_class_has_parent is not
2909         suitable. Fixes #390128.
2910
2911 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
2912
2913         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
2914         it to avoid registering tokens during metadata generation. Fixes #390023.
2915
2916 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
2917
2918         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
2919         consistent.
2920
2921         Contributed under MIT/X11 license.
2922
2923 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
2924
2925         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
2926         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
2927         to fixup the EXE image.
2928         (mono_cleanup): Use mono_close_exe_image.
2929         (mono_close_exe_image): New function.
2930         * image.c: Include "marshal.h".
2931         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
2932         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
2933         counting when the image is loaded outside of mono_image_open_full. Set status
2934         based on GetLastError.
2935         * coree.c: Include required headers. Add init_from_coree.
2936         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
2937         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
2938         (_CorExeMain): Set init_from_coree.
2939         (CorExitProcess): Only call ExitProcess for now.
2940         (CorBindToRuntimeEx): New stub implementation.
2941         (CorBindToRuntime): New function.
2942         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
2943         (MonoFixupExe): ILONLY executables require no fixups.
2944         (mono_set_act_ctx): New function to set activation context.
2945         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
2946         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
2947         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
2948         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
2949         as MONO_INTERNAL.
2950         * domain-internals.h: Add mono_close_exe_image.
2951
2952         Contributed under MIT/X11 license.
2953
2954 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
2955
2956         * metadata.c (mono_metadata_compute_size): Correctly calculate field
2957         size for generic param and event tables. Fixes #388977.
2958
2959 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
2960
2961         * loader.c (mono_method_signature): Use memory barriers because of the double
2962         checked locking pattern.
2963
2964         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
2965         aborting or aborted as well. Fixes #376391.
2966         
2967         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
2968         existing runtime state in the Suspend handler during shutdown.
2969
2970 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
2971
2972         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
2973
2974         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
2975         which are starting up or shutting down.
2976
2977         * threads.c (mono_threads_set_shutting_down): Don't return a value since
2978         this function never returns if the runtime is already shutting down.
2979
2980         * icall.c (ves_icall_System_Environment_Exit): Update after 
2981         mono_threads_set_shutting_down () signature change.
2982         
2983 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
2984
2985         * class.c: Added can_access_instantiation to verify if the instantiation
2986         is visible. Fix access check for nested types as they returned TRUE
2987         before doing type and generic instantiation visibility checks.
2988
2989 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
2990
2991         * reflection.c (mono_reflection_create_generic_class): The created type
2992         must have a different container from its TypeBuilder. Otherwise they
2993         will end sharing generic arguments, which is wrong.
2994
2995         Due to the sharing, making a generic instance of the created type using
2996         the TypeBuider generic arguments resulted in the generic type definition
2997         been returned, which is wrong as well.
2998
2999         As a bonus the code was leaking the type_params array. This memory should
3000         be allocated from the image mempool.
3001
3002         This fixes bug #354047.
3003
3004 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
3005
3006         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
3007         to here         as they are now used in assembly.c new code.
3008         Added a skipverification flag to MonoAssembly.
3009         New internal function mono_assembly_has_skip_verification.
3010
3011         * assembly.c: New function mono_assembly_has_skip_verification. It checks
3012         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
3013         part of #387274.
3014
3015 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
3016
3017         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
3018         needed. Fixes #387034.
3019
3020         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
3021
3022 2008-05-06  Miguel de Icaza  <miguel@novell.com>
3023
3024         * assembly.c (mono_assembly_load_reference): Prevent crash while
3025         disassembling Silverlight 2.0 executables while we still do not
3026         have GACed libraries.
3027
3028 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
3029
3030         * reflection.c: Special case generic type definitions as well. Fixes #383444.
3031
3032 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
3033
3034         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
3035         of the dynamic case. Fixes #387404.
3036
3037 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3038
3039         *verify.c (mono_verifier_is_class_full_trust): If under
3040         verify_all and the verifier mode was not set, only
3041         gac and corlib types are fulltrust. This makes --verify-all
3042         usable to detect unverifiable code, which is the expected
3043         use case.
3044
3045 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3046
3047         * verify.h: Ops, commited the header with debug
3048         enabled.
3049
3050 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3051
3052         * verify.c (merge_stack): Use the new value on unverifiable
3053         stack merges.
3054
3055         * verify.c (verify_type_compatibility_full): Comparison
3056         of nullable types can't use mono_class_is_assignable_from.
3057
3058         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
3059         that makes all verification errors be reported.
3060
3061         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
3062         mono_method_verify.
3063
3064 2008-05-05  Robert Jordan  <robertj@gmx.net>
3065
3066         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
3067         support for value types. See #386415.
3068
3069         * object.c: comments.
3070
3071         Code is contributed under MIT/X11 license.
3072
3073 2008-05-05  Martin Baulig  <martin@ximian.com>
3074
3075         * debug-mono-symfile.h
3076         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
3077         for old pre-terrania symbol files.
3078
3079 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
3080
3081         * mono-config.c: Add ppc64 architecture.
3082
3083         Code is contributed under MIT/X11 license.
3084
3085 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
3086
3087         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
3088           PPC64 uses function descriptors as well.
3089
3090         Code is contributed under MIT/X11 license.
3091
3092 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
3093
3094         * object.c (compute_class_bitmap): Ignore literal static fields.
3095
3096         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
3097         var has an invalid format.
3098         (describe_ptr): Add some sanity checks for the vtable.
3099         (add_nursery_frag): Clear unused nursery fragments.
3100         (major_collection): Clear all remaining nursery fragments.
3101
3102 2008-05-03  Robert Jordan  <robertj@gmx.net>
3103
3104         * image.c, metadata-internals.h: add thunk_invoke_cache.
3105
3106         * marshal.c, marshal.h: implement
3107         mono_marshal_get_thunk_invoke_wrapper ().
3108
3109         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
3110
3111         Code is contributed under MIT/X11 license.
3112
3113 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
3114
3115         * verify.c (do_leave): Empty the stack.
3116
3117 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
3118
3119         * class.c (mono_class_is_assignable_from): Variance
3120         doesn't work between reference and value types. For example,
3121         given type C<T+>, C<int32> is not assignable to C<object>.
3122         Break the argument checking loop on first error. 
3123
3124 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
3125
3126         * icall.c : base64_to_byte_array() needs some more strict
3127           check for sequence of '=' characters. Patch by Santa
3128           Marta (http://deee.g.hatena.ne.jp/santamarta).
3129
3130           Contributed under MIT/X11 license.
3131           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
3132
3133 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
3134
3135         * domain.c: Disable LoadLibrary support to fix Win32 build.
3136
3137         Code is contributed under MIT/X11 license.
3138
3139 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
3140
3141         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
3142         to help with cache behaviour.
3143
3144 2008-05-01  Miguel de Icaza  <miguel@novell.com>
3145
3146         * appdomain.c (mono_domain_from_appdomain): Add new accessor
3147         method. 
3148
3149 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
3150
3151         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
3152
3153 2008-05-01  Dick Porter  <dick@ximian.com>
3154
3155         * process.c (process_get_fileversion): Only pass 16 bits of
3156         language ID to VerLanguageName.  Fixes bug 381204.
3157
3158 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3159
3160         * verify.c (mono_method_verify): Fix the comparison
3161         operator for code bounds check.
3162
3163 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3164
3165         * verify.c (mono_method_verify): Check the bounds of
3166         all access of the code array.
3167
3168 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
3169
3170         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
3171
3172 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
3173
3174         * image.c (mono_image_strong_name_position): Fix return value when the rva is
3175         not valid.
3176
3177 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
3178
3179         * loader.c (mono_get_method_from_token, mono_method_signature): Add
3180         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
3181         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
3182         fixup main EXE images when using mono.exe for mixed-mode assembly support.
3183         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
3184         mono_runtime_load.
3185         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
3186         runtime initialization from metadata.
3187         * assembly.c: Remove obsolete ceGetModuleFileNameA.
3188         (mono_set_rootdir): Use mono_get_module_file_name.
3189         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
3190         handles.
3191         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
3192         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
3193         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
3194         MonoCLIImageInfo. Add support for module handles.
3195         (load_cli_header): Update mono_cli_rva_image_map signature.
3196         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
3197         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
3198         (mono_image_rva_map): Add support for module handles.
3199         (mono_image_ensure_section_idx): Add support for module handles.
3200         (mono_image_close): Add support for module handles.
3201         (do_load_header): Add support for module handles.
3202         (mono_image_open_from_module_handle): New function for internal use.
3203         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
3204         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
3205         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
3206         handles.
3207         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
3208         * image.h: Add mono_image_fixup_vtable.
3209         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
3210         support.
3211         * coree.h: New file.
3212         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
3213         unsupported native code.
3214         (mono_marshal_set_callconv_from_modopt): New function splitted from
3215         mono_marshal_get_managed_wrapper.
3216         (mono_marshal_get_managed_wrapper): Use
3217         mono_marshal_set_callconv_from_modopt.
3218         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
3219         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
3220         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
3221         that results in a deadlock when the runtime is loaded in _CorDllMain.
3222         * Makefile.am: Add coree.c and coree.h.
3223
3224         Contributed under MIT/X11 license.
3225
3226 2008-04-28  Mark Probst  <mark.probst@gmail.com>
3227
3228         * generic-sharing.c: Search for type arguments in array element
3229         types as well.
3230
3231 2008-04-28  Mark Probst  <mark.probst@gmail.com>
3232
3233         * class-internals.h, generic-sharing.c: New, small runtime generic context.
3234
3235         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
3236
3237         * object.c: Don't setup the RGCTX when the vtable is created,
3238         because we're setting it up lazily now.
3239
3240 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
3241
3242         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
3243         64 bit support.
3244
3245 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3246
3247         * verify.c (verify_class_for_overlapping_reference_fields): 
3248         If class is under fulltrust allow reference types to overllap
3249         if they have the same RVA.
3250
3251 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3252
3253         * pedump.c: Added new flag valid-only, that makes the verifier
3254         behaves just like --security=validil. It won't fail type load
3255         due to unverifiable restrictions.
3256
3257 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3258
3259         * class-internals.h (struct MonoMethod): Added a verification_success
3260         field to cache verifier executions. Reduced MonoMethod:slot size by
3261         one bit.
3262
3263 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
3264
3265         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
3266         instead of a 'vt' argument to save an indirection and to allow these to be used
3267         for valuetypes.
3268         (scan_vtype): New helper function to scan an area using a gc descriptor.
3269         (mono_gc_wbarrier_value_copy): Implement this.
3270         (handle_remset): Add support for REMSET_VTYPE.
3271         (find_in_remset_loc): Ditto.
3272         (mono_gc_base_init): Allow some debugging options to be controlled through the
3273         use of the MONO_GC_DEBUG env variable.
3274         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
3275         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
3276
3277 2008-04-23  Martin Baulig  <martin@ximian.com>
3278
3279         * domain.c (mono_domain_create): Move the call to
3280         mono_debug_domain_create() down, after allocating the domain id.
3281
3282 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3283
3284         verify.c (verify_class_for_overlapping_reference_fields): Skip
3285         static fields while verifying for overlapping fields as they
3286         don't matter at all.
3287
3288 2008-04-23  Marek Habersack  <mhabersack@novell.com>
3289
3290         * domain-internals.h: added a declaration of
3291         mono_make_shadow_copy.
3292
3293         * assembly.c (mono_assembly_open_full): shadow copying of
3294         assemblies moved to here, so that all the assemblies within the
3295         application domain's private binary directories can be
3296         processed. Fixes bug #380546
3297
3298         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
3299         mono_make_shadow_copy and made non-static. The decision whether
3300         to shadow-copy an assembly is made based on its location - it's
3301         copied if it's in one of the private application domain binary
3302         directories and its different to the target file in the shadow
3303         directory. Fixes bug #380546
3304
3305 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
3306
3307         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
3308
3309         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
3310         types.
3311
3312         * reflection.c (mono_image_create_token): Handle 
3313         Method/ConstructorOnTypeBuilderInst.
3314         (resolve_object): Ditto.
3315         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
3316         so it can be called from resolve_object. Also handle the case when the inflated
3317         class already has its methods setup.
3318
3319 2008-04-21  Martin Baulig  <martin@ximian.com>
3320
3321         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
3322
3323 2008-04-20  Geoff Norton  <gnorton@novell.com>
3324
3325         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
3326         pointer dereference.
3327
3328 2008-04-15  Marek Habersack  <mhabersack@novell.com>
3329
3330         * appdomain.c (try_load_from): if IOMAP is in effect, call the
3331         portability API to look up the assembly file. Fixes behavior in
3332         situations when the application has a bin/ directory, but the
3333         assembly search patch refers to Bin/ (and thus the requested file
3334         name is Bin/SomeLibrary.dll). Fixes bug #379888
3335
3336 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3337
3338         verify.c (mono_type_is_generic_argument): Extracted this check
3339         from a dozen places to here.
3340
3341         verify.c: Fixed all issues related to boxing generic arguments
3342         and their constraints.
3343
3344 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3345
3346         verify.c (mono_class_interface_implements_interface): Fix win32 build.
3347
3348 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
3349
3350         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
3351         isn't finished yet. Fixes #363447.
3352
3353 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
3354
3355         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
3356         Fixes #346419.
3357
3358 2008-04-13  Jb Evain  <jbevain@novell.com>
3359
3360         * domain.c: update the 2.1 profile versions.
3361         Merged from the Moonlight 2 branch.
3362
3363 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
3364
3365         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
3366         mscorlibs for the non-refonly case as well.
3367
3368         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
3369         in mono_assembly_load_from_full (). Fixes #378924.
3370
3371 2008-04-11  Geoff Norton  <gnorton@novell.com>
3372
3373         * icall.c: The global extern environ doesn't exist on Mac.  We
3374         need to call NSGetEnviron instead.
3375
3376 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3377
3378         verify.c: Add generic method constraint verification.
3379
3380 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3381
3382         class.c (mono_class_inflate_generic_method_full): Add a long
3383         explanation to the is_mb_open hack. Remove the FIXME.
3384
3385 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3386
3387         * verify.c (mono_method_verify): Mark all unknown opcodes
3388         as invalid. Mark jmp as unverifiable.
3389
3390 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3391
3392         * verify.c: Add code to do type constraint verification on class instances.
3393
3394         * verify.c (mono_verifier_verify_class): Use the type constraint 
3395         verification code.
3396
3397 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3398
3399         * class.c (mono_class_get_field_default_value): Don't pass cindex
3400         as hint to mono_metadata_get_constant_index. The local is not initialized
3401         and should contain garbage most of the time. This could only work
3402         with a lot of luck.
3403
3404 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
3405
3406         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
3407
3408 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
3409
3410         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
3411
3412         * class.c (mono_class_from_generic_parameter): Save the token of the
3413         generic param in MonoClass::sizes.generic_param_token.
3414
3415         * reflection.c (mono_custom_attrs_from_class): If the class type is
3416         VAR or MVAR retrieve the attributes of the generic param.
3417
3418 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3419
3420         * class.c (mono_class_init): Do class verification if the verifier
3421         is enabled.
3422
3423 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3424
3425         * verify-internal.h: Added mono_verifier_verify_class.
3426
3427         * verify.c: Added mono_verifier_verify_class. It checks for
3428         classes with explicit layout that have overlapping reference fields.
3429
3430         * pedump.c: Init the verifier state prior to verification. Fixed
3431         command line arguments.
3432
3433 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3434
3435         * Makefile.am: Added verify-internals.h, hopefully fix the build.
3436
3437 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
3438
3439         * verify-internals.h: Fix a warning.
3440
3441 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
3442
3443         * verify-internals.h: New header with the verifier configuration
3444         extracted from mini.c.
3445
3446         * verify.c: Implemented the new functions exported by verify-internals.h.
3447
3448 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
3449
3450         * verify.c: Add proper verification of ckfinite.
3451
3452 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
3453
3454         * verify.c (do_conversion): Improved error message to something
3455         more meanfull.
3456
3457         * verify.c (check_is_valid_type_for_field_ops): Fix to work
3458         with primitive types.
3459
3460 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
3461
3462         * verify.c: Added tail prefix checking. Marked icall
3463         as unverifible.
3464
3465 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
3466
3467         * verify.c: Fix the detection of branches to the middle
3468         of an instruction.
3469
3470 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
3471
3472         * verify.c: Implemented verification of volatile. and
3473         unaligned. prefix. Check if a type is valid after retrieving it.
3474
3475 2008-04-01  Dick Porter  <dick@ximian.com>
3476
3477         * process.c (process_get_fileversion): If there's no string block,
3478         set the file language to en_US.  Fixes the other new part of bug
3479         374600.
3480
3481 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
3482
3483         * class.c: New functions mono_method_can_access_field_full and
3484         mono_method_can_access_method_full. They perform type visibility
3485         and type site check.
3486
3487         * class-internal.h: Added exported functions.
3488
3489         * verify.c: Use new functions to implement proper visibility checks.
3490
3491 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
3492
3493         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
3494
3495 2008-03-28  Dick Porter  <dick@ximian.com>
3496
3497         * process.c (process_get_fileversion): Use the first language ID
3498         we see, rather than insisting on an invariant language.  Fixes bug
3499         374600.
3500
3501 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
3502
3503         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
3504         the streams to fix reading of invalid memory later.
3505
3506         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
3507         to ease debugging.
3508
3509 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
3510
3511         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
3512         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
3513
3514 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
3515         * threads.h: Added MonoThreadManageCallback type and
3516         mono_thread_set_manage_callback prototype
3517         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
3518         (used to store the mono_thread_manage callback).
3519         * threads.c: Added mono_thread_set_manage_callback, and handle
3520         "MonoThread->manage_callback" in build_wait_tids.
3521
3522 2008-03-26  Dick Porter  <dick@ximian.com>
3523
3524         * process.c (process_get_fileversion): Set FileVersionInfo strings
3525         to Empty when the resource doesn't have the particular info.
3526         Fixes bug 355717.
3527
3528 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
3529
3530         * verify.c (mono_method_verify): Proper prefix validation.
3531
3532 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
3533
3534         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
3535         itself in a separate argument instead of throwing them. Fixes #373448.
3536
3537         * appdomain.c: Bump corlib version.
3538
3539 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
3540
3541         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
3542
3543 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
3544
3545         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
3546         version macros.
3547
3548 2008-03-20  Mark Probst  <mark.probst@gmail.com>
3549
3550         * generic-sharing.c, class-internals.h: Code for putting
3551         reflection types into the runtime generic context.
3552
3553 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
3554
3555         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
3556         Fixes #340662. 
3557
3558
3559 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
3560
3561         * verify.c (VerifyContext): Added instruction prefix data to the struct.
3562
3563         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
3564
3565         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
3566
3567         * verify.c (do_cast): Let the result value keep the boxed status.
3568
3569         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
3570
3571 2008-03-17  Jb Evain  <jbevain@novell.com>
3572
3573         * reflection.c: when running on a 2.0 runtime, emit
3574         unconditionally the #~ header version as 2.0, and the
3575         CLI header version as 2.5, for symmetry's sake with csc.
3576
3577 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
3578
3579         * class.c: Remove the unused cache_interface_offsets stuff.
3580
3581         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
3582         profiler.c: Fix warnings.
3583
3584 2008-03-16  Mark Probst  <mark.probst@gmail.com>
3585
3586         * generic-sharing.c, class-internals.h: Support for putting
3587         methods into the runtime generic context.
3588
3589 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
3590
3591         * class.c (mono_class_setup_fields): Ignore calls made to this function for
3592         classes which are generic instances of not-yet finished typebuilders. Fixes
3593         #351172.
3594
3595         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
3596
3597 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
3598
3599         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
3600
3601         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
3602         field, replace it with a hash table in MonoDynamicImage.
3603
3604         * reflection.c (inflate_mono_method): Access the generic definition object from
3605         image->generic_def_objects instead of imethod->reflection_info.
3606
3607         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
3608
3609         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
3610         
3611         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
3612         function in reflection.c so it is easier to keep in sync with the dynamic image
3613         creation code.
3614
3615         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
3616         mono_image_close ().
3617
3618 2008-03-15  Mark Probst  <mark.probst@gmail.com>
3619
3620         * class.c (mono_class_generic_sharing_enabled): Disable generic
3621         sharing for all architectures except AMD64 and x86 to fix build.
3622
3623 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
3624
3625         * verify.c: Use the generic definition MonoGenericContext when available.
3626         Remove code for checking generics instance compatibility in favor of
3627         mono_class_is_assignable_from.
3628
3629 2008-03-14  Mark Probst  <mark.probst@gmail.com>
3630
3631         * marshal.c, marshal.h, metadata-internals.h, image.c,
3632         wrapper-types.h: New wrapper for invoking a shared static method
3633         without having to pass the runtime generic context argument.
3634
3635 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
3636
3637         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
3638
3639 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
3640
3641         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
3642         
3643         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
3644         create a token from a FieldOnTypeBuilderInst.
3645         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
3646         (resolve_object): Ditto.
3647
3648         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
3649         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
3650
3651 2008-03-14  Martin Baulig  <martin@ximian.com>
3652
3653         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
3654
3655         * debug-mono-symfile.h
3656         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
3657         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
3658
3659 2008-03-10  Martin Baulig  <martin@ximian.com>
3660
3661         * debug-mono-symfile.h
3662         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
3663         `lexical_block_table_offset'.
3664         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
3665         `lexical_blocks'.
3666         (MonoSymbolFile): Added `version'.
3667
3668         * mono-debug.h
3669         (MonoDebugLexicalBlockEntry): Removed.
3670         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
3671         `lexical_blocks'.
3672
3673         * mono-debug.c (mono_debug_add_method): Don't compute lexical
3674         blocks here; the debugger now does this internally.
3675
3676 2008-02-27  Martin Baulig  <martin@ximian.com>
3677
3678         * object.c (mono_runtime_exec_main): Call
3679         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
3680         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
3681
3682 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
3683
3684         * verify.c (verify_type_compatibility_full): Allow native int to be converted
3685         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
3686
3687 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
3688
3689         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
3690         ldftn with a virtual method.
3691
3692 2008-03-13  Geoff Norton  <gnorton@novell.com>
3693
3694         * decimal.c:  Only include memory.h if the platform has it.
3695
3696 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
3697
3698         * assembly.c, class.c, metadata-internals.h: make sure public key
3699         tokesns are compared in a case-insensitive way. Also, all
3700         the lookups in the GAC use a lowercase public key token
3701         (gaacutil already does the lowercasing on install). Fixes
3702         bug #369541.
3703
3704 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
3705
3706         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
3707         and return value.
3708
3709 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
3710
3711         * image.c: when someone loads a mscorlib from a file, return the
3712         currently loaded mscorlib (fixes bug #369253).
3713
3714 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
3715
3716         * class.c: handle types with no parents by forcing them to have
3717         System.Object as a parent and marking them as broken (this currently
3718         allows the first part of bug #369173 to work as well, likely because
3719         we don't check for typeload exceptions everywhere yet).
3720
3721 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
3722
3723         * class.c: more complete check that types belong to corlib
3724         (fixes second part of bug #369173).
3725
3726 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
3727
3728         * generic-sharing.c:  Including glib.h for the MSVC builds to define
3729           "inline" to "__inline" before including mono-membar.h.
3730           
3731         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
3732           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
3733           MSVC builds.
3734
3735         Contributed under MIT/X11 license.
3736
3737 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
3738
3739         * verify.c (do_invoke_method): Remove return type validation.
3740
3741         * verify.c (do_ret): Do return type validation at return site instead of
3742         call site.
3743
3744 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
3745
3746         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
3747
3748         * verify.c: Some todos cleaned and improved a few error messages.
3749
3750 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
3751
3752         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
3753
3754 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
3755
3756         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
3757         system types correctly.
3758
3759         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
3760         function.
3761
3762 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
3763
3764         * assembly.c (build_assembly_name): Fix a warning.
3765
3766 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
3767
3768         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
3769         the called function takes an object type argument. Fixes storing or
3770         valuetypes across remoting as well as reducing memory usage.
3771         * image.c, metadata-internals.h: remove now unused ldfld_remote and
3772         stfld_remote wrapper caches.
3773
3774 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
3775
3776         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
3777         is not found.
3778
3779         * reflection.c (mono_image_register_token): New helper function to save
3780         a token->object mapping.        
3781
3782         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
3783         managed code.
3784
3785         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
3786         one dimension arrays. Fixes #367670.
3787         (mono_reflection_get_type_internal): Ditto.
3788
3789 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
3790
3791         * marshal.c: mono_load_remote_field_new() always returns object.
3792         so use the proper signature (fixes bug #366445).
3793
3794 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
3795         
3796         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
3797         add an 'inline_failure' flag instead.
3798
3799 2008-03-04  Mark Probst  <mark.probst@gmail.com>
3800
3801         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
3802         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
3803         contains the location of "this", used for exception handling.
3804
3805 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
3806
3807         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
3808         their size on all platforms for perf reasons.
3809
3810 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3811
3812         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
3813         object-internal.h
3814
3815         * object-internal.h: Same.
3816
3817 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3818
3819         * reflection.h: Fix the build I just broke.
3820
3821 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3822
3823         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
3824         Test if a token is valid, this remove explicit usage of 
3825         MonoDynamicImage::tokens from the verifier code.
3826
3827         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
3828
3829         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
3830         instead of direct access to MonoDynamicImage::tokens.
3831
3832 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3833
3834         * verify.c (token_bounds_check): Fix the build I just broke.
3835
3836 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3837
3838         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
3839
3840         * verify.c (verifier_load_method): Fixed the errors message.
3841
3842         * verify.c (mono_method_verify): Fixed a debug message.
3843
3844 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
3845
3846         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
3847         mono-perfcounters.h, class-internals.h: support for predefined
3848         writable counters, query of categories and counters, bugfixes.
3849
3850 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
3851
3852         * verify.c (do_refanytype): Verify the refanytype opcode.
3853
3854         * verify.c (mono_method_verify): Use do_refanytype.
3855
3856 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
3857
3858         * verify.c (do_mkrefany): Verify the mkrefany opcode.
3859
3860         * verify.c (mono_method_verify): Use do_mkrefany.
3861
3862 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
3863
3864         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
3865         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
3866         implementation.
3867
3868 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
3869
3870         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
3871         the type load exception.
3872
3873 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
3874
3875         * verify.c: Added a few FIXME for method signatures
3876
3877         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
3878         of mono_method_get_signature and get vararg call working. Removed unused
3879         checks for return value.
3880
3881         * verify.c (do_refanyval): Verify the refanyval opcode.
3882
3883         * verify.c (mono_method_verify): Implemented verification of arglist and
3884         use do_refanyval.
3885
3886 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
3887
3888         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
3889         vtypes to marshal.c.
3890
3891         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
3892         it works for AOT as well.
3893
3894 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
3895
3896         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
3897         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
3898         the system time is adjusted.
3899
3900 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
3901
3902         * icall.c, icall-def.h: use the new time functions (fixes the
3903         non-monotonic behaviour of TickCount).
3904
3905 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
3906
3907         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
3908         it breaks the build.
3909         
3910         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
3911         cattr is not finished yet.
3912
3913 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
3914
3915         * verify.c: Proper token validation for field, method and type.
3916
3917 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
3918
3919         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
3920
3921         * loader.c (method_from_memberref): Generate type load error instead of method missing
3922         if the type is not found.
3923
3924 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
3925
3926         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
3927         some of the conversions caused the generation of a marshal directive exception.
3928
3929 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
3930
3931         verify.c: Report which exception should be thrown by the JIT.
3932         Added a lot of FIXME notes.
3933
3934 2008-02-22  Mark Probst  <mark.probst@gmail.com>
3935
3936         * generic-sharing.c: Runtime generic context slots are not
3937         instantiated on init anymore.  Instead, provide function to do the
3938         instantiating on demand.
3939
3940         * class-internals.h: Added vtable to runtime generic context.
3941         Macros for encoding direct and indirect slot offsets in one
3942         guint32.
3943
3944 2008-02-21  Mark Probst  <mark.probst@gmail.com>
3945
3946         * object.c, generic-sharing.c: Moved some generic sharing code
3947         from object.c to generic-sharing.c.
3948
3949         * generic-sharing.c: Added support for extensible runtime generic
3950         context.
3951
3952         * metadata-internals.h: Two new hash tables in MonoImage for
3953         extensible runtime generic context support.
3954
3955         * domain.c: Unregister generic vtables upon domain unloading.
3956
3957         * image.c: Destroy new hash tables upon image unloading.
3958
3959         * metadata.c: Unregister generic subclasses upon image unloading.
3960
3961         * class-internals.h: New data structure for runtime generic
3962         context template.  New fields in the runtime generic context for
3963         extensible part.
3964
3965         * Makefile.am: Added generic-sharing.c.
3966
3967 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
3968
3969         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
3970         there is a pending loader exception, raise it.
3971
3972         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
3973         same.
3974
3975         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
3976         same.
3977
3978         Fixes #363450.
3979
3980 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
3981
3982         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
3983
3984         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
3985         
3986         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
3987         ref-only requests for compatibility with MS.
3988
3989 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
3990
3991         * reflection.c (mono_custom_attrs_from_method): Don't silently
3992         return an empty list for generic method instances.
3993         (mono_custom_attrs_from_param): Likewise.
3994
3995 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
3996             Raja R Harinath  <harinath@hurrynot.org>
3997
3998         Fix #354757
3999         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
4000         * class.c (mono_class_inflate_generic_method_full): Initialize it
4001         when a fully-open method is instantiated.
4002         * metadata.c (inflated_method_equal, inflated_method_hash): Update
4003         to new field.
4004         * reflection.c (inflate_mono_method): Don't create a temporary context.
4005
4006 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
4007
4008         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
4009         Compute correct value, to prepare for imethod->reflection_info going away.
4010
4011 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
4012
4013         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
4014
4015 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4016
4017         * verify.c: Implement skip visibility flag.
4018
4019 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4020
4021         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
4022         which contains an extra field to tell the kind of exception that should be thrown.
4023
4024         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
4025
4026 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
4027
4028         * loader.c (mono_method_get_param_names): Initialize 'klass' after
4029         'method' is updated.
4030
4031 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
4032
4033         * class.c (mono_class_layout_fields): Set class->min_align for classes using
4034         explicit layout as well. Fixes #360375.
4035
4036 2008-02-11  Geoff Norton  <gnorton@novell.com>
4037
4038         * loader.c: Guard and dereference against inflated generic methods
4039
4040 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
4041
4042         * class.c: Include Retargetable spec in assembly name.
4043         * assembly.c: Always include PublicKeyToken spec in assembly name
4044         (with value "null" if assembly is not signed), and include
4045         Retargetable spec.
4046         * icall-def.h: Added icall for Assembly.get_fullname.
4047         * icall.c: Added icall returning the fullname of an assembly.
4048
4049 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
4050
4051         * class.c (mono_class_setup_vtable_general): Add a missing call to
4052         mono_class_setup_methods () which is needed in the AOT case.
4053
4054 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
4055
4056         * verify.c (mono_type_get_stack_name): Added. Return the name for the
4057         stack type of the given MonoType.
4058
4059         * verify.c (verify_type_compatibility_full): Handle the void type.
4060
4061         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
4062         way stack merging works.
4063
4064         * verify.c (store_local): Improved verification message.
4065
4066         * verify.c (do_branch_op): If the merging is invalid, the method
4067         is unverifiable and not invalid. Improved error message.
4068
4069         * verify.c (merge_stacks): Properly merge a boxed valuetype and
4070         a reference type diferent than System.Object. Improved error
4071         message.
4072
4073 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
4074
4075         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
4076
4077         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
4078         type of an enum even if the argument is byref.
4079
4080         * verify.c: Replace all explicit uses of enumtype and enum_basetype
4081         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
4082
4083         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
4084
4085         *verify.c (verify_type_compatibility_full): Make enum types
4086         compatible with their base types.
4087
4088         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
4089         types are compatible for the special case of a boxed valuetype and
4090         System.Object.
4091
4092         * verify.c (verify_stack_type_compatibility): The function
4093         is_compatible_boxed_valuetype was extracted from here.
4094
4095         * verify.c (push_arg): Only set ctx->has_this_store if the method
4096         is not static.
4097
4098         * verify.c (do_ldelem): Fixed a typo in an error message and added
4099         strict check for mixing int32 and native int as the array type
4100         and ldelem type.
4101
4102         * verify.c (merge_stacks): Consider boxed valuetypes in the
4103         compatibility checks.
4104
4105 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
4106         * profiler.h: (MonoGCEvent): Added start-stop the world events.
4107
4108 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
4109         *class.c: use_new_interface_vtable_code: renamed the env var to have
4110         a "MONO_" prefix, and fix the logic to enable it by default.
4111
4112 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
4113         *class.c:
4114         mono_class_setup_vtable_general: rewrote the way in which interface
4115         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
4116         makes the code more maintainable.
4117         For now the old code is still there, and can be activated setting
4118         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
4119
4120 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
4121
4122         * verify.c: guarded some debug functions around and #ifdef.
4123
4124         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
4125
4126 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
4127
4128         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
4129         changes for now since they seem to break too many things.
4130
4131 2008-02-05  Mark Probst  <mark.probst@gmail.com>
4132
4133         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
4134         mono_marshal_find_nonzero_bit_offset): Added macro and function
4135         for finding the byte- and bit-offset of a bitfield within a
4136         struct.
4137
4138 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
4139
4140         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
4141         (mono_marshal_get_struct_to_ptr): Ditto.
4142
4143         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
4144         cctor_signature.
4145
4146 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
4147
4148         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
4149         between methods for non-corlib types.
4150
4151 2008-02-02  Geoff Norton  <gnorton@novell.com>
4152
4153         * loader.c (mono_method_get_param_names): Populate the parameter name for 
4154         generic parameters as well. (Fixes #342536)
4155
4156 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
4157
4158         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
4159
4160         * verify.c (do_invoke_method): Fix for calling with byref structs.
4161
4162         * verify.c (do_cast): push a boxed value type based on the type token and not
4163         the type of stack.
4164
4165 2008-01-31  William Holmes  <billholmes54@gmail.com>
4166
4167         * process.c (process_module_string_read): Check the size returned form 
4168           VerQueryValue to avoid out of memory exception. 
4169
4170 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
4171
4172         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
4173         Handle properly modules which are not in the moduleref table. Fixes
4174         #356938.
4175
4176 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
4177
4178         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
4179         the dynamic case which is now in managed code.
4180         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
4181
4182         * marshal.c (mono_string_to_bstr): Fix a warning.
4183         (init_com_provider_ms): Ditto.
4184
4185         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
4186
4187         * exception.c (mono_get_exception_out_of_memory): New helper function.
4188
4189 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
4190
4191         * marshal.c: Add support for BSTR marshalling
4192         using other COM systems.
4193
4194         Code is contributed under MIT/X11 license.
4195
4196 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
4197
4198         * object.c (mono_runtime_invoke_array): reverted previous
4199         commit as it breaks the build.
4200
4201 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
4202
4203         * object.c (mono_runtime_invoke_array): Verify arguments for
4204         invalid types. Fixes #348522.
4205
4206 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
4207
4208         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
4209         non-final virtual calls using call. 
4210
4211         * verify.c (do_invoke): fixed some TODOs.
4212
4213         * verify.c (push_arg): set has_this_store for "ldarga 0".
4214
4215 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
4216
4217         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
4218         which belong to an inflated class. Fixes #356531.
4219
4220 2008-01-26  Robert Jordan  <robertj@gmx.net>
4221
4222         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
4223         which resort to FindFirstFile when a certain error condition
4224         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
4225         Code is contributed under MIT/X11 license.
4226
4227 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
4228
4229         * marshal.c (emit_marshal_string): Fix out string marshalling
4230         to use specified encoding. Fixes #323900.
4231
4232         Code is contributed under MIT/X11 license.
4233
4234 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
4235
4236         * class.c (mono_class_inflate_generic_method_full): Don't modify
4237         iresult->context after cache check.
4238
4239 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
4240
4241         * class.c (mono_class_inflate_generic_method_full): Change the
4242         struct assignments to memcpy for better visibility and add some comments.
4243
4244 2008-01-23  Dick Porter  <dick@ximian.com>
4245
4246         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
4247         procedure, and make it work on windows.
4248
4249 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
4250
4251         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
4252         a MonoReflectionTypeBuilder since it is always of that type.
4253
4254         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
4255
4256         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
4257
4258         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
4259         
4260         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
4261
4262         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
4263
4264         * reflection.c (mono_reflection_create_runtime_class): Remove already created
4265         instantiations from the type cache.
4266
4267 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4268
4269         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
4270
4271         * verify.c (do_unbox_value): push a controled mutability managed pointer.
4272
4273 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4274
4275         * verify.c (do_ldstr): added, verifies if the #US token is valid.
4276
4277         * verify.c (mono_method_verify): removed old TODO
4278
4279 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4280
4281         * verify.c (do_newobj): add visibility check.
4282
4283 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4284
4285         * verify.c (do_load_function_ptr): add visibility check.
4286
4287 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
4288         *class.c:
4289         mono_generic_class_get_class: hook profiler events.
4290         mono_field_get_offset: added to support heap-shot in the new profiler.
4291         *class.h: exported mono_field_get_offset.
4292         * reflection.c:
4293         mono_reflection_setup_internal_class: hook profiler events.
4294
4295 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
4296
4297         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
4298         argument here too and use it to avoid checking for pending exceptions if 
4299         possible.
4300
4301 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
4302
4303         * assembly.c (build_assembly_name): add arg for passing the assembly
4304         flags. Do not consider a PublicKey with value "null" valid.
4305         (mono_assembly_name_parse_full): added boolean argument that will be
4306         set if the assembly name contains a PublicKeyToken spec. Added support
4307         for the Retargetable spec for which only Yes or No are allowed as valid
4308         value. Consider assembly name invalid if Retargetable spec is set, but
4309         either version, culture or public key (token) are not specified.
4310         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
4311         with implementation in assembly.c.
4312         * icall.c (fill_reflection_assembly_name): also copy assembly flags
4313         from MonoAssemblyName.
4314         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
4315         introduced argument for mono_assembly_name_parse_full to know if the
4316         assembly name has a PublicKeyToken spec, and if it has instruct
4317         fill_reflection_assembly_name to use default value for keyToken (if
4318         PublicKeyToken is null).
4319
4320 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
4321
4322         * verify.c (mono_method_verify): fixed ovf ops with
4323         float values. They are unverifiable now.
4324
4325 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
4326
4327         * class.c (set_failure_from_loader_error): add BadImageException to the
4328         list of exceptions that can cause a type to fail to load.
4329
4330         * class.c (mono_class_get_exception_for_failure): same.
4331
4332 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
4333
4334         * verify.c (in_any_exception_block): added, check if offset
4335         is part of any exception handling clause.
4336
4337         * verify.c (get_stack_type): added VAR and MVAR types.
4338
4339         * verify.c (do_stobj): better error messages.
4340
4341         * verify.c (do_cpobj): added, check cpobj.
4342
4343         * verify.c (do_initobj): added, check initobj.
4344
4345         * verify.c (do_sizeof): added, check sizeof.
4346
4347         * verify.c (do_localloc): added, check localloc.
4348
4349         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
4350
4351 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
4352
4353         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
4354         save_lmf/restore_lmf opcodes.
4355
4356         * threads.c (mono_threads_install_notify_pending_exc): New function to
4357         install a callback notifying the JIT there is a pending exception on a thread.
4358         (mono_thread_request_interruption): Call the new callback.
4359         (mono_thread_get_and_clear_pending_exception): New function to return the
4360         exception pending on a thread.
4361
4362         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
4363         to turn off checking for pending exceptions.
4364         (mono_marshal_get_native_wrapper): Ditto.
4365
4366 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
4367
4368         * threads-types.h: Get rid of the unnecessary extern declarations.
4369
4370 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
4371
4372         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
4373         return field from parent class if not private.
4374         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
4375         returns fields from parent class if they are not private.
4376         (method_nonpublic): added function to determine if a given method
4377         should be considered non-public. Returns false for private methods
4378         on parent class, and internal methods from parent on the 1.0 profile.
4379         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
4380         use method_nonpublic function to determine whether method should be
4381         returned.
4382         (property_accessor_public): use newly introduced method_nonpublic
4383         function to determine whether accessor is non-public. 
4384         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
4385         event from parent class if not private. Only return static event if
4386         Static flag is set, and only return static event from parent class if
4387         FlattenHierarchy flag is set.
4388         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
4389         include non-private events from parent class.
4390
4391 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
4392
4393         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
4394         warning.
4395
4396 2008-01-16  Wade Berrier <wberrier@novell.com>
4397
4398         * security.c: Add assembly.h header to appease some warnings
4399
4400 2008-01-16  Dick Porter  <dick@ximian.com>
4401
4402         * process.c (process_module_string_read): Remove trailing null
4403         when saving string.
4404
4405 2008-01-16  Mark Probst  <mark.probst@gmail.com>
4406
4407         * class-internals.h: A new data structure describing the layout of
4408         a runtime generic context (MonoRuntimeGenericContextTemplate).
4409
4410         * metadata-internals.h: Added a hash table to MonoDomain that maps
4411         from open generic classes to their runtime generic context
4412         templates.
4413
4414         * object.c: Building of the runtime generic context, including
4415         proper handling of generic type arguments of superclasses.
4416         Building of the runtime generic context according to the template.
4417
4418 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
4419
4420         * class.c (mono_class_setup_fields): Set field.count for generic instances.
4421         Fixes #350856.
4422
4423         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
4424         mono_portability_find_file (). Fixes #325466.
4425         (mono_image_get_public_key): Fix a warning.
4426
4427 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
4428
4429         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
4430         Fixes #353550.
4431         (mono_class_from_name_case): Ditto.
4432
4433 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
4434
4435         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
4436           common storage for the tables used in the System/NumberFormatter class.
4437
4438 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
4439
4440         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
4441
4442 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
4443
4444         * verify.c (get_boxable_mono_type): check if the token is valid.
4445
4446         * verify.c (set_stack_value): changed to add an error if an
4447         invalid type is set on stack. Changed all callers due to signature change.
4448
4449         * verify.c (do_stobj): implement stobj validation.
4450
4451 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
4452
4453         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
4454         set container->is_method, it was set earlier.
4455
4456         * metadata.c (type_in_image): Handle MVARs which belong to not finished
4457         generic methods.
4458
4459         * reflection.c (mono_reflection_initialize_generic_parameter): Set
4460         is_method of the generic container to TRUE for methods.
4461
4462 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
4463
4464         * metadata.c (type_in_image): Handle type parameters properly.
4465
4466         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
4467         memory ownership of this structure.
4468
4469 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
4470
4471         * verify.c (get_boxable_mono_type): make typedref types been just
4472         unverifiable. check for void type.
4473
4474         * verify.c (do_unbox_any): added, verify opcode unbox.any.
4475
4476         * verify.c (do_load_function_ptr): accept method spec tokens.
4477
4478 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
4479
4480         * marshal.c (mono_class_native_size): Always set *align even if this is called
4481         recursively.
4482
4483 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
4484
4485         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
4486         out-of-date.
4487
4488 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
4489
4490         * verify.c: removed some old unused tables. A huge bunch of small fixes
4491         to things found while testing the verifier with mono basic.
4492
4493         * verify.c (dump_stack_value): dump null literal flag to.
4494
4495         * verify.c (verify_type_compatibility_full): fix comparison
4496         for types that have a generic super type.
4497
4498         * verify.c (verify_stack_type_compatibility): fix compatibility
4499         between null literals and reference types. fix compatibility between
4500         boxed valuetypes and object. fix corner case test for enums.
4501
4502         * verify.c (do_cmp_op): proper verification of cgt.un in case
4503         of reference types.
4504
4505         * verify.c (do_invoke_method): fix error message.
4506
4507         * verify.c (do_store_indirect
4508
4509         * verify.c (check_is_valid_type_for_field_ops): proper verification
4510         of managed pointers to valuetypes and boxed valuetypes. proper verification
4511         of null literals.
4512
4513         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
4514         allow token to be a reference type.
4515
4516         * verify.c (do_cast): proper handling of boxes valuetypes.
4517
4518         * verify.c (do_stelem): proper handling of storing a boxed valuetype
4519         in object[].
4520
4521         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
4522         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
4523         fixed the decoding of unbox_any
4524
4525 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
4526
4527         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
4528
4529 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
4530
4531         * verify.c (do_newobj): do delegate verification.
4532
4533         * verify.c (verify_delegate_compatibility): perform delegate
4534         verification.
4535
4536         * verify.c (verify_ldftn_delegate): perform tests related to
4537         ldftn delegates.
4538
4539         * verify.c (mono_delegate_signature_equal): perform the
4540         slightly diferent signature comparison required by delegates.
4541
4542         * metadata.c (mono_metadata_type_equal_full): added and exported
4543         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
4544         allows signature only comparison.
4545
4546         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
4547         as MONO_INTERNAL.
4548
4549 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
4550
4551         * verify.c: added a bunch of stack_slot_* functions to
4552         make access to stack slot type easier. This is required to
4553         allow optional flags, like null literal, boxed value and
4554         this pointer.
4555         All access paths to IlStackDesc::stype have been changed 
4556         to use these new funcions.
4557         Removed a bunch of unused functions and cleared all warnings.
4558         This patch introduces the usage of the this pointer and 
4559         boxed value flags.
4560
4561 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
4562
4563         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
4564
4565 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
4566
4567         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
4568         match managed version.
4569
4570         * appdomain.c: Bump corlib version.
4571         
4572         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
4573         argument.
4574
4575 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
4576
4577         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
4578         Set public key token to zero-length byte array if assembly is not
4579         strongnamed.
4580
4581 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
4582
4583         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
4584         writing a vtype array elem.
4585
4586 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
4587
4588         * assembly.c (build_assembly_name): return FALSE if length of token is
4589         not 16 (if not "null").
4590         (mono_assembly_name_parse_full): return FALSE if value of version,
4591         culture, token or key is 0.
4592         * icall.c (fill_reflection_assembly_name): add boolean arguments to
4593         specify whether public key and public key token must be set to default
4594         value (zero-length byte array) if not available. Set versioncompat to
4595         SameMachine. If public key is available or the default is set, then
4596         set PublicKey flag.
4597         (ves_icall_System_Reflection_Assembly_FillName): if no public key
4598         is available, use empty byte array as default value. On the 2.0
4599         profile, use default value for public key token if not set.
4600         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
4601         profile, use default value for public key if not set. On the 2.0
4602         profile, use default value for public key token if not set.
4603         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
4604         default values for public key and public key token.
4605
4606 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
4607
4608         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
4609         field to keep it in synch with the managed object.
4610
4611         * marshal.c (emit_marshal_object): Add support for byref marshalling of
4612         delegates. Fixes #351520.
4613
4614         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
4615         contains defined memory.
4616         
4617         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
4618
4619         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
4620         
4621         * sgen-gc.c (check_consistency): New helper function to do a consistency check
4622         of the GC data structures.
4623
4624         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
4625
4626         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
4627         
4628         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
4629         barrier.
4630         (mono_array_clone_in_domain): Ditto.
4631         (mono_array_clone_in_domain): Ditto.
4632
4633         * threads.c (start_wrapper): Register the thread start argument as a GC root.
4634         (cache_culture): Use a write barrier.
4635
4636         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
4637         (ves_icall_get_property_info): Ditto.
4638
4639         * object.h (MONO_STRUCT_SETREF): New macro.
4640
4641         * class-internals.h (MonoStats): Add some GC statistics.
4642
4643         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
4644
4645 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
4646
4647         * exception.c (mono_exception_from_name_two_strings):
4648         Break from loop after method is found.
4649
4650 2008-01-04  Dick Porter  <dick@ximian.com>
4651
4652         * process.c (process_module_string_read): Rename variable to
4653         reflect correct usage, after fixing bug 345972.
4654
4655 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
4656
4657         * verify.c (mono_type_create_fnptr_from_mono_method): 
4658         created a MonoType function pointer instance to be used during
4659         verification. The verifier releases this memory at end.
4660
4661         * verify.c (mono_method_is_constructor): extracted repeated
4662         checks for constructor into a single class.
4663
4664         * verify.c (do_push_field): use new extracted method
4665         for constructor check.
4666
4667         * verify.c (do_newobj): same.
4668
4669         * verify.c (do_ldftn): renamed to do_load_function_ptr
4670         and make it verify ldvirtftn too.
4671
4672         * verify.c (mono_method_verify: proper verification
4673         of ldvirtftn. release created MonoMethod instances.
4674
4675 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
4676
4677         * verify.c (token_bounds_check): added.
4678
4679         * verify.c (do_ldftn): added.
4680
4681         * verify.c (mono_method_verify): proper verificartion of ldftn.
4682
4683 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
4684
4685         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
4686         than the table row count. It's the resposibility of the caller to
4687         make the bounds check and raise the correct error.
4688
4689         * metadata.c (mono_metadata_decode_row_col): Same.
4690
4691         * loader.c (mono_get_method_from_token): perform bounds check
4692         on token for methoddef table.
4693
4694 2007-12-29  Miguel de Icaza  <miguel@novell.com>
4695
4696         * icall.c
4697         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
4698         assert into a negative result, the managed code already coped with
4699         that.
4700
4701         Some folks on Windows reported this error. 
4702
4703 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
4704
4705         * appdomain.c: Bump corlib version.
4706         * icall.c:
4707         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
4708         CultureInfo.CreateCulture to create CultureInfo for name.
4709         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
4710         create CultureInfo for name. Fixes bug #347174.
4711
4712 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
4713
4714         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
4715         flags.
4716
4717         * verify.c (is_valid_branch_instruction): allow branching to the
4718         first instruction of the protected block.
4719
4720         * verify.c (is_valid_cmp_branch_instruction): same.
4721
4722         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
4723         avoid double initialization.
4724
4725         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
4726         detect which cases the eval stack should just be copied.
4727
4728         * verify.c (mono_method_verify): check if the eval stack
4729         is empty when entering a protected block.
4730
4731 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
4732
4733         * verify.c: added is_clause_in_range, is_clause_inside_range,
4734         is_clause_nested and verify_clause_relationship. They perform
4735         the verifications stated in P1 12.4.2.7.
4736
4737         * verify.c (mono_method_verify): remove some unused variables,
4738         add the new exception clause checks, add instruction border
4739         checks for protected block start/end, improved some error 
4740         messages and fixed a bug in the way invalid instruction access
4741         is detected.
4742
4743 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
4744
4745         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
4746         from GC 7.0 if available.
4747
4748         * object.c: Remove an unused define.
4749         
4750         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
4751
4752         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
4753
4754         * null-gc.c (mono_gc_make_descr_for_array): Implement.
4755
4756         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
4757
4758         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
4759         to take the same arguments as the other make_descr functions.
4760
4761         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
4762
4763         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
4764         directly.
4765
4766         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
4767         mini.c.
4768
4769         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
4770         call to boehm-gc.c.
4771
4772         * boehm-gc.c (mono_gc_register_root): Fix a warning.
4773
4774         * null-gc.c (mono_gc_register_root): Fix a warning.
4775
4776         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
4777
4778         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
4779         (mono_gc_base_init): Call GC_init ().
4780
4781         * null-gc.c: Define mono_gc_register_root () as a no-op.
4782
4783         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
4784
4785 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
4786
4787         * verify.c: add prototype for merge_stacks at top
4788
4789         * verify.c (do_switch): added.
4790
4791         * verify.c (merge_stacks): on some cases the stack merging
4792         was not happening properly. Unequal stack sizes at merge
4793         points should be invalid.
4794
4795         * verify.c (mono_method_verify): added more debug info on stack state.
4796         verify switch properly.
4797
4798 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
4799
4800         * method-builder.h: New file, moved the mono_mb_ declarations here from 
4801         marshal.h.
4802
4803         * boehm-gc.c marshal.c: Include method-builder.h.
4804
4805         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
4806
4807         * marshal.c: Remove some code which is now in method-builder.c.
4808
4809 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
4810
4811         * method-builder.c: New file, extraction of the method builder functionality 
4812         from marshal.c.
4813
4814         * marshal.c: Move the mb functions into method-builder.c.
4815
4816         * marshal.h marshal.c: Export some mono_mb_... functions.
4817
4818         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
4819
4820         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
4821         the caller.
4822
4823         * class.c (mono_class_get_full): Check the token type in the dynamic case.
4824
4825         * loader.c (mono_field_from_token): Ditto.      
4826
4827         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
4828         type as well.
4829         
4830         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
4831         Fixes #342565.
4832
4833         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
4834         a helper function for setting it.
4835
4836         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
4837
4838         
4839         * assembly.c: Significally simplify code now that referenced assemblies are 
4840         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
4841
4842         * threads.h: Don't include  the internal threads-types.h header file. Fixes
4843         #349952.
4844
4845 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
4846
4847         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
4848         instructions that were target of branches or are at protected block boundaries.
4849
4850         * verify.c (in_same_block): handle filter clauses.
4851
4852         * verify.c (is_valid_branch_instruction): added. checks the target of
4853         instructions br or brtrue/false.
4854
4855         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
4856         binary branch instructions such as beq and bge.
4857
4858         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
4859         and made it pin the instruction as been part of the exception block.
4860
4861         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
4862         of in_same_block.
4863
4864         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
4865         of in_same_block.
4866
4867         * verify.c (do_ret): ret from a protected block is unverifiable and
4868         not invalid.
4869
4870         * verify.c (do_static_branch): verify br and br.s instructions.
4871
4872         * verify.c (merge_stacks): add extra param to support detection
4873         of branches in the middle of instructions.
4874         
4875         * verify.c (mono_method_verify): verify branches and exception blocks
4876         that target the middle of instructions. Proper verification of br and br.s.
4877
4878 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
4879
4880         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
4881         skip_visibility field.
4882         (reflection_methodbuilder_from_dynamic_method): Ditto.
4883
4884         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
4885         registrations. Fixes #348193.
4886
4887         * threads.h: Move the internal mono_thread_get_pending_exception () to
4888         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
4889
4890 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
4891
4892         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
4893         icall registration. Fixes #348193.
4894
4895         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
4896         for corlib classes into object. Fixes #349621.
4897
4898 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
4899
4900         * icall.c (property_accessor_nonpublic): new function to determine
4901         whether an accessor allows a property to be considered non-public.
4902         Returns false for private accessor(s) from parent class, and internal
4903         accessor(s) from parent on 2.0 profile (and higher).
4904         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
4905         to determine whether property should be included if NonPublic flag
4906         is set. Fixes bug #349078.
4907
4908 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
4909
4910         * verify.c (init_stack_with_value): added.
4911
4912         * verify.c (mono_method_verify): extracted common
4913         code for exception initialization into init_stack_with_value.
4914
4915         * verify.c (mono_method_verify): initialize the exception
4916         for handler clauses as well.
4917
4918         * verify.c (mono_method_verify): fix the exception clause
4919         ordering rules, it should use handler end offset and not
4920         start offset.
4921
4922 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
4923
4924         * rawbuffer.c: remove useless warning.
4925
4926 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
4927
4928         * threads.h, threads-types.h: move functions to the correct header
4929         (fixes bug#349952).
4930
4931 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
4932
4933         * verify.c (mono_method_verify): proper verification
4934         of exception handling clauses ranges and fallthru in
4935         and out of protected blocks.
4936
4937 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
4938
4939         * verify.c (mono_method_verify): fixed compilation issue.
4940
4941 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
4942
4943         * verify.c (mono_method_verify): a printf slipped in, changed
4944         to use verifier debug macro.
4945
4946 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
4947
4948         * verify.c (is_correct_leave): check for filter clauses.
4949
4950         * verify.c (do_filter): added.
4951
4952         * verify.c (mono_method_verify): property verification of leave.
4953
4954
4955 2007-12-18  Mark Probst  <mark.probst@gmail.com>
4956
4957         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
4958         Win32 build, until we figure out how to do the proper thing on
4959         Win32.
4960
4961 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
4962
4963         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
4964         by the previous patch.
4965         
4966         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
4967         the assembly resolve handler for refonly assemblies.
4968
4969 2007-12-17  Mark Probst  <mark.probst@gmail.com>
4970
4971         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
4972         Make sure only one thread is allowed to commence shutdown, and
4973         don't allow new threads to be started once shutdown is in
4974         progress.
4975
4976 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
4977
4978         * verify.c (is_correct_endfilter): added.
4979
4980         * verify.c (is_unverifiable_endfilter): added.
4981
4982         * verify.c (do_endfilter): added.
4983
4984         * verify.c (mono_method_verify): property verification of endfilter
4985         and fixed a corner case or endfinally.
4986
4987 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
4988
4989         * verify.h: new flags to support fail fast of unverifiable code and
4990         do non-strict verification. Non-strict verification is required to
4991         have MS runtime compatibility. There are a huge amount of unverifiable
4992         code that it accepts as verifiable. The strict mode verifies the code
4993         as the specs says.
4994         Non-strict mode will be required in cases where code needs to be
4995         accepted as verifiable but fails under strict mode.
4996
4997         * pedump.c: added support to fail fast and non-strict verification.
4998
4999         * verify.c: added support for both fail fast and non-strict verification.
5000
5001 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
5002
5003         * verify.c (is_correct_endfinally): added.
5004
5005         * verify.c (mono_method_verify): property verification of endfinally.
5006
5007 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
5008
5009         * verify.c (in_any_block): check for filter clauses.
5010
5011         * verify.c (is_correct_rethrow): added.
5012
5013         * verify.c (mono_method_verify): property verification of rethrow.
5014
5015         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
5016
5017 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
5018
5019         * verify.c (do_throw): added.
5020
5021         * verify.c (mono_method_verify): property verification of throw
5022
5023 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
5024
5025         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
5026         assemblies. Fixes #346425.
5027
5028 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
5029
5030         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
5031         FieldBuilders.
5032
5033         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
5034
5035         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
5036         prevent asserts when this is called with a token which might not be valid.
5037
5038         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
5039         lookup_dynamic_token_class with valid_token == FALSE.
5040
5041         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
5042
5043         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
5044
5045         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
5046         
5047 2007-12-10  Mark Probst  <mark.probst@gmail.com>
5048
5049         * gc.c: Don't delay threadpool thread finalization unless Mono is
5050         shutting down.
5051
5052 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
5053
5054         * threads.c: turn an assert into a non-fatal warning.
5055
5056 2007-12-09  Robert Jordan  <robertj@gmx.net>
5057
5058         * icall.c (GetVirtualMethod): Add missing argument validation.
5059
5060 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5061
5062         * verify.c (do_cast): added.
5063
5064         * verify.c (mono_method_verify): property verification of castclass and isinst.
5065
5066
5067 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5068
5069         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
5070
5071         * verify.c (do_stelem): added.
5072
5073         * verify.c (mono_method_verify): property verification of stelem.X.
5074
5075 2007-12-07  Mark Probst  <mark.probst@gmail.com>
5076
5077         * class.c, class-internals.h: Introduce an environment variable
5078         (MONO_GENERIC_SHARING) through which the extent of generic code
5079         sharing can be controlled (share all classes, share only corlib
5080         classes, or share nothing).
5081
5082         * object.c: Only create runtime generic context for classes for
5083         which sharing is enabled.
5084
5085 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5086
5087         * verify.c (do_ldelem): refactor it to work with ldelem.any.
5088
5089         * verify.c (mono_method_verify): property verification of ldelem.any.
5090
5091 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5092
5093         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
5094         added ldelem.X opcodes.
5095
5096         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
5097
5098         * verify.c: proper verification of ldelem.X 
5099
5100 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
5101
5102         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
5103
5104 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5105
5106         * verify.c (mono_method_verify): null literal requires special handling,
5107         the value pushed on stack need to be flagged as so.
5108
5109         * verify.c (do_ldelema): Verify ldelema properly.
5110
5111 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5112
5113         * verify.c: Verify ldlen properly.
5114
5115 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
5116
5117         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
5118         to the target object's type. Fixes #346160.
5119
5120 2007-12-05  Dick Porter  <dick@ximian.com>
5121
5122         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
5123         Solaris needs the same workaround as BSD-derived systems.  Fixes
5124         bug 323524, patch by Burkhard Linke
5125         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
5126
5127 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
5128
5129         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
5130         handle to use when error dialog is shown; otherwise, update mask
5131         to show no error dialog when an error occurs.
5132
5133 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
5134
5135         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
5136
5137         * class.c (mono_class_get_field_default_value): New helper function to initialize
5138         field->def_type and field->data.
5139
5140 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
5141
5142         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
5143         the general one.
5144
5145         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
5146
5147         * marshal.c: Avoid depending on delegate->method_info being set.
5148
5149         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
5150         
5151         * object.c (mono_delegate_ctor): Set delegate->method.
5152
5153         * object-internals.h (struct _MonoDelegate): Add 'method' field.
5154
5155         * appdomain.c: Bump corlib version.
5156
5157 2007-11-27  Raja R Harinath  <harinath@gmail.com>
5158
5159         * metadata.c (mono_generic_inst_equal_full): Short-circuit
5160         equality check if we're comparing canonicalized MonoGenericInsts.
5161
5162 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
5163
5164         * class.c (generic_array_methods): Call mono_class_setup_methods () before
5165         accessing class->methods.
5166
5167 2007-11-22  Dick Porter  <dick@ximian.com>
5168
5169         * threads.c: Ensure that the synch_cs is set before trying to use
5170         it.
5171
5172 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
5173
5174         * profiler.c: r89126 broke the statistial profiler, unbreak.
5175
5176 2007-11-22  Martin Baulig  <martin@ximian.com>
5177
5178         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
5179
5180         * mono-debug.c
5181         (mono_debug_debugger_version): Bump to 3.
5182         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
5183         -> mono_debugger_class_initialized().
5184
5185         * mono-debug-debugger.c
5186         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
5187
5188         * class.c
5189         (mono_debugger_start_class_init_func): Removed.
5190         (mono_debugger_class_loaded_methods_func): Added.
5191         (mono_class_setup_methods): Call it here.
5192
5193 2007-11-22  Martin Baulig  <martin@ximian.com>
5194
5195         * mono-debug.c
5196         (mono_debug_add_delegate_trampoline): New public method.
5197         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
5198
5199         * mono-debug.h
5200         (MonoSymbolTable): Added `global_data_table'.
5201         (MonoDebuggerTypeKind): Removed.
5202
5203 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
5204
5205         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
5206         these methods.
5207
5208         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5209         
5210 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
5211
5212         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
5213
5214 2007-11-20  Martin Baulig  <martin@ximian.com>
5215
5216         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
5217
5218         * mono-debug-debugger.c
5219         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
5220         (mono_debugger_remove_breakpoint): Likewise.
5221         (mono_debugger_check_breakpoints): Likewise.
5222         (mono_debugger_register_class_init_callback): New public method.
5223         (mono_debugger_remove_class_init_callback): Likewise.
5224         (mono_debugger_add_type): Likewise.
5225
5226         * mono-debug-debugger.h
5227         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
5228
5229 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
5230
5231         * class.c: more interface implementations needed for the
5232         array enumerator (fixes bug #341112).
5233
5234 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
5235
5236         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
5237         fix ParamName of ArgumentNullExceptions.
5238
5239 2007-11-17  Miguel de Icaza  <miguel@novell.com>
5240
5241         * reflection.c (mono_reflection_encode_sighelper): Generate the
5242         modopts and modreqs.   I have a useless test that crashes monodis,
5243         but that shows the code working.
5244
5245 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
5246
5247         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
5248         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
5249
5250 2007-11-15  Dick Porter  <dick@ximian.com>
5251
5252         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
5253         When joining a thread, it's the thread that's calling Join that
5254         gets WaitSleepJoin state not the target.  Fixes the standalone
5255         test case in bug 334740, and hopefully the whole bug too.
5256
5257 2007-11-15  Dick Porter  <dick@ximian.com>
5258
5259         * process.c: Read file version info from the files pointed at by
5260         process modules, not the current process.  Fixes bug 315969.
5261
5262         Use windows typedef names in some places to fix warnings on the
5263         windows build.
5264
5265 2007-11-15  Mark Probst  <mark.probst@gmail.com>
5266
5267         * image.c, metadata-internals.h: Added a generic_class_cache hash
5268         to MonoImage for looking up generic classes when sharing generics.
5269
5270 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
5271
5272         * sgen-gc.c: warning cleanups.
5273
5274 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
5275
5276         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
5277         inherited properties.
5278
5279 2007-11-14  Mark Probst  <mark.probst@gmail.com>
5280
5281         * object.c, class-internals.h: Added more information to the
5282         runtime generic context.
5283
5284 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
5285
5286         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
5287         instead of just the target method. Generalize the abstract method handling to
5288         handle any non-static method.
5289
5290         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
5291         mono_marshal_get_delegate_invoke () signature change.
5292
5293 2007-11-13  Mark Probst  <mark.probst@gmail.com>
5294
5295         * class.c, class-internals.h: Made
5296         mono_type_get_basic_type_from_generic () public.  Fixed member
5297         access check for shared generics.
5298
5299         * loader.c: Don't insert field into field cache if it's part of a
5300         non-inflated generic class.
5301
5302         * domain.c, domain-internals.h: The generic sharing context is now
5303         part of the jit info data structure.  Added two accessor
5304         functions.
5305
5306 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
5307
5308         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
5309         the array Get/Set/Address methods, since the JIT inlines them.
5310
5311         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
5312
5313         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
5314         (mono_image_init): Initialize runtime_invoke_direct_cache.      
5315
5316         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
5317         mono_marshal_get_delegate_invoke signature change.
5318
5319         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
5320         an additional argument. Add support for invoking abstract methods.
5321
5322         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
5323
5324         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
5325
5326 2007-11-09  Mark Probst  <mark.probst@gmail.com>
5327
5328         * class.c: Do field layout for open generic classes as well.
5329
5330 2007-11-09  Mark Probst  <mark.probst@gmail.com>
5331
5332         * gc.c, gc-internal.h: Don't finalize threadpool threads with
5333         other objects, because the threadpool is still around.  Put them
5334         in a list instead and after finalizing all other objects in the
5335         root domain shut down the thread pool and then finalize the
5336         threads.  Fixes bug #337383.
5337
5338         * threads.c, thread-types.h: New mono_thread_create_internal()
5339         function for marking a thread with the threadpool flag before it
5340         started.  Set synch_cs to NULL after freeing it.
5341
5342         * threadpool.c: Mark threadpool threads before they start.
5343
5344 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
5345
5346         * reflection.h, reflection.c: don't export random functions
5347         and lazy load dbnull and missing objects.
5348
5349 2007-11-07  Jonathan Chambers <joncham@gmail.com>
5350
5351         * class.c: Initialize COM types if COM interfaces
5352         are present (not just COM classes).
5353         
5354         Code is contributed under MIT/X11 license.
5355
5356 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
5357         * reflection.c:
5358         create_dynamic_mono_image: hook module profiler events (dynamic case).
5359         mono_image_basic_init: hook assembly profiler events (dynamic case).
5360
5361 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
5362         * profiler.c:
5363         simple_appdomain_unload: completely terminate the profiler
5364         instead of only processing the statistical samples.
5365         simple_shutdown: make sure this is really called exactly once,
5366         even in multithreaded applications, and always listen to
5367         appdomain events.
5368         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
5369         here, the "[un]load" functions will do it.
5370         Fixes bugs #333791 and #325261.
5371
5372 2007-11-07  Geoff Norton  <gnorton@novell.com>
5373
5374         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
5375         rather than depend on __APPLE__.
5376
5377 2007-11-07  Mark Probst  <mark.probst@gmail.com>
5378
5379         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
5380
5381 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
5382
5383         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
5384         UTF16 MonoString. Fix the crash from bug #335488
5385
5386 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
5387
5388         * marshal.c: Correct (for non-Win32 OS) length != size in 
5389         mono_string_from_bstr. Fix #339530.
5390
5391 2007-11-06  Geoff Norton  <gnorton@novell.com>
5392
5393         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
5394         to succeed
5395
5396 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
5397
5398         * process.c: Added run-time GetProcessId API detection for Windows.
5399
5400 2007-11-04  Miguel de Icaza  <miguel@novell.com>
5401
5402         * reflection.c  (mono_param_get_objects): If a parameter has the
5403         attribute [System.Runtime.InteropServices.Optional] we should
5404         set the DefaultValue of the ParameterInfo to be
5405         System.Reflection.Missing instead of DBNull.
5406
5407         See bug #339013.
5408
5409         (mono_get_reflection_missing_object): New method,
5410         returns the System.Reflection.Missing.Value singleton instance.
5411
5412 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
5413
5414         * culture-info-table.h : regenerated.
5415
5416 2007-11-02  Jonathan Chambers <joncham@gmail.com>
5417
5418         * icall.c: Use GetEnvironmentStrings on windows
5419         so we are using the same environment block as 
5420         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
5421         #333740.
5422         
5423         Code is contributed under MIT/X11 license.
5424
5425 2007-10-31  Martin Baulig  <martin@ximian.com>
5426
5427         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
5428
5429         * mono-debug-debugger.h
5430         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
5431
5432 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
5433
5434         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
5435         classes.
5436
5437 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
5438
5439         * culture-info-table.h : regenerated.
5440
5441 2007-10-30  Robert Jordan  <robertj@gmx.net>
5442
5443         * icall-def.h, icall.c:
5444         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
5445
5446         Code is contributed under MIT/X11 license.
5447
5448 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
5449
5450         * class.c (mono_class_setup_vtable): Find the inflated methods in the
5451         inflated class instead of inflating them again.
5452         
5453         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
5454         dynamic case.
5455
5456         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
5457         Call setup_supertypes () after klass->parent is set.
5458         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
5459
5460         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
5461         for inflated instances of not yet created dynamic generic classes.
5462         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
5463         times from inflated_method.
5464         (methodbuilder_to_mono_method): Ditto.
5465
5466 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
5467
5468         * gc.c: code cleanup and removed old untested option of not creating the
5469         finalizer thread.
5470
5471 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
5472
5473         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
5474         creating a jump trampoline for dynamic methods.
5475
5476 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
5477
5478         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
5479         generic TypeBuilders when called from another method of the same type (bug #335131).
5480
5481
5482 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
5483
5484         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
5485         doesn't seem to work perfectly.
5486         
5487         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
5488         called multiple times.
5489         (methodbuilder_to_mono_method): Ditto.
5490         (resolve_object): Inflate FieldBuilder's.
5491
5492 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
5493
5494         * string-icalls.c, string-icalls.h, appdomain.c: patch from
5495         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
5496         RemoveEmptyEntries in the string.Split implementation (bug #322375).
5497
5498 2007-10-26  Dick Porter  <dick@ximian.com>
5499
5500         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
5501         Thread initialisation changes
5502
5503 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
5504
5505         * verify.c: fix compatibility check between arrays and System.Array
5506
5507 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
5508
5509         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
5510         too. Fixes #336999.
5511
5512 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
5513
5514         * object.c (mono_value_box): Use typed allocation here.
5515
5516 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
5517
5518         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
5519         trampoline instead of compiling the method right away.
5520
5521         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
5522
5523 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
5524
5525         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
5526         related fields for dynamic classes. Fixes #334493.
5527
5528 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
5529
5530         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
5531         
5532         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
5533
5534         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
5535         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
5536
5537         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
5538
5539         * reflection.c (create_generic_typespec): Initialize klass->generic_container
5540         if needed.
5541         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
5542
5543 2007-10-18  Jonathan Chambers <joncham@gmail.com>
5544
5545         * marshal.c: Use correct key when removing item
5546         from ccw_hash.
5547         
5548         Code is contributed under MIT/X11 license.
5549
5550 2007-10-17  William Holmes  <billholmes54@gmail.com>
5551
5552         *marshal.c: Adding a case to marshal booleans to U1
5553
5554         Code is contributed under MIT/X11 license.
5555
5556 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
5557
5558         * class.c (mono_class_from_name): Search the modules compromising dynamic
5559         assemblies. Fixes #331601.
5560
5561 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
5562
5563         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
5564         exception if the type name contains an assembly component. Fixes #334203.
5565
5566         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
5567         modules inside dynamic assemblies. Fixes #334200.
5568         
5569         * reflection.c: Set image->public_key and image->public_key_length;
5570
5571         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
5572         fields.
5573
5574         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
5575         
5576 2007-10-16  Mark Probst  <mark.probst@gmail.com>
5577
5578         * metadata.c: Implemented correct comparing of generic classes.
5579         An inflated generic class can be equal to a non-inflated one if it
5580         is inflated with generic type variables as type arguments.  Fixes
5581         bug #333798.
5582
5583 2007-10-15  Dick Porter  <dick@ximian.com>
5584
5585         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
5586         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
5587         81646.
5588
5589         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
5590         instead of a monitor lock.  This means that monitor_try_enter and
5591         co can set the thread state safely.
5592         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
5593         thread_interrupt_requested, so interrupt actually works.
5594
5595         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
5596         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
5597         state accessor function
5598
5599 2007-10-15  Martin Baulig  <martin@ximian.com>
5600
5601         * mono-debug.h
5602         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
5603         the debugger with the current runtime.
5604
5605 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
5606
5607         * object.c, object-internals.h: added the ability to set a single
5608         trampoline for all the slots in a vtable.
5609
5610 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
5611
5612         * marshal.c: deal with a possible race condition during multicast
5613         delegate invocation.
5614
5615 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
5616
5617         * class.c: ensure value type methods don't have the synchronized
5618         flag set.
5619
5620 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
5621
5622         * string-icalls.c, string-icalls.h: reverted unapproved patch that
5623         breaks the build.
5624
5625 2007-10-11  Joel Reed  <joelwreed@comcast.com>
5626
5627         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
5628         to take an options parameter so that empty entries can be removed during
5629         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
5630
5631 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
5632
5633         * marshal.c: make sure we don't store the signature from a dynamic
5634         method into the runtime invoke cache (bug #327189).
5635
5636 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
5637
5638         * marshal.c: make sure the wrapper methods are properly initialized.
5639
5640 2007-10-11  Mark Probst  <mark.probst@gmail.com>
5641
5642         * metadata.c, metadata-internals.h: Generalized
5643         mono_type_stack_size() to mono_type_stack_size_internal() which
5644         takes an additional argument specifying whether it allows open
5645         types.
5646
5647 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
5648
5649         * verify.c (do_invoke_method): handle typedbyref params
5650         correctly and check for unverifiable return values.
5651
5652         * verify.c (do_newobj): fix a warning.
5653
5654 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
5655
5656         * verify.c: don't tread typedbyref as allways unverifable,
5657         so uses, like (ld/st)loc.0 are valid. verify for the cases
5658         that it matters, like boxing related operations.
5659
5660 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
5661
5662         * verify.c: add verification of the newobj opcode. verification
5663         of delegate instantation still missing due ldftn and virldftn not
5664         pushing the function type on stack
5665
5666 2007-10-08  Mark Probst  <mark.probst@gmail.com>
5667
5668         * class-internals.h: Runtime generic context data structure
5669         definition.
5670
5671         * object.c: Initialization of runtime generic context at runtime
5672         vtable creation time.
5673
5674 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
5675         * class.c (mono_class_create_from_typedef,
5676         mono_class_from_generic_parameter, mono_ptr_class_get,
5677         mono_fnptr_class_get, mono_bounded_array_class_get)
5678         * domain.c (mono_domain_create, mono_domain_free)
5679         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
5680         * image.c (do_mono_image_load, mono_image_close):
5681         Hooked up load-unload profiler events.
5682
5683 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
5684
5685         * domain.c: track statistics about the actual amount of native code
5686         allocated.
5687
5688 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
5689
5690         * class.c: the valuetype enumerators don't have the additional
5691         supertypes interfaces.
5692
5693 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
5694
5695         * class.c: need more interfaces setup for the IEnumerator<T>
5696         object created for arrays (tests/ienumerator-interfaces.2.cs).
5697
5698 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
5699
5700         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
5701
5702 2007-10-05  Alp Toker  <alp@atoker.com>
5703
5704         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
5705         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
5706         #315863.
5707
5708 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
5709
5710         * verify.c (verify_type_compatibility_full): verification of
5711         compatibility improved, validates correctly non-strict checks between
5712         native int and I4 types different than (unsigned)int32.
5713
5714         * verify.c (do_store_indirect): added, do all verification of
5715         ldind.X opcodes. 
5716
5717         * verify.c (get_load_indirect_mono_type): renamed to
5718         get_indirect_op_mono_type, as it now returns the MonoType for 
5719         ldind.X and stind.X opcodes.
5720
5721 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
5722
5723         * reflection.c: Fix the encoding of generic type definition for
5724         TypeBuilders.
5725
5726         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
5727         mono_image_typedef_or_ref but allows to specify if typespec lookups should
5728         be made. Typespec check is done prior to typeref cache lookup.
5729
5730         * reflection.c (mono_image_typedef_or_ref): now just delegate to
5731         mono_image_typedef_or_ref_full.
5732
5733         * reflection.c (encode_generic_class): encode the generic class
5734         directly instead of calling encode_type.
5735
5736         * reflection.c (encode_type): encode the generic type definition
5737         MonoClass as a generic instantiation.
5738
5739         * reflection.c (create_typespec): cache typespec tokens in
5740         the assembly->typespec cache. Don't create typespec for a generic
5741         instance MonoClass. Create typespec for the generic type defintion.
5742
5743         * reflection.c (create_generic_typespec): encode the generic
5744         class directly instead of calling encode_type.
5745
5746         * reflection.c (mono_image_create_token): encode the generic
5747         type definition not using a typespec for MonoType instances.
5748
5749
5750 2007-10-04  Raja R Harinath  <rharinath@novell.com>
5751
5752         Fix #328812
5753         * class.c (mono_image_init_name_cache): Don't return nested
5754         'protected internal' classes.
5755         (mono_class_from_name_case): Likewise.
5756
5757 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
5758
5759         * icall-def.h, icall.c : get_bundled_machine_config() is now the
5760           common function used by both DefaultConfig in System.dll and
5761           InternalConfigurationHost in System.Configuration.dll.
5762
5763 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
5764
5765         * class.c: automatically add to vectors only a few essential explicit
5766         generic interfaces. The rest of the interfaces that arrays should
5767         provide are currently implicitly added (but still not lazily, see the
5768         design in the discussion of bug#325495 for the details of what is
5769         needed for that). Additionally, implicit interfaces are assigned the
5770         same vtable slot as the explicit interfaces (as they are compatible):
5771         this enables huge memory savings since we don't need to instantiate
5772         as many memthods and as large vtables anymore. Also, Since
5773         GetEnumerator<T> returns an instance of a type that is required to
5774         support a similarly large set of interfaces as arrays, we add
5775         implicit interfaces and interface offset sharing support to those
5776         types, too. This change adds all the required interfaces so that
5777         the anonarray.cs test case in the bug report works (we don't add
5778         all the interfaces to arrays of arrays 3-level deep and more because
5779         of the memory requirements explained in the bug and since they are much
5780         less common: the lazy-loading support will enabled them to work, too).
5781
5782 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
5783
5784         * verify.c (merge_stacks): major clean up, all type compatibility
5785         checks are done by verify_type_compatibility. This fix my earlier lack
5786         of understanding of the CLR type system and merge_stacks no longer looks
5787         scary.
5788
5789         * verify.c: fixed some bad spelling.
5790
5791 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
5792
5793         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
5794         a given stack slock.
5795         
5796         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
5797         verify_type_compatibility_full. This removed a near indentical function and fixed
5798         handling of Int32 and IntPtr across all opcodes.
5799
5800 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
5801
5802         * class.c: only vectors have the additional generic interfaces.
5803
5804 2007-10-01  Jonathan Chambers <joncham@gmail.com>
5805
5806         * mono-config.c: Use g_strcasecmp instead of
5807         strcasecmp like everywhere else to fix
5808         compilation with MSVC.
5809         
5810         Code is contributed under MIT/X11 license.
5811
5812 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
5813
5814         * object.c, object-internals.h: refactored the IMT code to enable
5815         building a single slot at a time and lazily creating the IMT trampolines
5816         and thunks.
5817
5818 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
5819
5820         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
5821
5822         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
5823         Fixes #328501.
5824         
5825 2007-09-29  Raja R Harinath  <harinath@gmail.com>
5826
5827         * loader.c (method_from_methodspec): Rearrange to avoid
5828         un-necessary exposition.  Don't assert out if the method's
5829         declaring type is a generic type definition.
5830
5831 2007-09-28  Martin Baulig  <martin@ximian.com>
5832
5833         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
5834
5835 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
5836
5837         * class-internals.h: optimize field layout of MonoClass to
5838         requires less cachelines at runtime and save a few bytes on 64 bit
5839         systems.
5840
5841 2007-09-28  Jb Evain  <jbevain@novell.com>
5842
5843         * reflection.c: when encoding type names in custom attributes,
5844         if the type is a closed generic type, its generic arguments
5845         have to be serialized as AssemblyQualifiedName, so that when
5846         they are deserialized, it's possible to re-create them properly.
5847         Fixes #329450.
5848
5849
5850 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
5851
5852         * object.c, class-internals.h: added delegate-creation counter.
5853
5854 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
5855
5856         * class.c: cleanup of the code that synthetizes interfaces for
5857         arrays in 2.0: saves quit a bit of corlib mempool memory.
5858         Code to fix bug #325495 ifdeffed out for now until the issues
5859         with memory usage and O(n^2) behaviour are fixed.
5860
5861 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
5862
5863         * marshal.c: when possible, do not duplicate the name of the methods
5864         in the method builder and in the generated MonoMethod.
5865
5866 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
5867         * verify.c: added support for type checking ldind_* opcodes.
5868
5869 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
5870
5871         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
5872         which is used to distinguish the fully open instantiation of a TypeBuilder
5873         with the rest. This temporary hack is required to restore the property that
5874         the fully open instantiation is the same type of the generic type definition.
5875
5876         * class-internals.h (mono_generic_class_is_generic_type_definition):
5877         new function as part of the internal API.
5878
5879         * class.c (inflate_generic_type): return NULL when the generic inst is
5880         fully open. The fully open generic type is now the same as the generic type
5881         definition for non TypeBuilder types.
5882
5883         * class.c (mono_generic_class_get_class): removed assert since it is
5884         no longer valid, gklass->cached_class can point to the generic type definition.
5885
5886         * class.c (mono_generic_class_is_generic_type_definition): new.
5887
5888         * metadata.c (mono_generic_class_hash): added is_tb_open field
5889         to the hash calculation.
5890
5891         * metadata.c (free_generic_class): if the generic class is associated
5892         with the generic type definition, its field will come from the mempool and
5893         must not be freed.
5894
5895         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
5896         new, this function identifies the corner case of a TypeBuilder fully open
5897         instantiation.
5898
5899         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
5900         for lookup. Set gclass->cached_class to be the container class in case of
5901         the fully open instantiation of non TypeBuilder types.
5902
5903         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
5904         to compare generic classes.
5905
5906         * reflection.c (method_encode_methodspec): remove assert that
5907         no longer is valid.
5908
5909         * reflection.c (mono_reflection_generic_class_initialize): add
5910         an aditional assert to ensure the proper type is used.
5911
5912 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
5913
5914         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
5915         to enjoy it.
5916
5917 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
5918
5919         * verify.c (push_arg): Fixed support for ldarga
5920         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
5921         MonoType used as first arg in case of instance calls.
5922
5923 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
5924
5925         * verify.c: Support for verifying VAR and MVAR types, 
5926
5927 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
5928
5929         * icall.c (ves_icall_get_property_info): Set the reflected type of the
5930         accessors correctly.
5931
5932 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
5933
5934         * threads.c: support OSX and other systems in
5935         mono_thread_get_stack_bounds (bug #328026).
5936
5937 2007-09-25  Martin Baulig  <martin@ximian.com>
5938
5939         * mono-debug.h
5940         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
5941
5942 2007-09-24  Martin Baulig  <martin@ximian.com>
5943
5944         * mono-debug.h
5945         (MonoDebugClassEntry): Moved the definition of this struct into
5946         mono-debug.c to make it private.
5947
5948         * mono-debug.c
5949         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
5950         type table per symbol file, we don't need to store the symfile id
5951         any longer.
5952
5953 2007-09-24  Martin Baulig  <martin@ximian.com>
5954
5955         Create one type table per symbol file, since a `MonoClass *' gets
5956         invalid when its image is unloaded.
5957
5958         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
5959         (MonoDebugHandle): Added `type_table'.
5960
5961 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
5962
5963         * mempool.c, mempool.h: added mono_mempool_new_size () API
5964         to be able to specify a smaller initial size for the pool.
5965         Adjusted the code to slowly increase pool size before using
5966         the previous default size.
5967         * image.c: use a small initial size for image mempools.
5968
5969 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
5970
5971         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
5972         Fixes ##320990.
5973
5974         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
5975         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
5976
5977 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
5978
5979         * metadata.c (mono_type_create_from_typespec): Remove an invalid
5980         free. Fixes #327438.
5981
5982 2007-09-21  Raja R Harinath  <harinath@gmail.com>
5983
5984         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
5985         generic instantiations, etc.
5986         <MONO_TYPE_ARRAY>: Likewise.
5987
5988 2007-09-21  Martin Baulig  <martin@ximian.com>
5989
5990         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
5991         these structs were never defined.
5992         (MonoDebugHandle): Removed the `_priv' field, it was never used.
5993
5994 2007-09-21  Martin Baulig  <martin@ximian.com>
5995
5996         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
5997
5998 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
5999
6000         * image.c: removed the guid hash tables: we can get the same info
6001         without the additional memory usage hit (partially fixes also bug #327052).
6002
6003 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
6004
6005         * profiler.h, profiler-private.h, profiler.c: add a new profiler
6006         event to handle unloading methods. After the event is called, the
6007         corresponding MonoMethod* must be considered invalid.
6008         * loader.c (mono_free_method): call the new mono_profiler_method_free
6009         event.
6010
6011 2007-09-20  Mark Probst  <mark.probst@gmail.com>
6012
6013         * domain-internals.h: New flag in MonoJitInfo which marks shared
6014         generic methods.  New hash table (shared_generics_hash) in
6015         MonoDomain to keep track of shared generic methods.  Prototypes
6016         for functions to register and lookup shared generic methods.
6017
6018         * domain.c: Support for registering and looking up shared generic
6019         methods via a hash table (shared_generics_hash) in MonoDomain.
6020
6021         * class-internals.h: New exception to signal failure of shared
6022         compilation of a generic method.  New counters for generics
6023         sharing in MonoStats.
6024
6025 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
6026
6027         * image.c, metadata-internals.h: don't keep a file descriptor open
6028         for loaded assemblies (bug#325988).
6029
6030 2007-09-19  Raja R Harinath  <rharinath@novell.com>
6031
6032         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
6033         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
6034         use the corresponding datatypes.
6035         (type_in_image): Update to changes.
6036         (CleanForImageUserData): Simplify.
6037         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
6038         Avoid quadratic behaviour in handling the "stolen" list by
6039         separating the filter predicate out, and by prepending the stolen
6040         items rather than appending them.
6041         (steal_ginst_in_image): Likewise.
6042         (mono_metadata_clean_for_image): Update to changes.
6043
6044 2007-09-19  Martin Baulig  <martin@ximian.com>
6045
6046         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
6047
6048 2007-09-19  Martin Baulig  <martin@ximian.com>
6049
6050         * mono-debug.c (mono_debug_cleanup): Don't call
6051         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
6052
6053 2007-09-19  Raja R Harinath  <harinath@gmail.com>
6054
6055         Fix crash on 'make run-test' in mcs/errors
6056         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
6057         Avoid more potential allocations in mono_class_from_mono_type.
6058         (ginst_in_image): Update to changes.
6059         (gclass_in_image): Rearrange slightly.
6060
6061 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
6062
6063         * class.c (mono_class_init): Move the code that sets up class->methods to 
6064         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
6065
6066         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
6067         canonical instance of an inflated generic signature.
6068         (mono_type_create_from_typespec): Remove an invalid free.
6069
6070         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
6071
6072 2007-09-18  Marek Habersack  <mhabersack@novell.com>
6073
6074         * domain-internals.h: added a declaration of the
6075         mono_assembly_load_full_nosearch internal function.
6076
6077         * assembly.c (mono_assembly_load_with_partial_name): use
6078         mono_try_assembly_resolve return value properly.
6079         (mono_assembly_load_full_nosearch): copied the function body from
6080         mono_assembly_load_full, without the code to invoke assembly
6081         search hooks.
6082         (mono_assembly_load_full): calls the above new function and if the
6083         assembly is not resolved, invokes the search hooks.
6084
6085         * appdomain.c (mono_runtime_init): restore the global postload
6086         assembly search handlers.
6087
6088 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
6089
6090         * class.c (mono_class_init): Make sure class->methods and class->properties
6091         are never NULL in the generics case.
6092
6093         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
6094
6095 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
6096
6097         * metadata.c (free_generic_class): Disable some code to fix the build.
6098
6099         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
6100
6101         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
6102         from the image mempool.
6103
6104         * metadata.c (free_generic_class): Free more data from the inflated class.
6105
6106         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
6107
6108         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
6109         mempool.
6110         (mono_type_create_from_typespec): Ditto.
6111
6112         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
6113         MonoImage to the caller.
6114         (mono_init_internal): Save the opened image in a global variable.
6115         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
6116
6117         * reflection.c (resolve_object): Fix a leak.
6118
6119         * metadata.c: Fix the freeing of data in the generics caches.
6120         
6121         * metadata.c (free_generic_inst): Comment this out to fix the build.
6122         (free_generic_class): Ditto.
6123
6124         * metadata.c: Free cached generic methods, instantinations and classes when
6125         they are removed from the caches.
6126         (mono_metadata_free_type): Free the type itself.
6127
6128         * class.c: Free the result of mono_class_inflate_generic_type () in a few
6129         places.
6130
6131 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
6132
6133         * boehm-gc.c: restrict managed allocs to __thread supporting
6134         architectures.
6135
6136 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
6137
6138         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
6139         (mono_generic_class_get_class): Fix a leak.
6140
6141         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
6142         mono_metadata_free_type ().
6143         (mono_metadata_inflate_generic_inst): Fix a leak.
6144
6145 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6146
6147         * mono-debug.c (free_header_data): Fix a leak missed earlier.
6148
6149         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
6150         mempool.
6151
6152         * mono-debug.c (mono_debug_close_image): Fix call to 
6153         g_hash_table_remove ().
6154
6155 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
6156
6157         * icall-def.h: redirect all the string ctor to the managed
6158         CreateString () methods.
6159         * string-icalls.c, string-icalls.h: removed dead code for string
6160         ctors and icalls.
6161
6162 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6163
6164         * mono-debug.c: Fix memory leaks.
6165
6166 2007-09-14  Jonathan Chambers <joncham@gmail.com>
6167
6168         * threads-types.h: Implement mono_hazard_pointer_set and 
6169         mono_hazard_pointer_clear macros using do/while(0) to fix
6170         compilation with MSVC.
6171         
6172         Code is contributed under MIT/X11 license.
6173
6174 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6175
6176         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
6177         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
6178
6179 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6180
6181         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
6182         icalls.
6183
6184 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6185
6186         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
6187         managed-code allocated as well.
6188
6189 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
6190
6191         * class.c (mono_class_is_assignable_from): Add support for generic variance.
6192
6193 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
6194
6195         * boehm-gc.c: fixed the build after the AOT changes.
6196
6197 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
6198
6199         * wrapper-types.h: Add an ALLOC wrapper type.
6200
6201         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
6202         reference managed allocator methods.
6203
6204 2007-09-12  Marek Safar  <marek.safar@gmail.com>
6205
6206         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
6207         of Type array and not MonoType, a fix suggested by Hari.
6208         
6209 2007-09-12  Jonathan Chambers <joncham@gmail.com>
6210
6211         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
6212         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
6213         
6214         Code is contributed under MIT/X11 license.
6215
6216 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
6217
6218         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
6219
6220 2007-09-12  Marek Habersack  <mhabersack@novell.com>
6221
6222         * image.c (do_mono_image_open): if assembly file fails to open and
6223         MONO_IOMAP is in effect, try to find the path in a
6224         case-insensitive way.
6225
6226         * appdomain.c (mono_runtime_init): do not install postload hooks -
6227         tests show that MS.NET doesn't use anything of that sort to
6228         trigger the AppDomain.AssemblyResolve event.
6229         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
6230         made non-static.
6231         (mono_runtime_init): init portability helpers here.
6232
6233         * assembly.c (mono_assembly_load_with_partial_name): if other   
6234         attempts fail, trigger the AppDomain.AssemblyResolve event handler
6235         to resolve the assembly.
6236
6237         * domain-internals.h: added mono_try_assembly_resolve and marked
6238         it as internal.
6239
6240 2007-09-11  Jb Evain  <jbevain@novell.com>
6241
6242         * object-internals.h (MonoReflectionDynamicMethod): add
6243         a `MonoReflectionType *owner` field. The owner is used
6244         * reflection.c:
6245         (mono_reflection_create_dynamic_method): use the owner of the dynamic
6246         method as the class declaring the dynamic method.
6247         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
6248         dynamic method to the declaring type of the methodbuilder.
6249
6250 2007-09-11  Mark Probst  <mark.probst@gmail.com>
6251
6252         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
6253         rules for calling methods via reflection.
6254
6255 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
6256
6257         * reflection.c (resolve_object): Add support for MonoGenericClass. 
6258         Inflate MonoType's.
6259
6260 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
6261
6262         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
6263         provide a managed method that does fast allocations without needing
6264         a managed->unmanaged transition. Boehm GC implementation currently
6265         enabled for ptrfree objects on sane architectures.
6266
6267 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
6268
6269         * marshal.c, marshal.h: exported a couple of useful functions and
6270         added mono_mb_get_label () to easily handle backward branches.
6271
6272 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
6273
6274         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
6275
6276 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
6277
6278         * loader.c (find_method): Fixed the regression introduced while
6279         fixing bug #81466.
6280
6281 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
6282
6283         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
6284         well.
6285         
6286         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
6287         icall.c reflection.c: Pass a MonoGenericContext argument to 
6288         mono_lookup_dynamic_token ().
6289
6290         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
6291         #82744.
6292         
6293 2007-09-09  Robert Jordan  <robertj@gmx.net>
6294
6295         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
6296         for generic methods.
6297
6298         * object.c (mono_object_get_virtual_method): Handle generic methods.
6299         Fixes bug #78882.
6300
6301         Code is contributed under MIT/X11 license.
6302
6303 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
6304
6305         * image.c: fix locking in mono_image_load_file_for_image ().
6306
6307 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
6308
6309         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
6310         used only as a cache: added an icall to fill it.
6311
6312 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
6313
6314         * reflection.h: exposed mono_reflection_free_type_info
6315         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
6316         since mono_reflection_bind_generic_parameters makes a copy of it.
6317         * reflection.c (free_type_info): subinfos should be freed.
6318         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
6319         made non static.
6320         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
6321         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
6322         this fixes #82695 and #81726.
6323    
6324
6325 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
6326
6327         * process.h, process.c:  added support for user profile/info in
6328           ProcessStartInfo. For now only Windows works.
6329
6330 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
6331
6332         * metadata.c: consider the generic arguments when comparing
6333         signatures (bug #82614).
6334
6335 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
6336
6337         * cil-coff.h, image.c: updated assembly loader to cope with the
6338         PE32+ 64 bit file format.
6339
6340 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
6341
6342         * assembly.c, class.c, domain.c, loader.c: remove useless
6343         inclusion of cil-coff.h.
6344
6345 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
6346
6347         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
6348         if interface is marked with CoClassAttribute. 
6349    
6350         Code is contributed under MIT/X11 license.
6351
6352 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
6353
6354         * sgen-gc.c: ensure no object from the to space is copied again or finalized
6355         if it's seen twice in major collections.
6356
6357 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
6358
6359         * sgen-gc.c: big objects are not copied to the gray area, but they
6360         need to be considered for scanning, too, if they are brought alive
6361         by an object ready for finalizations or a survived one.
6362
6363 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
6364
6365         * sgen-gc.c: properly account the number of disappearing links when
6366         they are nullified.
6367
6368 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
6369
6370         * sgen-gc.c: share the code to scan the registered roots between the
6371         different types of collections.
6372
6373 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
6374
6375         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
6376
6377 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
6378
6379         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
6380         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
6381
6382 2007-08-28  Mark Probst  <mark.probst@gmail.com>
6383
6384         * security-manager.c (mono_security_manager_get_methods):
6385         LinkDemandSecurityException now has 2 arguments instead of 3.
6386
6387 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
6388
6389         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
6390         platforms which need it.
6391
6392 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
6393
6394         * sgen-gc.c: unregister thread data structures with a pthread_key_t
6395         dtor.
6396
6397 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
6398
6399         * threads.c: free the thread static data on thread exit.
6400
6401 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
6402
6403         * class.c: walk the hierarchy to find the generic definition for
6404         a class (fixes runtime part of bug #82498).
6405
6406 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
6407
6408         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
6409         ...
6410
6411         * image.c (mono_image_close): Here. Hopefully fixes #82510.
6412
6413 2007-08-24  Mark Probst  <mark.probst@gmail.com>
6414
6415         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
6416
6417 2007-08-24  Robert Jordan  <robertj@gmx.net>
6418
6419         * appdomain.c: don't perform the ':'->';' substitution on Win32.
6420
6421 2007-08-24  Jb Evain  <jbevain@novell.com>
6422
6423         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
6424         for byref types.
6425
6426 2007-08-24  Mark Probst  <mark.probst@gmail.com>
6427
6428         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
6429         #82286.
6430
6431 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
6432
6433         * assembly.c: Fix a warning.
6434         
6435 2007-08-23  Marek Habersack  <mhabersack@novell.com>
6436
6437         * appdomain.c: parse the <runtime> section looking for the probing
6438         element with the 'privatePath' attribute, which sets additional
6439         directories in which the runtime should look for assemblies.
6440
6441 2007-08-23  Robert Jordan  <robertj@gmx.net>
6442
6443         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
6444         Fixes #82499.
6445
6446 2007-08-23  Martin Baulig  <martin@ximian.com>
6447
6448         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
6449         _mono_debug_init_corlib() and remove it from the header file.
6450
6451 2007-08-23  Martin Baulig  <martin@ximian.com>
6452
6453         * mono-debug-debugger.c
6454         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
6455         don't notify the debugger about it.
6456
6457         * mono-debug-debugger.h
6458         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
6459
6460 2007-08-23  Robert Jordan  <robertj@gmx.net>
6461
6462         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
6463         Code is contributed under MIT/X11 license.
6464
6465 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
6466
6467         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
6468
6469 2007-08-22  Martin Baulig  <martin@ximian.com>
6470
6471         * mono-debug.c: Store debugging info on a per-domain basis and
6472         free it on domain unload.  Add support for unloading symbol files.
6473
6474         * mono-debug.h
6475         (MonoDebugList): New typedef.
6476         (MonoSymbolTable):
6477         - add `data_tables and `type_table'.
6478         - replace 'symbol_files' and `num_symbol_files' with a
6479           `MonoDebugList *'.
6480         (mono_debug_data_table): Removed.
6481         (mono_debug_list_add): New public function.
6482         (mono_debug_list_remove): New public function.
6483         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
6484         (mono_debug_init_2_memory): Renamed into
6485         mono_debug_open_image_from_memory().
6486         (mono_debug_close_image): New public function.
6487         (mono_debug_domain_create): Likewise.
6488         (mono_debug_domain_unload): Likewise.
6489         (MONO_DEBUGGER_VERSION): Bump to 60.
6490
6491         * mono-debug-debugger.h
6492         (MonoDebuggerEvent):
6493         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
6494         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
6495         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
6496         - rename `THREAD_CREATED' and `THREAD_EXITED' into
6497           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
6498         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
6499           meaning.
6500         (mono_debugger_add_symbol_file): Removed.
6501         (mono_debugger_add_type): Removed.
6502         (mono_debugger_lookup_type): Removed.
6503         (mono_debugger_lookup_assembly): Removed.
6504
6505         * domain.c
6506         (mono_domain_create): Call mono_debug_domain_create().
6507         (mono_init_internal): Call mono_debug_init_corlib().
6508
6509         * assembly.c
6510         (mono_assembly_close): Call mono_debug_close_image().
6511
6512 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
6513
6514         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
6515         mmap call.
6516
6517 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
6518
6519         * sgen-gc.c: ensure section->pin_queue_end is initialized
6520         correctly when non pinning objects in the section have been found.
6521
6522 2007-08-22  Marek Habersack  <mhabersack@novell.com>
6523
6524         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
6525         containing a list of directories separated by ':'. MSDN docs say
6526         the directories should be separated with ';'. Part of a bugfix for
6527         bug #81446
6528
6529 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
6530
6531         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
6532         it should MonoType and not MonoClass.
6533
6534 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
6535
6536         * culture-info-table.h : regenerated.
6537
6538 2007-08-20  William Holmes  <billholmes54@gmail.com>
6539
6540         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
6541          to call ReplaceFile Kernel32 on windows or in io-layer.
6542         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
6543         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
6544          as an internal call.
6545
6546         Code is contributed under MIT/X11 license.
6547
6548 2007-08-20  Jb Evain  <jbevain@novell.com>
6549
6550         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
6551         and MONO_EXCEPTION_FIELD_ACCESS.
6552
6553         * debug-helpers.[c|h]: new mono_field_full_name function.
6554
6555 2007-08-20  Mark Probst  <mark.probst@gmail.com>
6556
6557         * class.c: Removed class_security_level() and moved it to
6558         security-core-clr.c.
6559
6560         * security-core-clr.c, security-core-clr.h: class_security_level()
6561         is now public and renamed to mono_security_core_clr_class_level().
6562         It also looks for security attributes in the classes a class is
6563         nested in.
6564
6565 2007-08-20  Mark Probst  <mark.probst@gmail.com>
6566
6567         * security-core-clr.c, security-core-clr.h: CoreCLR security
6568         utility functions.
6569
6570         * Makefile.am: Added security-core-clr.[ch].
6571
6572         * security-manager.c, security-manager.h: Functions and enum for
6573         setting and getting the security mode.
6574
6575         * class.c: CoreCLR security checks.
6576
6577 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
6578
6579         * icall-def.h, process.c, process.h: implemented icall to get
6580         user/system processor times.
6581
6582 2007-08-17  Mark Probst  <mark.probst@gmail.com>
6583
6584         * domain.c, threads.c, class-internals.h, domain-internals.h: New
6585         reader-lock-free jit_info_table.
6586
6587 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
6588
6589         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
6590
6591         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
6592
6593         * object-internals.h (MonoException): Add missing _data member.
6594
6595 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
6596
6597         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
6598         checking that only methods with matching qname or fqname are picked
6599         from implemented interfaces.
6600
6601 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
6602
6603         * verify.c (do_newarr):added, do type verification of
6604         newarr ops, push the right value on the eval stack.
6605         * verify.c (mono_method_verify): use do_newarr
6606
6607
6608 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
6609
6610         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
6611         factored the common code into get_boxable_mono_type, which
6612         is now using mono_type_get_full, this fixed byref related tests.
6613
6614 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
6615
6616         * class.c: added mono_type_get_full, this function has the same
6617         behavior of mono_class_get_full but the returned MonoType has
6618         all metadata of the associated token in case of a typespec token.
6619         * class.c: added mono_type_retrieve_from_typespec, used by 
6620         mono_type_get_full to retrieve the token type.
6621         * class.c (mono_class_create_from_typespec): changed to use
6622         mono_type_retrieve_from_typespec.
6623         * class.c (mono_ldtoken): changed to use mono_type_get_full
6624         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
6625         * class-internals.h: exported mono_type_get_full for internal use.
6626
6627 2007-08-16  Jb Evain  <jbevain@novell.com>
6628
6629         * domain.c (supported_runtimes): add entry for
6630         the 'moonlight' runtime version.
6631
6632 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
6633
6634         * verify.c (mono_method_verify): small typo sliped in.  
6635
6636 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
6637
6638         * verify.c (do_unbox_value): added, do type verification of
6639         unboxing ops
6640         * verify.c (mono_method_verify): use do_unbox_value
6641
6642
6643 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
6644
6645         * verify.c (dump_stack_value): fixed typo, was printing string
6646         instead of object on stack.
6647         * verify.c (do_box_value): moved the byref check up as it leads
6648         to invalid code and should be done earlier.
6649         * verify.c: improved error messages for and ldobj
6650
6651 2007-08-15  William Holmes  <billholmes54@gmail.com>
6652
6653         * marshal.c (emit_marshal_custom): Omit the call to 
6654           marshal_native_to_managed when calling native to managed 
6655           and the argument is specified as an out argument.
6656
6657         Code is contributed under MIT/X11 license.
6658
6659 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
6660
6661         * verify.c: fixed the type checks for generics, function pointers and vectors.
6662         Added type verification for ldobj and ldtoken. The verifier
6663         would segfault if header or signature of a method contained references
6664         to non-existant types.
6665
6666 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
6667
6668         * marshal.c (cominterop_get_ccw): Patch from
6669         Bill Holmes to no walk up interface hierarchy. 
6670         All parent methods should be present in the interface for COM.
6671    
6672         Code is contributed under MIT/X11 license.
6673
6674 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
6675
6676         * marshal.c (emit_marshal_com_interface): Patch from
6677         Bill Holmes to handle COM Interfaces as return values
6678         for native->managed calls.
6679    
6680         Code is contributed under MIT/X11 license.
6681
6682 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
6683
6684         * marshal.c (cominterop_get_idispatch_for_object): Implement
6685         for runtime callable wrappers.
6686    
6687         Code is contributed under MIT/X11 license.
6688
6689 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
6690
6691         * pedump.c (main): changed from mono_init to mono_init_from_assembly
6692         so 2.0 types are accessible
6693
6694
6695 2007-08-13  Miguel de Icaza  <miguel@novell.com>
6696
6697         * domain.c (mono_init_internal): Call mono_assembly_load_friends
6698         once we load mscorlib.   Due to the order in which we initialize,
6699         the mono_assembly_load_full routine that loads mscorlib did not
6700         load friends.   We now load it once we load the
6701         mono_defaults.internals_visible_class class. 
6702
6703         * assembly.c: Expose the mono_load_friend_assemblies method.
6704
6705 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
6706
6707         * verify.c: improved the handling of boxing, better
6708         type checking for unary ops and conversion. Fix bug
6709         regarding managed pointer compatibility checking
6710
6711 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
6712
6713         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
6714
6715         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
6716
6717 2007-08-09  Raja R Harinath  <rharinath@novell.com>
6718
6719         * reflection.c (dup_type): Remove.
6720         * class.c (dup_type): Remove.
6721         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
6722         instead of the dodgy 'dup_type'.
6723         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
6724         handle the case where 'dup_type' needed the second argument.
6725
6726 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
6727
6728         * domain.c: Fix a warning.
6729
6730 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
6731
6732         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
6733         checking that methods with the same fqname are not overridden
6734         with a method from an ancestor.
6735
6736 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
6737
6738         * threads.c (free_thread_static_data_helper): Avoid a crash if
6739         thread->static_data is not yet set.
6740
6741 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
6742
6743         * marshal.c: Use correct image when emitting
6744         native wrapper for COM calls.
6745    
6746         Code is contributed under MIT/X11 license.
6747
6748 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
6749
6750         * icall-def.h, security.c, security.h :
6751           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
6752
6753 2007-08-07  Martin Baulig  <martin@ximian.com>
6754
6755         * mono-debug-debugger.h
6756         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
6757
6758         * domain.c (mono_domain_free): Call
6759         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
6760
6761 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
6762
6763         * verify.c (check_underflow, check_overflow): error message now returns IL offset
6764         * verify.c (in_same_block): code should test if either offset is inside the clauses
6765         * verify.c (mono_method_verify): push the exception into the eval stack of exception
6766         and filter blocks
6767
6768 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
6769
6770         * image.c (mono_image_close): Fix a leak.
6771
6772         * object.c (mono_runtime_invoke_array): Avoid using alloca.
6773
6774         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
6775
6776 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
6777
6778         * domain.c, threads.c, threads-types.h: fix memory retention issue
6779         with thread static variables not being cleared on domain unload.
6780         Reuse thread static slots after domain unload.
6781
6782 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
6783
6784         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
6785         nullable type.
6786
6787         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
6788         now done in mono_runtime_invoke_array.
6789
6790         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
6791         receiver is a nullable type.
6792
6793         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
6794         generic parameter.
6795
6796 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
6797
6798         * marshal.c: Implement COM Objects as return type for 
6799         managed->unmanaged calls. Added Release calls for COM Object
6800         out/return values in managed->unmanaged calls.
6801
6802         Code is contributed under MIT/X11 license.
6803
6804 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
6805
6806         * threads.h, threads-type.h: move the hazard pointer declarations
6807         to the private header.
6808
6809 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
6810
6811         * file-io.c, appdomain.c: memory leak fixes.
6812
6813 2007-08-02  Dick Porter  <dick@ximian.com>
6814
6815         * socket-io.c
6816         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
6817         SO_REUSEADDR setting into io-layer/sockets.c.
6818
6819 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
6820
6821         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
6822         from Object when called on a generic parameter. Fixes #82211.
6823
6824 2007-08-01  Dick Porter  <dick@ximian.com>
6825
6826         * file-io.c (convert_share): Test FileShare values bit-by-bit.
6827         Fixes bug 79250 yet again.
6828
6829 2007-07-30  Martin Baulig  <martin@ximian.com>
6830
6831         Merged the `debugger-dublin' branch.
6832
6833         * mono-debug.h
6834         (MonoDebugDataTable): New typedef.
6835         (MonoDebugMethodAddressList): New typedef.
6836         (MonoDebugWrapperData): Removed.
6837         (MonoDebugSymbolTable): Removed `current_data_table',
6838         `current_data_table_size', `current_data_table_offset'.
6839         (MonoDebugDataItemType): Moved into mono-debug.c.
6840         (MonoDebugMethodJitInfo): Remove `address'.
6841         (mono_debug_data_table): New global variable.
6842         (mono_debug_lookup_method_addresses): New public function.
6843         (mono_debug_find_method): Take a `MonoMethod *', not a
6844         `MonoDebugMethodInfo *'.
6845
6846         * mono-debug.c: Drop support for the old symbol tables.
6847
6848 2007-06-28  Martin Baulig  <martin@ximian.com>
6849
6850         * mono-debug.c (mono_debug_debugger_version): New public variable.
6851
6852 2007-07-31  William Holmes  <billholmes54@gmail.com>
6853
6854         * metadata.c Changed mono_type_create_from_typespec to not insert
6855           the type into the hash map until after
6856           do_mono_metadata_parse_type has completed.
6857         Fixes Bug #82194
6858         Code is contributed under MIT/X11 license.
6859
6860 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
6861
6862         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
6863         generic parameter. Fixes #82211.
6864
6865 2007-07-27  Jb Evain  <jbevain@novell.com>
6866
6867         * pedump.c (dump_metadata, dump_metadata_header): dump
6868         versions contained in the metadata header.
6869
6870 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
6871
6872         * threads.c: register small_id_table with the GC.
6873
6874 2007-07-27  Mark Probst  <mark.probst@gmail.com>
6875
6876         * threads.c, threads.h, class-internals.h, object-internals.h:
6877         Hazard pointers, to be used by lock-free parallel algorithms.
6878
6879 2007-07-26  Dick Porter  <dick@ximian.com>
6880
6881         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
6882         routine on non-windows platforms, as I've not managed to think of
6883         a non-kludgy way of doing this.  Finishes off bug 78739.
6884
6885 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
6886
6887         * object.c: properly setup interface_bitmap in proxy vtables.
6888
6889 2007-07-25  Marek Habersack  <mhabersack@novell.com>
6890
6891         * appdomain.c (get_shadow_assembly_location): do not use TickCount
6892         to create unique shadow copy target directories, use the domain's
6893         serial number instead. Each domain gets a unique target directory
6894         that way.
6895
6896         * domain.c (mono_domain_create): added code to increment domain
6897         shadow copy serial number and cache the value in the current
6898         domain structure.
6899
6900         * domain-internals.h (struct _MonoDomain): added a new field -
6901         shadow_serial to hold the serial number used in generation of
6902         shadow-copy directories. This is to make sure that the directory
6903         name is unique for each and every domain created. We avoid a race
6904         condition with overriding assemblies already in use by other app
6905         domains.
6906
6907 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
6908
6909         * class.c (mono_bounded_array_class_get): fixed memory leak when 
6910         binding generic parameters.
6911
6912 2007-07-24  Raja R Harinath  <rharinath@novell.com>
6913
6914         * metadata.c (do_mono_metadata_parse_generic_class): Use
6915         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
6916         error.
6917
6918 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
6919
6920         * loader.c, class-internals.h, reflection.c: removed the per-method
6921         generics hashtable: we use the global one through the call of
6922         mono_class_inflate_generic_method ().
6923
6924 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
6925
6926         * class.c, metadata.c, class-internals.h: introduce yet another
6927         generics global cache for inflated methods (fixes 98% of the perf
6928         issue in bug #81806).
6929
6930 2007-07-23  Raja R Harinath  <rharinath@novell.com>
6931
6932         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
6933         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
6934         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
6935         return a MonoGenericInst containing (a copy) of those types.
6936         (mono_metadata_inflate_generic_inst): Update to changes.
6937         (mono_metadata_parse_generic_inst): Likewise.
6938         (mono_get_shared_generic_inst): Likewise.
6939         * reflection.c (mono_class_bind_generic_parameters): Likewise.
6940         (mono_reflection_bind_generic_method_parameters): Likewise.
6941         * metadata-internals.h: Likewise.
6942         * icall.c (free_generic_context): Kill.
6943         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
6944
6945         * reflection.c (reflection_methodbuilder_to_mono_method): Use
6946         mono_metadata_type_dup.
6947         * marshal.c (mono_mb_create_method): Likewise.
6948
6949         * metadata.c (mono_metadata_type_dup): Rename from
6950         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
6951         MonoImage.  Handle a few more cases, esp. when no mempool is given.
6952         * marshal.c, metadata-internals.h: Update to changes.
6953
6954 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6955
6956         * class.c: fixed a small leak for array classes and removed warning.
6957
6958 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
6959
6960         * loader.c (mono_method_get_param_token): Make this work on generic methods.
6961         Return 0x8000000 for return parameters. Fixes #82161.
6962
6963 2007-07-21  Marek Habersack  <grendello@gmail.com>
6964
6965         * appdomain.c (get_shadow_assembly_location): append the current
6966         ticks value to the path. Avoids overwriting the same assemblies by
6967         several threads at the same time.
6968
6969 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
6970         and Raja R Harinath  <rharinath@novell.com>
6971
6972         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
6973         Simplify slightly.
6974         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
6975         property for testing if a method is a generic method definition.
6976
6977 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
6978
6979         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
6980
6981 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6982
6983         * verify.c: used function from private branch, reverted to the one in class.h 
6984
6985 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6986
6987         * verify.c: a typo slipped in and the code wont compile
6988
6989 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6990
6991         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
6992         disabled box instruction as it is doing the wrong thing
6993         improved stack dump messages, now it is easier to debug type related issues
6994
6995
6996 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
6997
6998         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
6999
7000 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7001
7002         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
7003         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
7004         grouped with class and valuetype. This change will simply 
7005         the code as it should be handled just like unmanaged pointers.
7006
7007 2007-07-19  Mark Probst  <mark.probst@gmail.com>
7008
7009         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
7010
7011 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7012
7013         * verify.c: several stack merge issues fixed, reference comparisons now
7014         check the type size. strict type check now works correctly.
7015         added more uses of IS_MANAGED_POINTER macro.
7016         fixed issues pointed by running the test suite against .net.
7017         
7018
7019 2007-07-19  Mark Probst  <mark.probst@gmail.com>
7020
7021         * class.c, loader.c, class-internals.h: Removed the
7022         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
7023         defines.
7024
7025         * icall.c: Better error checking in some internal reflection
7026         methods.
7027
7028 2007-07-18  William Holmes  <billholmes54@gmail.com>
7029
7030         * filewatcher.c : removed unused variable 'filename' in 
7031           ves_icall_System_IO_FSW_SupportsFSW
7032
7033 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
7034
7035         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
7036         obsolete, removed.
7037
7038 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
7039
7040         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
7041         
7042         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
7043
7044 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
7045
7046         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
7047         Implement generics support.
7048         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
7049
7050         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
7051         type_args and method_args arguments.
7052         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
7053         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
7054         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
7055
7056 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
7057
7058         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
7059           It adds a rootimage parameter to mono_reflection_get_type_internal,
7060           adds new function mono_reflection_get_type_with_rootimage and use
7061           the rootimage to resolve the types instead of the current image
7062
7063 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7064
7065         * culture-info-table.h: Forgot to update after r78304.
7066
7067 2007-07-13  Raja R Harinath  <rharinath@novell.com>
7068
7069         * class.c (mono_class_is_open_constructed_type)
7070         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
7071
7072 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
7073
7074         * class.c (mono_bounded_array_class_get):  method fails if used with
7075         an incomplete TypeBuilder enum (no basetype field), fixed it by 
7076         avoiding calculating the size for such array as it cannot be instantiated.
7077         Fix bug #82015
7078
7079 2007-07-12  Raja R Harinath  <rharinath@novell.com>
7080
7081         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
7082         field.
7083         * metadata.c, reflection.c: Update to changes.
7084
7085 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
7086
7087         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
7088         mono_class_is_valid_enum, they are used to valide a enum when loading.
7089         * reflection.c: used new functions to throw TypeLoadException when and
7090         invalid enum is build with TypeBuilder. Fixes #82018
7091   
7092 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
7093
7094         * object.c: forgot commit of mono_class_setup_methods () to access
7095         iface->methods.
7096         * object-internals.h: added a few more handy fields to
7097         MonoIMTCheckItem.
7098
7099 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
7100
7101         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
7102         iface->methods.
7103
7104 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
7105
7106         * class-internals.h, object-internals.h, object.c: IMT-based
7107         interface invocation core from Massimiliano Mantione
7108         (massi@ximian.com) with a reworked arch-specific interface,
7109         bsearch implementation and a few bugfixes and memory savings by me.
7110
7111 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
7112
7113         * class.c (mono_class_create_from_typedef): mono would segfault if 
7114         an enum did not have a __value field. It now throws a TypeLoadException
7115         for such cases. Fix bug #82022
7116
7117 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
7118
7119         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
7120
7121 2007-07-09  Mark Probst  <mark.probst@gmail.com>
7122
7123         * class.c (mono_class_init): If a class is already inited but has
7124         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
7125
7126 2007-07-09  Mark Probst  <mark.probst@gmail.com>
7127
7128         * class.c: Properly handle the case of an unimplemented interface
7129         method.  Fixes: 81673.
7130
7131 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
7132
7133         * class-internals.h, object.c: cleanup patch from massi: use
7134         MonoVTable->interface_bitmap since the vtable interfaces offset array
7135         is going away.
7136
7137 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
7138
7139         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
7140         GetMDStreamVersion icall instead.
7141
7142 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
7143
7144         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
7145         not use mono_dl_build_path() with a full library name: makes
7146         fallbacks to libgaim and libfam work.
7147
7148 2007-07-06  William Holmes  <billholmes54@gmail.com>
7149
7150         * assembly.c: Added a continue statement in probe_for_partial_name when
7151          parse_assembly_directory_name fails.  Fixes : 82002
7152
7153 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
7154
7155         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
7156         and added a verification  for TYPEDBYREF.
7157         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
7158         make native int interchangeable with int32 and some small cleanup and formating.
7159         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
7160         handle byref of byref.
7161         * verify.c (push_local): handle byref of byref.
7162         * verify.c (do_binop): invalid mix of values is unverifiable
7163         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
7164         added visibility checks
7165         * verify.c (field related method): added visibility checks
7166         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
7167
7168 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
7169
7170         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
7171         string.
7172
7173 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
7174
7175         * profiler.c (mono_profiler_load): Fix an off-by-one error.
7176
7177         * marshal.c (emit_marshal_string): When returning a string from managed code,
7178         allways make a copy even for unicode strings. Fixes #81990.
7179
7180 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
7181
7182         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
7183         of byref generic inst types (bug #81997).
7184
7185 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
7186
7187         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
7188         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
7189
7190 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
7191
7192         * marshal.c (emit_marshal_string): Add support for unicode strings in
7193         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
7194
7195 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
7196
7197         * verify.c: field load/store are now verified, missing only access checks now
7198
7199 2007-06-28  Martin Baulig  <martin@ximian.com>
7200
7201         * mono-debug.c (mono_debug_debugger_version): New public variable.
7202
7203 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
7204
7205         * locales.c: When constructing DateTimeFormat or NumberFormat for
7206         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
7207         MonoCultureInfo contructed from the current locale is always
7208         read-only and has UseUserOverride set to true. All MonoCultureInfo
7209         instances returned for GetCultures have both IsReadOnly and
7210         UseUserOverride set to true. Fixes part of bug #81930.
7211
7212 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
7213
7214        * icall-def.h: Update System.__ComObject icalls
7215        * marshal.c: Avoid managed transition (and object creation)
7216        when looking up COM interface in RCW.
7217        * marshal.h: Ditto.
7218        
7219        Code is contributed under MIT/X11 license.
7220
7221 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
7222
7223         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
7224         to avoid crashes during assembly unloading.
7225
7226 2007-06-22  Raja R Harinath  <rharinath@novell.com>
7227
7228         Fix MethodInfo.IsGenericMethodDefinition
7229         * reflection.c (mono_reflection_bind_generic_method_parameters):
7230         Rearrange code to ensure we always uses a generic method definition.
7231         * class.c (mono_class_inflate_generic_method_full): Set
7232         'generic_container' field only for generic method definitions.
7233         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
7234         Use presense of 'generic_container' field as indication of being a
7235         generic method definition.
7236
7237 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
7238
7239         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7240
7241         * object-internals.h: Reflect changes in the layout of the managed Delegate
7242         class.
7243         
7244         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
7245         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
7246         runtime memory used by the dynamic method. Fixes #77146.
7247
7248 2007-06-21  Dick Porter  <dick@ximian.com>
7249
7250         * file-io.h: 
7251         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
7252         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
7253         81767.
7254
7255 2007-06-21  Raja R Harinath  <rharinath@novell.com>
7256
7257         * reflection.c (method_encode_methodspec): Add a tripwire.
7258         * class.c (inflate_generic_type): The fully open generic type is
7259         not the same as the generic type definition.
7260
7261 2007-06-21  Martin Baulig  <martin@ximian.com>
7262
7263         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
7264
7265         * mono-debug-debugger.h
7266         (MonoDebuggerBreakpointInfo): Removed.
7267         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
7268         (mono_debugger_remove_breakpoint): Likewise.
7269         (mono_debugger_breakpoint_callback): Likewise.
7270         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
7271
7272 2007-06-21  Raja R Harinath  <rharinath@novell.com>
7273
7274         * metadata.c (mono_metadata_lookup_generic_class): The fully open
7275         generic type is not the same as the generic type definition.
7276         * class.c (mono_generic_class_get_class): Likewise.
7277
7278 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
7279
7280         * icall.c: The second argument to 
7281         System.Reflection.MethodBase.GetMethodFromHandleInternalType
7282         is a MonoType not a MonoClass.
7283
7284 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
7285
7286         * verify.c: support for function pointers in the verifier
7287
7288 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
7289
7290         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
7291
7292 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
7293
7294         * assembly.c: removed Mono.Data.SqliteClient from the list of
7295         forward-compatible assemblies as it breaks the ABI (bug #81899).
7296
7297 2007-06-19  Raja R Harinath  <rharinath@novell.com>
7298
7299         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
7300         lookup/update with the loader lock.
7301         * reflection.c (mono_class_bind_generic_parameters): No need to
7302         protect mono_metadata_lookup_* with the loader lock.
7303         * class.c (inflate_generic_type): Likewise.
7304         
7305         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
7306         on a generic instantiated type.
7307
7308 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
7309
7310         *verify.c: produce meanfull error messages on verification error
7311         *verify.c: fixed some cases of verification errors reported as validation errors
7312         *pedump.c: fixed the error name array, now it shows validation errors properly
7313         *verify.h: fixed the contant that should be used for verification errors
7314
7315 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
7316
7317         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
7318         for bug #77596, 81858 and 80743 (generics data structures on domain
7319         unload).
7320
7321 2007-06-15  Raja R Harinath  <rharinath@novell.com>
7322
7323         Avoid allocating 'MonoGenericContext' on the heap.
7324         * class-internals (_MonoMethodInflated::context): Make field
7325         inline, not a pointer.
7326         * loader.c (method_from_methodspec): Allocate 'new_context' on the
7327         stack.  Use the context embedded within the inflated method as the
7328         hash key, rather than 'new_context'.
7329         * class.c (inflate_generic_context): Simplify.  Return a struct
7330         rather than allocating on the heap.
7331         (mono_class_inflate_generic_method_full): Update to changes.  Now,
7332         doesn't salt away a copy of the context -- simplifying the
7333         lifetime rules of a 'MonoGenericContext *'.
7334         (mono_method_get_context): Return pointer to embedded context.
7335         (setup_generic_array_ifaces): Allocate temporary context on stack.
7336         * reflection.c (inflate_mono_method): Likewise.
7337         (mono_reflection_bind_generic_method_parameters): Likewise.
7338         Use the context embedded within the inflated method as the hash key.
7339
7340         Avoid a source of allocation of 'MonoGenericContext'.
7341         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
7342         and 'cached_context' fields into embedded 'MonoGenericContext' field.
7343         * class.c: Update to changes.
7344         (mono_generic_class_get_context): Simplify drastically.  Now just
7345         returns a pointer to the field.
7346         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
7347         argument as a const pointer.
7348         (mono_metadata_generic_context_equal): Likewise.
7349         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
7350         Update to changes.
7351
7352 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
7353
7354         * verify.c improved the handling of brtrue/brfalse, factored out common code
7355
7356 2007-06-14  Raja R Harinath  <rharinath@novell.com>
7357
7358         Kill MonoGenericMethod.
7359         * class-internals.h (MonoGenericContext::method_inst): Rename from
7360         'gmethod' and convert to a MonoGenericInst.
7361         (MonoGenericMethod): Remove.
7362         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
7363         * loader.c (method_from_methodspec): Update to changes.  Use a
7364         MonoGenericContext as the key to the hashtable.
7365         * metadata.c (mono_metadata_generic_context_equal): Rename from 
7366         'mono_metadata_generic_method_equal' and take MonoGenericContext.
7367         (mono_metadata_generic_context_hash): Likewise from
7368         'mono_metadata_generic_method_hash'.  Change hash function.
7369         (mono_metadata_load_generic_params): Update to changes.
7370         (mono_get_shared_generic_method): Remove.
7371         * metadata-internals.h (mono_get_shared_generic_method): Remove.
7372         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
7373         (inflate_generic_context): Likewise.
7374         (mono_class_inflate_generic_method_full): Likewise.
7375         (setup_generic_array_ifaces): Likewise.
7376         (mono_class_create_from_typespec): Likewise.
7377         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
7378         (method_encode_methodspec): Update callsite.
7379         (reflection_methodbuilder_to_mono_method): Update to changes.
7380         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
7381         MonoGenericContext as the key to the hashtable.
7382         (inflate_mono_method): Update to changes.
7383
7384         * class-internals.h (MonoGenericMethod::container): Remove.
7385         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
7386
7387 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
7388
7389         * profiler-private.h, profiler.c, profiler.h: added API to profile
7390         exception events.
7391
7392 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
7393
7394         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
7395
7396 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
7397
7398         * verify.c: method invocation is now validated, now we verify parameter types on stack.
7399         Fixed overflow and underflow not aborting the verification process.
7400
7401 2007-06-13  Mark Probst  <mark.probst@gmail.com>
7402
7403         * class-internals.h (MonoStats): Added stats entries for dynamic
7404         code allocations.
7405
7406 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
7407
7408         * loader.c (mono_free_method): Free header->locals and header->clauses.
7409
7410         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
7411         dynamic case.
7412
7413         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
7414
7415         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
7416
7417 2007-06-12  Raja R Harinath  <rharinath@novell.com>
7418
7419         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
7420         the tables.
7421
7422 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
7423
7424         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
7425
7426 2007-06-11  Raja R Harinath  <harinath@gmail.com>
7427
7428         MonoGenericMethod on a diet
7429         * class-internals.h (_MonoMethodInflated::reflection_info): Move
7430         here ...
7431         (_MonoGenericMethod::reflection_info): ... from here.
7432         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
7433         Update to changes.
7434         * reflection.c (inflate_mono_method): Likewise.
7435         (mono_reflection_bind_generic_method_parameters): Likewise.
7436
7437 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
7438
7439         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
7440         *verify.c: factored long ldarg forms to share code with short forms
7441
7442 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
7443
7444         *verify.c: fixed code formating factored some duplicate code
7445         into a new function
7446
7447         *verify.h: fixed binary incompatibility introduced earlier
7448
7449         *pedump.c: fixed formating
7450
7451 2007-06-11  Raja R Harinath  <harinath@gmail.com>
7452
7453         Fix assertion when disassembling Mono.C5.dll
7454         * loader.c (method_from_methodspec): Avoid inflating a method
7455         twice with the same context.  If the methodref is inflated, use
7456         the declaring method instead.
7457
7458         * class.c (mono_class_from_generic_parameter): Fix case similar to
7459         bug #81830 handled below, but for method containers.
7460
7461 2007-06-10  Raja R Harinath  <harinath@gmail.com>
7462
7463         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
7464         get_shared_generic_class.  Directly inflate the instance.
7465         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
7466         (inflate_generic_class): Delete.
7467         (get_shared_generic_class): Delete.  Move setting of
7468         'cached_class' and 'cached_context' ...
7469         * metadata.c (mono_metadata_lookup_generic_class): ... here.
7470
7471         * metadata.c (mono_metadata_lookup_generic_class): Change
7472         signature to take the components of a MonoGenericClass rather than
7473         an allocated MonoGenericClass.  Change semantics to be intern-like.
7474         * reflection.c (mono_class_bind_generic_parameters): Update to
7475         changes.  Make locking region tighter.
7476         * class.c (inflate_generic_class): Update to changes.
7477         (get_shared_generic_class): Likewise.
7478         * metadata-internals.h: Likewise.
7479
7480         * reflection.c (mono_class_bind_generic_parameters): Take and
7481         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
7482         (mono_reflection_bind_generic_parameters): Use
7483         'mono_class_bind_generic_parameters' rather than duplicate the code.
7484         * class.c (mono_bounded_array_class_get): Update to changes.
7485         * object-internals.h: Likewise.
7486
7487         * reflection.c (mono_class_bind_generic_parameters): Only support
7488         parameterizing generic type definitions.  Remove support for other
7489         open types.
7490
7491 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
7492
7493         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
7494
7495         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
7496         in the dynamic case.
7497
7498 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
7499
7500         * threads.c: When cleaning up thread, reset the Background bit.
7501         Fixes bug #81720.
7502
7503 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
7504
7505        * metadata.c: Move variable declarations to top of scope.
7506        * verify.c: Move variable declarations to top of scope.
7507
7508        Code is contributed under MIT/X11 license.
7509
7510 2007-06-08  Raja R Harinath  <rharinath@novell.com>
7511
7512         * reflection.c (mono_class_bind_generic_parameters): Replace
7513         open-coded loop with mono_metadata_inflate_generic_inst.
7514
7515         * class.c (get_shared_generic_class): Don't call
7516         mono_get_shared_generic_inst.  Use the container's own
7517         'class_inst'.
7518
7519         * metadata.c (mono_metadata_load_generic_params): Move
7520         initialization of 'context' field here from ...
7521         * class.c (mono_class_create_from_typedef): ... here, and ...
7522         * loader.c (mono_get_method_from_token): ... here.
7523
7524         * class.c (get_shared_generic_class): Rename from
7525         mono_get_shared_generic_class and make static.
7526         (mono_get_shared_generic_inst): Move to metadata.c.
7527         * loader.c (mono_get_shared_generic_method): Likewise.
7528         * class-internals.h, metadata-internals.h: Update to changes.
7529
7530         Fix #81830
7531         * class.c (mono_class_from_generic_parameter): Don't assume a
7532         generic container owner exists.  Generic containers from monodis
7533         don't have any.
7534
7535 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
7536
7537         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
7538         * verify.h: new typedefs to returns the non-verifiable status
7539         * verify.c: initial implementation of generics, stack merging and object compatibility check
7540
7541 2007-06-06  Mark Probst  <mark.probst@gmail.com>
7542
7543         * class.c, image.c, class-internals.h (MonoImage): class_cache is
7544         a MonoInternalHashTable again (fixed bug in internal hash table
7545         code).
7546
7547 2007-06-06  Mark Probst  <mark.probst@gmail.com>
7548
7549         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
7550         MonoInternalHashTable again (fixed bug in internal hash table
7551         code).
7552
7553 2007-06-06  Mark Probst  <mark.probst@gmail.com>
7554
7555         * class.c, image.c, class-internals.h, domain.c,
7556         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
7557         changes.  Have to figure out what makes them break the SWF
7558         regression.
7559
7560 2007-06-04  Mark Probst  <mark.probst@gmail.com>
7561
7562         * class.c, image.c, class-internals.h (MonoImage): class_cache is
7563         a MonoInternalHashTable now.
7564
7565 2007-06-04  Mark Probst  <mark.probst@gmail.com>
7566
7567         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
7568         MonoInternalHashTable now.
7569
7570 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
7571
7572         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
7573         invoke_impl code.
7574
7575         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
7576
7577         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
7578         dependent trampoline.
7579
7580         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7581
7582         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
7583
7584 2007-05-29  Robert Jordan  <robertj@gmx.net>
7585
7586         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
7587
7588 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
7589
7590         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
7591
7592 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
7593
7594        * marshal.c: Fix interface lookup loops for
7595        cominterop_get_com_slot_for_method and 
7596        cominterop_get_method_interface. Only need to lookup
7597        if type is a class, else use interface type method is on.
7598
7599        Code is contributed under MIT/X11 license.
7600
7601 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
7602
7603         * reflection.c: HasSecurity can be present even if no specially 
7604         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
7605         SecurityAttribute). Fix CAS regression tests on buildbot.
7606
7607 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
7608
7609        * appdomain.c: Add configure checks for header files.
7610        * image.c: Add configure checks for header files.
7611        * file-io.c: Add configure checks for header files.
7612        * debug-mono-symfile.c: Add configure checks for header files.
7613        * threadpool.c: Add configure checks for header files.
7614        * console-io.c: Add configure checks for header files.
7615        * profiler.c: Add configure checks for header files.
7616        * rawbuffer.c: Add configure checks for header files.
7617        * icall.c: Add configure checks for header files.
7618        * rand.c: Add configure checks for header files.
7619        * socket-io.c: Add configure checks for header files.
7620
7621        Code is contributed under MIT/X11 license.
7622
7623 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
7624
7625         * reflection.c (mono_custom_attrs_from_builders): Remove the 
7626         assertion as it breaks the build.
7627         
7628         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
7629
7630         * reflection.c (lookup_custom_attr): Make a copy here too.
7631
7632         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
7633         dynamic images.
7634
7635         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
7636         images.
7637
7638         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
7639         info.
7640
7641 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
7642
7643         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
7644         (load_cattr_value): Ditto.
7645
7646 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
7647
7648         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
7649
7650 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
7651
7652         * threads.c: In "start_wrapper", set apartment_state to MTA if
7653         apartment_state is Unknown and we're running on 2.0 profile or
7654         higher.
7655         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
7656         to main method, then set apartment_state to Unknown on 1.0 profile,
7657         and MTA on 2.0 profile.
7658
7659 2007-05-16  Jb Evain  <jb@nurv.fr>
7660
7661         * class-internals.h (MonoDefaults): Add an attribute_class and
7662           customattribute_data_class.
7663         * domain.c (mono_init_internal): Populate them.
7664         * reflection.c: Use them to remove duplicates. Make a vew
7665         MonoClass variables `static'.
7666
7667 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
7668
7669         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
7670         step in implementing IMT, so that all isinst checks now can go
7671         through the bitmap.
7672         This was needed because vtables for TransparentProxy need to look
7673         like the vtable of the "target" class, so they need to point to
7674         its interface bitmap directly.
7675
7676         * object.c: inside "mono_class_create_runtime_vtable" and
7677         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
7678
7679 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7680
7681         * object-internals.h
7682           culture-info.h : added territory field in MonoCulture and
7683           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
7684         * locales.c : fill territory field above too.
7685         * culture-info-table.h : regenerated.
7686
7687 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
7688
7689         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
7690         Fixes #81599.
7691
7692 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
7693
7694         * object.c: Always initialize apartment, even if 
7695         there is no custom attributes on entry point.
7696         
7697         Code is contributed under MIT/X11 license.
7698
7699 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
7700
7701         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
7702         * metadata.c: If no encoding is set, check for unicode
7703         on class.
7704         
7705         Code is contributed under MIT/X11 license.
7706
7707 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
7708
7709         * threads.c: Handle if mono_thread_current returns NULL 
7710         
7711         Code is contributed under MIT/X11 license.
7712
7713 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
7714
7715         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
7716         in start_wrapper. Added mono_thread_init_apartment_state and
7717         mono_thread_cleanup_apartment_state.
7718         * object.c: Initialize thread apartment state on main thread
7719         by checking for STAThreadAttribute on entry point.
7720         * object-internals.h: Add apartment_state field to MonoThread.
7721         * threads-types.h: Add unmanaged definition of 
7722         System.Threading.ApartmentState, MonoThreadApartmentState.
7723         
7724         Code is contributed under MIT/X11 license.
7725         
7726 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
7727
7728         * class.c: Fix windows build.
7729         * class-internals.h: Fix windows build.
7730         
7731         Code is contributed under MIT/X11 license.
7732
7733 2007-05-08  Robert Jordan  <robertj@gmx.net>
7734
7735         * process.c (CreateProcess_internal):
7736         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
7737         .CreateNoWindow was specified. Fixes #81496.
7738
7739 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
7740
7741         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
7742         step in implementing IMT, replaced it with two compact arrays
7743         (interfaces_packed and interface_offsets_packed) and a bitmap that
7744         is used for isinst checks (interface_bitmap).
7745
7746         * class.c: (compare_interface_ids): compare function to pass to
7747         bsearch when looking for an interface with a given id.
7748         (mono_class_interface_offset): reimplemented using bsearch on
7749         interfaces_packed, getting the offset from interface_offsets_packed.
7750         (print_implemented_interfaces): utility debugging function.
7751         (setup_interface_offsets): reworked to initialize interfaces_packed,
7752         interface_offsets_packed and interface_bitmap.
7753
7754         * object.c: replaced all accesses to "MonoClass.interface_offsets"
7755         with uses of interfaces_packed and interface_offsets_packed.
7756
7757 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
7758
7759         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
7760         mono_class_interface_offset prototype to wrap all accesses to
7761         "MonoClass.interface_offsets".
7762
7763         * class.c: Implemented mono_class_interface_offset, and wrapped all
7764         accesses to "MonoClass.interface_offsets".
7765
7766         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
7767         "MonoClass.interface_offsets".
7768
7769 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
7770
7771         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
7772         GetMethodFromHandle overloads (bug #78637).
7773
7774 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
7775
7776         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
7777         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
7778
7779 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
7780
7781         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
7782         #81498.
7783
7784         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
7785         gracefully.
7786         (mono_custom_attrs_from_index): Ditto.
7787
7788         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
7789         Fixes #81501.
7790
7791 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
7792
7793         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
7794         is now allocated from a mempool.
7795
7796 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
7797
7798         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
7799         caller holds threads_lock, leading to deadlocks. Fixes #81476.
7800
7801 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
7802
7803         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
7804         mono_loader_clear_error () too late. Fixes #81463.
7805
7806 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
7807
7808         * culture-info-table.h : regenerated.
7809
7810 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
7811
7812         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
7813         is missing.
7814
7815 2007-04-25  Dick Porter  <dick@ximian.com>
7816
7817         * Makefile.am: Put the mingw enforced-optimisation back into the
7818         PLATFORM_WIN32 section.
7819
7820 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
7821
7822         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
7823         patch.
7824
7825         * image.c (mono_image_load_module): New API function to load a module reference.
7826
7827         * image.c (load_modules): Load modules lazily. Fixes #80812.
7828
7829         * class.c (mono_class_from_typeref): Use mono_image_load_module.
7830         
7831         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
7832
7833         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
7834         to mono_image_load_module_dynamic.
7835
7836 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
7837
7838         * marshal.c: Fix calling convention for CCW on non-windows
7839         platforms. STDCALL on windows, CDECL everywhere else to work 
7840         with XPCOM and MainWin COM.
7841         
7842         Code is contributed under MIT/X11 license.
7843
7844 2007-04-23  Martin Baulig  <martin@ximian.com>
7845
7846         Fix #80969.
7847
7848         * loader.c
7849         (method_from_memberref): Added `gboolean *used_context' argument.
7850         (mono_get_method_from_token): Likewise.
7851         (mono_get_method_full): Don't insert the method in the cache when
7852         `used_context' is true.
7853
7854 2007-04-23  Raja R Harinath  <rharinath@novell.com>
7855
7856         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
7857
7858         * reflection.c (mono_reflection_bind_generic_parameters): Don't
7859         create new MonoTypes for returned types.
7860         * class.c (mono_generic_class_get_class): Export mono-internal.
7861         * class-internals.h: Update to changes.
7862
7863 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
7864
7865         * threadpool.c, threadpool.h, icall-def.h: patch from
7866         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
7867
7868 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
7869
7870         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
7871         
7872         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
7873
7874         * threads.c (mono_thread_get_stack_bounds): New helper function.
7875
7876         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
7877         Correctly compute stack bounds when attaching. Fixes #81394.
7878
7879 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
7880
7881         * reflection.c: fix handling of doubles in custom attributes
7882         for the arm-fpa format (bug #81368).
7883
7884 2007-04-18  Raja R Harinath  <rharinath@novell.com>
7885
7886         * reflection.c (assembly_add_win32_resources): Mildly relax an
7887         bounds check to let the end pointer point just past the end of the
7888         allocated buffer.  (may fix #81384)
7889
7890 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
7891
7892         * culture-info-table.h : regenerated.
7893
7894 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
7895
7896         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
7897         the thread is aborted early.
7898
7899 2007-04-05  Dick Porter  <dick@ximian.com>
7900
7901         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
7902         FindFirstFile()/FindNextFile() to find entries.  This lets the
7903         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
7904         81038.
7905
7906         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
7907         the parameters of
7908         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
7909
7910 2007-04-04  Martin Baulig  <martin@ximian.com>
7911
7912         * debug-helpers.c
7913         (mono_method_desc_full_match): Add support for nested classes.
7914
7915 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
7916
7917         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
7918
7919 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
7920
7921         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
7922         waiting for too many threads.
7923
7924 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
7925
7926         * environment.c: Fix return value check on uname so we can get the 
7927         executing version on Solaris operating systems.
7928
7929 2007-03-28  Jb Evain  <jbevain@gmail.com>
7930
7931         * class.c (mono_type_get_name_recurse): Complete the
7932         fix for the creation of assembly qualified names for
7933         pointer types. Fixes #81208.
7934
7935 2007-03-27  Dick Porter  <dick@ximian.com>
7936
7937         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
7938         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
7939         changed.
7940
7941         * threads.c
7942         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
7943         the value of ReleaseMutex().
7944
7945 2007-03-27  Dick Porter  <dick@ximian.com>
7946
7947         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
7948         in little-endian order, not network endian, so must be converted
7949         to host endian here.  Fixes bug 80593.
7950
7951 2007-03-22  Jb Evain  <jbevain@gmail.com>
7952
7953         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
7954         qualified names for pointer types. Fixes #81208.
7955
7956 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
7957
7958         * marshal.c: Add support for PreserveSigAttribute. 
7959         
7960         Code is contributed under MIT/X11 license.
7961
7962 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
7963
7964         * process.c: Fix endianness issues. Fixes #81126.
7965
7966         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
7967         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
7968
7969         * image.c (mono_image_lookup_resource): Make this work on big-endian
7970         machines.Change API contract so the caller needs to free the return value.
7971         
7972         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
7973         API change.
7974         
7975 2007-03-14  Martin Baulig  <martin@ximian.com>
7976
7977         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
7978         mono_type_get_desc() as well.
7979
7980 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
7981
7982         * icall.c:  Fix environ access in VS.  
7983         
7984 2007-03-13  Alp Toker  <alp@atoker.com>
7985
7986         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
7987         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
7988         #63841.
7989
7990 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
7991
7992         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
7993         circular references among dynamic methods. Fixes #81091.
7994
7995         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
7996
7997 2007-03-09  Martin Baulig  <martin@ximian.com>
7998
7999         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
8000
8001 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
8002
8003         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
8004         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
8005         
8006         Code is contributed under MIT/X11 license.
8007         
8008 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
8009
8010         * loader.c: Reapply patch for bug #79424.
8011
8012 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
8013
8014         * metadata.c (mono_type_to_unmanaged): Only convert object to
8015         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
8016
8017 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
8018
8019         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
8020         (and incorrectly set) is_reference field from MonoGenericInst.
8021
8022 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
8023
8024         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
8025         a little earlier.
8026
8027         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
8028
8029         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
8030
8031 2007-03-05  Miguel de Icaza  <miguel@novell.com>
8032
8033         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
8034         FileOptions.1 value to mean "temporary", map that to
8035         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
8036
8037         Fixes 80688
8038
8039 2007-03-03  Marek Habersack  <mhabersack@novell.com>
8040
8041         * appdomain.c: implement MS .Net style shadow copying. Copies of
8042         the assemblies are made in a subdirectory of the dynamic base
8043         directory, the assembly names are preserved.
8044         Copy .mdb and .config files along with the assemblies being shadowed.
8045
8046 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
8047
8048         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
8049         (emit_marshal_handleref): Ditto.
8050
8051         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
8052         on Visual C++. Fixes #80671.
8053
8054 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
8055
8056         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
8057         for clone operations.
8058
8059 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
8060
8061         * marshal.c: Fix warnings.
8062
8063 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
8064
8065         * loader.c: allow case-insensitive matching of the dll name
8066         in dllmap handling when prefixed with "i:".
8067
8068 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
8069
8070         * threads.c: Fix #ifdef for dummy_apc function for VS.
8071
8072 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
8073
8074         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
8075
8076 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
8077         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
8078         giving precedence to the methods with a fully qualified name
8079         (InterfaceName.MethodName) when building the interface sections
8080         of the vtable.
8081
8082 2007-02-16  Dick Porter  <dick@ximian.com>
8083
8084         * threadpool.c (append_job): Fix fast-path array handling, so it's
8085         less likely the array will grow exponentially when the load is
8086         heavy.
8087
8088 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8089
8090         * metadata-internals.h, loader.c: fix dllmap lookup order
8091         for non-function maps, too, and prepare for fallback code.
8092
8093 2007-02-12  Robert Jordan  <robertj@gmx.net>
8094
8095         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
8096         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
8097         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
8098         GlobalFree. Fixes a part of bug #77075.
8099
8100 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
8101
8102         * loader.c: implemented typedef parent in field memberref.
8103
8104 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
8105
8106         * marshal.c: Fix warnings and remember to call Release on
8107         IUnknown of RCW.
8108         
8109         Code is contributed under MIT/X11 license.
8110
8111 2007-02-10  Miguel de Icaza  <miguel@novell.com>
8112
8113         * class-internals.h: Add MonoHandleRef definition, and
8114         handleref_class to mono_defaults. 
8115
8116         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
8117         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
8118
8119         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
8120         (do nothing on this stage)
8121         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
8122         (emit_marshal_handleref): New method, used for argument handling
8123         of HandleRefs. 
8124
8125 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
8126
8127         * class.c (mono_class_setup_parent): Lazily init com types.
8128         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
8129         init com types.
8130         * object.c (mono_remote_class_vtable): Lazily init com types.
8131         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
8132         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
8133         * domain-internals.h: Expose mono_init_com_types.
8134         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
8135         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
8136         Add support for COM Callable Wrapper marshalling.
8137         * marshal.h: Add icall definitions.
8138         * gc.c: Handle freeing of CCWs in finalizer code.
8139         
8140         Code is contributed under MIT/X11 license.
8141
8142 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
8143
8144         * reflection.c: changed all the signature encoding code to use
8145         a variable-sized buffer.
8146
8147 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
8148
8149         * marshal.c: locking fixes: never take the loader lock
8150         or other runtime locks when holding the marshal lock
8151         (fixes bug#80664).
8152
8153 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
8154
8155         * marshal.c: make the delegate function pointer mapping
8156         work for the moving GC.
8157
8158 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
8159
8160         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
8161         for bug #80618.
8162
8163 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
8164
8165         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
8166         gmodule.
8167
8168 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
8169
8170         * threadpool.c: made the code moving-GC safe.
8171
8172 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
8173
8174         * assembly.c, boehm-gc.c, class-internals.h, class.c,
8175         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
8176         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
8177         warning cleanup.
8178         * reflection.c: warning cleanup, some threading and moving GC fixes.
8179
8180 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
8181
8182         * class.c, loader.c: create the needed Set/Get/Address array methods
8183         as well as the .ctors in mono_class_init (), fixes bug #80567.
8184
8185 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
8186
8187         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
8188         we doesn't decrease its alignment. Should fix the sparc build.
8189
8190 2007-01-24  Dick Porter  <dick@ximian.com>
8191
8192         * socket-io.c
8193         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
8194         Create the returned object if we need to ignore an unsupported
8195         socket option.  Fixes a segfault reported by Atsushi.
8196
8197 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
8198
8199         * class.c, object.c: restrict GC-tracked fields to
8200         UIntPtr fields used inside corlib, so we provide better
8201         type info to the GC and also allow broken packing as in
8202         bug #80580.
8203
8204 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
8205
8206         * sgen-gc.c: removed duplicated function.
8207
8208 2007-01-19  Miguel de Icaza  <miguel@novell.com>
8209
8210         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
8211         value that means that the value is not supported, but that we
8212         should not return a failure, but instead report this as a
8213         successful operation.
8214
8215 2007-01-19  Raja R Harinath  <rharinath@novell.com>
8216
8217         Fix tests/bug79956.2.il
8218         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
8219         (mono_generic_class_get_class): If the generic definition in an
8220         enum, copy over other fields related to it.
8221
8222 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
8223
8224         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
8225         genericinst enums (bug #79215).
8226
8227 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
8228         * class.c: Fix bug 80307.
8229
8230 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
8231
8232         * image.c: if the file table is not present, try to load
8233         all the modules, since we don't have info about them
8234         having or not metadata (bug #80517).
8235         * assembly.c: allow mono_assembly_load_references () to
8236         work for netmodules.
8237
8238 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8239
8240         * image.c, metadata-internals.h, object.c: execute module
8241         cctors when running on the 2 runtime if present (bug #80487).
8242
8243 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
8244
8245         * icall.c: optimized InitializeArray() on bigendian.
8246
8247 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
8248
8249         * icall.c: fix for the broken ARM FPA double format.
8250
8251 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
8252
8253         * icall.c: handle endian issues for r4 and r8 types, too, in
8254         the InitializeArray() icall.
8255
8256 2007-01-15  Miguel de Icaza  <miguel@novell.com>
8257
8258         * loader.c (mono_loader_error_prepare_exception): Clear the error
8259         once we have extracted the information from it, do this before we
8260         call into the JIT's class loading mechanisms.
8261
8262         * object.c (mono_class_create_runtime_vtable): Do not clear the
8263         loader error before calling mono_class_get_exception_for_failure
8264         as the loader error is needed inside
8265         mono_class_get_exception_for_failure to throw the error (thinko).
8266
8267         Fixes #80521
8268         
8269 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
8270
8271         * reflection.c: align fields rva data so it's faster to load at
8272         runtime.
8273
8274 2007-01-12  Raja R Harinath  <rharinath@novell.com>
8275
8276         Prepare to simplify GenericMethod handling.
8277         * class-internals.h (mono_method_get_context): New accessor function.
8278         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
8279         rather than directly accessing '->context' field.
8280
8281         * class-internals.h (_MonoGenericParam.method): Move ...
8282         (_MonoGenericContainer): ... here.  Add into union with klass field.
8283         * class.c, icall.c, loader.c, metadata.c, reflection.c:
8284         Update to changes.
8285
8286 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
8287
8288         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
8289         the wrapper type enum and reduce relocations.
8290
8291 2007-01-12  Raja R Harinath  <rharinath@novell.com>
8292
8293         * reflection.c (inflate_mono_method): Reuse method instantiation
8294         from the generic method, if available.
8295
8296 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
8297
8298         * marshal.c (emit_marshal_variant): Fix conv_arg
8299         type in last commit, based on whether parameter is byref.
8300         
8301 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
8302
8303         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
8304         marshalling.
8305         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
8306         MONO_TYPE_OBJECT back for VARIANT support.
8307
8308 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
8309
8310         * marshal.c, marshal.h, icall-def.h: Implement 
8311         Marshal.ReAllocCoTaskMem.
8312
8313 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
8314
8315         * marshal.c: memory retention fixes: use the proper
8316         image cache for runtime_invoke method lookups.
8317
8318 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
8319
8320         * mempool.c: added code to help debug mempool allocations.
8321
8322 2007-01-11  Dick Porter  <dick@ximian.com>
8323
8324         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
8325         support (experimenting with faking it with IP_MTU_DISCOVER for
8326         systems that don't have IP_DONTFRAGMENT.)
8327         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
8328         icall.
8329
8330         * icall-def.h: new System.Net.Sockets.Disconnect icall.
8331
8332         * socket-io.h: Add new fields to MonoSocketAsyncResult
8333         corresponding to the new ones in Socket.cs.
8334
8335 2007-01-11  Raja R Harinath  <rharinath@novell.com>
8336
8337         Fix IronPython regression mentioned in #80249
8338         * metadata.c (do_mono_metadata_parse_generic_class): Clear
8339         'cached_context' field, since it may have been initialized as a
8340         side-effect of metadata parsing.
8341
8342         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
8343         (_MonoGenericClass.cached_class): Move here and rename from lone
8344         remaining field of ...
8345         (_MonoInflatedGenericClass): ... this.  Remove.
8346         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
8347         to changes.
8348
8349         Fix mcs/tests/test-128.cs regression.
8350         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
8351         2007-01-10 change below.
8352         [MONO_TYPE_OBJECT]: Recurse into array case.
8353
8354 2007-01-11  Raja R Harinath  <harinath@gmail.com>
8355
8356         * class-internals.h (mono_get_inflated_generic_class): Remove.
8357         * class.c (mono_get_inflated_generic_class): Remove.
8358         (mono_generic_class_get_class): Rename from
8359         mono_class_create_generic.
8360         (mono_class_from_mono_type) [GENERICINST]: Use it.
8361         * reflection.c, metadata.c: Update to changes.  Use
8362         'mono_class_from_mono_type'.
8363
8364 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
8365
8366         * reflection.c: use passed type when encoding an array element
8367         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
8368
8369 2007-01-09  Robert Jordan  <robertj@gmx.net>
8370
8371         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
8372         result arguments (someDelegate.EndInvoke (unrelatedAres)).
8373         Fixes bug #80392.
8374
8375 2007-01-09  Raja R Harinath  <rharinath@novell.com>
8376
8377         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
8378
8379         * object.c (set_value): Avoid aliasing between type->data.klass
8380         and type->data.generic_class.
8381
8382         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
8383
8384 2007-01-08  Raja R Harinath  <rharinath@novell.com>
8385
8386         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
8387         between type->data.klass and type->data.generic_class.
8388
8389 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
8390
8391         * marshal.c: In MS.NET, StringBuilder objects are not copied by
8392         value in out parameters.
8393
8394 2007-01-08  Raja R Harinath  <rharinath@novell.com>
8395
8396         Simplify invariant for MonoGenericClass::klass field.
8397         * class.c (mono_class_create_generic): Verify 'klass' is null.
8398         * metadata.c (do_mono_metadata_parse_generic_class): Don't
8399         initialize 'klass' field.
8400
8401 2007-01-05  Raja R Harinath  <rharinath@novell.com>
8402
8403         Ongoing work to avoid redundant data and simplify invariants.
8404         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
8405         'generic_class', and change type to a GenericInst.
8406         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
8407         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
8408
8409 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
8410
8411         * class.c : skip io-layer under PLATFORM_WIN32.
8412
8413 2007-01-03  Tor Lillqvist  <tml@novell.com>
8414
8415         Fix #80305: In a bundled executable, look in the bundled exe
8416         assembly to determine the runtime version. Add the possibility to
8417         bundle also the machine.config file.
8418         
8419         * assembly.c (mono_assembly_open_from_bundle): Make
8420         non-static. Allow being called even if we have no bundled
8421         assemblies, and return NULL right away in that case.
8422
8423         * domain-internals.h: Declare mono_assembly_open_from_bundle()
8424         here.
8425
8426         * domain.c (app_config_parse): Take an assembly exe file name as
8427         parameter instead of a config file name. Check for a bundled
8428         config file for that assembly by calling
8429         mono_config_string_for_assembly_file() (see below) before looking
8430         for one in the file system.
8431         (get_runtimes_from_exe): Corrsponding change to call of
8432         app_config_parse().
8433         (get_runtimes_from_exe): Check for bundled assembly exe file first
8434         by calling mono_assembly_open_from_bundle(). If no bundled
8435         assembly exe file is found, call mono_image_open() as before to
8436         look it up in the file system.
8437
8438         * mono-config.c: Add variable bundled_machinec_onfig.
8439         (mono_config_string_for_assembly_file): New function.
8440         (mono_config_for_assembly): Move code snippet that looks for a
8441         bundled assembly .config file into the above new function. Call
8442         it.
8443         (mono_register_machine_config, mono_get_machine_config): New
8444         functions to set and retrieve
8445
8446         * assembly.h: Declare mono_register_machine_config().
8447
8448         * mono-config.h: Declare mono_get_machine_config() and
8449         mono_config_string_for_assembly_file().
8450
8451         * icall.c: No declaration of environ necessary on Win32. It is
8452         declared (as a macro expanding to a function call) in stdlib.h.
8453         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
8454         New internal mono function. Returns the value of
8455         mono_get_machine_config() as a Mono string.
8456
8457         * icall-def.h: Add get_bundled_machine_config().
8458
8459 2007-01-04  Raja R Harinath  <rharinath@novell.com>
8460
8461         Remove redundant field
8462         * class-internals.h (_MonoGenericContext.container): Remove field.
8463         * loader.c (mono_method_get_signature_full): Don't parse a
8464         "container" for a signature parse when the signature is inflated
8465         immediately.
8466         (method_from_methodspec): Likewise, for a generic_inst.
8467         * class.c, metadata.c, reflection.c: Update to changes.
8468
8469 2006-01-04  Raja R Harinath  <rharinath@novell.com>
8470
8471         * class-internals.h (_MonoGenericClass): Rename 'context' field to
8472         'cached_context', and change semantics -- it starts off NULL, and
8473         is initialized on demand.
8474         * class.c (mono_generic_class_get_context): New accessor to
8475         replace 'context' field accesses.
8476         (mono_class_get_context): New helper.
8477         (*): Update to changes.
8478         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
8479
8480 2007-01-03  Miguel de Icaza  <miguel@novell.com>
8481
8482         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
8483         before the memcpy.   Fixes Marshal2 regression.
8484
8485 2007-01-02  Jb Evain  <jbevain@gmail.com>
8486
8487         * blob.h: add a MONO_TYPE_ENUM definition
8488         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
8489         fix the encoding of arrays of enums in custom attributes.
8490
8491         Fixes #79666.
8492
8493 2007-01-01  Miguel de Icaza  <miguel@novell.com>
8494
8495         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
8496         string is null terminated, but only cut the string short if it
8497         overflows the buffer.   
8498         
8499         (mono_string_to_byvalstr): Also fix this routine.   The code here
8500         was not properly terminating a string (it was only terminated
8501         because of the previous catch-all memset). 
8502
8503         I left the memset, because I do not know if applications expect
8504         the runtime to clear this region. 
8505
8506         Fixes #79944.
8507
8508         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
8509         Clear the error before returning to unmanaged code to prevent the
8510         runtime from being confused later on (fixes  80420).
8511         (ves_icall_type_from_name): Always call mono_loader_clear_error
8512         after parsing a type that could have failed.
8513         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
8514
8515         * loader.c (mono_loader_clear_error): Fix indentation.
8516
8517 2006-12-28  Martin Baulig  <martin@ximian.com>
8518
8519         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
8520
8521 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
8522
8523         * reflection.c: patch from Rolf Bjarne Kvinge to fix
8524         getting a token for an EnumBuilder.
8525
8526 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
8527
8528         * reflection.c: be more careful in case resource generation
8529         fails to create the data array.
8530
8531 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
8532
8533         * sgen-gc.c: write barrier for clone and fix unregister handles.
8534
8535 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
8536
8537         * reflection.c: some fixes needed in the generics code for the moving GC.
8538
8539 2006-12-22  Robert Jordan  <robertj@gmx.net>
8540
8541         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
8542         account. Fixes bug #80299.
8543
8544 2006-12-21  Raja R Harinath  <rharinath@novell.com>
8545
8546         Fix WaitHandle usage in delegates.
8547         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
8548         * object.c (mono_wait_handle_new): Use the property set method to
8549         initialize the handle.
8550         (mono_wait_handle_get_handle): New.
8551         * threadpool.c (mono_async_invoke): Use it.
8552         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
8553         Likewise.
8554         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
8555
8556 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
8557
8558         * marshal.c (emit_marshal): Call emit_marshal_variant and
8559         emit_marshal_com_interface when applicable.
8560         (emit_marshal_variant, emit_marshal_com_interface): Add
8561         methods for this case and remove if's from emit_marshal_object.
8562         
8563 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
8564
8565         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
8566
8567 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
8568
8569         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
8570         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
8571         and GlobalFree on Windows. Remove FIXME.
8572
8573 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
8574
8575         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
8576         implementation for managed objects.
8577
8578 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
8579
8580         * object.c: implemented code to be used for checking
8581         that no reference field overlaps with non-references.
8582
8583 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
8584
8585         * threadpool.c: fix queue code to be compatible with the
8586         moving GC.
8587
8588 2006-12-18  Miguel de Icaza  <miguel@novell.com>
8589
8590         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
8591         in structures by throwing ArgumentNullException.
8592
8593         (emit_marshal_safehandle): Also when they are null parameters.
8594
8595         (emit_marshal_safehandle): Add support for ref
8596         SafeHandles parameters
8597
8598 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
8599
8600         * profiler.c: updated to use the mono-dl API instead of
8601         gmodule.
8602
8603 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
8604
8605         * profiler.c: updated to use the mono-dl dynamic loading
8606         API instead of gmodule.
8607
8608 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
8609
8610         * profiler.c: use readlink, older versions of glib don't have
8611         g_file_read_link ().
8612
8613 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
8614
8615         * profiler.c: try to detect the path to mono if libc fails to provide
8616         a useful name (bug #80286).
8617
8618 2006-12-16  Raja R Harinath  <rharinath@novell.com>
8619
8620         Fix #80242
8621         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
8622         instance, use the generic type definition instead.
8623         (ves_icall_Type_GetNestedTypes): Likewise.
8624         * class.c (mono_class_create_generic): Always set the
8625         nested_classes of a generic instance to NULL, even if the generic
8626         type definition has nested types.
8627
8628 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
8629
8630         * marshal.c (mono_string_from_bstr): Revert previous Windows change
8631         and fix on Linux.
8632         
8633 2006-12-15  Miguel de Icaza  <miguel@novell.com>
8634
8635         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
8636         my arguments were in the wrong order.   I also fixed the Windows
8637         version which seems to have had the same issue.
8638
8639         (mono_free_bstr): On Unix, this is g_free.
8640         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
8641         conversions (for the tests in corlib to pass).
8642
8643 2006-12-14  Miguel de Icaza  <miguel@novell.com>
8644
8645         * marshal.c (emit_ptr_to_object_conv): For now, ignore
8646         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
8647         exception if a ref SafeHandle in a struct has changed).
8648         
8649         (emit_struct_conv): Do not perform layout checks for classes
8650         derived from SafeHandle, as those are specially handled. 
8651
8652         (emit_object_to_ptr_conv): Add support for
8653         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
8654
8655         (emit_marshal_safehandle): Implement conversion of return values
8656         of safehandles (MARSHAL_ACTION_CONV_RESULT).
8657         
8658         * threads.c: WaitHandle now is compiled with two different handles
8659         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
8660         for 2.0.
8661         
8662         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
8663         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
8664         these routines to cope with both kinds of fields.
8665
8666 2006-12-12  Miguel de Icaza  <miguel@novell.com>
8667
8668         * metadata.c (mono_type_to_unmanaged): Handle the case where
8669         type->data.klass is a SafeHandle, and in that case, return the
8670         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
8671         MONO_MARSHAL_CONV_SAFEHANDLE. 
8672
8673 2006-12-11  Miguel de Icaza  <miguel@novell.com>
8674
8675         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
8676         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
8677         calling emit_marshal_object.
8678
8679         (emit_marshal_safehandle): Implement marshalling of
8680         SafeHandle parameters (no ref support yet).
8681
8682         (MarshalAction): Document the defines as I implement
8683         them for SafeHandle.
8684
8685         (emit_marshal_object): indentation police.
8686
8687         * class-internals.h: Define MonoSafeHandle.
8688         Add safehandle_class to MonoDefaults type.
8689
8690         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
8691         list of classes to check for fields. 
8692
8693         * domain.c (mono_init_internal): Add SafeHandle to the list of
8694         mono_defaults loaded.
8695
8696 2006-12-15  Raja R Harinath  <rharinath@novell.com>
8697
8698         Fix #80253
8699         * reflection.c (mono_reflection_bind_generic_parameters): If the
8700         generic type definition is a type builder, ensure that it is fully
8701         initialized before instantiating it.  Kill some dead code.
8702
8703 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
8704
8705         * object.c: clear the loader_error () before loading
8706         more metadata stuff (bug #80258).
8707
8708 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
8709
8710         * icall.c, icall-defs.h: type modifiers icalls for
8711         parameters and properties.
8712
8713 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
8714
8715         * object.c, icall.c: fixed warnings.
8716
8717 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
8718
8719         * marshal.c: fixed a couple of leaks and coding style in a few places.
8720
8721 2006-12-08  Dick Porter  <dick@ximian.com>
8722
8723         * process.c: Cope with NULL ProcessStartInfo arguments on windows
8724         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
8725         80173.
8726
8727 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
8728
8729         * process.c: ProcessStartInfo may have only filename set and
8730         arguments can be NULL.
8731
8732 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
8733
8734         * icall.c: fix leak found by Robert Jordan.
8735
8736 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
8737
8738         * marshal.c, marshal.h: generate managed method to access an element
8739         of a multi-dimensional array.
8740
8741 2006-11-30  Paolo Molaro (lupus@ximian.com)
8742
8743         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
8744
8745 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
8746
8747         * icall.c: back out GetFields () fix until the serialization code is
8748         fixed to not depend on the incorrect behaviour.
8749
8750 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
8751
8752         * profiler.c: provide defaults if none are set.
8753
8754 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
8755
8756         * Makefile.am, attrdefs.h: new public header file with
8757         constants for attributes for use by embedders.
8758
8759 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
8760
8761         * icall.c: GetFields () fix for bug #80064.
8762
8763 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
8764
8765         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
8766         removed long unused icalls.
8767
8768 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
8769   
8770         * marshal.c: 
8771                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
8772                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
8773                 can be generated without a delegate class.
8774                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
8775         
8776         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
8777
8778 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8779
8780         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
8781         #80069.
8782
8783 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
8784
8785         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
8786         icall-def.h: added icalls needed by System.GC.
8787
8788 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
8789
8790         * loader.c: ensure the class in catch clauses is handled
8791         correctly for generics methods (fixes bug#79980).
8792
8793 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
8794
8795         * monitor.h, monitor.c: added mono_locks_dump () function
8796         to help debug deadlocks involving managed locks.
8797
8798 2006-11-13  Dick Porter  <dick@ximian.com>
8799
8800         * file-io.c (get_file_attributes): If the file is a symlink try
8801         and get the stat data for the target, but also add the
8802         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
8803         the specs for the windows symlink support, but will probably have
8804         to be reworked when I have test data from a vista machine.  Fixes
8805         bug 79887.
8806
8807 2006-11-13  Dick Porter  <dick@ximian.com>
8808
8809         * gc.c (mono_domain_finalize): 
8810         * marshal.c (mono_delegate_begin_invoke): 
8811         * threadpool.c (socket_io_init, mono_thread_pool_init)
8812         (mono_thread_pool_finish): 
8813         * monitor.c (mono_monitor_try_enter_internal): 
8814         * threads.c (mono_thread_resume, mono_thread_init)
8815         (mono_thread_suspend_all_other_threads)
8816         (mono_thread_execute_interruption): 
8817         * appdomain.c (mono_domain_unload): Check for NULL error returns
8818         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
8819         75733.
8820
8821 2006-11-11  Miguel de Icaza  <miguel@novell.com>
8822
8823         * process.c
8824         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
8825         Only close the handle if the value of the handle is not
8826         INVALID_HANDLE_VALUE.  This just makes the process a bit more
8827         robust.
8828
8829         Improvement for #75733, so that we do not run into this problem. 
8830
8831         
8832         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
8833         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
8834         internal variables.  Fixes #79462 
8835         
8836
8837 2006-11-09  Dick Porter  <dick@ximian.com>
8838
8839         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
8840         Use poll() not select().  Fixes bug 79397.
8841
8842 2006-11-09  Raja R Harinath  <rharinath@novell.com>
8843
8844         Fix #79872
8845         * assembly.c (mono_assembly_load_from_full): Check that the given
8846         image has an assembly manifest.
8847
8848 2006-11-09  Ankit Jain  <jankit@novell.com>
8849
8850         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
8851         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
8852         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
8853
8854 2006-11-07  Dick Porter  <dick@ximian.com>
8855
8856         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
8857         Put the old resolver behaviour back for pre-2.0 profiles.
8858
8859 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
8860
8861         * threadpool.c: precise GC and locking fixes.
8862
8863 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
8864
8865         * class.c: don't load types that have an explicit unaligned
8866         managed reference. Provide better info in the TypeLoad exception.
8867         Part of the fix for bug #79744.
8868         * object.c: use the correct check for class type load issues.
8869
8870 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
8871
8872         * class.c: enforce alignment of fields with managed references
8873         even when Pack=1 is forced by the user (bug #77788).
8874
8875 2006-11-03  Dick Porter  <dick@ximian.com>
8876
8877         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
8878         If the address reverse lookup fails, return it as the hostname
8879         anyway.  Fixes bug 79721.
8880
8881 2006-11-03  Dick Porter  <dick@ximian.com>
8882
8883         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
8884         Fix build on Windows.
8885
8886 2006-11-02  Dick Porter  <dick@ximian.com>
8887
8888         * icall-def.h: 
8889         * object-internals.h: 
8890         * exception.c (mono_get_exception_thread_interrupted): 
8891         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
8892         Fixes bug 74525.
8893
8894         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
8895         Check for pending Thread.Interrupt.
8896
8897 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
8898         * loader.c: Fixed bug 79684.
8899
8900 2006-10-27  Dick Porter  <dick@ximian.com>
8901
8902         * file-io.c (get_file_attributes): Force symlinks to directories
8903         to be returned as a regular file.  Fixes bug 79733.
8904 2006-10-26  Dick Porter  <dick@ximian.com>
8905
8906         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
8907         CreateFile to open a directory then we need to set the
8908         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
8909
8910 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
8911
8912         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
8913         friends.
8914
8915 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
8916
8917         * sgengc.c: small cleanup of timer code.
8918
8919 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
8920
8921         * sgen-gc.c: fix some warnings and start adding support for
8922         complete object removal on domain unload.
8923
8924 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
8925
8926         * assembly.c: build_assembly_name should not consider a version
8927         number without build or revision number invalid. Fixes bug #79715.
8928
8929 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
8930
8931         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
8932         call kernel32 function OutputDebugString directly.
8933         
8934         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
8935         
8936 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
8937
8938         * reflection.c: small cleanup, using a function to insert a MonoString
8939         in the string heap.
8940
8941 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
8942
8943         * reflection.c: moving GC fixes.
8944
8945 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
8946
8947         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
8948         all the objects with finalizers belonging to an unloading appdomain.
8949
8950 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
8951
8952         * sgen-gc.c: added ability to allocate even when the nursery is fully
8953         pinned and fixed a couple of bugs.
8954
8955 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
8956
8957         * threads.h: Revert the last change for now.
8958
8959         * threads.h (mono_thread_get_pending_exception): Rename this to
8960         mono_thread_get_undeniable_exception ().
8961
8962 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
8963
8964         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
8965         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
8966         when fname does not refer to valid assembly. This result in a more
8967         meaningful error message.
8968         * exception.c: added mono_get_exception_bad_image_format2 which 
8969         constructs a BadImageFormatException using the ctor taking a custom
8970         message and the file name. Passing in a NULL msg results in a default
8971         message.
8972         * exception.h: define mono_get_exception_bad_image_format2 function.
8973         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
8974         when file name pointed to an invalid IL image. Use 
8975         mono_get_exception_file_not_found2 to construct FileNotFoundException,
8976         as this results in a more meaningful error message.
8977
8978 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
8979
8980         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
8981         #79465.
8982
8983 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
8984
8985         * metadata.c (mono_type_size): Change the align parameter to guint32 for
8986         consistency with the other _size functions.
8987         (mono_type_stack_size): Ditto.
8988
8989         * class.c object.c icall.c: Fix warnings caused by the above change.
8990
8991         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
8992
8993         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
8994
8995         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
8996
8997 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
8998
8999         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
9000         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
9001         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
9002         threadpool.h, threads-types.h: mark more internal functions.
9003
9004 2006-10-11  Dick Porter  <dick@ximian.com>
9005
9006         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
9007         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
9008         reproduce the bug even before applying the fix.)
9009
9010 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
9011
9012         * reflection.c: allow retrieving attributes for arguments in generic
9013         methods (bug #79241).
9014
9015 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
9016
9017         * debug-mono-symfile.c: properly check fopen () result (found by
9018         coverity).
9019
9020 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
9021
9022         * reflection.c: make error message clearer and fixed two
9023         issuelets found by Coverity.
9024
9025 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
9026
9027         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
9028
9029 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
9030
9031         * object-internals.h, gc-internal.h, profiler-private.h:
9032         mark internal functions.
9033
9034 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
9035
9036         * reflection.c: put data in the text section.
9037         * icall.c: recognize more types in type_from_typename ().
9038         * process.c, marshal.c: added some GC FIXMEs.
9039
9040 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
9041
9042         * loader.c: check for NULL before initializing.
9043
9044 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
9045
9046         * gc.c (finalizer_thread): Use a non-alertable wait here.
9047
9048         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
9049         until the correct solution is found.
9050
9051 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
9052
9053         * reflection.c (mono_module_get_object): Avoid an assert when operating on
9054         modules with no metadata. Fixes #79596.
9055
9056         * image.c (load_metadata_ptrs): Put back the error message when
9057         the #- heap is encountered since the support is not complete yet.
9058
9059 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
9060
9061         * gc.c: do not allow the user to SuppressFinalize () a
9062         delegate because it would leak the trampoline if present.
9063
9064 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
9065
9066         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
9067         PropertyPtr table.
9068
9069 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
9070
9071         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
9072
9073         * metadata.c (mono_metadata_get_param_attrs): Ditto.
9074
9075         * row-indexes.h: Add definitions for *Ptr tables.
9076
9077         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
9078
9079         * metadata.c (mono_metadata_translate_token_index): New helper function to
9080         translate table indexes used in uncompressed metadata.
9081         (mono_metadata_decode_table_row): Ditto.
9082         (mono_metadata_decode_table_row_col): Ditto.
9083
9084         * metadata.c: Add table schema for *Ptr tables.
9085
9086         * class.c loader.c: Use the new helper function to access the affected metadata
9087         tables.
9088         
9089         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
9090         #38532.
9091         
9092 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
9093
9094         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
9095         sequences which can be unbounded in size. Fixes #79583.
9096
9097 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
9098
9099         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
9100         static initialization.
9101
9102         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
9103
9104         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
9105
9106         * domain.c (mono_domain_free): Free up type_init_exception_hash.
9107
9108         * object.c (mono_runtime_class_init): Implement correct semantics when a static
9109         ctor fails, i.e. throw the same exception on subsequent accesses.
9110         
9111 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
9112
9113         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
9114         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
9115         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
9116         Handle marshalling of interfaces and VARIANTs contained in structs.
9117         
9118         Code is contributed under MIT/X11 license.
9119         
9120 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
9121
9122         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
9123         
9124         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
9125         mempool.
9126
9127 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9128
9129         * console-io.c: ignore previous SIGINT handler.
9130
9131 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
9132
9133         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
9134         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
9135         #79460, #79461, #79485.
9136
9137         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
9138
9139         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
9140         #79217.
9141
9142 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
9143
9144         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
9145         could be generated from it.
9146
9147 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
9148
9149         * rand.c: fix read loop to correctly handle EINTR.
9150
9151 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
9152
9153         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
9154         internal calls are defined to keep methods closer to the declaring
9155         type and allow a significant reduction in runtime relocations and
9156         memory usage.
9157
9158 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
9159
9160         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
9161         exception message to have FileNotFoundException use the default
9162         assembly load error message. Fixes bug #79426.
9163         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
9164
9165 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9166
9167         * threadpool.c: (start_thread_or_queue) use the root domain when
9168         creating the thread instead of the async object one.
9169
9170 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
9171
9172         * class.c, object.c, class-internals.h, reflection.c:
9173         for arrays, store element_size inside MonoClass (speedup
9174         for array object creation).
9175
9176 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
9177
9178         * icall.c: fixed CodeBase to use the file name and not the module
9179         name (bug #79365).
9180
9181 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
9182
9183         * mono-debug.c, mono-debug.h: export find_method as
9184         mono_debug_find_method ().
9185
9186 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
9187
9188         * debug-helpers.c, class-internals.h: added a few functions useful
9189         when debugging under gdb.
9190
9191 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9192
9193         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
9194         characters that need special handling.
9195
9196 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
9197
9198         * mono-config.c: make the os/cpu specification more flexible,
9199         allowing lists and negation.
9200
9201 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
9202
9203         * marshal.c: COM Interop fixes. Handle case where method->klass.
9204         is interface. Handle BSTR/MonoString when null. Use CDECL as 
9205         calling convention on non-windows platforms. This is for
9206         compatibility with XPCOM and MainWin COM.
9207         
9208         Code is contributed under MIT/X11 license.
9209         
9210
9211 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
9212
9213         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
9214         correctly. Fixes #79217.
9215
9216         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
9217
9218 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
9219
9220         * mono-config.c: allow both an os and cpu attribute for dllmap
9221         and dllentry elemnets to enable a single config file to be used
9222         for multiple architectures.
9223
9224 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
9225
9226         * loader.c: MonoLoaderError was cleared too soon on load failure.
9227         Fixes bug #79424.
9228
9229 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
9230
9231         * icall.c: use the defining class vtable when accessing a
9232         static field, not a pobblibly derived class.
9233
9234 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
9235
9236         * icall.c string-icalls.c: Remove references to unicode.h.
9237
9238         * unicode.h unicode.c Makefile.am: Remove these unused source files.
9239
9240         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
9241
9242         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
9243         indicating the image where custom marshaller types should be looked up.
9244         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
9245         custom marshallers, instead of corlib. Fixes #79425.
9246
9247 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
9248
9249         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
9250
9251 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
9252
9253         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
9254         Implement Environment.ProcessorCount.
9255         
9256         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
9257         Implement Environment.ProcessorCount.
9258         
9259         * icall.c: 
9260         Add Environment.ProcessorCount icall.
9261         
9262         Patch by Jason McFall.
9263
9264 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9265
9266         * assembly.c: don't append .exe/.dll when the filename already contains
9267         one of those extensions.
9268
9269 2006-09-12  Martin Baulig  <martin@ximian.com>
9270
9271         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
9272         to array interfaces.
9273
9274 2006-09-11  Martin Baulig  <martin@ximian.com>
9275
9276         * reflection.c (mono_image_build_metadata): Create the
9277         MethodImpl's after emitting all types and methods, so we don't
9278         need another fixup pass for them.
9279
9280 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
9281
9282         * class.c (mono_class_from_name_case): Fix regression introduced by the last
9283         change.
9284
9285 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
9286
9287         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
9288         unload.
9289
9290 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
9291
9292         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
9293         args is not set. Fixes #78926.
9294
9295 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
9296
9297         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
9298
9299         * image.c (load_class_names): Move this to class.c, and rename it to 
9300         'mono_image_init_name_cache'.
9301         (load_modules): Fix a warning.
9302
9303         * class.c icall.c image.c: Initialize image->name_cache lazily.
9304
9305         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
9306         on its name using information in the AOT file.
9307
9308         * class.c (mono_class_from_name): Use the new hook function.
9309
9310 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
9311
9312         * reflection.c (mono_param_get_objects): Handle enum default parameter values
9313         correctly.
9314
9315         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
9316         Fixes #79289.
9317         
9318 2006-09-06  Martin Baulig  <martin@ximian.com>
9319
9320         * icall.c (mono_lookup_internal_call): Small fix.
9321
9322 2006-09-05  Raja R Harinath  <rharinath@novell.com>
9323
9324         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
9325         double g_free.
9326
9327 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
9328
9329         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
9330         when --debug is specified.
9331
9332 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
9333
9334         * class.c (setup_generic_array_ifaces): Fix a warning.
9335
9336 2006-09-04  Miguel de Icaza  <miguel@novell.com>
9337
9338         * Temporarily remove the patch to assemly.c that checks the
9339         assembly versions as it breaks our gacutil.
9340
9341 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
9342
9343         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
9344
9345         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
9346         a net 1.0 runtime.
9347
9348         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
9349         created using the default ctor. Fixes #79152.
9350         (mono_string_builder_to_utf16): Ditto.
9351
9352 2006-09-01  Martin Baulig  <martin@ximian.com>
9353
9354         Fix handling of the generic array interfaces.
9355
9356         * class-internals.h
9357         (MonoDefaults): Removed `generic_array_class' and added
9358         `generic_ilist' class.
9359
9360         * class.c
9361         (mono_bounded_array_class_get): Add the new generic array interfaces.
9362         (setup_generic_array_ifaces): New static method; create vtable
9363         entries for each method in the generic array interfaces.
9364
9365         * metadata.c
9366         (select_container): Allow "parent-less" generic methods.
9367
9368         * marshal.c
9369         (mono_marshal_get_generic_array_helper): New public method.
9370
9371         * icall.c
9372         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
9373         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
9374         moved the interncall into System.Array.
9375
9376 2006-09-01  Raja R Harinath  <rharinath@novell.com>
9377
9378         A few more cases of avoiding work on types with ->byref set.
9379         Has the real fix for #79238
9380         * icall.c (is_generic_parameter): New helper.
9381         (ves_icall_Type_GetGenericParameterPosition): Use it.
9382         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
9383         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
9384         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
9385         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
9386         reference types.
9387         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
9388         reference types.
9389         (ves_icall_Type_get_IsGenericInstance): Likewise.
9390         (ves_icall_Type_get_IsGenericType): Likewise.
9391
9392 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
9393
9394         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
9395         class if possible.
9396
9397         * mempool.h (mono_mempool_get_allocated): New helper function.
9398
9399         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
9400         change.
9401
9402         * mempool.c: Fix warnings and the calculation of stats.
9403
9404         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
9405
9406         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
9407
9408         * loader.c (mono_get_method_from_token): Update method_count stat.
9409
9410         * class-internals.h (MonoStats): Add some stats.
9411
9412 2006-08-31 Robert Jordan  <robertj@gmx.net>
9413
9414         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
9415         with managed variants.
9416         All code is contributed under the MIT/X11 license.
9417         
9418 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
9419
9420         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
9421         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
9422
9423         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
9424
9425         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
9426         with cycles in classes.
9427
9428         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
9429
9430         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
9431         missing a [MarshalAs] directive. Fixes #79203.
9432
9433         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
9434         klass->marshal_info. Fixes #79217.
9435
9436 2006-08-30  Martin Baulig  <martin@ximian.com>
9437
9438         Committing a patch from Joachim Ante <joe@otee.dk>:
9439         Add support for binary data symbol stores.
9440
9441         * debug-mono-symfile.c
9442         (mono_debug_open_mono_symbol_file): Renamed into
9443         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
9444         arguments.
9445
9446         * mono-debug.c
9447         (mono_debug_open_image): Added `raw_contents' and `size' args.
9448         (mono_debug_init_2_memory): New public function.
9449
9450 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
9451
9452         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
9453
9454 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9455
9456         * appdomain.c: implement support for ShadowCopyFiles.
9457
9458 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
9459
9460         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
9461         when value is NULL (and should remove CID #51).
9462
9463 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9464
9465         * image.c: moved 2 functions to ../utils.
9466
9467 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
9468
9469         * gc.c: cope with the target object of a GC handle being NULL
9470         (bug #78877).
9471
9472 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
9473
9474         * class.c: recursively check parent's explicit implementations
9475         of interface methods (fixes bug #79125).
9476
9477 2006-08-19  Miguel de Icaza  <miguel@novell.com>
9478
9479         * filewatcher.c: Avoid warnings when building, do not redefine
9480         constants that are defined.
9481
9482         Remove warnings.
9483
9484 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9485
9486         * image.c: don't fail when the link points to an absolute path.
9487
9488 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
9489
9490         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
9491         Fix CID #3.
9492
9493 2006-08-17  Miguel de Icaza  <miguel@novell.com>
9494
9495         * image.c (full_path): A new method used to obtain the actual path
9496         of an assembly even in the presence of symbolic links.  
9497
9498         This is necessary for the case where we are running a binary that
9499         has been GACed, but we are using the "published" path name
9500         ($prefix/mono/1.0/blah.exe) which happens to point to the real
9501         file in the GAC.
9502
9503         This was the source of the failure for the `xsp' command with the
9504         recent AppDomain changes, as far as the runtime was concerned,
9505         there were two different assemblies: $prefix/mono/1.0/blah.exe and
9506         $prefix/mono/gac/blah/version/blah.exe.
9507
9508         (do_mono_image_open): use full path
9509
9510 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
9511
9512         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
9513
9514 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
9515
9516         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
9517         domain_id is supplied. Fix CID #241 and corlib's unit tests.
9518
9519 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
9520
9521         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
9522         small structures. Fixes #78990.
9523
9524 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
9525
9526         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
9527
9528         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
9529
9530 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9531
9532         * appdomain.c:
9533         * marshal.c: don't load all the assemblies from a domain into newly
9534         created ones. The new domains might have different rules and load
9535         assemblies from different locations. Fixes bug #76757.
9536
9537         Patch by Lluis. Conflicts resolved by Brian Crowell.
9538
9539 2006-08-16  Alp Toker  <alp@atoker.com>
9540
9541         * socket-io.c: First half of the fix for #79084.
9542         Set sa_size to the length of the content, not that of the struct.
9543         Don't add NULL suffix to the content, this should be done in
9544         managed code if needed.
9545
9546 2006-08-14  Raja R Harinath  <rharinath@novell.com>
9547
9548         Fix part of #79012
9549         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
9550         mono_metadata_parse_type returns NULL.
9551
9552 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
9553
9554         * normalization-tables.h : new file for string normalization data.
9555         * locales.c, locales.h, icall.c :
9556           added load_normalization_resource() for string normalization,
9557           and icall as well.
9558         * Makefile.am : added normalization-tables.h to the sources.
9559
9560 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
9561
9562         * marshal.c: Add more helper functions to reduce code duplication and use them
9563         everywhere.
9564
9565 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
9566
9567         * marshal.c: Fix non-x86 stdcall warnings.
9568         
9569         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
9570         them everywhere.
9571
9572 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
9573
9574         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
9575         type check on multi-dimensional arrays. Fixes #79000.
9576
9577 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
9578
9579         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
9580         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
9581         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
9582         * class-internals.h: add is_com_object to class structure.
9583         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
9584         null checks to COM object marshalling. Fix .ctor call on RCW.
9585         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
9586         
9587         All code is contributed under the MIT/X11 license.
9588
9589 2006-08-09  Dick Porter  <dick@ximian.com>
9590
9591         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
9592         racing mono_monitor_allocator_lock() somewhere, so don't delete
9593         the critical section for now.  Found by running and exiting
9594         monodevelop.
9595
9596 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
9597
9598         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
9599         (ves_icall_System_ComObject_FindInterface): Ditto.
9600         (ves_icall_System_ComObject_CacheInterface): Ditto.
9601
9602         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
9603         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
9604
9605 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9606
9607         * threadpool.c: treat pipes from process asynchronous reads as sockets
9608         when reading from them, so we get select/poll or epoll to wait for
9609         data.
9610
9611 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
9612
9613         * loader.c: Fix a typo (CID #233) in the null check.
9614
9615 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
9616
9617         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
9618         Hopefully fixes #78949.
9619         
9620         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
9621         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
9622         bytes. Fixes #78972.
9623
9624 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9625
9626         * filewatcher.c: we need to set errno here.
9627
9628 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9629
9630         * filewatcher.c: let Win32Exception get the error value.
9631
9632 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9633
9634         * filewatcher.c: translate errno into win32 errors for Win32Exception
9635         to know what happened.
9636
9637 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
9638
9639         * threadpool.c: Fix more warnings.
9640
9641         * assembly.c (search_loaded): Fix warnings.
9642
9643         * threadpool.c (mono_thread_pool_finish): Fix warnings.
9644         (mono_async_invoke): Ditto.
9645
9646 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
9647
9648         * object.c (mono_remote_class_vtable): Need to create proxy vtable
9649         entries for __ComObject type in addition to ComImport types.
9650         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
9651         about hash table.
9652         
9653         All code is contributed under the MIT/X11 license.
9654
9655 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
9656
9657         * image.c: avoid tentative loading of modulerefs that contain
9658         no metadata (P/Invoke library names).
9659
9660 2006-07-28  Dick Porter  <dick@ximian.com>
9661
9662         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
9663         mono_loader_lock() somewhere, so don't delete the critical section
9664         for now.  Found by running and exiting monodevelop.
9665
9666 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9667
9668         * filewatcher.c: define the inotify syscalls when we're building on
9669         linux and have sys/syscall.h. The build system might not have support
9670         for inotify but the target system might have it.
9671
9672 2006-07-26  Miguel de Icaza  <miguel@novell.com>
9673
9674         * domain.c: Documentation updates.
9675
9676         * loader.c (mono_free_method): Do not release the method
9677         information if we are being profiled, as profilers will use this
9678         information at shut down to present some data to the user.
9679
9680         This is needed so that the profiler does not crash, as the
9681         profiler tends to keep MonoMethods around, and they might become
9682         invalid if we free these.
9683
9684         (mono_get_method_constrained): Return the original CIL stream
9685         method as well, so verification can be performed against it.
9686
9687 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9688
9689         * filewatcher.[ch]: support for inotify file system watcher.
9690         * icall.c: add new internal calls for the inotify file system watcher.
9691
9692 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9693
9694         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
9695         #78888.
9696
9697 2006-07-20  Dick Porter  <dick@ximian.com>
9698
9699         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
9700         warning.
9701
9702 2006-07-20  Dick Porter  <dick@ximian.com>
9703
9704         * threads.c (start_wrapper): Do the thread cleanup while we still
9705         hold a reference to its object.  Fixes bug 78123.
9706
9707 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
9708
9709         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
9710         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
9711           "managed-to-managed".
9712         * icall.c: Redirect string constructors that take sbyte* to
9713           ves_icall_System_String_ctor_RedirectToCreateString.
9714         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
9715           to CreateString () methods with matching signature.
9716         * reflection.c: Use original security informations for
9717           MONO_WRAPPER_MANAGED_TO_MANAGED.
9718         * security-manager.c: Use original security informations for
9719           MONO_WRAPPER_MANAGED_TO_MANAGED.
9720         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
9721           that is a placeholder and only its address should be used.
9722         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
9723           that is a placeholder and only its address should be used.
9724
9725 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
9726
9727         Begin implementing COM Interop.
9728         * appdomain.c: Increment corlib version.
9729         * class.c: Set ComImport classes' parent to __ComObject.
9730         * loader.c: Mark cominterop methods as such.
9731         * domain.c: Add __ComObject class to MonoDefaults structure.
9732         * image.c: Add 2 hashtables to the image for COM Interop related methods
9733         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
9734         using the mempool allocator
9735         
9736         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
9737         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
9738         declaration for mono_metadata_type_dup_mp.
9739         
9740         * debug-helpers.c: Added strings for two additional wrapper types
9741         * object.c: Create proxy objects for ComImport classes
9742         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
9743         and added __ComObject class to MonoDefaults structure.
9744         
9745         * object-internals.h: Finish MonoRealProxy definition, and add definition of
9746         MonoComInteropProxy and MonoComObject.
9747         
9748         * marshal.c: Added support for COM Interop
9749         (signature_cominterop): Converts managed signature to corresponding
9750         unmanaged COM signature.
9751         (cominterop_get_function_pointer): gets unmanaged function pointer via
9752         COM object vtable
9753         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
9754         (cominterop_get_method_interface): returns interface type that method is defined on
9755         (mono_mb_emit_cominterop_call): emits native call to function pointer
9756         gotten from vtable
9757         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
9758         that matches signature of unmanaged function.
9759         (cominterop_get_native_wrapper): wrapper around adjusted method call.
9760         (cominterop_get_invoke): forwards call from proxy to __ComObject
9761         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
9762         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
9763         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
9764         
9765         * marshal.h: Added Marshal icall declarations.
9766         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
9767         so we can access them in finalizer
9768         
9769 2006-07-14  Dick Porter  <dick@ximian.com>
9770
9771         * object.c (mono_type_initialization_cleanup): Fix a race
9772         condition by temporarily commenting out the critical section
9773         deletion.
9774
9775 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
9776
9777         * reflection.c (create_custom_attr): Fix some warnings.
9778         (create_custom_attr_data): Ditto.
9779         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
9780         types. Fixes #78855.
9781
9782 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
9783
9784         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
9785
9786         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
9787
9788 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
9789
9790         * reflection.c (resolve_object): Add support for DynamicMethod.
9791
9792         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
9793         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
9794
9795 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
9796
9797         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
9798         don't leak GPtrArray's pdata has we have no use (nor free) for it.
9799
9800 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
9801
9802         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
9803         Fixes #77888.
9804
9805 2006-06-30  Raja R Harinath  <rharinath@novell.com>
9806
9807         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
9808         slightly: remove a shadow local variable.
9809
9810 2006-06-29  Raja R Harinath  <rharinath@novell.com>
9811
9812         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
9813         definition that introduces the virtual function slot.
9814         Also fix Coverity #105.
9815
9816 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
9817
9818         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
9819         for dynamic assemblies. Fixes #78724.
9820
9821 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
9822
9823         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
9824         Fixes #78722.
9825
9826 2006-06-21  Martin Baulig  <martin@ximian.com>
9827
9828         * reflection.c
9829         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
9830         fixes #76484.
9831
9832 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
9833
9834         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
9835
9836 2006-06-20  Raja R Harinath  <rharinath@novell.com>
9837
9838         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
9839         nor TYPEREFs.
9840         * class.c (mono_class_create_from_typespec): Add 'context' argument.
9841         Inflate result if necessary.
9842         (mono_class_get_full): Remove old version.  Rename from
9843         'mono_class_get' and add 'context' argument.  Pass it to
9844         ..._create_from_typespec.
9845         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
9846         (mono_ldtoken): Revert change below.
9847
9848 2006-06-20  Martin Baulig  <martin@ximian.com>
9849
9850         * class.c (mono_ldtoken): Don't pass the generic context to
9851         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
9852
9853 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
9854
9855         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
9856         and later freeing it. Fixes #78638.
9857
9858 2006-06-15  Miguel de Icaza  <miguel@novell.com>
9859
9860         * icall.c (mono_class_get_throw): Revert over-zealous error
9861         throwing, the caller for mono_class_get_throw will cope with
9862         errors when classes are not properly initialized already.
9863
9864         The code still copes with loader exceptions though.
9865
9866         Fixes the regression in reftype1 and reftype3 from the CAS tests.
9867         
9868 2006-06-14  Miguel de Icaza  <miguel@novell.com>
9869
9870         Fixes the `make run1' version of RuntimeAbort (to be commited,
9871         source is in Bugzilla).
9872         
9873         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
9874         FALSE on class loading failure instead of returning true.
9875
9876         * class.c (mono_class_create_from_typedef): It is possible for
9877         mono_metadata_interfaces_from_typedef_full to fail if a class is
9878         not found, cope with this.
9879         
9880
9881 2006-06-14  Dick Porter  <dick@ximian.com>
9882
9883         * socket-io.c: 
9884         * process.c: Fix a bunch of signed/unsigned warnings from gcc
9885         4.1.1
9886
9887 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
9888
9889         * culture-info-table.h : oops, forgot to make it nsync with r61548.
9890
9891 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
9892
9893         * icall.c: Another fix for building mono in Visual Studio.
9894
9895 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
9896
9897         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
9898         
9899 2006-06-09  Martin Baulig  <martin@ximian.com>
9900
9901         * debug-mono-symfile.c: Put this back and really fix it this
9902         time. Sorry for all the trouble.
9903
9904 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
9905
9906         * icall.c (mono_class_get_throw): Fix a warning.
9907         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
9908         ReflectionTypeLoadException if needed. Fixes #78606.
9909
9910         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
9911         (mono_class_init): Ditto.
9912
9913         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
9914         ref_only exceptions.
9915         (mono_loader_clear_error): Make this work even if there is no error.
9916
9917 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
9918
9919         * object-internals.h marshal.c marshal.h icall.c: Implement method 
9920         Marshal.GetComSlotForMethodInfo using internal call.
9921
9922 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
9923
9924         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
9925         a function for signalling it.
9926
9927         * class.c (mono_class_from_typeref): Use the new kind of loader error when
9928         a referenced assembly is not found.
9929
9930         * loader.c (mono_loader_error_prepare_exception): Add support for 
9931         LOADER_ERROR_ASSEMBLY. Fix formatting.
9932
9933 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
9934
9935         * domain.c appdomain.c class-internals.h marshal.c: Add support 
9936         for VARIANT marshalling on windows and increment corlib version
9937         since Variant struct was added.
9938
9939 2006-06-03  Miguel de Icaza  <miguel@novell.com>
9940
9941         * debug-mono-symfile.c: Revert Martin's previous patch which broke
9942         stack trace line information:
9943
9944         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
9945         (Martin) when looking up B which is between A and C, return A not C.
9946
9947         Bug is #78573.
9948
9949         Thanks to Alexander Olk for tracking this down.
9950
9951 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
9952
9953         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
9954         
9955         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
9956         avoid clobbering its value.
9957         (mono_string_to_lpstr): Fix a warning on windows.
9958
9959 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
9960
9961         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
9962
9963         * reflection.c loader.c: Removed references to 'dummy' flag.
9964
9965         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
9966
9967         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
9968         it gets GC tracking.
9969
9970         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
9971         GC tracking.
9972         
9973         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
9974
9975         * marshal.c threadpool.c: Update callers of mono_async_result_new.
9976
9977         * appdomain.c: Bump corlib version.
9978
9979 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
9980
9981         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
9982         CEE_STIND_REF when working with object references.
9983
9984 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
9985
9986         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
9987         Fixes #78539.
9988
9989 2006-05-30  Miguel de Icaza  <miguel@novell.com>
9990
9991         * loader.c (method_from_memberref): Fix argument value for
9992         mono_loader_set_error_method_load (I was passing the MonoClass
9993         instead of the class name char *).
9994
9995 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
9996
9997         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
9998         CEE_STIND_REF when working with object references.
9999
10000 2006-05-30  Martin Baulig  <martin@ximian.com>
10001
10002         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
10003         mono_method_full_name() change and replace the ':' with a '.'
10004         here.
10005
10006 2006-05-30  Martin Baulig  <martin@ximian.com>
10007
10008         * debug-mono-symfile.c
10009         (mono_debug_symfile_lookup_location): Fix the algorithm:
10010         when looking up B which is between A and C, return A not C.
10011
10012 2006-05-29  Martin Baulig  <martin@ximian.com>
10013
10014         * mono-debug.h
10015         (MonoDebugMethodInfo): Make the typedef public.
10016         (MonoDebugSourceLocation): New public struct.
10017
10018         * mono-debug.c
10019         (mono_debug_source_location_from_address): Removed.
10020         (mono_debug_source_location_from_il_offset): Removed.
10021         (mono_debug_il_offset_from_address): Removed.
10022         (mono_debug_address_from_il_offset): Removed.
10023         (mono_debug_lookup_method): New public function.
10024         (mono_debug_lookup_source_location): New public function; replaces
10025         the old mono_debug_source_location_from_*() functions; see the
10026         inline documentation.
10027         (mono_debug_free_source_location): New public function.
10028         (mono_debug_print_stack_frame): New public function; see the
10029         inline documentation.
10030
10031         * debug-mono-symfile.c
10032         (mono_debug_find_source_location): Renamed into
10033         mono_debug_symfile_lookup_location(); only take a
10034         `MonoDebugMethodInfo *' and an `offset' argument; added inline
10035         documentation.
10036         (mono_debug_find_method): Renamed into
10037         mono_debug_symfile_lookup_method().
10038
10039 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
10040
10041         * assembly.c (mono_assembly_open_full): Dont overwrite the status
10042         returned by mono_image_open_full ().
10043
10044         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
10045         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
10046         #78517.
10047
10048         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
10049         #78518.
10050
10051 2006-05-27  Miguel de Icaza  <miguel@novell.com>
10052
10053         * class.c (mono_class_from_typeref): handle missing images
10054         earlier, deals with bug #78418.   Refactor code; 
10055
10056         Fix a warning introduced in my previous commit (some stale code
10057         from before I revisited my patch).
10058
10059         * class.c (mono_class_create_from_typedef): On failure, remove the
10060         class from the MonoImage->class_cache as the class is not
10061         initialized;   Fixes the leak pointed out by Paolo.
10062
10063 2006-05-25  Dick Porter  <dick@ximian.com>
10064
10065         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
10066         DeleteCriticalSections until I figure out which one may still be
10067         sometimes locked when mono_thread_cleanup is called.
10068
10069 2006-05-24  Dick Porter  <dick@ximian.com>
10070
10071         * threads.c (mono_thread_cleanup): Move the threading cleanup out
10072         of mono_thread_manage and back into its own function, so it can be
10073         called after the finalizer thread has finished.
10074
10075         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
10076
10077 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
10078
10079         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
10080         Fixes #78495.
10081
10082         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
10083         with non-blittable elements.
10084         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
10085
10086 2006-05-24  Martin Baulig  <martin@ximian.com>
10087
10088         * mono-debug-debugger.h (MonoDebuggerEvent): Added
10089         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
10090
10091         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
10092         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
10093         `mono_debugger_event_handler' to NULL.
10094
10095 2006-05-24  Martin Baulig  <martin@ximian.com>
10096
10097         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
10098
10099 2006-05-24  Martin Baulig  <martin@ximian.com>
10100
10101         * mono-debug-debugger.h
10102         (mono_debugger_create_notification_function): Added
10103         `MonoCodeManager *' argument.
10104
10105 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
10106
10107         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
10108
10109 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
10110
10111         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
10112         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
10113         implementation.
10114
10115 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
10116
10117         * icall.c: precise GC support: objects can't be stored in unmanaged
10118         memory anymore, even if they are kept alive by other references: since
10119         they can move the GC needs to be able to always find them.
10120
10121 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
10122
10123         * object.c: precise GC support for static fields. Support
10124         for moving GCs: write barriers and pinned allocation for interned
10125         strings.
10126
10127 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
10128
10129         * domain.c, domain-internals.h: precise GC support for the MonoDomain
10130         structure.
10131
10132 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
10133
10134         * class.c, gc.c: sgen and precise GC updates.
10135
10136 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
10137
10138         * marshal.h, marshal.c: added write barrier wrapper and precise type
10139         fixes.
10140
10141 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
10142
10143         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
10144         support.
10145
10146 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
10147
10148         * reflection.c: precise and sgen GC updates.
10149
10150 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
10151
10152         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
10153
10154 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
10155
10156         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
10157
10158 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
10159
10160         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
10161         MONO_TYPE_OBJECT. Fixes #78462.
10162
10163 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
10164
10165         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
10166         and blittable types.
10167
10168 2006-05-17  Miguel de Icaza  <miguel@novell.com>
10169
10170         * class.c (mono_class_get_exception_for_failure): Implement parts
10171         of a TODO: if the loader error is set (instead of the class
10172         error), we return a Loader exception that can be properly thrown
10173         elsewhere.
10174
10175         This was exposed by some Winforms 2.0 code that I tried to run
10176         (Atsushi pointed me to it).
10177
10178 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
10179
10180         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
10181         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
10182         
10183         * marshal.c (emit_marshal_vtype): Add limited support for 
10184         UnmanagedType.LPStruct. Fixes #78427.
10185
10186         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
10187         Applied a patch from kangaroo to fix #77523.
10188
10189 2006-05-17  Martin Baulig  <martin@ximian.com>
10190
10191         * threads.c
10192         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
10193         (debugger_thread_created): Removed.
10194         (debugger_thread_exited): Removed.
10195
10196 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
10197
10198         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10199
10200         * object-internals.h (MonoReflectionResource): Sync with managed version.
10201
10202 2006-05-12  Wade Berrier <wberrier@novell.com>
10203
10204         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
10205
10206 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
10207
10208         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
10209         functions try to allocate from the image mempool.
10210
10211 2006-05-12  Dick Porter  <dick@ximian.com>
10212
10213         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
10214
10215 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
10216
10217         * object.c: The FieldGetter and FieldSetter methods require the full
10218         name of the class, not only the name. Fixes bug #78277.
10219
10220 2006-05-11  Miguel de Icaza  <miguel@novell.com>
10221
10222         * loader.c (method_from_memberref): Do not pass the NULL klass to
10223         mono_loader_set_error_() methods.  Pass the non-NULL value
10224         (class). 
10225
10226 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
10227
10228         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
10229         (mono_assembly_close): Null out assembly->image->references after freeing it.
10230
10231         * image.c (mono_image_close): Free image->references.
10232         
10233         * reflection.c (mono_image_basic_init): Fix a small memory leak.
10234
10235 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
10236
10237         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
10238         before checking if it's NULL (g_assert).
10239
10240 2006-05-10  Martin Baulig  <martin@ximian.com>
10241
10242         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
10243         I thought I already killed that two months ago, but now it somehow reappeared.
10244
10245 2006-05-10  Martin Baulig  <martin@ximian.com>
10246
10247         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
10248
10249 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
10250
10251         * reflection.c: Allocate memory for dynamically created methods in the image
10252         mempools.
10253
10254 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
10255
10256         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
10257         don't use the ad pointer before checking if it's NULL (g_assert).
10258
10259 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
10260
10261         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
10262         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
10263
10264         * marshal.c: Allocate all signatures from mempools.
10265
10266         * marshal.c: Allocate some more signatures from mempools.
10267
10268 2006-05-09  Miguel de Icaza  <miguel@novell.com>
10269
10270         * object.c (mono_load_remote_field): The code used to provide a
10271         temporary variable for returning results if the user did not
10272         provide a result pointer.  But our temporary variable was allocted
10273         on the satck.
10274
10275         Fix calling code to always pass a result area.   Coverity ID 103.
10276
10277 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
10278
10279         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
10280         value, not the old. Fixes #78312.
10281         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
10282
10283         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
10284         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
10285         per-image cache.
10286
10287         * assembly.c (mono_assembly_close): Free image->references.
10288
10289         * assembly.c (mono_assembly_names_equal): Fix a warning.
10290         (mono_assemblies_cleanup): Cleanup more global data.
10291
10292         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
10293
10294         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
10295         ptr_cache and image->modules.
10296
10297         * image.c (mono_image_init): Allocate array_cache lazily.
10298         
10299 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10300
10301         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
10302         behavior was changed recently and has bad side effects.
10303
10304 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
10305
10306         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
10307         
10308         * assembly.c (mono_assembly_close): Remove a debug printf.
10309
10310         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
10311
10312         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
10313         to also allow for temporary references between mono_image_open ()/close ().
10314
10315         * domain.c (get_runtimes_from_exe): Add a FIXME.        
10316
10317 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
10318
10319         * marshal.c: Fix support for dynamic methods.
10320
10321         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
10322
10323         * marshal.c (mono_marshal_cleanup): New cleanup function.
10324
10325         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
10326         image mempools.
10327
10328         * class.c (mono_class_init): Fix leaking class->nested_classes.
10329
10330         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
10331
10332         * image.c (mono_image_init): Initialize the new cashes.
10333
10334         * image.c (mono_image_close): Destroy the new cashes.
10335
10336         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
10337
10338         * mempool.c (mono_mempool_strdup): New helper function.
10339
10340         * class-internals.h: Add prototype for mono_loader_unlock ().
10341
10342         * domain.c (mono_jit_info_table_find): Fix a warning.
10343         (mono_debugger_check_runtime_version): Ditto.
10344
10345         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
10346         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
10347         functions to these modules.
10348
10349         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
10350         metadata modules.
10351         
10352         * marshal.c (mono_free_bstr): Fix a warning.
10353
10354         * assembly.c (mono_assembly_open_full): Fix another small leak.
10355
10356         * object.c: Fix some unload leaks in the remoting code.
10357
10358         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
10359         function.
10360
10361         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
10362
10363         * reflection.c: Fix some unload leaks in dynamic assemblies.
10364
10365 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
10366
10367         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
10368         * marshal.h: Add BSTR support on Win32
10369         * icall.c: Add BSTR icalls
10370         * metadata.h: Add BSTR enums
10371
10372 2006-04-28  Miguel de Icaza  <miguel@novell.com>
10373
10374         Work to catch the crash from #76795 and turn it into an
10375         exception.   As I stubbed out pieces of the VisualBasic support,
10376         I found a number of places where the code was failing and I added
10377         checks to those places. 
10378         
10379         * metadata.c (do_mono_metadata_parse_generic_class): Make this
10380         function return a status code.  If we fail to parse the signature
10381         from mono_metadata_parse_generic_inst, return FALSE.
10382
10383         * loader.c (mono_get_method_from_token): If we fail to load the
10384         method (mono_class_get) return NULL.   
10385
10386         * (method_from_memberref): Return NULL if we are unable to parse
10387         the method signature
10388
10389         (mono_loader_error_prepare_exception): Since we now use the
10390         loader_error flag internally to stop processing, and obtaining
10391         exceptions that might be thrown will walk this code path the
10392         proper way of going from a MonoLoaderError into a
10393         MonoException was convoluted.   This new routine encapsulates the
10394         process of turning the error into an exception and *clearing* the
10395         error afterwards.
10396         
10397 2006-04-27  Miguel de Icaza  <miguel@novell.com>
10398
10399         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
10400         with missing assemblies), and to cope with:
10401
10402                 * Missing fieldref from a non-existing assembly.
10403                 * Missing methodref from a non-existing assembly.
10404
10405         The first batch of work to address *some* of the issues from 76661.
10406         
10407         * object.c (mono_class_create_runtime_vtable): If we fail to
10408         initialize the class raise the exception here. 
10409
10410         * metadata.c (mono_class_get_overrides_full): If any methods fail
10411         to load return the failure to the caller.
10412
10413         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
10414         flagging assemblies that failed to load.   
10415
10416         Do not crash if we are unable to load the assembly.
10417
10418         (mono_assembly_close): Do nothing with REFERENCE_MISSING
10419         assemblies. 
10420
10421         * loader.c (mono_loader_set_error_type_load): Change the
10422         convention to always pass unallocated strings, so we make our own
10423         copies (I know our own code had duplicated strings before, but
10424         this keeps the normal conventions).
10425         (method_from_memberref): Call mono_loader_set_error_method_load
10426         for all possible failures of loading the class. 
10427         Remove assert, turn into a loader error.
10428
10429         (mono_loader_error_to_exception): Move this routine from mini
10430         (mini_loader_error_to_exception) there was no need to have that in
10431         mini. 
10432
10433         * class.c (mono_class_from_typeref): If we were not able to load
10434         the assembly with mono_assembly_load_reference, call the
10435         mono_loader_set_error_type_load to register the problem.
10436
10437         (mono_class_setup_fields): If we fail to load the type from
10438         mono_metadata_parse_type_full, call mono_class_set_failure and
10439         break from the loop.
10440
10441         If class->exception_type is set, we do not layout the fields as
10442         that might crash the runtime, and instead return (from breaking
10443         from the previous loop).
10444
10445         (mono_class_setup_vtable): This now returns a boolean indicating
10446         whether the table was properly setup.   The decision is driven by
10447         mono_class_get_overrides_full which might run into non-existing
10448         methods. 
10449         
10450         (mono_class_init): Returns TRUE on success or FALSE if there was a
10451         problem in loading the type (incorrect assemblies, missing
10452         assemblies, methods, etc).
10453
10454         When we call mono_class_setup_fields we also check for a potential
10455         error inside this call (either a class exception or a general
10456         loader exception).
10457
10458         (mono_class_create_from_typedef): If the parent fails to load
10459         (calling mono_class_get_full) return NULL.
10460         
10461         ** Important **
10462
10463         calls to mono_metadata_parse_type_full should be checked
10464         everywhere and set the mono_class_set_failure
10465         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
10466
10467         The current patch checks the places where my manually constructed
10468         tests show the errors are showing up, but we should do it
10469         everywhere. 
10470
10471         ** Important2 **
10472
10473         mono_class_init return values should be tested everywhere, like
10474         the previous case this is something that we should audit
10475         everywhere and not only on the cases exposed by the tests I
10476         created. 
10477
10478 2006-04-26  Miguel de Icaza  <miguel@novell.com>
10479
10480         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
10481         boolean parameter and instead pass the information on `options'
10482         parameter (FileOptions).
10483
10484         * icall.c: Register the new signature for MonoIO.Open.
10485
10486         * debug-helpers.c (dis_one): Trying to understand how coverity
10487         works.  Fix Run 5, item 78.
10488
10489 2006-04-26  Dick Porter  <dick@ximian.com>
10490
10491         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
10492         dereference.
10493
10494 2006-04-25  Martin Baulig  <martin@ximian.com>
10495
10496         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
10497
10498         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
10499         debugger_thread_created().
10500         (debugger_gc_push_all_stacks): Don't handle the main thread in any
10501         special way.
10502         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
10503         (mono_debugger_finalize_threads): New function; undo the effects
10504         of mono_debugger_init_threads().
10505         (mono_debugger_create_all_threads): Removed.
10506
10507 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
10508
10509         * image.c (mono_image_close): Tidy up trace messages.
10510
10511         * assembly.c (mono_assembly_close): Ditto.
10512
10513         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
10514         no longer references an already freed assembly. Fixes #78168.
10515
10516 2006-04-21  Dick Porter  <dick@ximian.com>
10517
10518         * threads.c (mono_thread_detach): Fix reference counting when
10519         detaching threads.
10520
10521 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
10522
10523         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
10524         #78155.
10525
10526 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
10527
10528         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
10529         (mono_type_to_stind): Ditto.
10530
10531         * marshal.c: Use the new helper functions to simplify code.
10532
10533         * image.c (mono_image_close): Add some code for help debug assembly unloading
10534         problems.
10535
10536         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
10537         image mempool.
10538
10539         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
10540         assembly was already loaded in another appdomain. Fixes #78083.
10541
10542 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
10543
10544         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
10545         referenced assemblies.
10546         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
10547
10548         * domain.c (mono_domain_free): Add a trace message.
10549
10550         * appdomain.c (add_assemblies_to_domain): Ditto.        
10551
10552         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
10553         field.  
10554
10555 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
10556
10557         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
10558
10559 2006-04-12  Martin Baulig  <martin@ximian.com>
10560
10561         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
10562         `USE_INCLUDED_LIBGC'.   
10563
10564 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
10565
10566         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
10567         the patch contains ../ and a small directory name later. Hopefully fixes
10568         #78035.
10569
10570 2006-04-10  Martin Baulig  <martin@ximian.com>
10571
10572         Clean up the debugger's thread-handling code.
10573
10574         The debugger's thread-handling code has been moved from
10575         ../mini/debug-debugger.c to threads.c.  We now iterate directly
10576         over the `threads' hash, keep track of exiting threads and also
10577         use proper locking.
10578
10579         We can now debug XSP and XSP based applications with the debugger.
10580
10581         * object-internals.h (MonoThread): Added `gpointer end_stack'.
10582
10583         * threads.h
10584         (MonoThreadCallbacks): Removed; this was only used by the debugger.
10585         (mono_install_thread_callbacks): Likewise.      
10586
10587         * threads.c (mono_thread_callbacks): Removed.
10588         (debugger_thread_created, debugger_thread_exited): New static functions.
10589         (start_wrapper): Call debugger_thread_created().
10590         (thread_cleanup): Call debugger_thread_exited().
10591         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
10592         (mono_debugger_init_threads): New public function.
10593         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
10594         iterate directly over the `threads' hash and also use proper locking.
10595
10596         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
10597
10598         * mono-debug-debugger.h
10599         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
10600
10601 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
10602
10603         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
10604         argument type=array. Fixes #78057.
10605
10606 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
10607
10608         * culture-info-table.h : regenerated. Fixed bug #69652.
10609
10610 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
10611
10612         * loader.c metadata.c: Reapply a variant r59116.
10613         
10614         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
10615
10616         * class.c (mono_class_setup_interface_offsets): New internal function.
10617
10618         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
10619         interfaces too. Fixes #77398.
10620
10621         * reflection.c (encode_cattr_value): Add support for 
10622         parameter type=object, argument type=array.
10623         (load_cattr_value): Ditto. Fixes #77916.
10624
10625         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
10626         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
10627
10628         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
10629         a byval char array and CharSet is Ansi.
10630
10631         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
10632
10633 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
10634
10635         * metadata.c: Add some locking comments.
10636         
10637         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
10638         mempool.
10639         (mono_metadata_free_method_signature): Don't free the signature itself.
10640
10641         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
10642
10643         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
10644         reference the same MonoImage.
10645         (mono_assembly_load_from_full): Add an assert.
10646
10647 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
10648
10649         * image.c (mono_image_close): Don't put the image we are about to free into the
10650         loaded_images_guid_hash.
10651
10652         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
10653         to reduce code duplication.
10654
10655         * marshal.c: Register the native functions called by this module as icalls, to
10656         somewhat centralize the creation of MonoMethodSignature's.
10657
10658         * loader.c (mono_method_signature): Add a cache for method signatures.
10659
10660         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
10661         the parameter attributes of a method.
10662         (mono_metadata_parse_method_signature_full): Refactored the computation of
10663         parameter attributes into a separate function. Also avoid one allocation in
10664         most cases.
10665
10666         * assembly.c (mono_assembly_close): Ditto.
10667
10668         * image.c (mono_image_close): Log trace messages with INFO level.
10669
10670         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
10671
10672         * image.c reflection.c: Correct reference counting of image modules.
10673         
10674         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
10675         of this function from the image mempool.
10676         
10677         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
10678         to allow more cached types to be used.
10679
10680         * mono-debug.c (mono_debug_add_method): Appled patch from
10681         David S. Miller  <davem@sunset.davemloft.net>: Access 
10682         minfo->lexical_blocks[] entry elements using read32().
10683
10684 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
10685
10686         * loader.c (mono_free_method): No longer free the method header for non-dynamic
10687         methods as it is allocated from the mempool.
10688
10689         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
10690         image mempool.
10691
10692         * metadata-internals.h: Add comments describing the reference counting scheme
10693         used for MonoImage and MonoAssembly.
10694
10695         * image.c assembly.c reflection.c: Rework reference counting of images and 
10696         assemblies so they are freed when the runtime is shut down. Free some 
10697         additional memory structures when an image is unloaded.
10698         
10699 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
10700
10701         * class.c loader.c reflection.c: Allocate more data structures in
10702         the image mempool.
10703
10704 2006-03-31  Miguel de Icaza  <miguel@novell.com>
10705
10706         * icall.c
10707         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
10708         build on pre glib 2.4 systems.
10709
10710 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
10711
10712         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
10713
10714         * icall.c: Fix some warnings.
10715
10716 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
10717
10718         * culture-info-table.h : regenerated.
10719
10720 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
10721
10722         * threads.c, object-internals.h, verify.c: changed the culture caching
10723         code to use a normal MonoArray for storage so the GC can keep track of
10724         them easily. Fixed bits of the cache logic, too and simplified the
10725         code.
10726
10727 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
10728
10729         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
10730         thread for non-Boehm GCs.
10731
10732 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
10733
10734         * domain.c, object.c, domain-internals.h: reduce the amount of memory
10735         needed to keep track of the data for static fields.
10736
10737 2006-03-29  Raja R Harinath  <rharinath@novell.com>
10738
10739         Fix #75172
10740         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
10741         for interface classes.  Use 'num_methods' instead.
10742         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
10743         before using '->vtable_size' field.
10744
10745 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
10746
10747         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
10748         doesn't contain managed pointers, so use a normal hashtable.
10749
10750 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
10751
10752         * reflection.c, class-internals.h, domain.c: fixed handling of types
10753         used as values for objects in custom attributes (bug #77915):
10754
10755 2006-03-24  Martin Baulig  <martin@ximian.com>
10756
10757         * class.c (mono_class_setup_fields): Added support for generic
10758         instances; fixes #77580.
10759
10760 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10761
10762         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
10763
10764 2006-03-24  Dick Porter  <dick@ximian.com>
10765
10766         * file-io.c (get_file_attributes): More stat macro breakage.
10767         Fixes bug 77759.
10768
10769 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
10770
10771         * profiler.c: added the file=filename option in the default profiler
10772         to output the profile data to filename.
10773
10774 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10775
10776         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
10777         bug #77877.
10778
10779 2006-03-22  Martin Baulig  <martin@ximian.com>
10780
10781         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
10782         allocated `MonoClassField *' in `fb->handle'.
10783
10784 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
10785
10786         * class.c, image.c, metadata-internals.h: implemented new mechanism to
10787         allocate interface ID to save memory and allow better ID reuse on
10788         appdomain unload. setup_generic_vtable () removal from Martin.
10789
10790 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
10791
10792         * object.h, appdomain.c, domain.c, exception.c, icall.c,
10793         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
10794         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
10795         write barriers for reference stores with managed objects accessed with
10796         C structures in the runtime and in embedding programs.
10797
10798 2006-03-20  Raja R Harinath  <rharinath@novell.com>
10799
10800         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
10801         'interface_id' and 'max_interface_id' fields of MonoClasses
10802         representing open generic types.
10803
10804 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
10805
10806         * object.h, object.c, icall.c: added functions to deal with
10807         storing valuetypes that contain references in managed objects.
10808         * reflection.c, string-icalls.c, threads.c, marshal.c: small
10809         fixes and comments around uses of mono_array_addr ().
10810
10811 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
10812
10813         * object.h, icall.c, monitor.c: object.GetHashCode ()
10814         implementation that supports the moving garbage collector.
10815
10816 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
10817
10818         * icall.c, threads-types.h, threads.c: implemented finalizer for
10819         LocalDataStoreSlot.
10820
10821 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
10822
10823         * metadata.c (mono_type_size): Add a fixme.
10824         (mono_type_stack_size): Ditto.
10825
10826         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
10827         'type_forwarders' field.
10828
10829         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
10830         attribute from net 2.0.
10831
10832         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
10833         from class.c.
10834
10835         * class.c (mono_class_setup_fields): Fix a warning.
10836         
10837         * class.c (mono_class_from_name): Add support for assemblyref entries
10838         in the EXPORTEDTYPE table.
10839
10840         * reflection.c: Add support for handling type forwarders under net 2.0.
10841
10842         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
10843         
10844 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
10845
10846         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
10847         overwriting entries in ModuleBuild->types, also clean up the code
10848         a little. Fixes #77774.
10849
10850 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
10851
10852         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
10853         load friend assembly info when present.
10854
10855 2006-03-14  Raja R Harinath  <rharinath@novell.com>
10856
10857         Fix crasher on gtest-158.cs.
10858         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
10859         the return value if the MonoClass we want is yet in an
10860         inconsistent state.
10861         * class.c (mono_class_create_from_typedef): Add an comment
10862         explaining an order dependency between mono_class_setup_parent and
10863         mono_class_setup_mono_type.
10864
10865 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
10866
10867         * class.c: documentation updates and events bug fix.
10868
10869 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
10870
10871         * class.c: some cleanup, locking fixes.
10872
10873 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
10874
10875         * class.c: fix the generics code to setup nested
10876         type info to the instantiated type (bug #77770).
10877
10878 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
10879
10880         * marshal.c: fixed a few type correctness issues.
10881
10882 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
10883
10884         * loader.c: the Set/Get/Addrtess array methods should be public.
10885
10886 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
10887
10888         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
10889         
10890         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
10891         info->wrapper.
10892
10893 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
10894
10895         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
10896
10897         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
10898
10899         * mempool.c (mono_mempool_alloc): Speed this up a bit.
10900         (mono_mempool_alloc0): Ditto.
10901
10902 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10903
10904         * socket-io.c:
10905         (create_object_from_sockaddr): it was allocating 4 extra bytes
10906         for the AF_UNIX data. Fixes bug #77747.
10907
10908 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
10909
10910         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
10911
10912 2006-03-09  Dick Porter  <dick@ximian.com>
10913
10914         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
10915         Fixes bug 76966 again.
10916
10917 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
10918
10919         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
10920         names from r57532
10921         * appdomain.c: Bumped corlib version to 48 (due to r57532)
10922
10923 2006-03-07  Martin Baulig  <martin@ximian.com>
10924
10925         * object.c
10926         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
10927
10928 2006-03-07  Martin Baulig  <martin@ximian.com>
10929
10930         * class.c
10931         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
10932         regression introduced in r56970; see gtest-252.cs.
10933
10934         * loader.c (mono_get_method_constrained): Correctly handle generic
10935         methods; see gtest-253.cs.
10936
10937 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
10938
10939         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
10940
10941 2006-03-04  Martin Baulig  <martin@ximian.com>
10942
10943         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
10944         compute the parent type at runtime, just like we're already doing
10945         it for interfaces.
10946
10947         * reflection.c
10948         (mono_reflection_bind_generic_parameters): Don't compute the
10949         parent type anymore.
10950
10951         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
10952
10953 2006-03-04  Martin Baulig  <martin@ximian.com>
10954
10955         * mono-debug-debugger.h
10956         (mono_debugger_create_notification_function): Allocate memory at
10957         runtime and return a pointer to it.
10958
10959 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
10960
10961         * assembly.c: Fix windows build.
10962         
10963         * assembly.c: Fix build.
10964
10965         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
10966
10967         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
10968         
10969 2006-03-03  Dick Porter  <dick@ximian.com>
10970
10971         * process.c
10972         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
10973         Check parameters before dereferencing them.  Fixes Aaron's part of
10974         bug 77393.
10975
10976 2006-03-03  Raja R Harinath  <rharinath@novell.com>
10977
10978         Fix performance regression.
10979         * loader.c (find_method_in_class): Add 'from_class' argument.
10980         Rename 'klass' argument to 'in_class'.  The signature is compared
10981         against the method in 'in_class', and the corresponding method is
10982         returned from 'from_class'.
10983         (find_method): Walk both 'in_class' and 'from_class' in parallel.
10984         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
10985         type definition and generic instantiation in parallel.
10986         (mono_get_method_constrained): Update to changes.
10987
10988 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
10989
10990         * threads.c: make sure the domain is correct, too when doing
10991         mono_thread_attach ().
10992
10993 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
10994
10995         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
10996         windows. Fixes #77683.
10997
10998 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
10999
11000         * object.h, *: introduced specific way to set elements of an array
11001         of references to be used as write barrier. Still need to audit the
11002         uses of mono_array_addr.
11003
11004 2006-03-01  Miguel de Icaza  <miguel@novell.com>
11005
11006         * object-internals.h: New field to cache the assmebly name, patch
11007         from Tambet Ingo (tambet@ximian.com)
11008
11009 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
11010
11011         * decimal.h, class-internals.h, metadata-internals.h,
11012         file-io.h: mark a few function declarations as internal, to
11013         reduce the number of PLT entries.
11014
11015 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11016
11017         * file-io.c: fix typo in warning message.
11018
11019 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
11020
11021         * loader.c: on unix, lookup the "*A" version of a function
11022         if charset is auto as a second option before failing.
11023
11024 2006-02-28  Raja R Harinath  <rharinath@novell.com>
11025
11026         * class.h (mono_class_inflate_generic_method): Revert to two
11027         argument version.
11028         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
11029         (mono_class_inflate_generic_method_full): Add.
11030         * class.c (mono_class_inflate_generic_method_full): Rename from
11031         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
11032         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
11033         * loader.c, reflection.c: Update to changes.
11034
11035 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
11036
11037         * icall.c: const fixes and small improvements.
11038
11039 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11040
11041         * threadpool.c: for asynchronous connect(), enable the same workaround
11042         for BSD 6 as for the Mac. Fixes bug #77637.
11043
11044 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
11045
11046         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
11047         formatted classes. Fixes #77524.
11048
11049 2006-02-24  Raja R Harinath  <rharinath@novell.com>
11050
11051         * class.c (inflate_generic_type): Add a couple more
11052         micro-optimizations.
11053         (inflate_generic_context): Don't use the 'gmethod' from
11054         'inflate_with'.
11055         (mono_class_inflate_generic_method): If the method has generic
11056         parameters, but the passed-in context doesn't have a 'gmethod',
11057         create one.  Use the possibly simplified generic instantiation
11058         from the declaring class instead of the one passed in.
11059
11060 2006-02-24  Raja R Harinath  <harinath@gmail.com>
11061
11062         Make generic method signature and method header handling lazy.
11063         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
11064         (inflate_generic_header): Likewise.
11065         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
11066         parameter to avoid inflating types.
11067         (mono_get_inflated_method): Empty out.
11068         * class.h (mono_class_inflate_generic_method): Update to changes.
11069         * loader.c (mono_get_method_from_token): Don't parse signature for
11070         generic methods, nor methods of generic classes.
11071         (mono_method_signature): Rename from 'mono_method_signature'.
11072         Inflate signature on demand.
11073         (mono_method_get_header): Inflate method header on demand.
11074         * reflection.c: Update to changes.
11075
11076 2006-02-23  Raja R Harinath  <rharinath@novell.com>
11077
11078         * metadata.c (mono_metadata_inflate_generic_inst): If the
11079         instantiation is closed, don't bother expanding it in the new
11080         context.
11081         * class.c (inflate_generic_class): If the generic instantiation
11082         doesn't change after inflation, return the argument itself.
11083         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
11084         Add bounds checks.
11085         (inflate_generic_context): If neither the generic class nor the
11086         generic method instantiations change, return the original context.
11087         * reflection.c (mono_method_get_object): Do
11088         'mono_get_inflated_method' before accessing the ->klass field.
11089         (inflate_mono_method): Don't create a MonoGenericMethod unless
11090         necessary.
11091         (inflate_method): Don't pass a constructed type as the declaring
11092         type of a methodbuilder.
11093
11094 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
11095
11096         * object.c: fix memory overwrite.
11097
11098 2006-02-22  Dick Porter  <dick@ximian.com>
11099
11100         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
11101         it doesn't work any more.
11102         (mono_threads_request_thread_dump): Fix unused variable warnings.
11103
11104 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11105
11106         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
11107         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
11108         the public header file.
11109
11110 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
11111
11112         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
11113
11114 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
11115
11116         * class-internals.h, object.c: reduce the size of MonoVTable
11117         and store the interface_offsets array at negative offsets.
11118
11119 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
11120
11121         * metadata.c: tweak table descriptors data structures to reduce
11122         size and runtime relocations.
11123
11124 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11125
11126         * marshal.c: fix some types and opcodes to be type-safe
11127         in marshaling wrappers.
11128
11129 2006-02-21  Ankit Jain  <jankit@novell.com>
11130
11131         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
11132
11133 2006-02-21  Raja R Harinath  <rharinath@novell.com>
11134
11135         * metadata.c (get_constraints): Relax debugging checks for monodis.
11136
11137 2006-02-21  Ankit Jain  <jankit@novell.com>
11138
11139         * metadata.c (mono_metadata_load_generic_params): Move the code
11140         checking for ambiguous generic params from here to mono/dis/get.c
11141         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
11142
11143 2006-02-21  Raja R Harinath  <harinath@gmail.com>
11144
11145         Fix assertion triggered when compiling nemerle.
11146         * class.c (mono_get_shared_generic_inst): Rename from
11147         get_shared_inst and make non-static.
11148         * loader.c (mono_get_shared_generic_method): New.  Used to create
11149         the MonoGenericContext-equivalent of a MonoGenericContainer.
11150         (mono_get_method_from_token): Initialize the 'context' field of
11151         the created MonoGenericContainer.
11152         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
11153         * metadata.c (get_constraints): Add sanity check.
11154         * class-internals.h: Add new internal methods.
11155
11156         * reflection.c (verify_safe_for_managed_space): New sanity check.
11157         Currently checks that owner-less generic parameters aren't allowed
11158         in managed space.
11159         (mono_type_get_object): Use it.
11160         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
11161         that are now in mono_type_get_object.
11162         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
11163
11164 2006-02-19  Raja R Harinath  <harinath@gmail.com>
11165
11166         * metadata.c (mono_type_create_from_typespec): Rename from
11167         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
11168         argument and caching of types in the generic container.
11169         (unwrap_arrays, find_generic_param): Remove.
11170         * metadata-internals.h: Update.
11171         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
11172
11173 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
11174
11175         * class.c (mono_class_get_exception_for_failure): Fix a warning.
11176
11177         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
11178         return values. Fixes #77581.
11179
11180         * class.c (mono_fnptr_class_get): Switch name and name_space.
11181
11182         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
11183         classes and add support for [In, Out] attributes.
11184         (mono_marshal_free_asany): Ditto. Fixes #77524.
11185
11186 2006-02-18  Raja R Harinath  <harinath@gmail.com>
11187
11188         * class.c (mono_class_from_generic_parameter): Make more robust to
11189         incomplete MonoGenericContainers from monodis.
11190
11191 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11192
11193         * class-internals.h: added some more exception types.
11194         * class.c, metadata.c: added a few checks to handle missing
11195         types.
11196
11197 2006-02-17  Raja R Harinath  <rharinath@novell.com>
11198
11199         Use owner-less generic-params some more.
11200         * class.c (my_mono_class_from_generic_parameter): Remove.
11201         (mono_class_from_generic_parameter): Handle null image,
11202         param->name and param->owner.
11203         (mono_class_from_mono_type): Update.
11204         (mono_class_create_from_typespec): Remove 'container' parameter.
11205         If that parameter is non-null, the result is always inflated by
11206         'mono_class_get_full' anyway.
11207         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
11208         parameter.
11209         (mono_class_get_full): Update.
11210
11211         * class.c (inflate_generic_type) [GENERICINST]: If the generic
11212         instance is not open, don't bother inflating.
11213         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
11214         parse metadata for inflated classes.
11215         (_mono_class_get): Change GenericContext* parameter to
11216         GenericContainer*.
11217         (mono_class_create_from_typespec): Likewise.  Simplify, and
11218         implement trivially.  All the cases are handled in
11219         mono_class_from_mono_type.  Don't inflate returned class.
11220         (mono_class_get_full): Delegate GENERICINST optimization to
11221         inflate_generic_type.
11222         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
11223
11224 2006-02-16  Dick Porter  <dick@ximian.com>
11225
11226         * socket-io.c (create_object_from_sockaddr): Fix typo.
11227         (create_sockaddr_from_object): Check array lengths before
11228         potentially accessing items off the end.
11229         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
11230         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
11231         (ves_icall_System_Net_Sockets_Socket_Send_internal)
11232         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
11233         length checks to avoid wraparound overflows.
11234         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
11235         contents of the array of sockets
11236         (hostent_to_IPHostEntry2)
11237         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
11238         Check return value of inet_ntop ().
11239         (addrinfo_to_IPHostEntry): Fix typo
11240
11241 2006-02-16  Raja R Harinath  <rharinath@novell.com>
11242
11243         Type metadata parsing doesn't use generic-instantiation information.
11244         * metadata.c (mono_metadata_parse_array_full): Change
11245         MonoGenericContext* parameter to MonoGenericContainer*.
11246         (mono_metadata_parse_type_full): Likewise.
11247         (mono_type_create_from_typespec_full): Likewise.
11248         (mono_metadata_parse_mh_full): Likewise.
11249         (mono_metadata_parse_generic_inst): Likewise.
11250         (do_mono_metadata_parse_generic_class): Likewise.
11251         (do_mono_metadata_parse_type): Likewise.
11252         * metadata-internals.h: Update to changes.
11253         * class.c (mono_class_find_enum_basetype): Likewise.
11254         (mono_class_setup_fields): Likewise.
11255         (mono_class_create_from_typespec): Likewise.
11256         * loader.c (method_from_methodspec): Likewise.
11257         (mono_get_method_from_token): Likewise.
11258         (mono_method_get_header): Likewise.
11259
11260 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11261
11262         * marshal.c: handle additional GENERICINST case (patch from
11263         Thong Nguyen <tum@veridicus.com>).
11264         Fix a few cases where LDIND_I/STIND_I was used for references.
11265
11266 2006-02-16  Raja R Harinath  <rharinath@novell.com>
11267
11268         * reflection.c (mono_reflection_get_token): Remove unused variable.
11269
11270 2006-02-16  Martin Baulig  <martin@ximian.com>
11271
11272         * reflection.c (mono_reflection_get_token): Add support for fields
11273         in instantiated generic types.
11274
11275         * icall.c
11276         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
11277
11278 2006-02-15  Martin Baulig  <martin@ximian.com>
11279
11280         * icall.c
11281         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
11282         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
11283         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
11284         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
11285
11286 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
11287
11288         * class.c, metadata.c, metadata.h, object.c, icall.c,
11289         marshal.c: changed mono_type_get_underlying_type () to do
11290         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
11291         Fixed handling of instantiated generic valuetypes (bug #75479).
11292
11293 2006-02-15  Raja R Harinath  <rharinath@novell.com>
11294
11295         * metadata.c (mono_metadata_decode_signed_value): Simplify.
11296         Delegate to mono_metadata_decode_value, and work on the returned value.
11297
11298         * icall.c (ves_icall_MonoType_GetGenericArguments):
11299         Add consistency check here too.
11300         
11301 2006-02-15  Ankit Jain  <jankit@novell.com>
11302
11303         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
11304         char/short etc.
11305
11306 2006-02-15  Ankit Jain  <jankit@novell.com>
11307
11308         * metadata.c (mono_metadata_decode_signed_value): New function to decode
11309         signed values, used only for representing lower bounds of arrays.
11310         (mono_metadata_parse_array_full): Use new
11311         mono_metadata_decode_signed_value to decode lower bounds.
11312
11313 2006-02-14  Martin Baulig  <martin@ximian.com>
11314
11315         * reflection.c
11316         (mono_reflection_get_token): Support "MonoGenericMethod" and
11317         "MonoGenericCMethod" and allow generic instances / methods.
11318
11319 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
11320
11321         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
11322         to obtain the terminal size using an ioctl.
11323
11324         * object.c (mono_nullable_init): Revert this as nullable reference
11325         types are not valid.
11326         (mono_nullable_box): Ditto.
11327
11328 2006-02-09  Dick Porter  <dick@ximian.com>
11329
11330         * threads.c (mono_thread_detach): Drop a reference to the thread
11331         we're detaching.
11332
11333 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
11334
11335         * object.c (mono_nullable_init): Handle nullable reference types.
11336         (mono_nullable_box): Ditto. Fixes #77446.
11337
11338 2006-02-07  Martin Baulig  <martin@ximian.com>
11339
11340         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
11341
11342 2006-02-07  Ankit Jain  <jankit@novell.com>
11343
11344         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
11345         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
11346         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
11347         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
11348         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
11349         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
11350
11351 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
11352
11353         * class.c (mono_class_create_generic): Set type_token as well.
11354
11355         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
11356         compatible with MS.
11357
11358 2006-02-02  Martin Baulig  <martin@ximian.com>
11359
11360         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
11361         has never been used so far.
11362
11363 2006-02-02  Martin Baulig  <martin@ximian.com>
11364
11365         * mono-debug-debugger.h: Changed comment at the top of this file;
11366         the header is not installed, but it's safe to #include it from
11367         within the JIT.
11368
11369         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
11370         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
11371
11372 2006-02-02  Martin Baulig  <martin@ximian.com>
11373
11374         * mono-debug.h
11375         (MonoSymbolTable): Removed the `metadata_info' field.
11376
11377         * mono-debug.c
11378         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
11379
11380         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
11381         (mono_debugger_add_builtin_types): Removed.
11382         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
11383         (mono_debugger_create_notification_function): We now operate on a
11384         pre-allocated area; take a `gpointer' and return `void'.
11385
11386         * mono-debug-debugger.c
11387         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
11388         (mono_debugger_add_builtin_types): Removed.
11389
11390 2006-02-02  Martin Baulig  <martin@ximian.com>
11391
11392         * threads.c (mono_debugger_create_all_threads): New public method.
11393
11394 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11395
11396         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
11397         breaks on several platforms.
11398
11399 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
11400
11401         * assembly.c: the VS.NET build doesn't supply default values for
11402         MONO_ASSEMBLIES and MONO_CFG_DIR.
11403
11404 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
11405
11406         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
11407         helper function.
11408
11409         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
11410
11411         * loader.c (method_from_memberref): Fix a warning.
11412
11413         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
11414
11415         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
11416         with explicit layout. Fixes #77433.
11417
11418 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
11419
11420         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
11421         max_interface_id is initialized before using it. Fixes #77398.
11422         (ves_icall_Type_GetInterfaces): Ditto.
11423
11424 2006-01-30  Raja R Harinath  <rharinath@novell.com>
11425
11426         * metadata.c (mono_metadata_parse_method_signature_full): Don't
11427         allocate memory for parameter attributes when parsing memberref
11428         signatures.
11429         * loader.c (mono_loader_set_error_method_load): Don't warn.
11430         (method_from_memberref): Ensure MissingMethodException gets thrown
11431         if method is not found.  Make warning more informative.
11432
11433 2006-01-29  Raja R Harinath  <harinath@gmail.com>
11434
11435         Fix #77397
11436         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
11437         return true if is byref.
11438         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
11439         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
11440         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
11441
11442 2006-01-27  Raja R Harinath  <rharinath@novell.com>
11443
11444         Fix tests/find-method.2.il
11445         * loader.c (find_method, find_method_in_class): Remove is_inflated
11446         argument.  Revert 2006-01-18 change.
11447         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
11448         is generic, search for method in its generic definition.
11449         * class.c (mono_class_setup_vtable_general): Print generic
11450         arguments of generic types in debugging printf.
11451
11452 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
11453
11454         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
11455
11456         * threads.c (mono_threads_request_thread_dump): New helper function.
11457
11458 2006-01-25  Raja R Harinath  <rharinath@novell.com>
11459
11460         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
11461
11462 2006-01-25  Ankit Jain  <jankit@novell.com>
11463
11464         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
11465         move definition to ..
11466         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
11467         
11468 2006-01-25  Ankit Jain  <jankit@novell.com>
11469             Raja R Harinath  <rharinath@novell.com>
11470
11471         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
11472         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
11473         as necessary.
11474
11475 2006-01-25  Martin Baulig  <martin@ximian.com>
11476
11477         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
11478         `MonoDebuggerThread' into debug-debugger.c.
11479
11480 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
11481
11482         * profiler.c: fix printing of data.
11483
11484 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
11485
11486         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
11487           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
11488
11489 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
11490
11491         * object.c: fix deadlock related to string interning.
11492
11493 2006-01-23  Martin Baulig  <martin@ximian.com>
11494
11495         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
11496
11497         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
11498
11499 2006-01-23  Martin Baulig  <martin@ximian.com>
11500
11501         * mono-debug.h: Moved the prototypes of some functions which are
11502         used by the JIT here from mono-debug-debugger.h.
11503
11504 2006-01-21  Martin Baulig  <martin@ximian.com>
11505
11506         * Makefile.am: Don't install mono-debug-debugger.h.
11507
11508 2006-01-21  Martin Baulig  <martin@ximian.com>
11509
11510         * mono-debug-debugger.h: Enforce the private status of this header
11511         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
11512         Moved some stuff from mono-debugger-jit-wrapper.h here.
11513
11514 2006-01-20  Raja R Harinath  <rharinath@novell.com>
11515
11516         * class.c (mono_class_from_typeref): Add a sanity test to help
11517         catch lack of assembly load/search hooks.
11518
11519 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
11520
11521         * marshal.c (emit_struct_conv): Relax the fields with same offset
11522         check even more. Fixes #77230.
11523
11524 2006-01-18  Martin Baulig  <martin@ximian.com>
11525
11526         * loader.c (find_method_in_class): Added `gboolean is_inflated'
11527         argument; if false, we compare the uninstantiated signatures.
11528         (method_from_memberref): Compare the uninstantiated signatures;
11529         fixes #76417.
11530
11531 2006-01-18  Robert Jordan  <robertj@gmx.net>
11532
11533         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
11534         Clear the weak link. Fixes bug #77170.
11535
11536         * gc.c (mono_gchandle_free):
11537         Reflect *-gc.c changes (tiny optimization).
11538
11539 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
11540
11541         * metadata.c (mono_metadata_signature_dup): Applied patch from
11542         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
11543         Fixes #77288.
11544
11545 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
11546
11547         * marshal.c (emit_struct_conv): Allow fields with the same offset when
11548         marshalling from native to managed code. Fixes #77230.
11549
11550 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11551
11552         * threadpool.c: fix problem (Mac only) when more than one asynchronous
11553         connect. Fixes bug #77020.
11554
11555 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
11556
11557         * class.c: fixed id assignement for nested interfaces (bug #77275).
11558         Added also better info for --print-vtable debugging.
11559
11560 2006-01-12  Martin Baulig  <martin@ximian.com>
11561
11562         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
11563         interfaces on-the-fly; fixes #76625.
11564
11565         * class-internals.h
11566         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
11567         don't need that anymore.
11568
11569 2006-01-12  Miguel de Icaza  <miguel@novell.com>
11570
11571         * socket-io.c
11572         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
11573         To avoid initing the nested_classes when not needed I turned the
11574         PeerCredData as a toplevel internal class, as it has to be shared
11575         anyways. 
11576
11577         Fixes the CASA issue.
11578
11579 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
11580
11581         * domain.c: Accessors for MonoJitInfo
11582
11583         * profiler-private.h: Add jitinfo to the end jit hook
11584
11585         * profiler.[ch]: Define new hooks, called after jitting which give
11586         the MonoJitInfo that was compiled
11587
11588 2006-01-10  Martin Baulig  <martin@ximian.com>
11589
11590         * class.c (mono_class_setup_events): Add support for generic
11591         classes; fixes #76440.
11592
11593 2006-01-06  Raja R Harinath  <rharinath@novell.com>
11594
11595         Fix #77160.
11596         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
11597         on passed-in method.
11598
11599 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
11600
11601         * object.c (mono_runtime_invoke_array): Add Nullable support.
11602
11603         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
11604
11605 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
11606
11607         * file-io.c: Don't consider sockets as directory and avoid an endless
11608         loop. Fix bug #76966.
11609
11610 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
11611
11612         * object.c (mono_nullable_init): New helper function.
11613         (mono_nullable_box): Ditto.
11614
11615         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
11616
11617         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
11618
11619         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
11620         
11621 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
11622
11623         * class.c (mono_class_is_assignable_from): Make T assignable to 
11624         Nullable<T>.
11625
11626 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
11627
11628         * appdomain.c: Bump corlib version to 46.
11629         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
11630         serialization purpose) and changed ves_icall_System_Reflection_
11631         Assembly_get_code_base signature to accept a boolean (to escape, or 
11632         not, the assembly code base).
11633
11634 2005-12-23  Dick Porter  <dick@ximian.com>
11635
11636         * icall.c: 
11637         * threads-types.h: 
11638         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
11639         CreateEvent icall now returns "created" boolean parameter.
11640
11641 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
11642
11643         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
11644         #76967.
11645
11646         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
11647         when attr_klass is an interface. Fixes #77045.
11648
11649 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
11650
11651         * marshal.c (emit_struct_conv): Fix previous patch.
11652         
11653         * marshal.c (emit_struct_conv): Add a check for fields with the same
11654         offset.
11655
11656 2005-12-20  Raja R Harinath  <rharinath@novell.com>
11657
11658         Fix regression in Mono.C5.
11659         * class.c (mono_class_create_generic): If 'klass' is an interface
11660         set up the interface offsets.
11661         (mono_class_is_assignable_from): Don't throw away generic arguments.
11662
11663 2005-12-19  Raja R Harinath  <rharinath@novell.com>
11664
11665         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
11666         type parameters.
11667
11668 2005-12-15  Raja R Harinath  <rharinath@novell.com>
11669
11670         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
11671         dead store.
11672         (do_mono_metadata_parse_generic_class): Don't pass the current
11673         generic context when parsing the type being instantiated: it
11674         cannot use it, anyway.
11675
11676         * loader.c (method_from_memberref): Don't inflate a signature if
11677         it doesn't contain any type parameters.
11678
11679 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
11680
11681         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
11682
11683 2005-12-14  Martin Baulig  <martin@ximian.com>
11684
11685         * class.c
11686         (mono_type_get_name_recurse): Don't return null for type
11687         parameters and open generic classes.
11688         (mono_class_setup_methods): Don't exclude generic instances.
11689         (mono_get_unique_iid): Use different IDs for different
11690         instantiations of the same generic type.
11691         (mono_class_setup_vtable): Only use setup_generic_vtable() for
11692         open generic instances; create a normal vtable for closed generic
11693         instances.
11694         (mono_class_setup_vtable_general): We're now also called for
11695         closed generic instances.
11696
11697         * reflection.c
11698         (mono_reflection_bind_generic_parameters): Correctly use
11699         mono_metadata_lookup_generic_inst() everywhere.
11700
11701 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
11702
11703         * object.c (mono_class_create_runtime_vtable): Call 
11704         mono_class_setup_vtable ().
11705
11706         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
11707         function.
11708         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
11709         #76959.
11710
11711         * loader.c (mono_loader_set_error_type_load): Print the type load
11712         warnings to the console so they are more visible to the user.
11713         (mono_loader_set_error_method_load): Ditto.
11714
11715         * reflection.c (ensure_runtime_vtable): Revert the last change as it
11716         is still broken.
11717         
11718         * reflection.c (ensure_runtime_vtable): Fix build.
11719
11720         * reflection.c (ensure_runtime_vtable): Disable an optimization which
11721         doesn't work in all cases.
11722
11723 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
11724
11725         * object.c (mono_array_new_full): Treat a single dimensional array
11726         with 0 lower bounds as an szarray. Fixes #76973.
11727
11728         * reflection.c (custom_attr_visible): Really fix this.
11729
11730 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
11731
11732         * reflection.c (custom_attr_visible): Allow nested public attributes
11733         as well.
11734
11735         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
11736         interface check.
11737
11738 2005-12-12  Raja R Harinath  <harinath@gmail.com>
11739
11740         * class.c (set_generic_param_owner): Delete.
11741         (mono_class_create_from_typedef): Don't set ->owner field of
11742         generic parameters to "param containers" of enclosing classes.
11743         * reflection.c (mono_reflection_initialize_generic_parameter):
11744         Likewise.
11745
11746 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
11747
11748         * reflection.c (custom_attr_visible): Fix build.
11749
11750 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
11751
11752         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
11753         private attributes.
11754         
11755         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
11756         handling of null parameter defaults.
11757
11758 2005-12-09  Raja R Harinath  <rharinath@novell.com>
11759
11760         * class.c (mono_class_from_generic_parameter): Don't set
11761         klass->generic_container.
11762         (my_mono_class_from_generic_parameter): Likewise.
11763
11764 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
11765
11766         * reflection.c (load_public_key): Fix a warning.
11767         (method_encode_code): Fix unaligned accesses.
11768
11769 2005-12-07  Martin Baulig  <martin@ximian.com>
11770
11771         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
11772
11773         * reflection.c
11774         (write_generic_param_entry): Encode our custom attrs.
11775
11776         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
11777
11778 2005-12-07  Martin Baulig  <martin@ximian.com>
11779
11780         * reflection.c (encode_new_constraint): Removed; we don't use the
11781         `NewConstraintAttribute' anymore.
11782
11783 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
11784
11785         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
11786         not fire a TypeResolve event when Assembly.GetType () is called.
11787
11788 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
11789
11790         Beginning of support for nullable types in the runtime. Parts of
11791         this patch are from Martin.
11792
11793         * appdomain.c (MONO_CORLIB_VERSION): Bump
11794
11795         * domain.c (mono_init_internal): get the nullable type
11796
11797         * class.c (mono_class_is_nullable): New method
11798         (mono_class_get_nullable_param): New mehod
11799         (mono_class_create_generic): In types T? set cast_class to T
11800
11801         * class-internals.h (MonoDefaults): new nullable default class
11802         (mono_class_get_nullable_param, mono_class_get_nullable_param):
11803         new methods.
11804
11805 2005-12-05  Raja R Harinath  <rharinath@novell.com>
11806
11807         * metadata.c (select_container): New.  Refactor code to select the
11808         appropriate GenericContainer given the type of generic parameter
11809         we are looking for.
11810         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
11811         not a MonoGenericContext.  Use select_container.  Update parameters.
11812         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
11813         and MONO_TYPE_MVAR.
11814         (unwrap_arrays): Remove duplicate tests.
11815         (find_generic_param): Rename from 'has_same_context'.  Now walks a
11816         generic instantiated class to find any arguments that are generic
11817         parameters.
11818         (mono_type_create_from_typespec_full): Use find_generic_param to
11819         avoid evicting some generic instantiations from the typespec
11820         cache.
11821
11822 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
11823
11824         * reflection.c: fixed writing of doubles on ARM FPA.
11825
11826 2005-12-02  Robert Jordan  <robertj@gmx.net>
11827
11828         * icall.c: Fixed EventInfo.ReflectedType (#76829).
11829
11830 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11831
11832         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
11833         least on SUSE 10 they are not the same (on debian, they are just the
11834         same thing).
11835
11836 2005-12-01  Raja R Harinath  <rharinath@novell.com>
11837
11838         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
11839         DeclaringType for VARs and MVARs.
11840         * class.c (set_generic_param_owner): Fix initialization of owner
11841         fields.
11842
11843 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
11844
11845         * icall.c: fixed Enum.ToObject() to correctly convert the values.
11846
11847 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11848
11849         * threadpool.c: workaround for a bug that shows up on the Mac:
11850         select()+connect() on a blocking socket is not like it should
11851         be, so we proceed to connect() in that case, wasting the I/O
11852         threadpool thread until connect succeedes. Fixes bug #75436.
11853
11854 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11855
11856         * threadpool.c: fix typo when setting file descriptor states.
11857
11858 2005-11-28  Raja R Harinath  <rharinath@novell.com>
11859
11860         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
11861         * metadata.c (mono_metadata_parse_method_signature_full): Don't
11862         create a temporary signature container.
11863         (mono_metadata_parse_generic_param): Update to changes.
11864         (mono_type_create_from_typespec_full): Update to changes.
11865         * loader.c (method_from_memberref): Don't use a
11866         MonoGenericContainer while parsing a memberref signature.
11867         (method_from_methodspec): Remove dead-store of the 'container'
11868         variable.  It's overwritten before use.
11869
11870         * metadata.c (mono_type_create_from_typespec_full): Make debugging
11871         checks tighter.
11872         (mono_metadata_parse_generic_param): Likewise.
11873         * loader.c (find_method_in_class): Does not need a
11874         MonoGenericContainer.  Use 'mono_method_signature' rather than
11875         'mono_method_signature_full'.
11876         (find_method, mono_get_method_constrained, method_from_memberref):
11877         Update to changes.
11878
11879         * metadata.c (mono_type_create_from_typespec_full): Ensure that
11880         owner-less generic-parameters are never evicted from the typespec
11881         cache.
11882
11883         * loader.c (method_from_memberref): Don't use the current context
11884         when parsing signatures.
11885         (method_from_methodspec, mono_get_method_from_token): Update to changes.
11886
11887         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
11888         side-effects in g_assert.
11889         * loader.c (mono_get_method_from_token): Resolve klass earlier so
11890         that we don't potentially lose information.
11891
11892 2005-11-26  Dick Porter  <dick@ximian.com>
11893
11894         * icall.c:
11895         * threads.c: icalls to implement basic (ie, not named)
11896         System.Threading.Semaphore.
11897
11898 2005-11-24  Dick Porter  <dick@ximian.com>
11899
11900         * process.c
11901         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
11902         Use GetProcessId() if it's available.
11903
11904 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
11905
11906         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
11907
11908 2005-11-23  Raja R Harinath  <rharinath@novell.com>
11909             Ankit Jain  <jankit@novell.com>
11910
11911         * loader.c (mono_get_method_from_token): Initialize 'method' field
11912         of all generic parameters before parsing the signature.  Remove
11913         code that "fixed"-up MVAR references.
11914
11915 2005-11-23  Ankit Jain  <jankit@novell.com>
11916
11917         * metadata.c (mono_metadata_has_generic_params):
11918         (mono_metadata_load_generic_param_constraints):
11919         (mono_metadata_load_generic_params): Move duplicate code ...
11920         (mono_metadata_get_generic_param_row): ... here. Returns the
11921         first row-id in GenericParam table for a given owner (token).
11922         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
11923         prototype.
11924
11925 2005-11-23  Raja R Harinath  <rharinath@novell.com>
11926             Ankit Jain  <jankit@novell.com>
11927
11928         * metadata.c (mono_metadata_class_equal): Pass signature_only when
11929         comparing VARs too.
11930         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
11931         type->data.generic_param only if the type is an MVAR.
11932         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
11933         leak owner-less VARs and MVARs into managed space.
11934
11935 2005-11-21  Martin Baulig  <martin@ximian.com>
11936
11937         * class-internals.h
11938         (MonoMethod): Moved the `generic_container' here from
11939         `MonoMethodNormal' since we now also need it for
11940         `MonoMethodPInvoke';
11941         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
11942         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
11943         an union containing both `MonoMethodNormal' and
11944         `MonoMethodPInvoke'.
11945
11946         * loader.c
11947         (mono_get_method_from_token): Allow implementing generic methods
11948         as interncalls.
11949
11950         * threads.c
11951         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
11952         icall.
11953
11954 2005-11-17  Dick Porter  <dick@ximian.com>
11955
11956         * icall.c: 
11957         * process.h: 
11958         * process.c: Split the Process Start_internal icall into
11959         ShellExecuteEx_internal and CreateProcess_internal, which are
11960         called depending on whether UseShellExecute is true.  Fixes bug
11961         76670.
11962
11963         * appdomain.c (MONO_CORLIB_VERSION): Incremented
11964
11965 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
11966
11967         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
11968         'msize' parameters, use the information in 'mspec' instead.
11969         (emit_object_to_ptr_conv): Ditto.
11970
11971         * marshal.c (emit_struct_conv): Handle explicit layout structs with
11972         fields out of order. Fixes #76733.
11973
11974 2005-11-17  Ankit Jain  <jankit@novell.com>
11975
11976         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
11977
11978 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
11979
11980         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
11981           bug #76575.
11982
11983 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
11984
11985         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
11986         for types with non-auto layout. Fixes #76717.
11987
11988 2005-11-16  Ankit Jain  <jankit@novell.com>
11989
11990         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
11991         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
11992         if generic_context is null.
11993           (mono_metadata_generic_param_equal): param->owner can be null.
11994           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
11995         null.
11996
11997 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
11998
11999         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
12000         the correct value.
12001
12002 2005-11-15  Martin Baulig  <martin@ximian.com>
12003
12004         * object.c (set_value): Use mono_class_from_mono_type() instead of
12005         the hack for generic instances; fixes #76136.
12006
12007 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
12008
12009         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
12010         fields.
12011
12012         * image.c (load_metadata_ptrs): Initialize the new fields.
12013
12014         * reflection.c (create_dynamic_mono_image): Ditto.
12015
12016         * reflection.c (build_compressed_metadata): Use the new fields.
12017
12018         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
12019         icall.
12020
12021         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
12022         icall.
12023         
12024 2005-11-15  Ankit Jain  <jankit@novell.com>
12025             Raja R Harinath  <harinath@gmail.com>
12026
12027         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
12028         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
12029         new per-generic_container cache if the cached MonoType's context matches
12030         the current context.
12031           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
12032         to the expected context.
12033           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
12034
12035 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12036
12037         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
12038         we changed the signature of an icall.
12039         * icall.c: Modify to mono_double_ParseImpl return true/false 
12040         depending on the success, instead of throwing the exception. This will
12041         help us in Double.TryParse methods.
12042         
12043 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
12044
12045         * marshal.c (emit_marshal_object): Throw an exception when
12046         marshalling 'object' instead of crashing. Fixes #76696.
12047
12048 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
12049
12050         * class-internals.h: Add prototype for mono_type_get_full_name ().
12051
12052 2005-11-11  Dick Porter  <dick@ximian.com>
12053
12054         * threads.c (mono_thread_manage): Make sure the main thread has
12055         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
12056
12057 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
12058
12059         * loader.c (mono_loader_set_error_type_load): Log a warning to the
12060         console about the missing type.
12061         (mono_loader_set_error_method_load): Ditto.
12062
12063 2005-11-09  Miguel de Icaza  <miguel@novell.com>
12064
12065         * mono-config.c (mono_get_config_dir): Set the system defaults if
12066         none is specified.
12067
12068         * assembly.c (mono_set_dirs): New API entry point to set the
12069         assembly and the config directory in one call
12070
12071 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
12072
12073         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
12074         the ftnptr was created from a delegate in a domain other than the
12075         current domain. Fixes #75377.
12076
12077         * exception.h exception.c: Add mono_get_exception_not_supported ().
12078
12079 2005-11-08  Martin Baulig  <martin@ximian.com>
12080
12081         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
12082
12083 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
12084
12085         * security-manager.h: Added definitions to deal with strongname key 
12086         pairs bigger (and smaller) than 1024 bits.
12087         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
12088         adjust wrt the public key length being used.
12089
12090 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
12091
12092         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
12093           Windows build (r51396-51397).
12094
12095 2005-11-03  Martin Baulig  <martin@ximian.com>
12096
12097         * class.c (mono_class_setup_vtable_general): Also add generic
12098         methods to the vtable; fixes #76581.
12099
12100 2005-11-01  Miguel de Icaza  <miguel@novell.com>
12101
12102         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
12103         sure that we lookup GetString method from the System.Text.Encoding
12104         class, not the derived class or we get an empty method.
12105
12106         Fixed class #76612.
12107
12108 2005-10-25  Miguel de Icaza  <miguel@novell.com>
12109
12110         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
12111         if it has been previously set (embedders). 
12112
12113         Make mono_set_rootdir available also on Unix.
12114
12115 005-10-24  Robert Jordan  <robertj@gmx.net>
12116
12117         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
12118
12119 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
12120
12121         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
12122         only calls which are made to native code use this flag.
12123
12124         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
12125
12126 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
12127
12128         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
12129         Add support for FieldBuilders.
12130
12131 2005-10-29  Martin Baulig  <martin@ximian.com>
12132
12133         * mono-debug.c
12134         (mono_debug_using_mono_debugger): New public method; returns
12135         whether we're running inside the debugger.
12136
12137 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
12138
12139         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
12140         for Method/Constructor/FieldBuilders.
12141
12142 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
12143
12144         * reflection.c (module_add_cattrs): Save custom attributes for global methods
12145         and fields as well.
12146
12147 2005-10-26  Martin Baulig  <martin@ximian.com>
12148
12149         * mono-debug-debugger.c
12150         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
12151
12152 2005-10-24  Raja R Harinath  <harinath@gmail.com>
12153
12154         * icall.c (base64_to_byte_array): Don't pass an out-of-range
12155         integer to isspace.
12156
12157 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
12158
12159         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
12160         when passing valuetypes byref. Fixes #76502.
12161
12162 2005-10-19  Jackson Harper  <jackson@ximian.com>
12163
12164         * profiler.c: Don't put a . in front of types that are not in a
12165         namespace.
12166
12167 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
12168
12169         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
12170
12171 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
12172
12173         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
12174         #76436.
12175         (mono_marshal_get_ldflda_wrapper): Fix a warning.
12176
12177 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12178
12179         * assembly.c metadata-internals.h icall.c: Define an additional
12180         parameter for mono_assembly_name_parse_full, so we can avoid creating
12181         S.R.AssemblyName.Version when no version info wasn't passed.
12182         
12183 2005-10-09  Miguel de Icaza  <miguel@novell.com>
12184
12185         * class.c (mono_type_get_full_name): Reimplement method that was
12186         removed. 
12187
12188         * image.c: Some docs
12189
12190 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
12191
12192         * profiler.c (output_newobj_profile): Fix printing of Total memory
12193         on x86.
12194
12195 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
12196
12197         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
12198
12199 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
12200
12201         * threads.c: remove debug output.
12202
12203 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
12204
12205         * threads.c (mono_thread_manage): Fix crashes if more than 64
12206         threads need to be aborted. Hopefully fixes #75899.
12207
12208         * assembly.c (mono_stringify_assembly_name): New helper function.
12209
12210         * class.c: Use mono_stringify_assembly_name instead of the similar
12211         static function.
12212
12213         * assembly.h assembly.c: Add support for calling a postload search 
12214         hook if an assembly cannot be loaded.
12215
12216         * appdomain.c: Register new search hooks which call the AssemblyResolve
12217         events in AppDomain. Fixes #75231
12218
12219 2005-10-07  Martin Baulig  <martin@ximian.com>
12220
12221         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
12222         methods without debug info.
12223
12224 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
12225
12226         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
12227         wrappers.
12228
12229 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12230
12231         * file-io.c: now that we return symlinks, use lstat and, when the file
12232         is a symbolic link, stat, to get the file attributes. Also avoid the
12233         conversion to/from utf16/external.
12234
12235 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
12236
12237         * class.c (mono_class_layout_fields): Compute klass->has_references
12238         correctly if an embedded valuetype is not yet initialized. Fixes
12239         #76331.
12240
12241 2005-10-04  Martin Baulig  <martin@ximian.com>
12242
12243         * metadata.c
12244         (mono_metadata_load_generic_param_constraints): New public
12245         function; splitted the constraints loading out from
12246         mono_metadata_load_generic_params().
12247
12248         * class.c (mono_class_create_from_typedef): Call
12249         mono_metadata_load_generic_param_constraints() after setting up
12250         the type and creating our parent; fixes #75329.
12251
12252 2005-10-04  Martin Baulig  <martin@ximian.com>
12253
12254         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
12255         non-dynamic parent classes.
12256
12257 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
12258
12259         * file-io.c : win32 build fix (ETXTBSY seems not found).
12260
12261 2005-10-04  Martin Baulig  <martin@ximian.com>
12262
12263         * reflection.c
12264         (mono_image_get_methodspec_token): Make the cache actually work;
12265         fixes #75974.
12266
12267 2005-10-04  Martin Baulig  <martin@ximian.com>
12268
12269         * class.c (mono_class_name_from_token): Removed the unneccessary
12270         `MonoGenericContext *' argument.
12271
12272 2005-10-04  Martin Baulig  <martin@ximian.com>
12273
12274         * loader.c
12275         (method_from_methodspec): Make the caching work again; fixes the
12276         performance regression from #76262.
12277
12278 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12279
12280         * file-io.c:
12281         * file-io.h:
12282         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
12283         GetFileSystemEntries that performs the same work but without going
12284         into io-layer, locking, etc.
12285
12286 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
12287
12288         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
12289         ThreadState_Stopped as well. Fixes #76047.
12290
12291 2005-09-29  Martin Baulig  <martin@ximian.com>
12292
12293         * class.c
12294         (inflate_generic_context): If the new context has a `gmethod', set
12295         its `container' that that gmethod's `container'.
12296
12297         * metadata.c
12298         (mono_metadata_parse_generic_param): Simplify things;
12299         `generic_container = generic_context->container;' is just fine.
12300
12301         * loader.c (method_from_methodspec): Code cleanups.
12302
12303 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
12304
12305         * decimal.c: fix warning (and let gcc generate correct
12306         code on ARM with optimizations).
12307
12308 2005-09-28  Martin Baulig  <martin@ximian.com>
12309
12310         * loader.c
12311         (method_from_memberref): Added `MonoGenericContext *class_context'
12312         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
12313         (method_from_methodspec): If we're a memberref, use the enclosing
12314         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
12315
12316 2005-09-28  Martin Baulig  <martin@ximian.com>
12317
12318         * object.c (mono_runtime_invoke_array): Added support for
12319         MONO_TYPE_GENERICINST; fixes #75917.
12320
12321 2005-09-27  Martin Baulig  <martin@ximian.com>
12322
12323         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
12324         `k->byval_arg.type' to determine the actual type.
12325
12326         * loader.c (method_from_methodspec): Removed some hacks.
12327
12328 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
12329
12330         * class-internals.h (mono_field_is_deleted): Do the test for
12331         rtspecialname before we check the actual name of the field. This
12332         prevents us from dereferencing a pointer into the string table,
12333         saving us from accessing a few pages
12334
12335         * *.c: Replace the use of {Enter,Leave}CriticalSection with
12336         macros. This will allow a deadlock debugger to easily be plugged
12337         in.
12338
12339 2005-09-27  Martin Baulig  <martin@ximian.com>
12340
12341         * loader.c (method_from_methodspec): Create a "signature"
12342         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
12343
12344 2005-09-27  Martin Baulig  <martin@ximian.com>
12345
12346         * class.c
12347         (inflate_generic_class): Correctly set the new context's
12348         container.
12349
12350         * loader.c
12351         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
12352         instead of a `MonoGenericContext *'.
12353         (mono_method_signature_full): Take a `MonoGenericContainer *'
12354         instead of a `MonoGenericContext *'.
12355
12356         * metadata.c
12357         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
12358         instead of a `MonoGenericContext *'.
12359         (mono_metadata_parse_method_signature_full): Likewise.
12360
12361 2005-09-26  Martin Baulig  <martin@ximian.com>
12362
12363         * class.c
12364         (mono_class_from_generic_parameter): Set `klass->generic_container'
12365         (mono_class_from_generic_parameter): Likewise.
12366         (mono_bounded_array_class_get): We inherit the generic container
12367         from the element class.
12368
12369         * loader.c
12370         (find_method, find_method_in_class): Take a `MonoGenericContext *'
12371         argument rather than computing it here.
12372         (method_from_memberref): Correctly set the generic context before
12373         parsing the signature.  Fixes #75681.
12374
12375 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
12376
12377         * object.c (mono_class_has_special_static_fields): Fix warnings.
12378
12379 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12380
12381         * assembly.c: Add parse_public_key function, to
12382         par the public keys. Also added mono_assembly_name_parse_full,
12383         to define it the parsed key should be freed or not.
12384         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
12385         to parse a long format assembly name.
12386         * metadata-internals.h: Keep mono_assembly_name_parse_full as
12387         private, since calling it to preserve the key requires
12388         freeing it manually.
12389         
12390 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
12391
12392         * locales.c : removed HAVE_ICU part.
12393
12394 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
12395
12396         * object.c (mono_class_create_runtime_vtable): Avoid calling 
12397         field_is_special_static if the klass has no special static fields.
12398
12399         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
12400         (MonoCachedClassInfo): Likewise.
12401
12402         * object.c (mono_class_has_special_static_fields): New helper function.
12403
12404 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
12405
12406         * class.c (mono_class_create_from_typedef): Don't call 
12407         interfaces_from_typedef_full for enums.
12408         (mono_class_create_from_typedef): Compute the base types of enums directly
12409         without calling mono_class_setup_fields ().
12410         (mono_class_find_enum_basetype): New helper function.
12411
12412         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
12413         one place inside the string heap.
12414         
12415 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
12416
12417         * class.c: locking fixes, code cleanups, some docs added.
12418         Allocate some data structures in the image mempool.
12419
12420 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
12421
12422         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
12423         the example code.
12424         
12425 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
12426
12427         * class-internals.h, class.c, reflection.c: reduce memory taken by
12428         MonoClass.
12429
12430 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
12431
12432         * metadata.c, metadata.h, loader.h: documentation updates, code and
12433         API cleanups.
12434
12435 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
12436
12437         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
12438         the example code.
12439
12440         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
12441         page faults caused by the runtime while reading metadata.
12442
12443 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12444
12445         * socket-io.c: the field names were changed 3 months ago and no one
12446         realized until bug #76077 got filed!
12447
12448 2005-09-20  Martin Baulig  <martin@ximian.com>
12449
12450         * icall.c (assembly_icalls): Removed some unused debugger icalls.
12451
12452 2005-09-20  Martin Baulig  <martin@ximian.com>
12453
12454         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
12455         write the rank into the class entry.
12456
12457 2005-09-20  Martin Baulig  <martin@ximian.com>
12458
12459         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
12460
12461 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
12462
12463         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12464
12465         * icall.c (custom_attrs_defined_internal): New icall.
12466
12467         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
12468         function.
12469         (mono_custom_attrs_construct_by_type): New helper function.
12470
12471 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
12472
12473         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
12474         terminate the resulting string. Fixes #76123.
12475
12476 2005-09-16  Martin Baulig  <martin@ximian.com>
12477
12478         * mono-debug.c
12479         (mono_debug_add_method): Ignore inflated methods for the moment.
12480
12481 2005-09-14  Martin Baulig  <martin@ximian.com>
12482
12483         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
12484
12485 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
12486
12487         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
12488         return a success/failure indication.
12489         (mono_metadata_interfaces_from_typedef_full): Ditto.
12490         (get_constraints): Ditto.
12491
12492 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
12493
12494         * marshal.c (emit_marshal_array): Fix handling of null arrays.
12495         
12496         * marshal.c (emit_marshal_array): Add support for returning string
12497         arrays from delegates. Fixes #76063.
12498
12499         * marshal.c: Use the emit_ldloc/stloc macros where possible.
12500
12501 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
12502
12503         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
12504         icall.
12505
12506 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
12507
12508         * reflection.c icall.c: Fix after mono_get_exception_type_load
12509         signature change.
12510
12511         * assembly.c (mono_assembly_get_assemblyref): New helper function.
12512         (mono_assembly_load_reference): Use the new helper.
12513
12514         * class-internals.h (MonoLoaderError): New structure containing 
12515         information about type loading errors.
12516
12517         * class-internals.h loader.c: Add APIs to store per-thread loader
12518         error information.
12519
12520         * loader.c class.c: Set the loader error if needed.
12521
12522         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
12523
12524 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
12525
12526         * decimal.c: fixed to handle the broken ARM fp format.
12527
12528 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
12529
12530         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
12531         broken.
12532
12533 2005-09-06  Martin Baulig  <martin@ximian.com>
12534
12535         * domain.c (supported_runtimes): Added v2.0.50727.
12536
12537 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
12538
12539         * culture-info.h: reduce the size of some structures.
12540
12541 2005-09-05  Martin Baulig  <martin@ximian.com>
12542
12543         Reflect latest API changes in the August CTP.
12544
12545         * icall.c
12546         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
12547         ("MonoType.HasGenericArguments"): Removed.
12548         ("MonoMethod.BindGenericParameters"): Renamed to
12549         "MakeGenericMethod".
12550         ("MethodBuilder.BindGenericParameters"): Renamed to
12551         "MakeGenericMethod".    
12552
12553 2005-09-05  Martin Baulig  <martin@ximian.com>
12554
12555         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
12556
12557 2005-09-05  Martin Baulig  <martin@ximian.com>
12558
12559         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12560
12561         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
12562         generic_container is non-NULL.
12563
12564 2005-09-05  Martin Baulig  <martin@ximian.com>
12565
12566         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12567
12568         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
12569
12570 2005-08-29  Michal Moskal  <malekith@nemerle.org>
12571
12572         * reflection.c (encode_locals,
12573         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
12574         for large generic types.
12575
12576 2005-09-05  Martin Baulig  <martin@ximian.com>
12577
12578         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12579
12580         * class.c (mono_dup_array_type): New public method.
12581         (mono_metadata_signature_deep_dup): New public method.
12582         (dup_type): Correctly duplicate array and function types.
12583
12584 2005-09-05  Martin Baulig  <martin@ximian.com>
12585
12586         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12587
12588         * reflection.c (get_default_param_value_blobs): Handle generic types
12589         and generic methods.
12590
12591 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
12592
12593         * class.c: Fixed error reporting (method/class were inversed) for 
12594         inheritance demands.
12595         * security-manager.c|h: Added the AppDomain when calling the managed
12596         System.Security.SecurityManager.InheritanceDemand method.
12597
12598 2005-09-01  Raja R Harinath  <rharinath@novell.com>
12599
12600         * reflection.c (encode_marshal_blob): 'marshaltype' and
12601         'marshaltyperef' are alternate sources for the custom marshaler
12602         name.
12603
12604 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
12605
12606         * class.c: fix creation of array classes with rank == 1
12607         (patch by Ankit Jain <jankit@novell.com>).
12608
12609 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
12610
12611         * object.c: fix check for creating the bound data for arrays vs
12612         szarrays.
12613
12614 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12615
12616         * object.c: configuration file name is now based on the executable name,
12617         not the image name. Fixes bug #75931.
12618
12619 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
12620
12621         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
12622         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
12623
12624 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
12625
12626         * rand.c: Use wincrypt.h instead of WinCrypt.h.
12627
12628 2005-08-24  Ankit Jain  <jankit@novell.com>
12629             Raja R Harinath  <rharinath@novell.com>
12630
12631         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
12632           called by it recursively.
12633           (mono_class_init): Remove special case in pending_init handling, since it's
12634           superseded by the fix to mono_class_from_typeref.
12635
12636 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
12637
12638         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
12639         BROKEN_THREAD_START stuff.
12640
12641 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
12642
12643         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
12644         trampoline.
12645
12646         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
12647         
12648         * object.c (mono_delegate_ctor): Replace the original function address with
12649         a delegate trampoline.
12650
12651 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
12652
12653         * icall.c: add boolean argument to base64_to_byte_array and 
12654         InternalFromBase64String to control whether a whitespace-only string
12655         is allowed (or should casue a FormatException to be thrown). We need
12656         this as the behavior has changed between MS.NET 1.x and 2.0, and we
12657         to match the MS behaviour in both profiles.
12658         * appdomain.c: Bump corlib version.
12659
12660 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12661
12662         This patch implements a big portion of publisher policy
12663         support, used to bind assembly versions and redirect
12664         one assembly from version A to version B.
12665
12666         * assembly.c:
12667         New GSList loaded_assembly_bindings, for storing the cached
12668         assembly bindings.
12669         (assembly_binding_maps_name): New static function for checking if a 
12670         assembly binding information maps an assembly name.
12671         (mono_assembly_binding_info_free): New function for freeing
12672         assembly binding information resources.
12673         (get_publisher_policy_info): New static function for retrieving 
12674         assembly binding information from a MonoImage.
12675         (compare_versions): New static function for comparing an assembly
12676         binding information data and the version of an assembly name.
12677         (check_policy_versions): New static function for checking if an
12678         assembly binding info mapping an assembly name is valid for it.
12679         (mono_assembly_load_publisher_policy): New static function for
12680         loading the 'policy.major.minor.MyAssembly' image for an assembly
12681         with an assembly name 'aname'.
12682         (mono_assembly_bind_version): New static function for updating
12683         assembly redirection.
12684         (mono_assembly_apply_binding): New static function for applying
12685         assembly binding.
12686         (search_binding_loaded): New static function for searching 
12687         loaded assembly binding infos in the cache domain.
12688         (mono_assembly_load_full): Don't apply assembly binding for
12689         reflection only assemblies.
12690
12691         * metadata-internals.h: Add MonoAssemblyBindingInfo,
12692         which contains information about assembly binding. Also
12693         declare signature for mono_config_parse_publisher_policy ()
12694         function, used to retrieve pub policy info.
12695         
12696         * mono-config.c:
12697         (publisher_policy_start): New static function used to parse publisher 
12698         policy config files.
12699         (publisher_policy_parser): New static MonoParseHandler containing 
12700         the functions used when parsing config files.
12701         (mono_config_parse_publisher_policy): New function for parsing
12702         publisher policy files.
12703         
12704 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
12705
12706         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
12707
12708         * marshal.c (mono_delegate_free_ftnptr): Ditto.
12709
12710         * object.c (mono_get_addr_from_ftnptr): New helper function.
12711
12712         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
12713
12714         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12715
12716 2005-08-19  Dick Porter  <dick@ximian.com>
12717
12718         * threads.c, threads.h, appdomain.c, appdomain.h,
12719         profiler-private.h, monitor.c, object.c, object-internals.h,
12720         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
12721         store the thread ID, so it can hold a 64 bit value if needed.
12722
12723 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
12724
12725         * reflection.c (mono_reflection_create_dynamic_method): Store the
12726         handle class into the method references as well so ldtoken works in
12727         dynamic methods.
12728
12729         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
12730         types.
12731
12732 2005-08-19  Ankit Jain <jankit@novell.com>
12733
12734         Fix #75847.
12735         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
12736           here rather than using the method signature of a arbitrary function
12737           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
12738           two arguments.
12739           Hack done with Harinath.
12740
12741 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12742
12743         * threadpool.c: disable printing stack traces when we get a exception
12744         in a threadpool thread. I need to do more testing to figure out which
12745         cases actually print this. Fixes bug #75828.
12746
12747 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12748
12749         * icall.c: there might be ignored whitespace after the last '='. This
12750         fixes length computation and bug #75840.
12751
12752 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
12753
12754         * assembly.c (mono_assembly_load_full): Consider .exe extension as
12755         well. Fixes #75809.
12756
12757         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
12758         #75784.
12759         
12760         * reflection.c (create_custom_attr_data): Ditto.
12761
12762 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
12763
12764         * locales.c, culture-info.h : removed RegionLCIDMap.
12765         * culture-info-tables.h : regenerated.
12766
12767 2005-08-16  Martin Baulig  <martin@ximian.com>
12768
12769         * class.c (mono_type_get_name_recurse): Small fix.
12770
12771 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
12772
12773         * locales.c : indentation fixie.
12774
12775 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
12776
12777         * object-internals.h,
12778           locales.h,
12779           locales.c,
12780           culture-info.h,
12781           icall.c : added RegionInfo table support.
12782         * culture-info-table.h : regenerated for region support.
12783
12784 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
12785
12786         * reflection.c (resolve_object): handle all kinds of MonoMethod
12787         including generic ones
12788
12789 2005-08-12  Ankit Jain <jankit@novell.com>
12790
12791         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
12792           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
12793
12794 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
12795
12796         * process.c: Don't close a thread handle when it's NULL. This is a
12797         workaround for bug #75733.
12798
12799 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
12800
12801         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
12802
12803 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
12804
12805         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
12806
12807 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12808
12809         * threadpool.c: if a work item in the thread pool has a callback that
12810         catches a exception, don't propagate it after invoking the callback.
12811         Fixes bug #75336.
12812
12813 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
12814
12815         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
12816
12817         * class-internals.h (MonoCachedClassInfo): Add some new fields.
12818
12819         * class.c (mono_class_init): Load field info lazily in the AOT case.    
12820
12821         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
12822
12823 2005-08-03  Ankit Jain  <jankit@novell.com>
12824
12825         Fix #75683.
12826         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
12827           PInvoke calling convention is 0.
12828
12829 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
12830
12831         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
12832         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
12833
12834 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
12835
12836         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
12837         to handle threads not started by the GC (patch by Michael Meeks
12838         <michael.meeks@novell.com>).
12839
12840 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
12841
12842         * reflection.c: Make buffer used in emitting types larger for some
12843         big generic types (patch by Michal Moskal).
12844
12845 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
12846
12847         * mono-debug.c: Fix some (not all) alignment problems.
12848
12849 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12850
12851         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
12852         Invoke mono_image_load_from_data_full passing the refonly
12853         parameter.
12854
12855         * assembly.c
12856         (mono_assembly_open_from_bundle): Add the refonly argument, 
12857         in order to pass it to other methods it calls to.
12858         (do_mono_assembly_open): Add the refonly argument, in order 
12859         to pass it to other methods it calls to.
12860         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
12861         the refonly parameter to it.
12862
12863         * image.c: Add loaded_images_refonly_hash and
12864         loaded_images_refonly_guid_hash to cache the reflection
12865         only loaded images.
12866         (mono_images_init): Initialize the hash tables used for
12867         caching the reflection only images.
12868         (load_modules): Invoke mono_image_open_full passing the refonly
12869         parameter to load the modules the correct way.
12870         (build_guid_table): Add the refonly argument, to re-build the 
12871         correct hash table.
12872         (do_mono_image_open): Added the refonly argument, in order to
12873         define it for the loaded image.
12874         (mono_image_loaded_full): New function, which receives an
12875         additional parameter to look for the image in the refonly or
12876         non-refonly section.
12877         (mono_image_loaded): Updated, using mono_image_loaded_full.
12878         (mono_image_loaded_by_guid_full): The same case that happens
12879         with mono_image_loaded_full.
12880         (mono_image_loaded_by_guid): Likewise.
12881         (register_image): Use the ref_only variable inside MonoImage
12882         to decide in which hash table store the current image.
12883         (mono_image_open_from_data_full): Rename
12884         mono_image_open_from_data to mono_image_open_from_data_full,
12885         adding the refonly argument, to define the ref_only variable 
12886         inside MonoImage.
12887         (mono_image_open_from_data): Return 
12888         mono_image_open_from_data_full.
12889         (mono_image_open_full): Rename mono_image_open to
12890         mono_image_open_full, receiving the new refonly argument,
12891         to pass it to inner methods.
12892         (mono_pe_file_open): Update this function, to open
12893         a MonoImage as a non-refonly image.
12894         (mono_image_close): Use the refonly variable inside
12895         MonoImage to remove the image from the correct caches.
12896
12897         * image.h: Add the signatures of mono_image_open_full,
12898         mono_image_open_from_data_full, mono_image_loaded_full,
12899         mono_image_loaded_by_guid_full.
12900
12901         * metadata-internals.h: Add the ref_only field to 
12902         MonoImage.
12903         
12904 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12905
12906         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
12907         Fix the last behavior, which used to load the assemblies and
12908         extract MonoReflectionAssemblyName information, instead of
12909         extract it from the metadata tables. Needed for Reflection
12910         Only assemblies.
12911         
12912 2005-07-29  Martin Baulig  <martin@ximian.com>
12913
12914         * mono-debug-debugger.c
12915         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
12916         not initialized.
12917
12918         * mono-debug.c
12919         (mono_debug_address_from_il_offset): Check whether we have
12920         debugging support before attempting to take the lock.
12921         (mono_debug_source_location_from_address): Likewise.
12922         (mono_debug_source_location_from_il_offset): Likewise.
12923         (mono_debug_il_offset_from_address): Likewise.
12924         (mono_debug_address_from_il_offset): Likewise.
12925
12926 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
12927
12928         * class.c (mono_class_from_name_case): Add support for dynamic images.
12929         Fixes #75650.
12930
12931         * object.c (mono_class_compute_gc_descriptor): Add a workaround
12932         for #75479.
12933
12934 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
12935         
12936         * reflection.c (mono_method_get_object): Fix warning.
12937
12938 2005-07-28  Martin Baulig  <martin@ximian.com>
12939
12940         * mono-debug.c
12941         (mono_debug_add_wrapper): Also write the wrapper type.
12942
12943 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
12944
12945         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
12946         
12947         * class.c (mono_class_init): Avoid reading nested classes if the AOT
12948         data indicates the class has none.
12949
12950 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
12951
12952         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
12953         loader lock with the debugger lock. Prevents deadlocks for beagle.
12954
12955         Beagle can now run on an smp box for a weekend without any
12956         issues. Woohoo!
12957
12958 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
12959
12960         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
12961         in a module. Fixes #75629.
12962
12963 2005-07-26  Martin Baulig  <martin@ximian.com>
12964
12965         * mono-debug.c (mono_debug_add_wrapper): New static method.
12966         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
12967         interncall or a wrapper.
12968
12969         * mono-debug.h (MonoDebugWrapperData): New public typedef.
12970         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
12971         (MONO_DEBUGGER_VERSION): Bump to 51.
12972
12973         * mono-debug-debugger.c
12974         (mono_debugger_add_type): Removed this empty function.
12975         (mono_debugger_add_method): Likewise.
12976
12977 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
12978
12979         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
12980         before accessing method->slot.
12981
12982 2005-07-21  Jb Evain  <jbevain@gmail.com>
12983
12984         * reflection.c (method_encode_clauses/class): Handle filters clauses.
12985         Fixes #75010.
12986
12987 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
12988
12989         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
12990         #75587.
12991
12992 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
12993
12994         * image.h image.c: Add mono_image_get_guid () API function.
12995
12996 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
12997
12998         There were issues when multiple threads tried to load
12999         assemblies. A deadlock was created between assemblies_mutex and
13000         mono_domain_assemblies_lock. This fixes the issue by making the
13001         assembly ref counting be lock free. See bug 75586.
13002         
13003         * image.c (mono_image_close): The add ref function here was using
13004         Interlocked operations while the unref was using a mutex and a
13005         --. I don't think this was ever a bug that would be exposed in a
13006         non-pendantic way (ie, by an embedder doing a ref on one thread
13007         and an unref on another), but for the sake of correctness, this is
13008         now Interlocked.
13009
13010         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
13011         (mono_assembly_load_reference): Call mono_assembly_addref rather
13012         than touching the refcount ourselves.
13013         (mono_assembly_close): Use InterlockedDecrement to unref the
13014         assembly. Don't acquire the lock unless it is actually needed.
13015
13016 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
13017
13018         * class.c (mono_class_layout_fields): Fix calculation of has_references
13019         for generic types.
13020
13021 2005-07-12  Martin Baulig  <martin@ximian.com>
13022
13023         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13024
13025         * metadata.c
13026         (mono_type_hash): Provide better hashing for generic instances.
13027         (mono_generic_inst_hash): Improve hashing.
13028         (mono_generic_class_hash): Likewise.
13029
13030         * reflection.c (mymono_metadata_type_hash): Improve hashing for
13031         generic instances.
13032
13033 2005-07-12  Martin Baulig  <martin@ximian.com>
13034
13035         * reflection.c (mono_reflection_create_runtime_class): Remove the
13036         hack for generic type definitions and non-`Run' assemblies.
13037         (mono_reflection_bind_generic_parameters): Also use
13038         `klass->wastypebuilder' to check for TypeBuilders.
13039
13040 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
13041
13042         * class.c (mono_class_layout_fields): Fix calculation of has_references
13043         for generic types.
13044
13045         * class.c (inflate_generic_class): Fix a leak.
13046         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
13047         for generic types.
13048
13049 2005-07-11  Martin Baulig  <martin@ximian.com>
13050
13051         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
13052         on error.
13053
13054 2005-07-11  Martin Baulig  <martin@ximian.com>
13055
13056         * loader.c (find_method): Also lookup in
13057         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
13058
13059 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13060
13061         * appdomain.c (mono_domain_unload): Don't free the error message
13062         before passing it to mono_get_exception_...
13063
13064         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
13065         
13066 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
13067
13068         * threads.c: try to better guess an available RT signal (bug #75387).
13069
13070 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13071
13072         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
13073         and CACHE_OBJECT.
13074
13075 2005-07-07  Martin Baulig  <martin@ximian.com>
13076
13077         * class.c (mono_type_get_name_full): Return NULL for
13078         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
13079         fixes #75408.
13080
13081 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13082
13083         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
13084         exit the appdomain as well being aborted.
13085
13086         * threadpool.c: Create all threadpool threads inside the root appdomain, and
13087         change back to the root domain after calling managed code. This enables
13088         appdomains using threadpools to be unloaded.
13089
13090 2005-07-07  Martin Baulig  <martin@ximian.com>
13091
13092         * class-internals.h
13093         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
13094         into `MonoDynamicGenericClass' since we only need it for dynamic
13095         types.
13096
13097         * reflection.c (mono_class_bind_generic_parameters): We don't need
13098         to compute the `parent' here.
13099
13100 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
13101
13102         * culture-info-table.h : regenerated.
13103
13104 2005-07-06  Martin Baulig  <martin@ximian.com>
13105
13106         * icall.c
13107         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
13108
13109         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
13110
13111 2005-07-06  Martin Baulig  <martin@ximian.com>
13112
13113         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
13114         we're doing a signature-only comparision; fixes #74945.
13115
13116 2005-07-06  Martin Baulig  <martin@ximian.com>
13117
13118         * class-internals.h (MonoGenericClass): Moved some things out into
13119         a new `MonoInflatedGenericClass' type.  
13120         (MonoInflatedGenericClass): New type; the `klass' of a
13121         `MonoGenericClass' is now computed lazyly in
13122         mono_get_inflated_generic_class().      
13123
13124         * class.c (mono_get_inflated_generic_class): New public function.
13125         (mono_class_inflate_generic_method): Removed the unused
13126         `MonoClass *' argument.
13127         (setup_generic_vtable): Don't call mono_get_inflated_method() on
13128         all the methods.
13129         (mono_class_create_generic): Make this static and merge it with
13130         mono_class_create_generic_2(); we're now called automatically from
13131         mono_get_inflated_generic_class().
13132
13133         * loader.c (mono_method_signature): Call
13134         mono_get_inflated_method() here.
13135
13136 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
13137
13138         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
13139         type of fields with RVA.
13140
13141         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
13142         for this pseudo class.
13143         (my_mono_class_from_generic_parameter): Likewise.
13144         (mono_class_init): Allow interfaces to have cctors.
13145
13146 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
13147
13148         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
13149         lazily for AOT methods.
13150
13151 2005-07-05  Martin Baulig  <martin@ximian.com>
13152
13153         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
13154         returns FALSE for a successful match, not TRUE.
13155
13156 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
13157
13158         * loader.c (mono_method_get_index): Optimize this a bit.
13159
13160 2005-07-04  Martin Baulig  <martin@ximian.com>
13161
13162         * class.c
13163         (class_compute_field_layout): Move the check for generic type
13164         definitions into mono_class_layout_fields().  Fixes #74684.
13165         (mono_class_from_generic_parameter): Correctly compute
13166         `klass->parent'; fixes #75457.
13167
13168         * reflection.c (register_assembly, register_module): Make sure
13169         `domain->rejobject_hash' is already created.
13170
13171 2005-07-02  Martin Baulig  <martin@ximian.com>
13172
13173         * class-internals.h
13174         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
13175         `MonoDynamicGenericClass'.      
13176
13177 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
13178
13179         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
13180         returned by a field getter is null, since null is a valid value.
13181
13182 2005-07-01  Martin Baulig  <martin@ximian.com>
13183
13184         * reflection.c (mono_reflection_generic_class_initialize): Update
13185         the `dgclass->fields [i].parent' to the correct class.
13186         (mono_image_get_fieldref_token): Use the declaring type, not the
13187         reflected type.
13188
13189 2005-07-01  Martin Baulig  <martin@ximian.com>
13190
13191         * loader.c (find_method): Also look in the interfaces; fixes #75429.
13192
13193 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
13194
13195         * threads.c (thread_cleanup): assert that thread != NULL
13196         (wait_for_tids_or_state_change): We were using the wrong variable
13197         when accessing wait->threads. `i' was always out of the bounds of
13198         the array.
13199
13200 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13201
13202         * loader.c: map user32 and kernel32 to libMonoSupportW
13203
13204 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
13205
13206         * appdomain.c (unload_thread_main): Mark this as WINAPI.
13207
13208 2005-06-28  Martin Baulig  <martin@ximian.com>
13209
13210         * loader.c (method_from_methodspec): Fix #75334.
13211
13212 2005-06-28  Martin Baulig  <martin@ximian.com>
13213
13214         Fix #74953 - Arrays now implement the generic IList<T> interface
13215         on the 2.0 platform.
13216
13217         * class-internals.h (MonoDefaults): Added `generic_array_class'.
13218
13219         * reflection.c (mono_class_bind_generic_parameters): New public
13220         function; similar to mono_reflection_bind_generic_parameters(),
13221         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
13222
13223         * domain.c (mono_init_internal): Try to initialize.
13224         `mono_defaults.generic_array_class' here; this'll only succeed if
13225         we're using the 2.0 corlib.
13226
13227         * icall.c
13228         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
13229         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
13230         (mono_lookup_internal_call): Added support for nested classes.
13231
13232         * loader.c
13233         (mono_get_method_from_token): Set `result->signature->pinvoke' if
13234         we're an interncall and have generic arguments.
13235
13236         * class.c
13237         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
13238         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
13239         instance of System.Array.InternalArray<T> for arrays, so they
13240         implement the generic IList<T> interface.
13241
13242 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
13243
13244         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
13245         (chastamar@yahoo.com). Fixes #75374.    
13246
13247 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
13248
13249         * culture-info-table.h: regenerated.
13250
13251 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13252
13253         * icall.c: handle spaces correctly for base64 strings.
13254
13255 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
13256
13257         * *.c: Kill some warnings.
13258
13259 2005-06-23  Duncan Mak  <duncan@novell.com>
13260
13261         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
13262         that this builds on Solaris 10 (x86).
13263
13264 2005-06-23  Martin Baulig  <martin@ximian.com>
13265
13266         * class.c
13267         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
13268         generic type definitions.
13269
13270 2005-06-23  Martin Baulig  <martin@ximian.com>
13271
13272         Fix #75331.
13273
13274         * metadata.c (mono_class_get_overrides): Renamed to
13275         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
13276         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
13277         pass it to mono_get_method_full().
13278
13279 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
13280
13281         * reflection.c (mono_reflection_create_runtime_class): take the
13282         mono_domain_lock in this method. Prevents deadlocks
13283
13284 2005-06-22  Martin Baulig  <martin@ximian.com>
13285
13286         * loader.c (method_from_methodspec): Fix #75330.
13287
13288 2005-06-22  Martin Baulig  <martin@ximian.com>
13289
13290         * reflection.c (type_get_qualified_name): Use
13291         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
13292         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
13293         argument; use it if we don't have an assembly name.
13294
13295 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
13296
13297         * object.c: In mono_message_init, set "copy out" flag for in
13298         parameters with the [Out] flag.
13299
13300 2005-06-21  Martin Baulig  <martin@ximian.com>
13301
13302         * class.c
13303         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
13304         and MONO_TYPE_PTR.
13305
13306 2005-06-21  Martin Baulig  <martin@ximian.com>
13307
13308         * class.c (mono_class_init): Don't initialize `class->fields' for
13309         generic instances since they're initialized again in
13310         compute_field_layout(). 
13311         (compute_field_layout): Set the field's `generic_info' here; fix
13312         #75320. 
13313
13314 2005-06-21  Martin Baulig  <martin@ximian.com>
13315
13316         * class-internals.h
13317         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
13318
13319         * metadata.c (mono_metadata_generic_method_equal): Also
13320         distinguish the `generic_class'; fixes #75334.
13321
13322 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13323
13324         * domain.c:
13325         * appdomain.c:
13326         * domain-internals.h:
13327         * reflection.c: 'domain_assemblies' field is now protected by its own
13328         lock. Don't call into managed code to run the AssemblyLoad event if we
13329         now there are no registered delegates for it.
13330
13331 2005-06-20  Martin Baulig  <martin@ximian.com>
13332
13333         * class.c (mono_class_is_assignable_from): Use a custom version of
13334         mono_class_has_parent() to make things work for generic instances;
13335         fix #75300.
13336
13337 2005-06-20  Martin Baulig  <martin@ximian.com>
13338
13339         * loader.c (method_from_methodspec): Apply a patch from
13340         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
13341
13342 2005-06-20  Martin Baulig  <martin@ximian.com>
13343
13344         * class.c (mono_class_init): Reverted Zoltan's last change; it
13345         breaks generics.
13346
13347 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
13348
13349         * threads.c (wait_for_tids_or_state_change): Add missing locking.
13350
13351 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13352
13353         * socket-io.c: fix the index in the socket array for writable/error
13354         sockets. Fixes bug #75306.
13355
13356 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
13357
13358         * class.c (mono_class_init): Allow interfaces to have static ctors.
13359
13360 2005-06-17  Martin Baulig  <martin@ximian.com>
13361
13362         * loader.c (method_from_methodspec): Use `context->container' when
13363         parsing the `gmethod->inst'.
13364
13365 2005-06-17  Martin Baulig  <martin@ximian.com>
13366
13367         * class.c (mono_type_get_name_recurse): Don't add the assembly
13368         name for type arguments.
13369
13370 2005-06-15  Martin Baulig  <martin@ximian.com>
13371
13372         * reflection.c (mono_image_get_inflated_method_token): Encode
13373         correct klass; fixes #75260.
13374
13375 2005-06-13 Michal Moskal <malekith@nemerle.org>
13376
13377         * icall.c: Make GetCorrespondingMethod/Constructor take
13378         MonoReflectionMethod method not MonoMethod. Removed
13379         MonoType.GetCorrespondingField, and make
13380         MonoGenericType.GetCorrespondingField take name not
13381         MonoClassField.
13382
13383 2005-06-13  Michal Moskal <malekith@nemerle.org>
13384
13385         * reflection.c (field_encode_signature, encode_locals):
13386          Make sizes of buffers for types larger (for big generic types).
13387          (create_generic_typespec,
13388          mono_reflection_sighelper_get_signature_local,
13389          mono_reflection_sighelper_get_signature_field):
13390          Add asserts for too small buffers.
13391
13392 2005-06-15  Martin Baulig  <martin@ximian.com>
13393
13394         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
13395         if our parent is not a dynamic type.
13396
13397 2005-06-15  Martin Baulig  <martin@ximian.com>
13398
13399         * class-internals.h (MonoTypeNameFormat): New enum.
13400
13401         * class.c
13402         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
13403         (mono_type_get_full_name): Removed.
13404         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
13405         argument instead of the boolean's.
13406
13407         * icall.c (ves_icall_System_MonoType_getFullName):
13408         Added `gboolean assembly_qualified'.    
13409
13410         * reflection.h
13411         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
13412
13413         * reflection.c (mono_reflection_parse_type): Parse the new type
13414         name format.
13415
13416 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13417
13418         * icall.c: no need to convert from utf16 to utf8 and then back again
13419         after the call to GetLogicalDrives.
13420
13421 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13422
13423         * icall.c: frombase64. Fix problems exposed by new tests.
13424
13425 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13426
13427         * icall.c: added internal calls for converting char [] and strings in
13428         base64 into byte [].
13429
13430 2005-06-10  Martin Baulig  <martin@ximian.com>
13431
13432         * class.c (mono_class_create_generic_2): Read the nested classes
13433         from the metadata rather than from `gklass->nested_classes' since
13434         `gklass' might not be initialized yet.
13435
13436 2005-06-09  Duncan Mak  <duncan@novell.com>
13437
13438         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
13439         all public headers. Fixes #74919.
13440
13441 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
13442
13443         * domain.c: The key for proxy_vtable_hash is now a pointer
13444         array. Added new GHashFunc and GCompareFunc functions for this.
13445
13446         * class.h: The list of interfaces in MonoRemoteClass is known in
13447         advance and can't grow (we create a new MonoRemoteClass if needed),
13448         so now the interface array can be allocated together with
13449         MonoRemoteClass.
13450         
13451         * object.c: Added a new method create_remote_class_key.
13452         Fixed mono_remote_class so it does not depend on
13453         mono_upgrade_remote_class.
13454         Removed extend_interface_array.
13455         Added new method clone_remote_class(), which makes a copy of a remote
13456         class and adds a new interface or class to it.
13457         mono_upgrade_remote_class() now creates a new remote class (or gets
13458         it from the cache) if an vtable upgrade is needed. In this way
13459         we make sure that other objects sharing the same remote class
13460         don't get the new vtable with unwanted interfaces.
13461         
13462         * object-internals.h:
13463         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
13464         
13465         * marshal.c: Track changes in mono_upgrade_remote_class().
13466
13467 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
13468         * icall.c: Add runtime methods for obtaining members of inflated
13469         class, which were created from supplied non-inflated members. It
13470         is used in internal Get{Method,Constructor,Field} methods in
13471         System.Type
13472
13473 2005-06-09  Martin Baulig  <martin@ximian.com>
13474
13475         * reflection.c
13476         (mono_reflection_bind_generic_method_parameters): Fix #75169.
13477
13478 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13479         * reflection.c (mono_image_basic_init): Define
13480         Version in MonoDynamicAssembly. 
13481         
13482 2005-06-08  Martin Baulig  <martin@ximian.com>
13483
13484         Fix #75136.
13485
13486         * loader.c
13487         (mono_method_signature_full): New public method; takes a
13488         `MonoGenericContext *'.
13489         (find_method): Use mono_method_signature_full() and pass the
13490         klass'es context to it.
13491
13492         * class.c (mono_class_is_inflated_method): Use
13493         mono_method_signature_full() and pass the context to it.
13494
13495 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
13496
13497         * object.c: add proper locking in mono_remote_class_vtable(),
13498         fixes possible memory corruption.
13499
13500 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
13501
13502         * marshal.c (mono_remoting_marshal_init): set
13503         initialized after initialization.
13504
13505 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
13506
13507         * locales.c : hush.
13508
13509 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
13510
13511         * object.c (extend_interface_array): fix really silly
13512         memory corrupting / comparison bug.
13513
13514 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13515
13516         * reflection.c: Functions added to support the creation
13517         of CustomAttributeData, which includes Attribute data
13518         used by ReflectionOnly methods.
13519
13520         * reflection.h:  mono_reflection_get_custom_attrs_data and
13521          mono_custom_attrs_data_construct added (functions exposed).
13522
13523          * icall.c: Added mono_reflection_get_custom_attrs_data
13524          as icall.
13525         
13526 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
13527
13528         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
13529         lupus's request.
13530
13531 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
13532
13533         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
13534
13535         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
13536         dynamic DllImportAttribute.
13537
13538         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
13539         dynamic DllImportAttribute.
13540
13541         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
13542         Fixes #75162.
13543
13544 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13545
13546         * threads.c: avoid segfault when an unstarted thread is aborted.
13547
13548 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
13549
13550         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
13551         Returns the name and version of the runtime for reporting.
13552
13553 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13554
13555         * appdomain.c: bump corlib version.
13556         * object-internals.h: new field in MonoReflectionAssembly.
13557
13558 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13559
13560         * object-internals.h: Carlos forgot to add this field.
13561
13562 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13563
13564         * icall.c: Added create_version to create instances
13565         of Version of MonoReflectionAssemblyName. This change helps
13566         the AssemblyName tests to keep running fine.
13567         
13568 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
13569   
13570         * object.c (mono_method_return_message_restore): A somehow less
13571         intrusive fix for #75138.
13572
13573 2005-06-03  Raja R Harinath  <rharinath@novell.com>
13574
13575         * object.c (mono_method_return_message_restore): Fix computation
13576         of expected number of out args.
13577
13578 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
13579
13580         * reflection.c (mono_image_get_method_info): Fix the case when the
13581         charset is empty.
13582
13583 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
13584
13585         * object.c: Added missing null check in
13586           mono_method_return_message_restore.
13587
13588 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
13589
13590         * reflection.c (mono_image_get_method_info): Handle the case when
13591         dllentry is empty.
13592
13593 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
13594
13595         * object.c: When creating the vtable for a proxy, take into account
13596         all inherited interfaces, not only the ones registered in
13597         iclass->interfaces. This fixs bug #74996.
13598         Also, in mono_method_return_message_restore, verify that the array
13599         of out args has the expected lengh.
13600
13601 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13602
13603         * socket-io.c: update the timeout in Poll when the call is interrupte.
13604
13605 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13606
13607         * socket-io.c: support abort/suspend in Select_internal after last
13608         change.
13609
13610 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13611
13612         * threadpool.c: remove warning.
13613
13614 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13615
13616         * icall.c:
13617         * socket-io.[ch]: Select_internal uses poll() now when available, thus
13618         removing the 1024 limit from select(). Runtime part of the fix for
13619         bug #71203.
13620
13621 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13622
13623         * socket-io.c: when resolving the addresses for the same
13624         host returned by gethostname(), get the local IPs from the interface
13625         list. Loopback addresses are discarded if the are interfaces up with
13626         non-loopback ones. Fixes bug #63265.
13627
13628 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
13629
13630         * appdomain.c, verify.c, object-internals.h, reflection.c:
13631         bumped corlib number to 36, and added new extra_flags field
13632         to ReflectionMethodBuilder and friends.  Fixes #75060.
13633
13634 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
13635
13636         * gc.c: register a new weak link only if the object is non-null
13637         (fixes bug#75047).
13638
13639 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
13640
13641         * culture-info.h : short time pattern too.
13642
13643 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
13644
13645         * culture-info.h : expand long time pattern string length.
13646
13647 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
13648
13649         * culture-info-table.h : update (more French date format; #72788).
13650
13651 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
13652
13653         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
13654         the method is static. Fixes #75029.
13655
13656 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
13657
13658         * reflection.c: Update the table_idx field of method builders after
13659         saving the module, since it can change. This is a workaround for
13660         bug #74914. 
13661
13662 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
13663
13664         * culture-info-table.h : update (additional French date format).
13665
13666 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
13667
13668         * icall.c (ves_icall_type_Equals): Revert last change.
13669         
13670         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
13671
13672         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
13673
13674 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
13675
13676         * class-internals.h: Added executioncontext_class field to 
13677         MonoDefaults structure.
13678         * domain.c: Cache System.Threading.ExecutionContext class in 
13679         mono_defaults.
13680         * object.c: Capture the ExecutionContext for asynchroneous calls in
13681          mono_async_result_new.
13682         * object-internals.h: Added execution_context and original_context 
13683         fields to MonoAsyncResult. Added execution_context to MonoThread.
13684         * security-manager.c|.h: Added mono_get_context_capture_method to 
13685         return the capture method (if required by the security manager or by
13686         the framework version used).
13687         * threadpool.c: Apply capture (if present) ExecutionContext in 
13688         mono_async_invoke and revert to original context after it completes.
13689
13690 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
13691
13692         * culture-info-table.h : updated (real hacky solution for zh-CHT).
13693
13694 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
13695
13696         * culture-info-table.h : zh-CHT related workaround.
13697
13698 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
13699
13700         * marshal.c (emit_marshal_custom): Add some error checking and call the
13701         methods in the ICustomMarshaler interface. Fixes #74875.
13702         
13703         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
13704         native->managed wrappers.
13705
13706 2005-05-12  Martin Baulig  <martin@ximian.com>
13707
13708         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
13709         here and use the loader lock.
13710
13711         * mono-debug.c: Properly lock when the debugger is not attached.
13712         (mono_debug_init): Release the initial lock if we're not running
13713         in the debugger.
13714
13715 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
13716
13717         * marshal.c (emit_marshal_custom): Pass through NULL values without
13718         calling the custom marshalling routines.
13719
13720         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
13721         conversion in structures. Fixes #74882.
13722
13723 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
13724
13725         * culture-info-table.h : zh-* cultures were missing.
13726
13727 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
13728
13729         * threads.c: Added a new event background_change_event which is signaled
13730         when a thread changes its background mode.
13731         Moved here several checks previously done in managed code. The checks
13732         require the thread lock, and using the thread lock in managed code
13733         can result in deadlocks.
13734         Merged Start_internal and Thread_internal into a single method. Now 
13735         Thread_internal does all work of creating and starting a thread.
13736         Added icalls for setting and getting the state of the object. Moved from
13737         managed code to avoid locking there.
13738         Added wait_for_tids_or_state_change() which is called instad of
13739         wait_for_tids when waiting for non-backround threads to end. This method
13740         will return if one of the threads ends or the background_change_event
13741         is signaled.
13742         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
13743         the background mode. This method signals the background_change_event
13744         event.
13745         * icall.c:
13746         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
13747         removed Start_internal.
13748         
13749 2005-05-11  Martin Baulig  <martin@ximian.com>
13750
13751         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
13752         to order of some fields to get proper alignment on 64-bit machines.
13753
13754 2005-05-11  Martin Baulig  <martin@ximian.com>
13755
13756         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
13757         changes as they're broken and completely fuck up the debugger.
13758
13759         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
13760
13761 2005-05-10  Martin Baulig  <martin@ximian.com>
13762
13763         * reflection.c (mono_reflection_generic_class_initialize): Don't
13764         call mono_class_setup_parent() here.
13765
13766 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13767
13768         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
13769         send/receive timeout use an integer in milliseconds. We were using a
13770         struct timeval.
13771
13772 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13773
13774         * locales.c:
13775         (internal_get_cultures): reserve the first slot of the array for the
13776         InvariantCulture, which will be filled in managed code.
13777
13778 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
13779
13780         * reflection.c (mono_image_fill_module_table): Initialize the
13781         GENERATION field as well.
13782
13783 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13784
13785         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
13786         Monitor.Enter on the object.
13787
13788 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
13789
13790         * threads.c: Enable the wait for running threads when exiting.
13791         * icall.c: Suspend all threads before exiting.
13792
13793 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
13794
13795         * assembly.c (mono_assembly_load_reference): Fix warning.
13796
13797 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13798
13799         * threadpool.c: changed the default number of threads per cpu. From now
13800         on, the default will be 20 + (5 * number of cpus) instead of 50.
13801
13802 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
13803
13804         * loader.c (mono_method_get_signature_full): Add locking here.
13805
13806 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
13807
13808         * appdomain.c: Moved methods for parsing and freeing assembly
13809         names to assembly.c.
13810         * assembly.c, domain-internals.h: Created public methods for parsing
13811         assembly names. Fixed mono_assembly_load_with_partial_name:
13812         it now finds the best match, taking into account the version,
13813         token and culture specified in the partial name. Also return
13814         the latest version if no version information is specified.
13815
13816 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
13817
13818         * threadpool.c: replace check for SocketAsyncCall class.
13819
13820 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13821
13822         * threadpool-internals.h:
13823         * Makefile.am: added threadpool-internals.h
13824
13825         * threadpool.c: call mono_unhandled_exception on exceptions not handled
13826         that happen in threadpool threads (tested on MS).
13827         (mono_thread_pool_remove_socket): new function that dispatch any pending
13828         AIO call on a socket that is closing. By now only epoll really needs it,
13829         as select/poll wake up when the socket closes.
13830
13831
13832         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
13833
13834 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
13835
13836         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
13837
13838 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
13839
13840         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
13841
13842 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
13843
13844         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
13845         has an abort request, convert it into a suspend request.
13846
13847 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
13848
13849         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
13850         warning for the usage of `UnmanagedFunctionPointerAttribute' which
13851         is not supported yet.
13852
13853 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13854
13855         * image.c: register assemblies loaded from data (bundles) in the loaded
13856         assemblies hash. Fixes bug #74772.
13857
13858 2005-04-29  Martin Baulig  <martin@ximian.com>
13859
13860         * class.c (mono_type_get_name_recurse): Update to the new naming
13861         schema from the latest .NET 2.x beta2.
13862         (mono_class_setup_vtable_general): If we're a generic instance,
13863         copy the vtable from our generic type definition and inflate all
13864         the methods in it.
13865
13866         * loader.c (find_method): Update to the new naming schema from the
13867         latest .NET 2.x beta2.
13868
13869 2005-04-29  Raja R Harinath  <harinath@gmail.com>
13870
13871         * class.c (mono_class_init): Add a mono_loader_unlock to the
13872         #74734 fix.
13873
13874 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
13875
13876         * icall.c (ves_icall_System_Environment_Exit): Remove the 
13877         suspend_all_other_threads () call for the time being, since it can hang.
13878
13879         * threads.c (mono_thread_manage): Similarly, disable the waiting for
13880         the background threads to exit, since it can also hang.
13881
13882         * class.c (mono_class_init): Applied patch from Ankit Jain 
13883         (radical@gmail.com). Avoid pending init errors when a field refers
13884         to a nested class using a typeref. Fixes #74734.
13885
13886         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
13887         this for dynamic modules.
13888
13889 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13890
13891         * threads.c: don't wait for threads that are in the process of aborting
13892         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
13893         and waiting for background threads to finish. This makes xsp and
13894         mod-mono-server exit without random length delays and/or hangs.
13895
13896 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13897
13898         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
13899
13900 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
13901
13902         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
13903         dynamic types to prevent infinite loops. Fixes #74727.
13904
13905         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
13906         ..._is_assignable_to.
13907
13908 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
13909
13910         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
13911
13912 2005-04-25  Martin Baulig  <martin@ximian.com>
13913
13914         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
13915
13916         * domain.c
13917         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
13918
13919         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
13920
13921         * reflection.c (build_compressed_metadata): Set metadata header
13922         version to 2.0.
13923
13924 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
13925
13926         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
13927         number into an integral and a decimal part. Fixes #70473.
13928
13929         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
13930
13931 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
13932
13933         * culture-info-table.h : reflected the latest locale-builder output.
13934
13935 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13936
13937         * threadpool.c: check for SuspendRequested too when deciding if
13938         mono_thread_interruption_checkpoint should be called.
13939
13940 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13941
13942         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
13943         * threads.c: remove interruption_mutex and use Interlocked instead. When
13944         suspending all the threads, wait for all the suspended events at once.
13945         If we're shutting down and get an APC that is going to be queued,
13946         call mono_thread_execute_interruption immediately, as the thread might
13947         be sleeping on a pthread condition or mutex.
13948
13949         * icall.c: call mono_runtime_set_shutting_down before suspending the
13950         threads.
13951
13952         Fixes bug #74693. And now xsp is happier when exiting.
13953
13954 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
13955
13956         * loader.c (mono_stack_walk): Fix #74690.
13957
13958 2005-04-22  Martin Baulig  <martin@ximian.com>
13959
13960         * mono-debug.h (MonoDebugMethodJitInfo): Added
13961         `MonoDebugMethodJitInfo *jit'.
13962
13963         * mono-debug.c (mono_debug_read_method): Cache the
13964         MonoDebugMethodJitInfo in `address->jit'.
13965         (mono_debug_free_method_jit_info): New public method.
13966
13967 2005-04-22  Martin Baulig  <martin@ximian.com>
13968
13969         * class.c (mono_class_is_assignable_from): Disallow
13970         type parameter -> interface.
13971
13972 2005-04-21  Dick Porter  <dick@ximian.com>
13973
13974         * threads.c (mono_thread_create): Turn an assertion into an error.
13975
13976 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
13977
13978         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
13979         
13980         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
13981         Fix some gcc 4.0 warnings.
13982
13983 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
13984
13985         * file-io.c: fix alt dir separator char on unix systems
13986         and cleanup (fixes bug #71214).
13987
13988 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
13989
13990         * marshal.c: Use CALLVIRT instead of CALL when dispatching
13991         a call to a remote domain, since the method may be an
13992         interface method in the client domain. This fixes bug #74192.
13993
13994 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13995
13996         * threadpool.c: recv/send are now performed before going back to managed
13997         code to save one transition.
13998
13999 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14000
14001         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
14002
14003         * metadata/threadpool.c: removed hack to workaround the bug above.
14004
14005         Fixes bug #74618.
14006
14007 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
14008
14009         * reflection.c reflection.h: Fix handling of parameter defaults in
14010         dynamic methods. Also fixes handling of parameter attributes.
14011         Fixes #74609.
14012
14013         * mono-debug.c (mono_debug_close_image): Fix warning.
14014
14015 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14016
14017         * socket-io.h: replaced old unused field with new 'blocking'.
14018         * threadpool.c: restore socket blocking state on windows(tm).
14019
14020 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
14021
14022         * icall.c: don't return the codebase in the AssemblyName[] returned by
14023         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
14024         * object-internals.h: Removed FIXME (fields were presents) and fixed
14025         versioncompat declaration.
14026
14027 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14028
14029         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
14030         not closed, so don't cleanup when it happens.
14031
14032 2005-04-13  Chris Toshok  <toshok@ximian.com>
14033
14034         * mono-debug-debugger.h: change prototype for
14035         mono_debugger_lookup_type.
14036
14037         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
14038         this function, although it should probably be named
14039         mono_debugger_init_type.
14040
14041 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14042
14043         * threadpool.c: fix non-AIO case.
14044
14045 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
14046
14047         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
14048         the built-in profiler to measure just JIT compilation times.
14049
14050 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14051
14052         * threadpool.c: the epollfd might be closed by another thread at
14053         any time, so ignore EBADF at treat it as a "we're closing" sign.
14054
14055 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14056
14057         * threadpool.c: release the semaphores with a count equals to the number
14058         of working threads in both IO and regular pools. Fixed typo that messed
14059         up the count of IO pool threads. Don't initialize the pipe handles if
14060         we're using epoll.
14061
14062 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14063
14064         * threadpool.c: some systems don't like a NULL when deleting the socket
14065         from epoll.
14066
14067 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14068
14069         * threadpool.c: fix semaphore allocation.
14070
14071 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14072
14073         * threadpool.c: added epoll() based implementation for asynchronous IO
14074         that is used instead of the default poll() when available.
14075         It can be disabled by setting MONO_DISABLE_AIO.
14076
14077 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14078
14079         * threadpool.c: windows needs 'closesocket' and instead of returning
14080         0 when the stream is closed while in select, it returns -1. Fixes bug
14081         #74573.
14082
14083 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
14084
14085         * class.c (class_compute_field_layout): Fix the regression caused by
14086         the previous try.
14087
14088 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14089
14090         * threadpool.c: separate pool for socket async. IO.
14091         * threadpool.h: mono_max_worker_threads is not a global any more.
14092
14093 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
14094
14095         * class.c (class_compute_field_layout): Fix #74549.
14096
14097 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14098
14099         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
14100         use 2 connected sockets instead.
14101
14102 2005-04-08  Miguel de Icaza  <miguel@novell.com>
14103
14104         * mono-config.c: Add new entry point for mkbundle
14105         mono_config_parse_memory. 
14106
14107 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14108
14109         * threadpool.c: removed another unused function.
14110
14111 2005-04-08  Ankit Jain  <radical@corewars.org>
14112
14113         * reflection.c (get_default_param_value_blobs): Add 'types'
14114         parameter to get the types encoded in the constant table.
14115         (mono_param_get_objects): Use the type from the constant table,
14116         not the type of the parameter, when creating default values.
14117         Handle null default values correctly.
14118
14119 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14120
14121         * file-io.c:
14122         * file-io.h:
14123         * threadpool.c:
14124         * threadpool.h:
14125         * icall.c:
14126         * socket-io.c: removed dead code for async IO.
14127
14128 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14129
14130         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
14131
14132         * threadpool.c: intercept socket async. calls and pass them to a thread
14133         that is polling and dispatching the job items to the threadpool as
14134         socket become ready. Fixes bugs #71217, #71933.
14135
14136         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
14137         between char and short/ushort arrays.
14138
14139         * socket-io.c: remove dead code.
14140
14141 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
14142
14143         * locales.c,
14144           icall.c : removed InternalToUpper_Comp() and
14145           InternalToLower_Comp().
14146
14147 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
14148
14149         * char-conversions.h : The tables were incorrectly generated. Should
14150           be generated against invariant culture.
14151
14152 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
14153
14154         * object.c (mono_runtime_invoke_array): Fix return value when 
14155         passing pre-created valuetype objects to ctors.
14156
14157         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
14158         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
14159         Fixes #74338.
14160
14161 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
14162
14163         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
14164         only used with --security and hides the wrong corlib version error.
14165
14166 2005-03-30  Joshua Tauberer  <tauberer@for.net>
14167
14168         * class.c: Changed mono_class_name_from_token so that types
14169         outside of a namespace don't have an initial period.  Improved
14170         the g_warning message used in _mono_class_get when loading
14171         fails.
14172         * assembly.c: In mono_assembly_load_reference, when an assembly
14173         can't be found, "No such file or directory" is misleading and
14174         unhelpful because a few paths were checked for the presence of
14175         the assembly.  When that happens (ENOENT), display a nicer
14176         message indicating the directories that were searched.  In all
14177         cases, the warning is made easier to read for non-hackers.
14178
14179 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
14180
14181         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
14182         project/solution.
14183         * appdomain.h|domain.c: Removed inline from functions.
14184         * appdomain.c: Reduced warnings when compiling on windows.
14185         * icall.c: Fixed output_debug declaration to gunichar2*.
14186         * mono-config.c: Reduced warnings when compiling on windows.
14187         * rand.c: Added missing "windows.h". Added missing return value.
14188         * rawbuffer.c: Added missing winsock2.h for windows.
14189         * sysmath.h: Added mono-compiler.h header to allow/ease 
14190         compilation with non-GCC compilers.
14191         * threads.c: Fixed declarations to compile with VS.NET C compiler.
14192         Removed cast warnings.
14193
14194         Adapted from the work of J Lothian (for VC6).
14195
14196 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
14197
14198         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
14199         from default_path.
14200
14201 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
14202
14203         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
14204         the 2.0 profile.
14205
14206 2005-03-27  Raja R Harinath  <harinath@gmail.com>
14207
14208         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
14209         has to be in $(exec_prefix).  $(prefix) is for arch-independent
14210         stuff, and it would probably use $(prefix)/share rather than
14211         $(prefix)/lib.
14212
14213 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14214
14215         * console-io.c: added 2 includes that might be missing.
14216
14217 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
14218
14219         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
14220         profile.
14221
14222         * reflection.c (create_custom_attr): Allocate the params array using
14223         alloca so it gets GC tracking.
14224
14225 2005-03-23  Chris Toshok  <toshok@ximian.com>
14226
14227         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
14228         out some spew.
14229
14230 2005-03-24  Raja R Harinath  <rharinath@novell.com>
14231
14232         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
14233         changes to pick up any changes in prefix, etc.
14234
14235 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
14236
14237         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
14238         
14239         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
14240         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
14241
14242 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
14243
14244         * class-internals.h object-internals.h class.c reflection.c: Extend the
14245         mono_lookup_dynamic_token () function to return the class of the
14246         token as well. 
14247
14248         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
14249         well. Fixes #73848.
14250
14251 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
14252
14253         * security-manager.c: Skip inheritance checks for intra-corlib
14254         class inheritance and method overrides. This skips a lot of checks
14255         and (anyway) permissions cannot work until corlib is loaded.
14256
14257 2005-03-23  Martin Baulig  <martin@ximian.com>
14258
14259         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
14260         MONO_TYPE_GENERICINST.  
14261
14262 2005-03-23  Martin Baulig  <martin@ximian.com>
14263
14264         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
14265
14266 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
14267
14268         * class.c: added locking comments to some functions.
14269         Cache the interface offsets arrays (saves about 20 KB
14270         of runtime memory in a typical app).
14271         Reduce the time overhead in mono_class_setup_supertypes ().
14272
14273 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
14274
14275         * icall.c: speedup and fix leaks in GetMethodsByName and
14276         GetPropertiesByName.
14277
14278 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
14279
14280         * reflection.c: some locking fixes.
14281
14282 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
14283
14284         * metadata.c: added missing break in case statement.
14285
14286 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
14287
14288         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
14289         typedbyref return values. Fixes #73941.
14290
14291 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
14292
14293         * security-manager.c|h: Added demandunmanaged method and 
14294         suppressunmanagedcodesecurity class to MonoSecurityManager.
14295         Renamed aptc class to allowpartiallytrustedcallers.
14296
14297 2005-03-17  Martin Baulig  <martin@ximian.com>
14298
14299         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
14300
14301 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14302
14303         * file-io.c: disabled file async. IO using aio_*. It uses the
14304         threadpool now. Workaround for bug #73718.
14305
14306 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
14307
14308         * assembly.h, mono-config.c: added code to deal with bundled configs
14309         for bundled assemblies.
14310
14311 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
14312
14313         * *.c, private.h: cleanup, removing old private.h header file.
14314
14315 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
14316
14317         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
14318         and throw_on_unmappable_char attributes.
14319
14320 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
14321
14322         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
14323         _ProcessName_internal.
14324
14325 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
14326
14327         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
14328         #73631.
14329
14330         * icall.c threads.c threads-types.h: Remove slothash icalls as they
14331         are no longer used.
14332
14333 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
14334
14335         * object.c (compute_class_bitmap): Add support for generics. Fixes
14336         #73527.
14337
14338 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
14339
14340         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
14341
14342 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14343
14344         * filewatcher.c: commented out the code for windows watcher, as we don't
14345         use it (we use the managed implementation instead).
14346
14347 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
14348
14349         * object-internals.h (MonoThread): Remove 'unused1' field.
14350
14351         * appdomain.c: Bump corlib version.
14352
14353         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
14354
14355         * reflection.c (mono_reflection_create_runtime_class): Remove the
14356         AssemblyBuilder.Save optimization since it causes too many problems.
14357
14358 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
14359
14360         * exception.c|h: Added mono_get_exception_reflection_type_load to
14361         create a ReflectionTypeLoadException object.
14362         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
14363         to return NULL is a InheritanceDemand fails during reflection. Updated
14364         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
14365         ReflectionTypeLoadException if an InheritanceDemand fails during 
14366         reflection. Added icall mapping for GetLinkDemandSecurity.
14367         * security-manager.c|h: Added ves_icall_System_Security_
14368         SecurityManager_GetLinkDemandSecurity internal call to return the
14369         class and methods permissions set for a LinkDemand. Removed unused
14370         fields in MonoSecurityManager.
14371
14372 2005-03-10  Martin Baulig  <martin@ximian.com>
14373
14374         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
14375         it's a generic instance.
14376
14377 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
14378
14379         * reflection.c (mono_get_object_from_blob): Applied patch from
14380         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
14381
14382         * class.c (mono_class_is_assignable_from): Another try at fixing 
14383         #73469 without breaking anything.
14384
14385 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
14386
14387         * class.c: (mono_class_is_assignable_from): Revert the last changes
14388         since they don't work with generics.
14389         
14390         * class.c (mono_class_is_assignable_from): Fix build bustage.
14391
14392         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
14393         the managed IsAssignableFrom method. Fixes #73469.
14394
14395         * reflection.c (mono_reflection_call_is_assignable_from): New helper
14396         function.
14397
14398 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
14399
14400         * object.c (mono_load_remote_field_new): Fix returning uninitialized
14401         memory when the remoting callback does not sets the out arguments.
14402         Fixes #73007.
14403
14404         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
14405         by mistake.
14406
14407         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
14408
14409         * object-internals.h (MonoStackFrame): Sync with managed object layout.
14410
14411         * appdomain.c: Bump corlib version.
14412
14413 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
14414
14415         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
14416         function.
14417
14418         * threads.c (mono_thread_attach): Detect threads which are not started
14419         by the GC pthread wrappers.
14420
14421 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
14422
14423         * icall.c: Added new icall for RNG.
14424         * rand.c|h: Added new icall to open the RNG. This allows to share a 
14425         single handle on Linux to access /dev/urandom and fix #73183.
14426
14427 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
14428
14429         * object.c: setting the new vtable in a transparent proxy object must
14430         not change the GC descriptor.
14431
14432 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
14433
14434         * object.c: fixed compilation without GCJ support.
14435         * reflection.c: for runtime-created types ensure klass->has_references
14436         is correct (bug #73215).
14437
14438 2005-03-02  Martin Baulig  <martin@ximian.com>
14439
14440         * class.c (mono_class_is_assignable_from): Make this work if
14441         `oklass' is a generic instance; fixes #72831.
14442
14443 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
14444
14445         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
14446         with hasthis set.
14447         
14448         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
14449
14450         * marshal.c: Reorganize native->managed marshalling code to also use
14451         the emit_marshal_... functions.
14452
14453 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
14454
14455         * object.c: typed allocs have issues with bitmap sizes > 30,
14456         so check for max_set >= 30.
14457
14458 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
14459
14460         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
14461         managed code. Fixes #73012.
14462
14463         * metadata.h (MonoMarshalSpec): Add elem_mult field.
14464
14465         * metadata.c reflection.c: Load/Emit elem_mult as well.
14466         
14467         * metadata.h (MonoMarshalSpec): Add comment.
14468
14469         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
14470
14471         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
14472         num_elem to -1 if not given.
14473
14474         * object-internals.h (MonoReflectionMarshal): Add has_size field.
14475
14476         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
14477         given values.
14478
14479 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
14480
14481         * null-gc.c (mono_gc_free_fixed): Was not compilable.
14482
14483 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
14484
14485         * reflection.c (encode_marshal_blob): Encode param_num field as well.
14486
14487         * object-internals.h (MonoReflectionMarshal): Add param_num field.
14488
14489 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
14490
14491         * object.c: generalized the reference bitmap creation
14492         and added hooks for the new GC.
14493         * class-internals.c: removed the gc_bitmap field from MonoClass.
14494
14495 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14496
14497         * domain.c: help the compiler to produce better code
14498         in mono_jit_info_table_find ().
14499
14500 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
14501
14502         * object.c: make all allocations look typed.
14503
14504 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14505
14506         * socket-io.c: load Mono.Posix if it's not loaded already
14507         (fixes bug#73033).
14508
14509 2005-02-24  Martin Baulig  <martin@ximian.com>
14510
14511         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
14512         * reflection.c (dup_type): Likewise.
14513
14514 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
14515
14516         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
14517         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
14518
14519 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
14520
14521         * domain.c, threads.c, object-internals.h: make the critical thread
14522         local vars use the fast access mode (even when we're compiled in
14523         a lib). Provide accessors to be used by the jit during codegen.
14524
14525 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14526
14527         * appdomain.c: Changed hook functios behavior to include
14528         support for the reflection only assemblies. Some icalls were changed
14529         to support the mentioned assemblies too. Signatures of static methods
14530         try_assembly_resolve and real_load now have an additional parameter:
14531         refonly.
14532
14533         * assembly.c: General changes to mono_assembly_ methods to support
14534         reflection only api. Functions mono_assembly_open, mono_assembly_load,
14535         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
14536         suffix, to support an additional gbool parameter to specify whether
14537         the assembli is reflection only or not. Created some new hook functions 
14538         to add support for reflection only assemblies. Signatures of static 
14539         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
14540         have now an additional parameter: refonly.
14541
14542         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
14543         indicating whether the assembly is reflection only or not.
14544
14545         * exception.c: Add mono_get_exception_invalid_operation.
14546
14547         * icall.c: Throw an InvalidOperationException when trying to invoke
14548         a property/method/event, or trying to set/get the value of a field.
14549         Also add an icall to retrieve the ref_only flag to the
14550         MonoReflectionAssembly.
14551
14552 2005-02-23  Chris Toshok  <toshok@ximian.com>
14553
14554         Part of fix for #72827.
14555         * mono-debug.c (mono_debug_add_method): add lexical block data to
14556         the info we write.  Kind of a hack at the moment - we copy the
14557         lexical block info from the MonoDebugMethodInfo to the
14558         MonoDebugMethodJitInfo here, before writing it.
14559         (mono_debug_read_method): read the lexical block info.
14560
14561         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
14562
14563         * debug-mono-symfile.h: add lexical block support.
14564
14565         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
14566         support.
14567
14568 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
14569
14570         * loader.c (mono_lookup_pinvoke_call): Fix warning.
14571
14572         * object.c (mono_runtime_free_method): Call mono_free_method () and
14573         put the TODOs there.
14574
14575         * loader.c (mono_free_method): Free up most memory allocated for 
14576         dynamic methods.
14577
14578 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
14579
14580         * reflection.c: properly flag a Type argument to a
14581         named custom attr value (bug #72248).
14582
14583 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
14584
14585         * reflection.c: reduce code duplication in named custom
14586         attribute encoding.
14587
14588 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
14589
14590         * reflection.c: properly encode custom attrs of type object
14591         (bug #72649).
14592
14593 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
14594
14595         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
14596
14597 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
14598
14599         * socket-io.c: load System.dll if it's not loaded already
14600         (bug #72850 and #70477).
14601
14602 2005-02-21  Martin Baulig  <martin@ximian.com>
14603
14604         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
14605         generic instances.
14606
14607 2005-02-21  Martin Baulig  <martin@ximian.com>
14608
14609         * reflection.c (mono_image_build_metadata): We also need to
14610         "fixup" the MethodImpl table after we computed the final method
14611         indices.  Call fixup_methodimpl() to do that.
14612         (fixup_methodimpl): New private method.
14613
14614 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
14615
14616         * assembly.c: special case mscorlib.dll (bug#72536),
14617         patch from Carlos Alberto Cortez.
14618
14619 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
14620
14621         * threads-types.h threads.c: Fix build bustage.
14622
14623         * threads.c: Use a union for long<->double conversions.
14624
14625         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
14626         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
14627
14628         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
14629         containing the checkpoint call with NOT_TAKEN.
14630         
14631         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
14632         checkpoint before pushing the arguments, so they won't have to be
14633         spilled to stack.
14634
14635 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
14636
14637         * domain.c, assembly.c, domain-internals.h: make some data
14638         const and relocation-free.
14639
14640 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
14641
14642         * object.c, appdomain.c, class-internals.h: introduce the
14643         MonoClassRuntimeInfo structure to hold the info needed to
14644         use a class at runtime. Made mono_class_vtable() lock-free
14645         for all the appdomains.
14646
14647 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
14648
14649         * metadata-internals.h, image.c: introduce a per-image mempool to
14650         be used for memory that has the same lifetime as the image.
14651
14652 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
14653
14654         * domain.c: In mono_init_internal(), instead of selecting the first
14655         runtime version supported by an executable, get a list of all
14656         supported versions and select the one for which an mscorlib exists
14657         (since even if the runtime supports a given version, it doesn't mean
14658         that the framework for that version is installed).
14659         Modified get_runtimes_from_exe to support this behavior.
14660         In supported_runtimes, added information about additional system
14661         assembly versions.
14662         
14663         * assembly.c: Added support for more than one system assembly version
14664         per runtime version. Updated the assembly list.
14665         In mono_assembly_remap_version, removed the initial version check,
14666         since we don't know to which version we need to compare until we
14667         get the version set on which the assembly is based.
14668         Moved the code for loading corlib into the new method
14669         mono_assembly_load_corlib(), so it can be used by the initialization
14670         code.
14671         
14672         * domain-internals.h: Updated data structures and added declaration
14673         for mono_assembly_load_corlib.
14674
14675 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
14676
14677         * reflection.c (resolve_object): Fix the creation of the signature in 
14678         the SignatureHelper case.
14679
14680         * assembly.c (mono_assembly_remap_version): Fix binary search.
14681         
14682 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
14683  
14684         * class.c: Added inheritance check when a method is overloaded (from a
14685         virtual method or when implementing an interface) and when a class is
14686         inherited. Added functions to set a failure for a class and to 
14687         retreive the exception from a failure.
14688         * class-internals.h: Added fields to MonoClass to keep the exception
14689         information status for inheritance (or other exceptions) to be thrown
14690         later (i.e. not at load time).
14691         * object.c: Throw the inheritance SecurityException when a type is to 
14692         be created with either class or method inheritance violations.
14693         * reflection.c|h: Fix when getting declsec from a class. Removed 
14694         unrequired code for class. Improved sanity in parameter naming.
14695         * security-manager.c|h: Added functions to check for class and method
14696         inheritance.
14697
14698 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
14699
14700         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
14701         and has_finalize in dynamic types as well.
14702
14703 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
14704
14705         * culture-info-table.h : fixed currency format for en-GB (and so on).
14706
14707 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
14708
14709         * gc.c: ensure the GC handles never have 0 as a value.
14710
14711 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
14712
14713         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
14714         a pointer to a struct to unmanaged code. Fixes #72625.
14715
14716 2005-02-16  Martin Baulig  <martin@ximian.com>
14717
14718         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
14719
14720 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
14721
14722         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
14723
14724 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
14725
14726         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
14727
14728         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
14729         UnmanagedFunctionPointerAttribute, use it for determining calling convention
14730         etc. Fixes #71471.
14731
14732         * reflection.c (mono_custom_attrs_get_attr): New helper function.
14733
14734         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
14735
14736 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
14737
14738         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
14739         changes to make the current context a field in MonoThread.
14740
14741 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
14742
14743         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
14744         the last change.
14745         
14746         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
14747         extracted from mono_marshal_get_native_wrapper.
14748
14749         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
14750         to create wrappers around native functions.
14751
14752         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
14753         delegates for arbitrary function pointers. Fixes #71472.
14754
14755 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
14756
14757         * threads.c: cleaned up the code a little.
14758
14759 2005-02-15  Martin Baulig  <martin@ximian.com>
14760
14761         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
14762         the data table.
14763
14764         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
14765         allocate larger chunks if needed.
14766
14767 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
14768
14769         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
14770         in by mistake.
14771
14772 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
14773
14774         * domain.c: keep the domains in an array and ensure the domain ids
14775         are kept small, so they can be used as indexes to domain-specific data
14776         with a small memory overhead.
14777
14778 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
14779
14780         * icall.c: Handle byref types in Type icalls. Fixes #72544.
14781
14782 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
14783
14784         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
14785
14786 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
14787
14788         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
14789
14790         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
14791         values.
14792
14793         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
14794         
14795 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
14796
14797         * domain-internals.h: add the hashtable here.
14798
14799         * class-internals.h: Remove `info' from MonoMethod
14800
14801         * domain.c: Add a new hashtable, jit_trampoline_hash
14802
14803 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
14804
14805         * object.c: don't set the value of static fields
14806         (fixes bug#72494).
14807
14808 2005-02-11  Martin Baulig  <martin@ximian.com>
14809
14810         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
14811         (mono_debug_add_method): Silently ignore the method if it's too big.
14812         (mono_debug_add_type): Likewise.
14813
14814 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
14815
14816         * threads.c, appdomain.c: remove #ifdefs from the code.
14817
14818 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
14819
14820         * metadata-internals.h: Added flags to MonoAssembly to cache the most
14821         common security informations. This allows us to stay in unmanaged code
14822         when doing LinkDemand and it's special cases (except for the first 
14823         time for initialization). The flags a very much used with --security.
14824         * reflection.c|h: Added code to get declarative security attributes 
14825         for LinkDemand and InheritanceDemand. This required to refactor the
14826         existing code for Demand.
14827         * security-manager.c|h: Added new method fields for the special cases
14828         of LinkDemand.
14829
14830 2005-02-10  Martin Baulig  <martin@ximian.com>
14831
14832         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
14833         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
14834
14835 2005-02-10  Martin Baulig  <martin@ximian.com>
14836
14837         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
14838         debugging code; this is almost a complete rewrite.
14839
14840         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
14841
14842 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
14843
14844         * domain.c, object.h: expose mono_string_equal () and 
14845         mono_string_hash ().
14846         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
14847         it's implemented in managed code.
14848
14849 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
14850
14851         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
14852         lo leak objects between appdomains.
14853
14854 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
14855
14856         * assembly.c: old compilers compilation fix from 
14857         robertj@gmx.net (Robert Jordan).
14858
14859 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
14860
14861         * class-internals.h: Little reminder for the future.
14862
14863         * debug-helpers.c: Fix up wrapper_type_names
14864
14865 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
14866
14867         * image.c, metadata-internals.h: when loading an image from a file,
14868         mmap all of it and use the same codepaths as when using a
14869         in-memory image: the code is simpler and we use less memory
14870         (both writable and readonly).
14871
14872 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
14873
14874         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
14875         API to alloc runtime data structures that need to be tracked by the
14876         GC and contain pointers.
14877         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
14878         make the code more readable and eventually use a different GC.
14879
14880 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
14881
14882         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
14883         for out arguments.
14884         
14885 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
14886
14887         * object.c: In release_type_locks(), don't release the cctor lock
14888         if it has already been released. This fixes a crash in the
14889         thread5 test.
14890
14891 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14892
14893         * gc.c, marshal.c, icall.c: register a delegate for finalization
14894         only when the native function pointer has been allocated for it.
14895
14896 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
14897
14898         * object.c: cleaned up some code, allocate objects that are
14899         pointer free with the atomic malloc variant. Allocate memory
14900         for static data from the mempool if it's pointer-free.
14901         Allocate the bounds array at the end of the array data, when needed.
14902         * object-internals.h, object.h: move a private function in a private
14903         header.
14904         * class.c: handle missing case in tracking references in fields.
14905
14906 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
14907
14908         * class.c, class-internals.h: keep track if a type has
14909         reference fields in either the instance or static fields.
14910
14911 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
14912
14913         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
14914         and renamed to MonoRuntimeInfo. Added fields to store the expected
14915         framework assembly version. Changed mono_get_framework_version and
14916         mono_get_runtime_version for a single mono_get_runtime_info method.
14917         
14918         * assembly.c: Added method to remap system assembly versions to the
14919         current executing runtime version. Removed old mapping code.
14920         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
14921         
14922         * icall.c, reflection.c: Track api changes.
14923
14924 2005-02-06  Miguel de Icaza  <miguel@novell.com>
14925
14926         * loader.c (method_from_memberref): Improve error reporting,
14927         produce the class name instead of the typeref/typedef index. 
14928
14929 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
14930
14931         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
14932
14933 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
14934
14935         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
14936         stdcall and charset name mangling.  Reorganize the code and add
14937         some tracing stuff.
14938
14939 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
14940
14941         * monodiet.c: More iters!
14942
14943         * marshal.c: Iter usage.
14944
14945         * icall.c: Iter usage.
14946
14947         * object.c: Use iters.
14948
14949         * debug-helpers.c: More iters
14950
14951 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
14952
14953         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
14954         under win32.
14955
14956 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
14957
14958         * mono-debug-debugger.c: use iters
14959
14960         * class.c, class-internals.h: mono_class_setup_events is static
14961         now
14962
14963         * All callers: use iters
14964
14965 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
14966
14967         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
14968         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
14969
14970 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
14971
14972         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
14973
14974         * marshal.h: Add prototypes for ldfld/stfld_remote.
14975
14976         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
14977         this is called during startup.
14978         
14979 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
14980
14981         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
14982         MonoThreadsSync struct private in monitor.c. Changed the way
14983         MonoThreadsSync is allocated so it's faster and there is no
14984         need to keep track of it with a finalizer and it uses less memory.
14985         This also finally allows us to allocate mono objects as ptrfree when
14986         there are no reference fields.
14987
14988 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
14989
14990         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
14991         disappearing link to the GC interface and use them to simplify
14992         the gchandles code.
14993
14994 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
14995
14996         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
14997         stfld_remote which call mono_load/store_field_new. This allows methods
14998         calling ldfld/stfld wrappers to be AOTed.
14999
15000         * console-io.c: Include sys/filio.h under solaris.
15001         
15002         * console-io.c: Include curses.h if needed correctly.
15003
15004 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
15005         
15006         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
15007         method->klass as well.
15008
15009         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
15010
15011         * class.c (mono_class_init): Switch on lazy initialization of 
15012         methods.
15013
15014         * class.c (mono_class_get_finalizer): Handle the case when the 
15015         finalizer is inherited.
15016
15017 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15018
15019         * console-io.c: <curses.h> is needed by term.h on solaris.
15020
15021 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
15022
15023         * icall.c, class-internals.h, monodiet.c, class.c: Remove
15024         mono_class_setup_properties where possible. Remove this ftn from
15025         the header file, and make it static.
15026
15027 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
15028
15029         * loader.c: Add missing setup_... call.
15030
15031         * class.c: Add missing setup_... calls.
15032
15033         * class.c (mono_class_init): Switch on lazy initialization of 
15034         the generic vtable.
15035         
15036         * class.c (mono_class_init): Fix generics broken by the recent changes.
15037
15038         * monodiet.c (handle_type): Add missing setup_... calls.
15039
15040         * class.c: Back out garbage in previous patch.
15041         
15042         * class.c: Add missing setup_... calls.
15043
15044         * class.c (mono_class_get_method_from_name_flags): Avoid calling
15045         mono_class_setup_methods () if possible.
15046
15047         * class-internals.h (MonoClass): Add 'has_cctor' flag.
15048
15049         * class-internals.h (MonoCachedClassInfo): New structure.
15050
15051         * class.c: Initialize properties and events fields of MonoClass lazily.
15052
15053         * class.c: Add infrastructure for lazily initializing the methods and
15054         vtable fields of MonoClass. Not yet used.
15055
15056         * class.c (mono_class_get_finalizer): New helper function.
15057
15058         * class.c: Add infrastructure for loading some class related data from
15059         an AOT file.
15060
15061         * object.c: Add infrastructure for initializing the vtable from data
15062         in the AOT file.
15063
15064         * gc.c (run_finalize): Use mono_class_get_finalizer ().
15065
15066         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
15067         appropriate initialization function before accessing parts of the
15068         MonoClass structure.
15069
15070         * marshal.c: Fix warnings.
15071         
15072         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
15073
15074         * mono-debug-debugger.c (get_exception_message): Use 
15075         mono_class_get_method_from_name_flags ().
15076
15077 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
15078
15079         * reflection.c, appdomain.c: Replace a few manual searches that
15080         Zoltan missed. (Paolo approved this part of my initial patch).
15081
15082 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
15083
15084         * profiler.c: disable recording statistical events at report time.
15085
15086 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
15087
15088         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
15089         to byteswap arrays of enum values, too (bug #72080).
15090
15091 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
15092
15093         * appdomain.c (set_domain_search_path): Allow this to be called if
15094         domain->setup is not yet set.
15095
15096         * loader.c (mono_method_get_index): New helper function.
15097
15098         * loader.c reflection.c: Use mono_method_get_index ().
15099
15100         * class.c (mono_class_get_method_from_name_flags): New helper method.
15101
15102         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
15103         this.
15104
15105         * class.c (mono_class_get_cctor): New helper method.
15106
15107         * string-icalls.c object.c class.c marshal.c reflection.c: Use
15108         mono_class_get_method () to look up methods.
15109
15110 2005-02-01  Miguel de Icaza  <miguel@novell.com>
15111
15112         * console-io.c: Fix the build, this should work on Windows.
15113
15114 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
15115
15116         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
15117         be set to null to keep things valid
15118
15119 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15120
15121         * icall.c: added Console 2.0 icalls.
15122         * Makefile.am: added console-io.[ch]
15123         * console-io.[ch]: internal calls for Console 2.0 API.
15124
15125 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
15126
15127         * class.c: make sure we consider all the interfaces
15128         when calculating max_interface_id (bug found by
15129         Jeroen Frijters running ikvm).
15130
15131 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
15132
15133         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
15134         valuetype fields to null.
15135
15136         * object.c (set_value): Ditto. Fixes #71669.    
15137
15138 2005-01-31  Martin Baulig  <martin@ximian.com>
15139
15140         * metadata.c (mono_metadata_has_generic_params): New public
15141         function; checks whether something is a generic method.
15142
15143 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
15144
15145         * appdomain.c: fix infinite recursion when adding assemblies.
15146
15147 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
15148
15149         * object.c: Fix small typo to return all items for Environment.
15150         GetCommandLineArgs.
15151
15152 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
15153
15154         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
15155         reflection.c: more domain and assembly-unload related fixes
15156         and memory leaks plugs.
15157
15158 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
15159
15160         * class.c loader.c security.c loader.h process.c threads.c mono-debug-debugger.c profiler.c marshal.c rand.cpedump.c: Fix 64 bit warnings.
15161
15162 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
15163
15164         * loader.c (mono_method_signature): Make this method lazy
15165         (mono_get_method_from_token): Don't computate the signature here.
15166
15167         Doing this saves quite a bit of memory. I got 90 kb on starting up
15168         monodoc. It should also save some disk reads on startup.
15169
15170         * *: MonoMethod->signature might be NULL now. You *MUST* use
15171         mono_method_signature.
15172
15173 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
15174
15175         * object.c (mono_runtime_get_main_args): Return an array from the
15176         current domain here. Fixes #71938.
15177
15178 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
15179
15180         * monitor.c: formatting changes to comply with the
15181         mono coding style and remove #ifdefs from the code.
15182
15183 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
15184
15185         * metadata.c, private.h: remove some unneeded data
15186         and use a more compact representation for table schemas.
15187
15188 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
15189
15190         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
15191         to get a better distribution in hash tables.
15192         * *.c: use mono_aligned_addr_hash() where appropriate.
15193         * assembly.c: make var static.
15194
15195 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
15196
15197         * domain-internals.h: Put MonoJitInfo on a diet.
15198
15199         * domain.c: Fix a warning.
15200
15201 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15202
15203         * gc.c: rework the gc handles code to reuse handles
15204         when freed.
15205
15206 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
15207
15208         * domain.c: fixed long standing bug in mono_string_equal() which
15209         was brought to light with the ldstr changes.
15210
15211 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
15212
15213         * reflection.c: Remove warning by adding missing include for marshal.h
15214
15215 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
15216
15217         * domain.c, object.c: change the ldstr_table to hold
15218         MonoString* as keys: makes the runtime isinterned lookup
15219         faster and simplifies memory management.
15220
15221 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
15222  
15223         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
15224         possible to add imperative security checks before calling the icall.
15225         * reflection.c: Return security attributes on the original MonoMethod
15226         (and not the wrapped one). This fix permissions on icalls.
15227
15228 2005-01-25  Dick Porter  <dick@ximian.com>
15229
15230         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
15231         the check for mktime() support actually test the mktime() return
15232         value.  "Fixes" bug 71682, though the output is still different to
15233         MS.
15234
15235 2005-01-25  Martin Baulig  <martin@ximian.com>
15236
15237         * class.c (mono_class_is_assignable_from): Make this work for
15238         generic instances.
15239
15240 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
15241
15242         * marshal.c (mono_string_utf8_to_builder)
15243         (mono_string_builder_to_utf16): We might not have ownership of the
15244         string. In thise case, we need to create a new buffer.
15245
15246         * object-internals.h (mono_stringbuilder_capacity): sb->str might
15247         be null, in which case, use the default capacity.
15248
15249 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
15250
15251         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
15252         GC events to the profiler.
15253
15254 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
15255
15256         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
15257         if you don't want the GC to run.
15258
15259 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
15260
15261         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
15262         start providing a GC API and keeping different implementations in
15263         their own file.
15264         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
15265
15266 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
15267
15268         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
15269         mmap rather than allocating a huge buffer.
15270         (mono_debug_close_mono_symbol_file): Free the buffer allocated
15271         above.
15272
15273 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
15274
15275         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
15276         and CheckExecutionRights.
15277         * reflection.c|h: Keep the index of the declarative security to be 
15278         used, instead of the pointer, when AOT compiler is used. Also add 
15279         class initialization when requesting demands.
15280         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
15281         CheckExecutionRights. Both properties are now FALSE by default, and
15282         unmodifiable, unless the --security option is used.
15283
15284 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
15285
15286         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
15287         reflection.c: properly refcount images and assemblies, many leaks fixed.
15288
15289 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15290
15291         * threadpool.c: increase the timeout for threads in the thread pool to
15292         10s.  Fixes bug #67159.
15293
15294 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
15295
15296         * class-internals.h: Sun's compiler insists on explicit
15297         signed on bit fields to handle then correctly.
15298
15299 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
15300
15301         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
15302         Make the size of the array fit only the number of invalid path
15303         chars that we have.
15304
15305         * class.c (_mono_class_get): Improve the error reporting when a
15306         class referenced is not found, to assist debugging. 
15307
15308 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
15309
15310         * threads.c: fix off-by-one error.
15311         * domain.c: free data allocated in the domain.
15312
15313 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
15314
15315         * reflection.c (mono_method_body_get_object): Fill out exception info
15316         as well.
15317
15318         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
15319         structure.
15320         
15321 2005-01-19  Martin Baulig  <martin@ximian.com>
15322
15323         * loader.c (mono_get_method_constrained): Make this work again.
15324
15325 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
15326
15327         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
15328         guint16 to match the managed side.
15329
15330         * reflection.c (mono_reflection_body_get_object): Fill out local
15331         variables array.
15332
15333         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
15334         as well.
15335
15336         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
15337         'local_var_sig_token'.
15338
15339 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
15340
15341         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
15342         System.Drawing.
15343
15344         * reflection.c (mono_method_body_get_object): Handle abstract and
15345         runtime methods.
15346
15347 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
15348
15349         * marshal.c, loader.c, class-internals.h, reflection.c:
15350         store the emthod data for a wrapper in an array instead of a list.
15351
15352 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
15353
15354         * marshal.c: change the code to allocate memory more
15355         conservatively for method wrappers.
15356
15357 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
15358
15359         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
15360         fields from MonoClass to the marshal info structure where they belong.
15361
15362 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15363
15364         * class.c, object.c, class-internals.h, marshal.c: rearrange
15365         some fields and tweak some types to lower memory usage.
15366
15367 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
15368
15369         * threads.c (signal_thread_state_change): Handle the case when the
15370         target thread is the current thread.
15371
15372         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
15373
15374         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
15375         emit_ptr_to_object_conv. 
15376
15377         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
15378         marshalling. Fixes #71352.
15379
15380 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
15381
15382         * metadata.h, blob.h: move table enum to blob.h so it can be included
15383         in any header.
15384         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
15385         cut the size of MonoImage/MonoDynamicImage.
15386
15387 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
15388
15389         * profiler.c (mono_profiler_install_simple): Fix default arguments.
15390
15391 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
15392
15393         * reflection.c, reflection.h, icall.c: add a function to check
15394         if an attribute type is defined for a metadata object.
15395
15396 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
15397
15398         * object-internals.h: Added some needed fields from StringBuilder class.
15399         * marshal.c: Set the maxCapacity when creating a StringBuilder.
15400
15401 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
15402
15403         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
15404         threads before shutting down the runtime.
15405
15406         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
15407
15408 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
15409
15410         * object-internal.h, threads.c: implement stacksize and 
15411         parameterized thread start functionality (requires
15412         matching corlib). Marked broken code for later removal.
15413
15414 2005-01-12  Martin Baulig  <martin@ximian.com>
15415
15416         * class-internals.h (MonoGenericClass): Moved the `initialized'
15417         flag to MonoDynamicGenericClass, removed `init_pending'.
15418         (MonoGenericInst): Added `is_reference' flag.
15419
15420 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
15421
15422         * reflection.c (mono_image_create_pefile): Only set the pe_offset
15423         inside the MSDOS header. Fixes #71201.
15424
15425         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
15426         gc thread.
15427         (mono_domain_finalize): Ditto.
15428
15429 2005-01-12  Martin Baulig  <martin@ximian.com>
15430
15431         * class.c (mono_get_shared_generic_class): Use the cache for
15432         non-dynamic generic classes.
15433
15434         * class-internals.h (mono_class_create_generic_2): Removed
15435         function prototype, this function is now static inside class.c.
15436
15437         * class.c (mono_class_create_generic_2): Made this static, only
15438         call it from mono_class_init() and mono_class_setup_parent().
15439         (collect_implemented_interfaces_aux): Call mono_class_init() on
15440         the interfaces we collect.
15441         (mono_class_setup_vtable): Call mono_class_init (class->parent).
15442
15443 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
15444
15445         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
15446         it a real thread handle.
15447
15448         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
15449         MonoJitExceptionInfo, since each catch clause needs its own variable.
15450         
15451 2005-01-11  Dick Porter  <dick@ximian.com>
15452
15453         * image.c (mono_pe_file_open): New variant on mono_image_open()
15454         that does not set up the CLI metadata; used for FileVersionInfo so
15455         it can get the data for windows binaries too.
15456         
15457         * process.c (process_read_string_block): Don't read off the end of
15458         the StringTable block.
15459
15460         These both fix bug 70766.
15461
15462 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
15463
15464         * gc.c: set some fields to NULL at GC cleanup time.
15465         * threads.c: if we quit the main thread, call exit ().
15466
15467 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
15468
15469         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
15470
15471 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
15472
15473         * threads.h, threads.c, object.c: added accessor and settor for
15474         main_thread. Handle it specially when exiting from it: wait
15475         for other foreground threads to exit.
15476
15477 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
15478
15479         * process.c, verify.c: remove some bloat.
15480
15481 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
15482
15483         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
15484         the calling convention to cdecl under win32.
15485
15486 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
15487
15488         * object.c (mono_object_get_size): New function to get the size of
15489         an object instance.
15490
15491         * profiler.c (simple_allocation): Use above.
15492
15493 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
15494
15495         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
15496         ves_icall_System_AppDomain_getRootDomain (as it's not required to
15497         get an appdomain by it's id and we can't assume the root's id is 0).
15498         * domain-internals.h: Change the function prototype to match.
15499         * icall.c: Change the icall table for AppDomain.
15500
15501 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
15502
15503         * locales.c (string_invariant_compare_char): Only compute
15504         GUnicodeTypes in the case where we need them.  Test for ordinality
15505         first and return if so.
15506
15507         From the commit:
15508
15509                 /*
15510                  * FIXME: here we must use the information from c1type and c2type
15511                  * to find out the proper collation, even on the InvariantCulture, the
15512                  * sorting is not done by computing the unicode values, but their
15513                  * actual sort order.
15514                  */
15515
15516 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
15517
15518         * loader.c: for P/Invoke methods, allow the "Internal" shared
15519         library name to refer to the calling process symbol namespace.
15520
15521 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
15522
15523         * Makefile.am: Add the security manager to the build.
15524         * security-manager.c|h: New. Initialization of the security manager.
15525
15526 2005-01-07  Dick Porter  <dick@ximian.com>
15527
15528         * threads.c: 
15529         * monitor.c: Update thread state during Monitor and WaitHandle
15530         waits.  Fixes bug 71031.
15531
15532 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
15533
15534         * reflection.c (property_encode_signature): Correctly handle when the
15535         property has no methods.
15536
15537 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
15538
15539         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
15540         
15541         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
15542         fields from mb, not rmb. Fixes #71017.
15543
15544         * marshal.c (emit_ptr_to_str_conv): Add support for 
15545         ByValTStr -> string conversion. Fixes #71015.
15546
15547         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
15548
15549         * mempool.c (mono_mempool_contains_addr): New helper function.
15550
15551 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
15552
15553         * metadata.c (mono_metadata_compute_size): Fix size calculation of
15554         HasSematics encoded fields.
15555         
15556         * metadata.c (mono_type_to_unmanaged): Improve error message for 
15557         invalid string marshalling.
15558
15559         * metadata.c: Fix warnings.
15560         
15561 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
15562
15563         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
15564         profiler support.
15565
15566 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
15567
15568         * domain.c object.c domain-internals.h: Revert part of r38077 since the
15569         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
15570         tests.
15571
15572 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
15573
15574         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
15575         so methods containing these can be AOTed.
15576
15577 2005-01-03  Martin Baulig  <martin@ximian.com>
15578
15579         * loader.c (find_method): Removed the hack for generic instances.
15580         (method_from_memberref): If our parent is a generic instance, pass
15581         its generic type definition to find_method() and then inflate the
15582         method.
15583         (mono_get_method_constrained): Pass the generic type definition to
15584         find_method() and inflate the method later.
15585
15586         * class-internals.h (MonoStats): Added `generic_class_count'.
15587
15588         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
15589         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
15590
15591         * reflection.c (mono_custom_attrs_from_params): Don't ignore
15592         generic type definitions.
15593
15594 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
15595
15596         * loader.c icall.c: Fix warnings.
15597
15598 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
15599
15600         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
15601         blittable types. Fixes #70864.
15602
15603 2004-12-29  Martin Baulig  <martin@ximian.com>
15604
15605         * icall.c
15606         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
15607
15608         * reflection.c (mono_method_get_object): Create a
15609         "System.Reflection.MonoGenericMethod" for inflated methods; don't
15610         call mono_get_inflated_method().
15611
15612         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
15613
15614 2004-12-27  Martin Baulig  <martin@ximian.com>
15615
15616         * class-internals.h (MonoMethod): Added `is_inflated' flag.
15617         (MonoMethodInflated): Added `inflated' field.
15618
15619         * class.c (mono_class_inflate_generic_method): Don't really
15620         inflate the method here; just set the `is_inflated' flag in the
15621         MonoMethod.
15622         (mono_class_get_inflated_method): Actually inflate the method here
15623         if it's not already inflated; we use the MonoMethodInflated's new
15624         `inflated' field as a cache.
15625
15626 2004-12-26  Martin Baulig  <martin@ximian.com>
15627
15628         * class.c
15629         (inflate_generic_class): Moved some code out of inflate_generic_type().
15630         (mono_class_inflate_generic_method): If we're already inflated,
15631         inflate the context and use the declaring method; ie. make sure
15632         the declaring method of an inflated method is always the generic
15633         method definition.
15634         (mono_class_create_from_typedef): Create
15635         `class->generic_container->context->gclass'.
15636
15637 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
15638
15639         * metadata-internals.h, marshal.c, reflection.c: More
15640         MonoGHashTable->GHashTable.
15641
15642         * domain-internals.h, class.c: Change MonoGHashTable's into
15643         GHashTables for some cases where no gc stuff is used
15644
15645         All users: update apis
15646
15647 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
15648
15649         * metadata.c (builtin_types): Make this `const'. Makes this get
15650         put into the shareable section.
15651         (mono_metadata_init): Casts to make gcc happy.
15652
15653 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
15654
15655         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
15656
15657 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
15658
15659         * icall.c: Added an internal call to retrieve the position and length
15660         of assembly-level declarative security attributes (RequestMinimum, 
15661         RequestOptional and RequestRefuse). This is used by the Assembly class
15662         to re-create the corresponding permission sets.
15663
15664 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
15665
15666         * marshal.c: fix the stelemref wrapper to be type correct
15667         (and faster).
15668
15669 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
15670
15671         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
15672         to do key & 0x7fffffff. Hashtable already does this. It just
15673         results in longer code.
15674
15675 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
15676
15677         * appdomain.c: Bump corlib version.
15678         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
15679         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
15680         * reflection.c|h: Add functions to get declarative security infos
15681         (blob position and length) for assemblies, classes and methods.
15682
15683 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
15684
15685         * reflection.c: sort the constant table (bug #70693).
15686
15687 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
15688
15689         * object-internals.h, threads.c, domain.c: add accessors for
15690         the MonoThread and MonoDomain tls keys.
15691
15692 2004-12-18  Martin Baulig  <martin@ximian.com>
15693
15694         * class.c (inflate_generic_type): If we're inflating a generic
15695         instance, set `ngclass->context->container = context->container';
15696         ie. the container we inflated into.
15697
15698         * metadata.c (mono_metadata_parse_generic_param): Reflect above
15699         inflate_generic_type() changes.
15700
15701 2004-12-17  Martin Baulig  <martin@ximian.com>
15702
15703         * class-internals.h
15704         (MonoGenericClass): Replaced `MonoType *generic_type' with
15705         `MonoClass *generic_class'.  Removed `dynamic_info'; if
15706         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
15707         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
15708
15709 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
15710
15711         * exception.c (mono_exception_from_token): New helper function.
15712
15713 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
15714
15715         * assembly.c (mono_assembly_load_with_partial_name): Call 
15716         mono_assembly_loaded before invoking the preload hooks. Fixes
15717         #70564.
15718
15719         * object-internals.h (MonoThread): Change culture_info and 
15720         ui_culture_info into an array.
15721
15722         * threads.c: Cache culture info objects from more than one appdomain.
15723
15724         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
15725         current UI culture.
15726
15727 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
15728
15729         * threads.h threads.c appdomain.c: Clear the culture_info field of
15730         all threads during unloading if they point to an object in the dying
15731         appdomain.
15732
15733 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
15734
15735         * culture-info.h (TextInfoEntry): New struct
15736         * object-internals.h: sync with managed
15737         * locales.c: fill the `text_info_data' field
15738         * culture-info-tables.h: update
15739
15740 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
15741
15742         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
15743         collector.
15744
15745 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
15746
15747         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
15748         (ves_icall_ModuleBuilder_getMethodToken): Ditto
15749
15750 2004-12-12  Martin Baulig  <martin@ximian.com>
15751
15752         * mono-debug-debugger.c (write_type): If we're an enum and the
15753         builtin types have already been initialized, call mono_class_init().
15754
15755 2004-12-11  Martin Baulig  <martin@ximian.com>
15756
15757         * metadata.c (mono_metadata_load_generic_params): Added
15758         `MonoGenericContainer *parent_container' argument; automatically
15759         compute `container->is_method'; pass the correct owner to
15760         get_constraints().      
15761
15762         * reflection.c (compare_genericparam): Sort the GenericParam table
15763         according to increasing owners. 
15764
15765 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
15766
15767         * profiler.c: allow disabling the default profiler.
15768
15769 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
15770
15771         * decimal.c, icall.c: allow disabling System.Decimal support.
15772
15773 2004-12-09  Marek Safar <marek.safar@seznam.cz>
15774
15775         * reflection.c: Add support for null attribute arguments.
15776
15777 2004-12-09  Martin Baulig  <martin@ximian.com>
15778
15779         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
15780         names to get rid of compiler warnings.
15781
15782 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
15783
15784         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
15785         mono_marshal_load_type_info (). Fixes #69625.
15786         (mono_marshal_get_ptr_to_struct): Likewise.
15787
15788 2004-12-08  Martin Baulig  <martin@ximian.com>
15789
15790         * mono-debug.h: Bumped version number to 47.
15791
15792         * mono-debug-debugger.c
15793         (mono_debugger_event_handler, mono_debugger_event): Take two
15794         guint64 arguments insteed of a gpointer and a guint32.  
15795
15796 2004-12-08  Martin Baulig  <martin@ximian.com>
15797
15798         * debug-mono-symfile.h
15799         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
15800         `address' to `native_offset'.
15801
15802 2004-12-08  Martin Baulig  <martin@ximian.com>
15803
15804         * class.c (mono_class_create_from_typespec): Only inflate if we
15805         either have `context->gclass' or `context->gmethod'.
15806
15807 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
15808
15809         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
15810
15811         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
15812
15813         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
15814
15815         * reflection.c (mono_assembly_get_object): Remove the workaround put
15816         in for the release.
15817         
15818         * appdomain.c: Use the corlib_internal field from MonoAssembly.
15819
15820         * appdomain.c: Bump corlib version.
15821
15822         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
15823         be visible in other appdomains.
15824
15825 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
15826
15827         * threads.c: Interlocked inc and dec for longs were messed up,
15828         use a KISS based impl for this. Fixes 70234
15829
15830 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
15831
15832         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
15833
15834 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
15835
15836         * icall.c: fix to follow policy not to allow struct
15837         arguments in icalls.
15838
15839 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15840
15841         * process.c: make the patch that handles spaces in file paths work
15842         on mono/windows too.
15843
15844 2004-12-06  Martin Baulig  <martin@ximian.com>
15845
15846         * class.c (mono_class_create_generic): Call
15847         mono_class_setup_supertypes() if we're dynamic.
15848         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
15849
15850 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
15851
15852         * object-internals.h: Add new fields to MonoThread.
15853
15854         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15855
15856         * icall.c threads-types.h threads.c: Add new icalls.
15857
15858         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
15859
15860         * object-internals.h (MonoReflectionAssembly): Sync object layout with
15861         managed side.
15862
15863         * appdomain.c: Bump corlib version.
15864
15865         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
15866         internal assemblies. Fixes #69181.
15867
15868 2004-12-05  Martin Baulig  <martin@ximian.com>
15869
15870         * class.c (mono_class_inflate_generic_signature): Make this a
15871         no-op if `context' is NULL or we don't have any type parameters;
15872         also copy `sentinelpos'.        
15873
15874 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
15875
15876         * image.c: Add unbox_wrapper_cache.
15877
15878         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
15879
15880         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
15881         function generator.
15882         
15883         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
15884         Fixes #70173.
15885
15886         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
15887         
15888 2004-12-04  Martin Baulig  <martin@ximian.com>
15889
15890         * loader.c (mono_method_get_signature_full): New public function;
15891         like mono_method_get_signature(), but with an additional
15892         `MonoGenericContext *' argument.
15893
15894         * class.c (mono_class_inflate_generic_signature): Formerly known
15895         as inflate_generic_signature(); make this public.
15896
15897 2004-12-04  Martin Baulig  <martin@ximian.com>
15898
15899         * metadata.c
15900         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
15901         instead of a `MonoGenericContainer *'.  
15902         (mono_metadata_parse_array_full): Likewise.
15903         (mono_metadata_parse_signature_full): Likewise.
15904         (mono_metadata_parse_method_signature_full): Likewise.
15905         (mono_metadata_parse_generic_inst): Likewise.
15906         (mono_metadata_parse_generic_param): Likewise.
15907         (mono_metadata_parse_mh_full): Likewise.
15908         (mono_type_create_from_typespec_full): Likewise.
15909
15910 2004-12-03  Martin Baulig  <martin@ximian.com>
15911
15912         * class-internals.h (MonoGenericContainer): Replaced the
15913         `MonoGenericContext * pointer with a `MonoGenericContext'
15914         structure and made it the first element.
15915
15916 2004-12-03  Martin Baulig  <martin@ximian.com>
15917
15918         * class.c
15919         (inflate_generic_type): Set the `context->container' when creating
15920         a new MonoGenericContext.
15921         (mono_class_inflate_generic_method): Likewise.
15922         (mono_class_create_from_typespec): Just use `context->container'
15923         to get the container.
15924
15925         * loader.c (method_from_methodspec): Set `context->parent' from
15926         `context->container' - and if that's a method container, use its
15927         parent.  Also set the `context->container' when creating a new
15928         MonoGenericContext.
15929         (mono_get_method_from_token): Use just `context->container' to get
15930         the container.
15931
15932         * metadata.c (do_mono_metadata_parse_generic_class): Also set
15933         `gclass->context->container'.
15934
15935         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
15936         the `context->container' when creating a new MonoGenericContext.
15937
15938 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
15939
15940         * reflection.c (compare_genericparam): Sort params with identical
15941         owner by their number. Fixes gen-111 on sparc.
15942
15943 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
15944
15945         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
15946         around the domain changes.
15947
15948         * appdomain.c (mono_domain_unload): Handle the case when the thread
15949         calling Unload is itself being aborted during unloading. Fixes #70022.
15950
15951         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
15952
15953         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
15954         checkpoint_func as an icall so it gets a wrapper.
15955         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
15956         in the cross-appdomain wrappers too.
15957
15958         * threads.c (mono_thread_has_appdomain_ref): Make this public.
15959
15960         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
15961
15962         * reflection.c: Fix some memory leaks.
15963         
15964 2004-12-02  Martin Baulig  <martin@ximian.com>
15965
15966         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
15967
15968         * metadata.c (generic_class_cache): New static hashtable.
15969         (mono_metadata_lookup_generic_class): New public method.
15970
15971 2004-12-02  Martin Baulig  <martin@ximian.com>
15972
15973         * class.c (mono_class_create_from_typedef): Call
15974         mono_class_setup_parent() and mono_class_create_mono_type() before
15975         parsing the interfaces.
15976
15977 2004-12-02  Martin Baulig  <martin@ximian.com>
15978
15979         * metadata.c (generic_inst_cache): New static hashtable.
15980         (mono_metadata_lookup_generic_inst): New public function.
15981         (mono_metadata_inflate_generic_inst): New public function.
15982         (mono_metadata_parse_generic_inst): New public function.
15983         (do_mono_metadata_parse_generic_class): Use the new
15984         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
15985         since this'll also use the cache.
15986
15987         * reflection.c (mono_reflection_bind_generic_method_parameters):
15988         Use mono_metadata_lookup_generic_inst() to use the new cache.
15989
15990         * class.c (inflate_mono_type): Use
15991         mono_metadata_inflate_generic_inst() to inflate a generic
15992         instance; this'll also use the new cache.
15993
15994         * loader.c (method_from_methodspec): Use
15995         mono_metadata_parse_generic_inst() and
15996         mono_metadata_inflate_generic_inst() rather than parsing it
15997         manually, so we can use the new cache.
15998
15999 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
16000
16001         * threads.c (wait_for_tids): Do not incorrectly free threads when 
16002         the wait times out.
16003
16004 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
16005
16006         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
16007         iter->args based on whether parameters are passed in registers (i.e.
16008         MONO_ARCH_REGPARMS is defined)
16009
16010 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
16011
16012         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
16013         the exception message. Fixes #70070.
16014         (method_from_methodspec): Fix warnings.
16015
16016 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16017
16018         * process.c: (complete_path) return the path quoted
16019
16020 2004-12-01  Martin Baulig  <martin@ximian.com>
16021
16022         * class-internals.h (MonoGenericInst): New structure.
16023         (MonoGenericClass): Replaced `type_argc', `type_argv' and
16024         `is_open' with `MonoGenericInst *inst'.
16025         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
16026         `is_open' with `MonoGenericInst *inst'.
16027
16028 2004-11-30  Martin Baulig  <martin@ximian.com>
16029
16030         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
16031
16032         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
16033         to `generic_class_cache'.
16034
16035         * metadata.c
16036         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
16037         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
16038         (mono_generic_inst_is_valuetype): Renamed to
16039         mono_generic_class_is_valuetype().
16040
16041         * class-internals.h
16042         (MonoGenericInst): Renamed to MonoGenericClass.
16043         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
16044         (MonoClass): Renamed `generic_inst' to `generic_class'.
16045         (MonoGenericContext): Renamed `ginst' to `gclass'.
16046
16047         * object-internals.h
16048         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
16049
16050         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
16051         mono_reflection_generic_class_initialize().
16052
16053         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
16054         now known as "System.Reflection.MonoGenericClass".
16055         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
16056
16057 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
16058
16059         * class-internals.h: Added a flag field to MonoClass to cache the
16060         declarative security attributes actions associated with the class.
16061         * domain-internals.h: Added booleans to MonoJitInfo to cache the
16062         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
16063         applicable to the JITted method.
16064         * reflection.c|h: Added functions to extract (as flags) which security
16065         actions are available (declaratively) for a method, class or assembly.
16066         * metadata.c|h: Added functions to search the declarative security
16067         table in the metadata.
16068         
16069 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
16070
16071         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
16072         EXPORTEDTYPES are already in the class name cache, so there is no
16073         need to add extra code here to look at them. Just removes a bit of
16074         cruft.
16075
16076         (ves_icall_System_Environment_get_TickCount): No need for #if
16077         WINDOWS. We already have the code in io-layer.
16078
16079 2004-11-28  Martin Baulig  <martin@ximian.com>
16080
16081         * loader.c
16082         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
16083         Fixes gen-112.cs.
16084
16085 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
16086
16087         * assembly.c (do_mono_assembly_open): Instead of having a
16088         conditional WITH_BUNDLE, incorporate support for bundles here, by
16089         having a global `bundles' variable holding a pointer to the actual
16090         bundles. 
16091
16092         (mono_register_bundled_assemblies): New API call used by the
16093         bundle code. 
16094
16095         See mkbundle.1 for details.
16096         
16097 2004-11-27  Martin Baulig  <martin@ximian.com>
16098
16099         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
16100         the vtable for generic methods.
16101
16102 2004-11-26  Martin Baulig  <martin@ximian.com>
16103
16104         * metadata.c
16105         (mono_metadata_generic_method_hash): New public function.
16106         (mono_metadata_generic_method_equal): Likewise.
16107
16108         * class-internals.h
16109         (MonoGenericContainer): Added `GHashTable *method_hash'.
16110
16111         * reflection.c (ReflectionMethodBuilder): Added
16112         `MonoGenericContainer *generic_container'.
16113         (reflection_methodbuilder_to_mono_method): Don't create a new
16114         MonoGenericContainer each time we're called.
16115         (mono_reflection_bind_generic_method_parameters): Use
16116         `container->method_hash' to cache the results so we don't create a
16117         different method if we're called several times with the same
16118         arguments.
16119
16120         * loader.c (method_from_methodspec): Use the new
16121         `container->method_hash' here, too.
16122
16123 2004-11-26  Martin Baulig  <martin@ximian.com>
16124
16125         * class.c (inflate_generic_signature): Correctly compute
16126         `res->has_type_parameters'.
16127         (mono_class_vtable): Use the `has_type_parameters' flag to
16128         determine whether we're a generic method.
16129
16130         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
16131
16132 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
16133
16134         * object.c (mono_runtime_run_main): Fix a small memory leak.
16135
16136 2004-11-25  Martin Baulig  <martin@ximian.com>
16137
16138         * class.c (set_generic_param_owner): Fixed the loop.
16139
16140 2004-11-25  Martin Baulig  <martin@ximian.com>
16141
16142         * object.c (mono_class_vtable): Don't create any JIT wrappers for
16143         generic methods.
16144
16145 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
16146
16147         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
16148         names. Fixes #69787.
16149
16150 2004-11-24  Martin Baulig  <martin@ximian.com>
16151
16152         * class.c (mono_class_create_generic_2): If we don't have a
16153         `ginst->parent', inflate `gklass->parent' to get our parent.
16154
16155 2004-11-24  Martin Baulig  <martin@ximian.com>
16156
16157         * reflection.c (compare_genericparam): Correctly sort the
16158         GenericParam table; fixes #69779.
16159
16160 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
16161
16162         * reflection.c: When writing a PE file, don't create a huge
16163         buffer in memory. Just write the arrays we have to the file.
16164         This reduces memory usage.
16165
16166         * metadata-internals.h: MonoDynamicStream pefile is no longer used
16167         globally.
16168
16169 2004-11-17  Martin Baulig  <martin@ximian.com>
16170
16171         * class.c (mono_class_init): Don't setup `class->parent' for
16172         dynamic instances; moved this to mono_class_generic_2().
16173         (mono_class_create_generic): Also set `klass->inited' for dynamic
16174         generic instances.
16175         (mono_class_create_generic_2): Don't do anything for dynamic
16176         generic instances.  Set `klass->parent' here and also call
16177         mono_class_setup_parent() here. 
16178
16179         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
16180         `MonoType *parent' argument; set `ginst->parent' before calling
16181         mono_class_create_generic_2(), so we set the correct parent.
16182
16183 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
16184
16185         * reflection.c: allow getting attributes from ModuleBuilder
16186         (used by ikvm).
16187
16188 2004-11-17  Martin Baulig  <martin@ximian.com>
16189
16190         * class.c (mono_class_create_from_typedef): If a type parameter is
16191         inherited from an outer class, set its owner to that class.
16192
16193 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
16194
16195         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
16196           for (int*) written size. This fixes bug #69592.
16197
16198 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
16199
16200         * icall.c: Added IsAuthenticodePresnet internal call.
16201         * image.c|h: New function that check a MonoImage for an Authenticode
16202         signature in the certificate PE data directory.
16203         * security.c|h: New internal call to ask the runtime if an 
16204         Authenticode signature seems referenced in the PE header.
16205
16206 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
16207
16208         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
16209
16210         * reflection.c (mono_image_create_pefile): Free the assembly streams
16211         after writing out the assembly file.
16212
16213         * object.c (mono_runtime_run_main): Fix small memory leak.
16214
16215         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
16216         property access modifiers. Fixes #69389.
16217
16218 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
16219
16220         * domain.c, object.c, object-internals.h, domain-internals.h,
16221         object.h, marshal.c: keep dynamic code info per domain.
16222
16223 2004-11-15  Martin Baulig  <martin@ximian.com>
16224
16225         * class.c (mono_type_get_name_recurse): Put type arguments in
16226         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
16227         see bug #68387.
16228
16229 2004-11-15  Martin Baulig  <martin@ximian.com>
16230
16231         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
16232         (mono_class_setup_vtable): When computing `the_cname' for a
16233         generic instance, don't include the namespace since we'd otherwise
16234         add it twice.
16235
16236 2004-11-15  Martin Baulig  <martin@ximian.com>
16237
16238         * class.c (mono_class_create_generic): Changed return type to void.
16239         (mono_class_create_generic_2): New public function; setup
16240         `class->method', `class->field' and `class->interfaces' here
16241         instead of in mono_class_init().
16242
16243         * class.h (mono_class_create_generic): Moved to class-internals.h.
16244
16245 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
16246
16247         * reflection.c (mono_image_create_pefile): take a file HANDLE.
16248         rather than writing to memory, write to this file. Right now,
16249         we are just writting into a buffer, and copying that. However
16250         we can avoid the buffer later.
16251
16252         (mono_dynamic_stream_reset): new function
16253
16254         * icall.c, object-internals.h: update for the above.
16255
16256 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
16257
16258         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
16259         have been using gc'd memory. First it is slower, unlikely
16260         the comment in the source code said, secondly, it increases
16261         our footprint to do it in the gc.
16262
16263         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
16264         the method so that it does not have to copy to managed code.
16265
16266 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
16267
16268         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
16269
16270 2004-11-12  Martin Baulig  <martin@localhost>
16271
16272         * reflection.c (mono_image_create_token): Allow generic method
16273         definitions here, since they may appear in an `.override'; see
16274         gen-98/gen-99 for an example.
16275
16276 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
16277
16278         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
16279         #69365.
16280
16281         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
16282         descriptive.
16283
16284 2004-11-11  Martin Baulig  <martin@ximian.com>
16285
16286         * class.c (mono_class_setup_vtable): In an explicit interface
16287         implementation, the method name now includes the arity.
16288
16289 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
16290
16291         * object.c (mono_array_full_copy): Fix warning.
16292
16293 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
16294
16295         * appdomain.c: Removed look_for_method_by_name(). Use the new method
16296         mono_class_get_method_from_name() instead.
16297         
16298         * class-internals.h: Added two new types of wrappers. 
16299         Added MonoRemotingTarget enum. Added new trampoline function type, which
16300         takes an additional MonoRemotingTarget value as parameter, so it is
16301         possible to request a trampoline for a specific target.
16302         
16303         * class.c: Added new mono_class_get_method_from_name() method.
16304         
16305         * class.h: In MonoRemoteClass, we can have now to vtables, one for
16306         general remoting sinks and one specific for cross domain calls.
16307         
16308         * debug-helpers.c: Added new wrapper names.
16309         
16310         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
16311         of a remote class.
16312         
16313         * image.c: Porperly delete value objects form the remoting invoke hashtable.
16314         
16315         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
16316         with several other methods (mono_marshal_get_xappdomain_dispatch,
16317         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
16318         and others) can generate a fast remoting wrapper for cross domain calls.
16319         More information can be found in docs/remoting.
16320         Other changes: Removed mono_find_method_by_name, and used
16321         mono_class_get_method_from_name instead.
16322         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
16323         is stored in the remoting invoke hashtable.
16324         
16325         * marshal.h: published the new method for getting the xdomain wrapper,
16326         and also added a method for getting the adequate wrapper for a given
16327         method and target.
16328         
16329         * object-internals.h, object.c: Added a couple of methods for capying and
16330         cloning arrays.
16331         Modified mono_install_remoting_trampoline, which takes the new remoting
16332         trampoline that has a remoting target as parameter.
16333         mono_class_proxy_vtable now also takes a remoting target as parameter, and
16334         will return the most suitable vtable for the target.
16335         Added mono_remote_class_vtable, which returns the vtable of a remote class
16336         (which can be the normal remoting vtable or the xdomain vtable).
16337         
16338         * threads.c: the xdomain invoke and dispatch wrappers must also be
16339         protected against interruptions.
16340
16341 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16342
16343         * icall.c: use memmove in BlockCopyInternal when the source and
16344         destination arrays are the same.
16345
16346 2004-11-09  Martin Baulig  <martin@ximian.com>
16347
16348         * class-internals.h (MonoGenericContainer): Removed `method' and
16349         `signature', replaced them with `is_method' and `is_signature'
16350         flags.  Added `context'.
16351
16352         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
16353         instead of a `MonoGenericContainer *'.
16354
16355         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
16356         for dynamic type parameters.
16357         (mono_metadata_load_generic_params): Setup `container->context'.
16358
16359         * reflection.c (mono_reflection_setup_generic_class): Setup
16360         `tb->generic_container->context'.
16361         (do_mono_reflection_bind_generic_parameters): Use
16362         mono_class_inflate_generic_type() to correctly inflate types,
16363         rather than using our own hack just for MONO_TYPE_VAR.
16364
16365 2004-11-09  Martin Baulig  <martin@ximian.com>
16366
16367         * class.c (mono_class_inflate_generic_method): Small fix; don't
16368         crash here.
16369
16370         * icall.c
16371         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
16372         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
16373         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
16374         (ves_icall_Type_BindGenericParameters): Likewise.
16375         (ves_icall_Type_get_IsGenericInstance): Likewise.
16376         (ves_icall_Type_GetGenericParameterPosition): Likewise.
16377         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
16378         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
16379         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
16380
16381 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
16382
16383         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
16384         assembly versions and public key tokens. Fixes #69113.
16385
16386 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
16387
16388         * metadata.c: fix bug introduced with the type cache changes
16389         on 2004-11-06.
16390
16391 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
16392
16393         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
16394         the MonoClass pointer instead of the token in exception clauses.
16395         * reflection.c: updates for the above and make the code not depend
16396         on the structure of MonoExceptionClause.
16397
16398 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
16399
16400         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
16401         Add support for dynamic assemblies. Fixes #69114.
16402
16403         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
16404
16405 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
16406
16407         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
16408         since most only those methods use it. the code member of
16409         MonoMethodPInvoke was dead, so that can be removed too. Also,
16410         remove inline_count (again, not used), and move slot so that it
16411         can share bits with some other flags. This saves 8 bytes in the
16412         structure and gives us about 50 kb back for mcs helloworld.cs
16413
16414         * *.[ch]: Do naming changes for the above.
16415
16416         * loader.c (mono_method_get_header): Lazily init the header
16417         on first access.
16418         (mono_get_method_from_token): don't init the header here
16419         (mono_free_method): the header may never be allocated
16420
16421         Overall, this saves 150 kb of unmanaged allocations
16422         for mcs helloworld.cs. That accounts for 10% of the unmanaged
16423         memory at runtime.
16424         
16425         * loader.c, loader.h (mono_method_get_header): new accessor.
16426
16427         * *.[ch]: use the above method. Prepares us to lazily load
16428         the header.
16429
16430         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
16431         three warnings, which are actual bugs (see 69206).
16432
16433         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
16434         unused. Saves a cool 4 bytes / method.
16435
16436 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
16437
16438         * metadata.c (builtin_types): Add types for System.Object here.
16439         (mono_metadata_parse_type_full): Cache MonoType*'s that are
16440         for a class or valuetype from klass->this_arg or klass->byval_arg.
16441
16442         On mcs for a hello world, this gets us down from 21836 MonoType's
16443         to 14560.
16444
16445         (mono_metadata_free_type): Account for the above change.
16446
16447 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
16448
16449         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
16450         exception instead of asserting if name is null.
16451         (ves_icall_System_AppDomain_GetData): Ditto.
16452
16453 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
16454
16455         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
16456         EnumBuilder.
16457
16458         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
16459         Return NULL when the domain does not have entry_assembly set.
16460
16461         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
16462         Add a 'resource_modules' argument.
16463         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
16464
16465         * reflection.c (mono_reflection_create_runtime_class): Move setting
16466         of wastypebuilder here, so mono_get_type_object () returns a MonoType
16467         for enums too.
16468
16469         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
16470         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
16471         Throw an ArgumentNullException if 'ptr' is null.
16472
16473         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
16474         assemblies here. Fixes #69020.
16475
16476 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
16477
16478         * reflection.c (build_compressed_metadata): Fix the previous patch for
16479         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
16480         the stack.
16481
16482 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
16483
16484         * assembly.c (mono_assembly_names_equal): Allow a match if one of
16485         the cultures is false. Fixes #69090.
16486
16487         * reflection.c (build_compressed_metadata): Fix invalid memory read 
16488         detected by valgrind.
16489         
16490         * reflection.c (mono_reflection_get_type): Avoid triggering a 
16491         TypeResolve multiple times for the same type. Fixes #65577.
16492
16493 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
16494
16495         * marshal.c: Avoid using ldftn to call managed functions. It is
16496         much slower than just a call.
16497
16498         * reflection.c (mono_module_get_object): free the basename we
16499         allocate here from glib.
16500         
16501         * reflection.c (ensure_runtime_vtable): make sure to free
16502         overrides.  Also, we were allocating an array of MonoMethod not an
16503         array of MonoMethod*.
16504
16505         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
16506
16507         * image.c (mono_image_close): free image->guid here.
16508
16509 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
16510
16511         * reflection.c: Fix some spec conformance issues with the PE file
16512         structures so mcs compiled apps run on the Net 2.0 beta.
16513
16514 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
16515
16516         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
16517         Implement this. Fixes #67264.
16518
16519         * debug-helpers.h debug-helpers.c marshal.c: Move 
16520         mono_find_method_by_name to debug-helpers.c.
16521
16522 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
16523
16524         * object.c (mono_release_type_locks): type_initialization_hash is
16525         a GHashTable.
16526
16527         * reflection.c object.c object-internals.h: Fix warnings.
16528
16529         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
16530         without accessors. Fixes #61561.
16531
16532         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
16533         application base from the root domain if not set. Fixes #65641.
16534         (mono_runtime_init): Fix warning.
16535
16536 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16537
16538         * appdomain.c: call mono_thread_pool_init.
16539         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
16540         of worker threads based on the number of CPUs and the environment
16541         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
16542         for non-windows (windows) systems.
16543
16544 2004-10-27  Chris Toshok  <toshok@ximian.com>
16545
16546         * mono-debug-debugger.c (write_class): don't call mono_class_init
16547         here, as even with the check for (!klass->init_pending), we get
16548         into a situation where we're hitting cycles in class
16549         initialization.  Fixes #68816.
16550
16551 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
16552
16553         * image.c: Avoid overwriting values in the loaded_images_hash when an
16554         assembly is loaded multiple times. Fixes #61152.
16555
16556         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
16557         so multiple satellite assemblies for the same name can be loaded.
16558         Fixes #68259.
16559
16560         * mono_domain_assembly_preload: Actually return the loaded assembly, 
16561         not NULL.
16562
16563         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
16564         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
16565
16566         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
16567         pending finalizers are not invoked after the appdomain has been 
16568         unloaded. Fixes #67862.
16569
16570 2004-10-22  Martin Baulig  <martin@ximian.com>
16571
16572         * mono-debug-debugger.c
16573         (mono_debugger_runtime_invoke): Don't box valuetypes.
16574
16575 2004-10-22  Chris Toshok  <toshok@ximian.com>
16576
16577         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
16578         don't hide private methods.
16579
16580 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
16581
16582         * icall.c: Allows the runtime to "share" (when known) the public key
16583         token of an assembly. This avoid the need to recalculate the token 
16584         (from the public key) in managed code.
16585
16586 2004-10-21  Chris Toshok  <toshok@ximian.com>
16587
16588         * debug-helpers.c (append_class_name): argh, revert last patch.
16589         
16590 2004-10-21  Chris Toshok  <toshok@ximian.com>
16591
16592         * debug-helpers.c (append_class_name): use '+' as the delimiter,
16593         not '/', so that it matches what the debugger uses to look up
16594         methods.
16595
16596 2004-10-21  Martin Baulig  <martin@ximian.com>
16597
16598         * mono-debug-debugger.c (mono_debugger_throw_exception): New
16599         public method; this is called each time an exception is thrown and
16600         allows the debugger to use exception catch points.
16601
16602 2004-10-21  Martin Baulig  <martin@ximian.com>
16603
16604         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
16605         the stack pointer and the exception object in some struct and pass
16606         that to the debugger.
16607
16608 2004-10-21  Chris Toshok  <toshok@ximian.com>
16609
16610         * mono-debug-debugger.c (do_write_class): add instance/static
16611         event support.  We don't expose "raise" or "other" yet.
16612         (event_is_static): new method.
16613
16614 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
16615
16616         * mono-debug-debugger.c
16617         (mono_debugger_handle_exception): Remove
16618         bogus return value for fussy compilers.
16619
16620 2004-10-20  Martin Baulig  <martin@ximian.com>
16621
16622         * mono-debug-debugger.c
16623         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
16624         (mono_debugger_handled_exception): Likewise.
16625
16626 2004-10-20  Martin Baulig  <martin@ximian.com>
16627
16628         * mono-debug-debugger.h (MonoDebuggerEvent): Added
16629         MONO_DEBUGGER_EVENT_EXCEPTION.
16630
16631         * mono-debug-debugger.c (mono_debugger_handle_exception): New
16632         public function to send the debugger a notification for an
16633         exception and inform it about a catch/finally clause.
16634
16635 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
16636
16637         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
16638         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
16639         fix 2.95 build. 
16640
16641         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
16642
16643 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
16644
16645         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
16646         marshalled as [In,Out]. Fixes #58325.
16647
16648 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
16649
16650         * reflection.c (mono_method_body_get_object): Implement some fields.
16651
16652 2004-10-12  Martin Baulig  <martin@ximian.com>
16653
16654         * reflection.c (mono_reflection_bind_generic_parameters): Small
16655         fix, correctly retrieve our parent from a generic instance.
16656
16657 2004-10-12  Martin Baulig  <martin@ximian.com>
16658
16659         * metadata.c (mono_metadata_generic_param_equal): We always have
16660         an owner.
16661
16662         * class.c
16663         (mono_class_from_generic_parameter): We need to have an owner.
16664         (my_mono_class_from_generic_parameter): Likewise.
16665
16666         * reflection.c (mono_reflection_setup_generic_class): Renamed to
16667         mono_reflection_create_generic_class() and added a new
16668         mono_reflection_setup_generic_class().  
16669         (mono_reflection_initialize_generic_param): If we're a nested
16670         generic type and inherited from the containing class, set our
16671         owner to the outer class.
16672
16673 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
16674
16675         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
16676
16677         * reflection.c (mono_method_body_get_object): New function to create
16678         a MethodBody object.
16679
16680         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
16681
16682 2004-10-11  Martin Baulig  <martin@ximian.com>
16683
16684         * metadata.c (_mono_metadata_type_equal): Renamed to
16685         do_mono_metadata_type_equal() and made static.
16686
16687 2004-10-11  Martin Baulig  <martin@ximian.com>
16688
16689         * appdomain.c: Bump corlib version number to 28.
16690
16691 2004-10-10  Martin Baulig  <martin@ximian.com>
16692
16693         * class-internals.h
16694         (MonoGenericInst): Added `MonoGenericContainer *container'.
16695         (MonoGenericMethod): Likewise.
16696         (MonoGenericContext): Likewise.
16697         (MonoGenericParam): Added `MonoGenericContainer *owner'.
16698
16699         * metadata.c
16700         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
16701         (do_mono_metadata_parse_generic_inst): Likewise.
16702         (mono_metadata_parse_type_full): New public method.  This is the actual
16703         mono_metadata_parse_type() implementation - with an additional
16704         `MonoGenericContainer *' argument.
16705         (mono_metadata_parse_array_full): Likewise.
16706         (mono_metadata_parse_signature_full): Likewise.
16707         (mono_metadata_parse_method_signature_full): Likewise.
16708         (mono_metadata_parse_mh_full): Likewise.
16709         (mono_type_create_from_typespec): Likewise.
16710         (mono_metadata_interfaces_from_typedef_full): New public method;
16711         this is similar to the other _full() methods, but we take a
16712         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
16713         (mono_metadata_parse_generic_param): Take an additional
16714         `MonoGenericContainer *' argument and lookup the MonoGenericParam
16715         from that container.
16716         (mono_metadata_generic_param_equal): New static method to compare
16717         two type parameters.
16718         (_mono_metadata_type_equal): New static method; takes an
16719         additional `gboolean signature_only' argument - if true, we don't
16720         compare the owners of generic parameters.
16721         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
16722         with a TRUE argument - do a signature-only comparision.
16723
16724         * loader.c: Use the new _full() methods and pass the
16725         MonoGenericContainer to them.
16726
16727         * object-internals.h (MonoReflectionTypeBuilder): Added
16728         `MonoGenericContainer *generic_container' field.
16729         (MonoReflectionMethodBuilder): Likewise.
16730
16731 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
16732
16733         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
16734         case initial images of dynamic assemblies.
16735
16736         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
16737
16738         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
16739
16740         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
16741         length of event->other array.
16742         (typebuilder_setup_events): Ditto.
16743
16744         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
16745         'assembly_by_name' and add an 'assemblies' list.
16746
16747         * assembly.h assembly.c: Add a new search hook for determining whenever
16748         an assembly is already loaded. Use this instead of searching in the
16749         loaded_assemblies list.
16750
16751         * domain.c appdomain.c: Implement the new search hook so loaded 
16752         assemblies are now scoped by appdomain. Fixes #67727.
16753
16754 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
16755
16756         * threads.c (mono_thread_attach): Initialize synch_lock field so
16757         mono_thread_detach works again.
16758
16759         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
16760         'lib' too. Fixes #63130.
16761
16762 2004-10-06  Jackson Harper  <jackson@ximian.com>
16763
16764         * culture-info-tables.h: regenerated.
16765
16766 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
16767
16768         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
16769         implemented by other interfaces in the result. Fixes #65764.
16770         
16771         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
16772         Handle unloadable modules without crashing.
16773
16774         * image.c (load_modules): Revert the previous patch since modules must
16775         have a fixed index inside the array.
16776         
16777         * image.c (load_modules): Don't include native modules in the modules
16778         array.
16779
16780 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
16781
16782         * reflection.h: Add param_defaults field.
16783
16784         * reflection.c: Add support for parameter defaults in dynamic methods.
16785         Fixes #64595.
16786
16787         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
16788         an empty string when a type has no namespace. Fixes #64230.
16789
16790 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
16791
16792         * tabledefs.h: Added "internal" security actions to support non-CAS
16793         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
16794         Note: they do not seems to be used anymore in 2.0 (new metadata format)
16795
16796 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
16797
16798         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
16799         constructor of abstract class. Fixes #61689.
16800
16801 2004-10-04  Martin Baulig  <martin@ximian.com>
16802
16803         * class-internals.h (MonoGenericContainer): New type.
16804         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
16805         `MonoGenericContainer *generic_container'.
16806         (MonoClass): Replaced `gen_params' and `num_gen_params' with
16807         `MonoGenericContainer *generic_container'.
16808
16809         * metadata.c (mono_metadata_load_generic_params): Return a
16810         `MonoGenericContainer *' instead of a `MonoGenericParam *';
16811         removed the `num' argument.
16812
16813 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
16814
16815         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
16816         for dynamic images.
16817
16818         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
16819         machine fields.
16820
16821         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
16822
16823         * reflection.c: Save pe_kind and machine values into the generated
16824         image file.
16825
16826         * appdomain.c: Bump corlib version number.
16827
16828         * object-internals.h: Reorganize layout of LocalBuilder.
16829
16830         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
16831         New helper function.
16832
16833         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
16834         created MonoType for dynamic types. Fixes #66180.
16835
16836 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
16837
16838         * threadpool.c: the ares hashtable needs a critical section around it.
16839         this prevents some nasty segfaults
16840
16841 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
16842
16843         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
16844         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
16845         bug 67324).
16846         
16847 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
16848
16849         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
16850         
16851 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
16852
16853         * image.c: Always canonicalize image file names, to avoid loading
16854         the same assembly twice when referenced using a relative path.
16855
16856 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
16857
16858         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
16859
16860         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
16861
16862         * marshal.c: Fix warnings.
16863
16864 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
16865
16866         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
16867         attempting to marshal the delegate_trampoline as the method_addr.
16868         This patch has a static hashtable of marshalled delegates so that 
16869         we can map delegate_trampoline addresses back to delegates.  This
16870         allows a delegate passed to managed code to be passed back into native
16871         code.  Fixes #67039
16872
16873 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
16874
16875         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
16876
16877         * reflection.c (method_encode_code): Align method headers properly.
16878         Fixes #66025.
16879
16880 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
16881
16882         * marshal.c: In the runtime invoke wrapper, reset the abort
16883         exception if it is cached. This avoids the automatic rethrowal of 
16884         the exception after the catch of the wrapper. Also check for pending
16885         interruptions before calling the managed method. This is done using
16886         the new method emit_thread_force_interrupt_checkpoint, since the
16887         normal checkpoint method is ignored when running the invoke wrapper.
16888         * object.c: If the abort exception is rethrown, set the abort_exc
16889         field of the thread, so it will be rethrown aftere every catch.
16890         * threadpool.c: Only run an interruption checkpoint if what has been
16891         requested is a stop of the thread (aborts will be ignored).
16892         * threads.c: By default, a thread will now never be interrumped while
16893         running the runtime invoke wrapper (this ensures that runtime_invoke
16894         will always return to the caller if an exception pointer is provided).
16895         There is a new special method mono_thread_force_interruption_checkpoint()
16896         to force an interruption checkpoint even if running a protected
16897         wrapper, which is used by the same runtime invoke wrapper to do a check
16898         at a safe point.
16899
16900 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
16901
16902         * object.c, object-internals.h: Implemented mono_release_type_locks,
16903         which releases the cctor locks held by a thread.
16904         * threads.c, threads.h: In thread_cleanup, release cctor locks held
16905         by a thread. Added mono_thread_exit() method to be used to safely stop
16906         a thread.
16907
16908 2004-09-28  Raja R Harinath  <rharinath@novell.com>
16909
16910         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
16911         Move null check before dereference.  Avoid indexing beyond the end
16912         of the 'modules' array.
16913
16914 2004-09-28  Raja R Harinath  <rharinath@novell.com>
16915
16916         * metadata-internals.h (MonoImage): Add module_count field.
16917         * image.c (load_modules): Set image->module_count.
16918         (mono_image_load_file_for_image): Use image->module_count.
16919         * reflection.c (mono_image_load_module): Append to image->modules array 
16920         of dynamic assembly.
16921         (mono_module_get_object): Fix loop to actually increment index.
16922         Use image->module_count.
16923         * assembly.c (mono_assembly_load_references): Use image->module_count.
16924         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
16925         Likewise.
16926
16927 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
16928
16929         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
16930         Avoid assert on generic types.
16931
16932 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
16933
16934         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
16935
16936         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
16937
16938         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
16939         function to convert a MarshalSpec structure to its managed counterpart.
16940
16941         * reflection.c: Fix warnings.
16942         
16943         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
16944         field.
16945
16946         * icall.c (mono_create_icall_signature): Fix build.
16947
16948 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
16949
16950         * icall.c: Add MakePointType icall.
16951
16952         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
16953         warnings.
16954
16955 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16956
16957         * threadpool.c: reuse allocated slots in the queue.
16958
16959 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
16960
16961         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
16962
16963         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
16964
16965         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
16966         previous change.
16967
16968         * tabledefs.h: Add constants for pinvoke attributes BestFit and
16969         ThrowOnUnmappableChar.
16970
16971         * icall.c (ves_icall_Type_GetPacking): New icall.
16972
16973 2004-09-24  Martin Baulig  <martin@ximian.com>
16974
16975         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
16976
16977 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16978
16979         * appdomain.c:
16980         (mono_domain_set): allow setting a domain that is being unloaded.
16981         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
16982         being unloaded.
16983
16984 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
16985
16986         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
16987         the GetCustomAttributes icall.
16988
16989 2004-09-23  Martin Baulig  <martin@ximian.com>
16990
16991         * object-internals.h (MonoReflectionGenericParam): Replaced
16992         'has_ctor_constraint', `has_reference_type' and `has_value_type'
16993         with `guint32 attrs'.
16994
16995 2004-09-23  Martin Baulig  <martin@ximian.com>
16996
16997         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
16998
16999 2004-09-23  Martin Baulig  <martin@ximian.com>
17000
17001         * object-internals.h (GenericParameterAttributes): New enum.
17002
17003 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
17004
17005         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
17006         
17007         * class.c (init_events): Fill out event->other field.
17008
17009         * class.c: Fix warnings.
17010
17011         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
17012
17013 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
17014
17015         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
17016         walk which doesn't supply the IL offset.
17017
17018 2004-09-22  Martin Baulig  <martin@ximian.com>
17019
17020         * reflection.c (mono_reflection_setup_internal_class): If we're
17021         System.ValueType, System.Object or System.Enum, set
17022         `klass->instance_size' and create the vtable.
17023         (mono_reflection_create_internal_class): If we're an enum type,
17024         get the base class from our current corlib.
17025
17026 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
17027
17028         * reflection.h (MonoResolveTokenError): New type.
17029
17030         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
17031         icall.
17032
17033         * icall.c: Add an 'error' argument to the ResolveToken icalls.
17034
17035 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
17036
17037         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
17038         Support also calling constructors, but only for already allocated objects.
17039
17040 2004-09-17  Geoff Norton <gnorton@customerdna.com>
17041
17042         * reflection.c (type_get_qualified_name): If the klass is null
17043         return the typename to avoid a NullRefEx.
17044         (encode_cattr_value): Get the qualified name of the boxed type,
17045         not the underlying enumtype.  Fixes #62984.
17046
17047 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
17048
17049         * marshal.c: Fix problems with previous checkin.
17050
17051 2004-09-21    <vargaz@freemail.hu>
17052
17053         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
17054         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
17055
17056         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
17057
17058 2004-09-21  Geoff Norton <gnorton@customerdna.com>
17059
17060         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
17061         should only return a type for pointers, arrays, and passbyref types.
17062         Fixes bug #63841.
17063
17064 2004-09-21  Martin Baulig  <martin@ximian.com>
17065
17066         * domain.c (mono_debugger_check_runtime_version): New public
17067         function.
17068
17069         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
17070
17071 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
17072
17073         * reflection.c: Added missing sort to the declarative security 
17074         attributes table. MS implementation stops seeing the attributes if the
17075         token number regress in the table (as shown by ildasm and permview).
17076
17077 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
17078
17079         * object-internals.h (MonoReflectionModule): Add 'token' field.
17080         
17081         * reflection.c (mono_reflection_get_token): Add support for Module
17082         and Assembly.
17083         (mono_module_get_object): Set 'token' field.
17084         (mono_module_file_get_object): Set 'token' field.
17085
17086         * icall.c: Add new Assembly and Module icalls.
17087
17088         * appdomain.c: Bump corlib version.
17089
17090 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
17091
17092         * loader.h loader.c class.h class.c: Add helper functions for obtaining
17093         tokens of metadata objects.
17094
17095         * reflection.h reflection.c (mono_reflection_get_token): New function
17096         to obtain the token of a metadata object.
17097
17098         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
17099
17100 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
17101
17102         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
17103         
17104         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
17105
17106 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
17107
17108         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
17109         * object-internals.h: Added 3 MonoArray* members to MonoReflection
17110         AssemblyBuilder to access the permissions set in the class lib.
17111         * reflection.c: Added security attributes encoding step in 
17112         mono_image_build_metadata.
17113         * tabledefs.h: Added new security actions defined in 2.0:
17114         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
17115
17116 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
17117
17118         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
17119         macro parameter.
17120
17121 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
17122  
17123         * locales.c: nullify the ICU_collator member of CompareInfo when it is
17124           finalized. There where random SIGSEVs at program termination, when
17125           an object being finalized was trying to do a string comparison and
17126           the current culture was already finalized.
17127  
17128 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17129
17130         * threads.c: call thread_cleanup before finishing the thread if we get
17131         there.
17132
17133 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
17134
17135         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
17136         assemblies from the parent. Fixes #65665.
17137
17138 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
17139
17140         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
17141         modifiers.
17142
17143 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
17144
17145         * reflection.h: add prototype for mono_get_dbnull_object
17146         * reflection.c: add prototypes for get_default_param_value_blobs 
17147         and mono_get_object_from_blob for fussier compilers
17148
17149 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
17150  
17151         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
17152         false deadlock checks in class initialization.
17153  
17154 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
17155
17156         * image.c (mono_image_addref): Fix comment.
17157
17158         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
17159         possible.
17160
17161 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
17162
17163         * reflection.c (mono_param_get_objects): Modified to return
17164         ParameterInfo.DefaultValue object.
17165
17166         (get_default_param_value_blobs):
17167         (mono_get_object_from_blob):
17168         (mono_get_dbnull_object): New helper routines. 
17169
17170         * object.c (mono_get_constant_value_from_blob): New helper routine
17171         carved out from get_default_field_value ()
17172
17173         * object-internals.h (mono_get_constant_value_from_blob): Added
17174         function declaration.
17175
17176 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
17177
17178         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
17179         referenced assemblies. Fixes #62135.
17180
17181         * exception.h exception.c (mono_get_exception_file_not_found2): New
17182         helper function.
17183
17184 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
17185
17186         * class.h class.c: Add mono_type_get_underlying_type ().
17187
17188 2004-09-09  Geoff Norton <gnorton@customerndna.com>
17189
17190         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
17191         Fix GetTypes() to support dynamically created assemblies.
17192
17193 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
17194
17195         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
17196         
17197         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
17198         previous patch.
17199
17200         * reflection.h reflection.c loader.c: Allow dynamic construction of
17201         pinvoke methods. Fixes #65571.
17202         
17203         * reflection.c (mono_reflection_get_type): Revert previous change since
17204         it causes regressions.
17205
17206 2004-09-08  Martin Baulig  <martin@ximian.com>
17207
17208         * class.c (class_compute_field_layout): Don't call
17209         mono_class_layout_fields() for open generic instances.
17210
17211 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
17212         * threads.c appdomain.c: fix typo in GC macro
17213
17214 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17215
17216         * threads.c: don't call mono_thread_detach() in start_wrapper(),
17217         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
17218
17219 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
17220
17221         * image.c (mono_image_close): Applied patch from 
17222         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
17223         assembly is loaded multiple times from data.
17224         
17225         * image.c (mono_image_open): Fix warning.
17226
17227 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17228
17229         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
17230         once. Fixes #58334.
17231         
17232         * reflection.c (mono_reflection_create_runtime_class): Initialize
17233         klass->nested_classes. Fixes #61224.
17234
17235 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
17236
17237         * threads.c: sched_yield() on exit, to allow threads to quit.
17238
17239 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17240
17241         * object.c (mono_unhandled_exception): Remove leftover debug code.
17242
17243 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
17244
17245         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
17246
17247 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17248
17249         * marshal.c (emit_marshal_array): Really null terminate string arrays.
17250         
17251         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
17252
17253 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17254
17255         * marshal.c (emit_marshal_array): Null terminate string arrays.
17256         
17257         * marshal.c (raise_auto_layout_exception): Fix warning.
17258
17259         * reflection.c (mono_param_get_objects): Initialize the default value
17260         with DBNull.Value, not null. Fixes #62123.
17261
17262 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
17263
17264         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
17265         throw an exception with a cute explanation.
17266
17267 2004-09-06  Dick Porter  <dick@ximian.com>
17268
17269         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
17270         Close the new process's thread handle, as we don't use it.  The
17271         handle stays around forever otherwise.
17272
17273 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17274
17275         * object.c (arith_overflow): Fix warning.
17276
17277         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
17278         calling conventions in method refs. Fixes #65352.
17279
17280         * reflection.c: Fix warnings.
17281
17282 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
17283
17284         * icall.c: Add a new icall for Array.Clear
17285
17286 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
17287
17288         * object.c: When allocating an array, we have to throw
17289         an overflow exception if any of the lengths are < 0.
17290
17291 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17292
17293         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
17294         properly. Also move implementation of string array marshalling to 
17295         managed code. Fixes #42316.
17296
17297 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17298
17299         * assembly.c: provide more information when loading an assembly fails.
17300
17301 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17302
17303         * filewatcher.c: don't expect the development fam package to be
17304         installed.
17305
17306 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
17307
17308         * marshal.c: Make a copy of the signature cookie since it will be
17309         freed by the caller.
17310         
17311         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
17312
17313         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
17314
17315         * metadata.c (mono_metadata_free_marshal_spec): New function to free
17316         marshal specs.
17317
17318         * marshal.c: More refactoring.
17319         
17320         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
17321         smaller functions.
17322
17323 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
17324
17325         * object.c: In mono_message_invoke, fill the output parameter array after
17326           calling the managed method (it was done before the call). This fixes
17327           bug #59299.
17328
17329 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
17330
17331         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
17332         as well.
17333
17334 2004-09-02  Martin Baulig  <martin@ximian.com>
17335
17336         * class.c (mono_class_instance_size): Don't allow generic type
17337         definitions or open generic instances.
17338         (mono_class_array_element_size): If we're a value type, call
17339         mono_class_instance_size() on the original class.
17340
17341         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
17342         handle generic instances.
17343
17344         * mono-debug-debugger.c (write_type): Handle generic instances
17345         like classes.
17346
17347 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
17348
17349         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
17350         the allocation request fails. Fixes #65089.
17351
17352         * object.c (mono_runtime_free_method): Do not call mono_free_method.
17353         
17354         * object.c (mono_runtime_free_method): New function to free a dynamic
17355         method.
17356
17357         * marshal.c (mono_delegate_free_ftnptr): New function to free the
17358         delegate trampoline.
17359
17360         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
17361         with hasthis as dynamic,
17362
17363         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
17364
17365         * domain.c (mono_jit_info_table_remove): New function to remove an
17366         entry from the jit info table.
17367
17368         * class-internals.h (MonoMethod): Add 'dynamic' field.
17369
17370         * loader.c: Fix warnings.
17371
17372 2004-09-01  Martin Baulig  <martin@ximian.com>
17373
17374         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
17375         instead of mono_debugger_lock() because the latter one is a no-op
17376         unless running in the debugger.
17377
17378 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
17379
17380         * class.c (class_compute_field_layout): Classes with auto-layout or
17381         reference fields are not blittable.
17382         
17383 2004-09-01  Dick Porter  <dick@ximian.com>
17384
17385         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
17386         mono_image_get_filename() to get the assembly location.
17387
17388         * icall.c:
17389         * metadata.h: Fix compile warnings
17390
17391 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
17392
17393         * class.c (class_compute_field_layout): System.Object is blittable.
17394
17395         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
17396         as in/out. Fixes #59909.
17397
17398 2004-09-01  Martin Baulig  <martin@ximian.com>
17399
17400         * metadata.h (MONO_TYPE_ISREFERENCE): Call
17401         mono_metadata_generic_inst_is_valuetype() if we're a generic
17402         instance to check whether our underlying type is a reference type.
17403
17404 2004-09-01  Martin Baulig  <martin@ximian.com>
17405
17406         * metadata.c (mono_type_size): If we're a generic instance, call
17407         mono_class_value_size() for value types.
17408
17409 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
17410
17411         * marshal.c: Implement more custom marshalling functionality. Fixes
17412         #64915.
17413
17414 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
17415
17416         * mono-debug.c, debug-mono-symfile.c: add some locking love.
17417
17418 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
17419
17420         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
17421
17422         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
17423
17424         * icall.c: Fix some warnings.
17425
17426         * threads.c (abort_appdomain_thread): Fix unref errors.
17427         (mono_thread_current): Fix THREAD_DEBUG define.
17428
17429 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
17430
17431         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
17432
17433         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
17434
17435 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
17436
17437         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
17438         string arrays.
17439
17440 2004-08-28  Martin Baulig  <martin@ximian.com>
17441
17442         * metadata.c
17443         (mono_metadata_generic_inst_is_valuetype): New public function.
17444
17445         * metadata.h (MONO_TYPE_ISSTRUCT): Call
17446         mono_metadata_generic_inst_is_valuetype() if we're a generic
17447         instance to check whether our underlying type is a valuetype.
17448
17449 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
17450
17451         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
17452         #63768.
17453
17454 2004-08-25  Martin Baulig  <martin@ximian.com>
17455
17456         * loader.c (mono_get_method_from_token): Abstract methods can also
17457         be generic and thus have type parameters.
17458
17459         * metadata-internals.h
17460         (MonoDynamicImage): Added `GPtrArray *gen_params'.
17461
17462         * reflection.c (mono_image_get_generic_param_info): Don't create a
17463         metadata row, just add an entry to the `gen_params' array.
17464         (build_compressed_metadata): Sort the `gen_params' array and then
17465         actually create the metadata.
17466
17467 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17468
17469         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
17470
17471 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
17472
17473         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
17474
17475 2004-08-24  Martin Baulig  <martin@ximian.com>
17476
17477         * class.cs (mono_class_is_subclass_of): Like an interface, a
17478         generic instance also derives from System.Object.
17479
17480 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
17481
17482         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
17483         custom modifiers to be in any order. Fixes #61990.
17484
17485 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
17486
17487         * object.c: Register mono_object_new_fast icall.
17488         
17489         * object.c (mono_class_get_allocation_ftn): Return to calling
17490         mono_object_new_fast, since it seems faster to compute the object 
17491         size in unmanaged code than passing it as a parameter.
17492
17493         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
17494
17495         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
17496         this function with Boehm as the oom handler, so we don't have to check
17497         the result of GC_malloc.
17498
17499         * object.c: Remove checks for oom.
17500
17501         * object.h object.c (mono_class_get_allocation_ftn): New function to
17502         return the icall which can be used to allocate an instance of a given
17503         class. 
17504
17505         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
17506
17507         * class-internals.h: Add 'enabled' field.
17508
17509 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
17510
17511         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
17512
17513 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
17514         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
17515         value 0x0010.
17516
17517 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
17518
17519         * appdomain.c: use the Tls function for appdomain too,
17520         at Zoltan's request. Actually return in mono_context_get
17521
17522         * appdomain.c, profiler.c, threads.c: use __thread
17523
17524 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
17525
17526         * appdomain.c threads.c: Call GC_CreateThread on windows.
17527
17528         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
17529         multiple libraries since this don't work on windows.
17530
17531 2004-08-18  Martin Baulig  <martin@ximian.com>
17532
17533         * class-internals.h
17534         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
17535         MonoMethodHeader.
17536
17537         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
17538         MonoMethodNormal since we also need it for abstract and interface
17539         methods.
17540
17541         * reflection.c
17542         (build_compressed_metadata): Sort the GenericParam table.
17543         (mono_image_create_token): Added `gboolean create_methodspec'
17544         argument; this is false when generating a MethodImpl token.
17545         (reflection_methodbuilder_to_mono_method): Abstract and interface
17546         methods may also have generic parameters.
17547
17548 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
17549
17550         * appdomain.c: thread local alloc
17551
17552 2004-08-17  Martin Baulig  <martin@ximian.com>
17553
17554         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
17555
17556         * icall.c
17557         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
17558         argument.
17559
17560         * class.c (mono_type_get_full_name): New public function.
17561         (mono_type_get_name): Don't include the type arguments.
17562
17563 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
17564
17565         * Makefile.am: Build static versions of libmetadata and libmonoruntime
17566         for inclusion into the mono executable.
17567
17568 2004-08-16  Martin Baulig  <martin@ximian.com>
17569
17570         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
17571         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
17572
17573 2004-08-14  Martin Baulig  <martin@ximian.com>
17574
17575         * class.c (dup_type): Also copy the `byref' field.
17576
17577 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
17578
17579         * reflection.c (create_dynamic_mono_image): Revert the last change 
17580         since it breaks bootstrap.
17581
17582 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
17583
17584         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
17585
17586         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
17587         not free them with g_free.
17588
17589 2004-08-11  Martin Baulig  <martin@ximian.com>
17590
17591         * reflection.c (mono_reflection_setup_internal_class): Also call
17592         mono_class_setup_mono_type() if we already have a `tb->type.type'.
17593
17594 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
17595
17596         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
17597         called during default (first) AppDomain creation. Keep track of
17598         Evidence when loading assemblies.
17599
17600 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
17601
17602         * opcodes.c, opcodes.h: reduce runtime relocations.
17603
17604 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
17605
17606         * culture-info.h, locales.c: fixes and chages to sue the new
17607         optimized format of the locale data.
17608         * culture-info-tables.h: regenerated.
17609
17610 2004-08-06  Geoff Norton <gnorton@customerdna.com>
17611         
17612         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
17613
17614 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
17615
17616         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
17617         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
17618         * domain-internals.h: icall declaration.
17619         * icall.c: icall registration.
17620         * object-internals.h: New fields in MonoAssembly for CAS.
17621
17622 2004-08-05  Duncan Mak  <duncan@ximian.com>
17623
17624         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
17625         CEE_LDELEM_ANY.
17626
17627 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
17628
17629         * reflection.c: fix to deal with object[] arrays in custom ctors
17630         (bug #62550).
17631
17632 2004-08-05  Martin Baulig  <martin@ximian.com>
17633
17634         * class.c (mono_class_array_element_size): Added support for
17635         generic instances and correctly handle "recursive" types.
17636
17637 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
17638
17639         * assembly.c: Fix warnings.
17640
17641 2004-08-04  Martin Baulig  <martin@ximian.com>
17642
17643         * class.c
17644         (mono_type_get_name_recurse): Added `gboolean include_arity'
17645         argument specifying whether or not we should include the generic
17646         arity in the type name.
17647         (_mono_type_get_name): New static function.
17648         (mono_class_setup_vtable): If we're a generic instance, don't
17649         include the generic arity in the names of explicit method
17650         implementations.        
17651
17652 2004-08-03  Martin Baulig  <martin@ximian.com>
17653
17654         * class.c (mono_type_get_name_recurse): Enclose the generic type
17655         arguments in `<', '>'.
17656
17657 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
17658
17659         * gc.c: make GC warning messages use the trace API, they are just
17660         noise to most of the users.
17661
17662 2004-08-03  Martin Baulig  <martin@ximian.com>
17663
17664         * debug-mono-symfile.c (read_string): Correctly read the string.
17665
17666 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
17667
17668         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
17669         
17670         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
17671         icalls.
17672         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
17673
17674 2004-07-30  Martin Baulig  <martin@ximian.com>
17675
17676         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
17677         Reflect latest symbol writer changes.   
17678
17679 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
17680
17681         * object.c: always create an object if null is passed
17682         to Invoke() where a valuetype is expected.
17683
17684 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
17685
17686         * marshal.c (mono_marshal_init): make managed
17687         signatures match native ones better for 64bits.
17688
17689 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17690
17691         * appdomain.c: hack to build correctly the private bin path on windows.
17692         Fixes bug #61991.
17693
17694 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
17695
17696         * assembly.c: Load mscorlib from the correct framework directory
17697           (mono/<version>/mscorlib.dll).
17698         * appdomain.h: Added prototypes for new functions.
17699         * internals.h: Added some prototypes.
17700         * domain.c: When initializing the runtime, get from the executable and
17701           the configuration files the runtime version that the app supports.
17702           Added support methods for reading app.exe.config. Added list of versions
17703           supported by the JIT. Added two new methods: mono_init_from_assembly,
17704           which initializes the runtime and determines the required version from
17705           the provided exe file, and mono_init_version, which initializes
17706           the runtime using the provided version.
17707         * icall.c: Get machine.config from version-specific directory.
17708         * reflection.c: When generating an image, embed the version number
17709           of the current runtime.
17710
17711 2004-07-28  Dick Porter  <dick@ximian.com>
17712
17713         * socket-io.c
17714         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
17715         returned sockaddr size before creating the remote address object.
17716         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
17717         61608.
17718
17719 2004-07-28  Dick Porter  <dick@ximian.com>
17720
17721         * locales.c (string_invariant_compare_char): Fix invariant char
17722         compares between upper and lower cases.  Fixes bug 61458.
17723
17724 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
17725         
17726         * marshal.c: actually cache stelem.ref wrappers.
17727         
17728 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
17729
17730         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
17731         sections and remove the mono_cli_rva_map () function.
17732
17733 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
17734
17735         * debug-mono-symfile.c: fix one more endianess issue, from a patch
17736         by Geoff Norton (<gnorton@customerdna.com>).
17737
17738 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
17739
17740         * class.c: fix class loads for pointer types (typeof(int) !=
17741         typeof(int*)).
17742
17743 2004-07-27  Martin Baulig  <martin@ximian.com>
17744
17745         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
17746         reading the debugging information from an external ".mdb" file.
17747
17748 2004-07-24  Martin Baulig  <martin@ximian.com>
17749
17750         * reflection.c (mono_image_get_type_info): Only write a class
17751         layout entry if we actually have a size or a packing size.
17752
17753 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
17754
17755         * reflection.c (type_get_fully_qualified_name): 
17756         insert cast to get type checking of ?: with non-gcc compilers
17757
17758 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
17759
17760         * rand.c: use g_getenv for both lookups of
17761         MONO_EGD_SOCKET
17762
17763 2004-07-17  Martin Baulig  <martin@ximian.com>
17764
17765         * reflection.c (mono_reflection_bind_generic_method_parameters):
17766         Set `gmethod->reflection_info'.
17767
17768 2004-07-17  Martin Baulig  <martin@ximian.com>
17769
17770         * class.c (mono_class_create_from_typedef): Insert the newly
17771         created class into the hash table before computing the interfaces
17772         since we could be called recursively.
17773
17774 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
17775
17776         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
17777         function to implement stelem.ref in managed code
17778         * class-internals.h, debug-helpers.c: a new wrapper type
17779         for the above.
17780
17781 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
17782
17783         * gc.c: allow GC handles to work even when no GC is compiled in.
17784         Fix part of bug #61134 (GetAddrOfPinnedObject).
17785
17786 2004-07-13  Peter Williams  <peter@newton.cx>
17787  
17788         * process.c (complete_path): Make sure we don't attempt to execute
17789         directories.
17790  
17791 2004-07-12  Geoff Norton <gnorton@customerdna.com>
17792
17793         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
17794           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
17795           and will add/subtract the hour if needed
17796
17797 2004-07-12  Martin Baulig  <martin@ximian.com>
17798
17799         * reflection.c (mono_field_get_object): If we have
17800         `field->generic_info', take the attributes from
17801         `field->generic_info->generic_type'.    
17802
17803 2004-07-12  Martin Baulig  <martin@ximian.com>
17804
17805         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
17806         This function must be called before initializing the runtime.
17807         (mono_debug_init_1): New function; call this after initializing
17808         the runtime, but before loading the assembly.  It tells the
17809         debugger to load corlib and the builtin types.
17810
17811         * mono-debug-debugger.c: Did some larger changes in the debugging
17812         code; support recursive class declarations, make sure we actually
17813         add all classes.
17814
17815 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17816
17817         * debug-helpers.c: undo my previous patch and fixed the real issue in
17818         ../mini/exceptions-x86.c
17819
17820 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17821
17822         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
17823         when no HOME env. variable was set and a NullRef was thrown in a .cctor
17824         called from other .cctors.
17825
17826 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
17827
17828         * loader.c: Removed the mono_loader_wine_init hack now that we are
17829         doing a managed version of Windows.Forms.
17830
17831 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
17832
17833         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
17834         threadpool.c, threads.c: remove static data from rootset.
17835
17836 2004-07-09  Dick Porter  <dick@ximian.com>
17837
17838         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
17839         Don't do any more processing if the matched length was 0.  It was
17840         increasing the size of the string before.  Fixes bug 61167.
17841
17842 2004-07-09  Dick Porter  <dick@ximian.com>
17843
17844         * socket-io.h:
17845         * socket-io.c
17846         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17847         Add support for SO_PEERCRED if its available.
17848
17849 2004-07-09  Peter Bartok <pbartok@novell.com>
17850         * loader.c: winelib.exe.so error message is now only displayed if
17851         MONO_DEBUG is set. To help us avoid questions when people are trying
17852         out the new Managed.Windows.Forms.
17853
17854 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
17855
17856         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
17857         for isinst and castclass wrappers.
17858
17859         * class-internals.h icall.c: Move registration and lookup of JIT icalls
17860         to libmetadata from the JIT, so they could be used by the marshalling
17861         code and the interpreter.
17862
17863         * marshal.c: Register marshalling related JIT icalls here instead of
17864         in mini.c. Use CEE_MONO_ICALL instead of the family of 
17865         CEE_MONO_PROC<x> opcodes to call marshalling functions.
17866
17867         * metadata.h: Remove unneeded marshalling conversions.
17868
17869         * opcodes.c: Update for new opcodes.
17870         
17871 2004-07-08  Martin Baulig  <martin@ximian.com>
17872
17873         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
17874         (mono_debug_get_domain_data): Make this function static.
17875
17876 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
17877
17878         * gc.c, object.h: add nice GC handle API for embedders.
17879
17880 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
17881
17882         * reflection.c: more changes for the new api
17883
17884         * object.c: When we reflect on a field w/ a constant value, it
17885         will not have a memory location, so we must access metadata. Also,
17886         allow easier reading of strings so that we can read them from
17887         the constant data.
17888
17889         * class.c (mono_class_layout_fields): no need for literal fields here.
17890
17891         * class-internals.h: api changes for const fields
17892
17893         * icall.c (ves_icall_get_enum_info): use new apis for const fields
17894
17895 2004-07-06  Martin Baulig  <martin@ximian.com>
17896
17897         * mono-debug.h: Increment version number to 44.
17898
17899         * mono-debug.c (mono_debug_add_wrapper): The second argument is
17900         now a gpointer, rewrote this whole method.
17901
17902         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
17903         function.  Add information about the wrapper in a new "misc table".
17904
17905         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
17906         for the new misc table.
17907
17908 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
17909
17910         * metadata-internals.h image.c: Add a cache for helper signatures.
17911
17912         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
17913
17914 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
17915
17916         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
17917         delegates from a delegate. Fixes #61033.
17918         
17919         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
17920         marshalling of stringbuilder arrays. Fixes #59900.
17921
17922 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
17923
17924         * icall.c: Add EnumBuilder:setup_enum_type icall.
17925
17926 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
17927
17928         * icall.c: Added a new icall for the property version of
17929         OffsetOfStringData.
17930
17931 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
17932
17933         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
17934         it has a constant size across platforms.
17935
17936         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
17937         stack trace.
17938
17939 2004-06-29  Martin Baulig  <martin@ximian.com>
17940
17941         * mono-debug.c (mono_debug_add_method): Protect the whole function
17942         in mono_debugger_lock(), not just parts of it.
17943
17944 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
17945
17946         * reflection.c: make sure padding bytes in heaps are zeroed.
17947
17948 2004-06-24  David Waite  <mass@akuma.org>
17949
17950         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
17951         image.c, loader.c, locales.c, marshal.c, metadata.c,
17952         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
17953         string-icalls.c, threads.c: change to C90-style comments from C99 /
17954         C++ -style
17955
17956 2004-06-24  Dick Porter  <dick@ximian.com>
17957
17958         * threads.c
17959         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
17960         return createdNew.  Fixes bug 60412.
17961
17962         * threads-types.h: 
17963         * icall.c: Add createdNew parameter to CreateMutex icall
17964
17965 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
17966
17967         * reflection.c, object-internals.h: save default value in params.
17968
17969 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17970
17971         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
17972         no need to build a new path combining that with the application base.
17973         Fixes bug #60442.
17974
17975 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
17976
17977         * reflection.c: fixed minor standard compliance issues.
17978
17979 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
17980
17981         * reflection.c: fixed issue with encoding some custom attributes
17982         (arrays in properties and fields, bug #60411).
17983
17984 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17985
17986         * reflection.c: fix start address when copying the public key token.
17987
17988 2004-06-23  Martin Baulig  <martin@ximian.com>
17989
17990         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
17991         the `exc' object in a static object to put it into the GC's root set.
17992
17993 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
17994
17995         * reflection.c: make mono_reflection_setup_internal_class ()
17996         callable a second time to setup a new parent class.
17997
17998 2004-06-23  Dick Porter  <dick@ximian.com>
17999
18000         * threads.c: Check for WAIT_IO_COMPLETION return values.
18001
18002 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
18003
18004         * appdomain.c: Removed the g_free on the public key token. Now copy 
18005         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
18006         * assembly.c: Added public key token string value when loading 
18007         assemblies. Fix bug #60439.
18008         * icall.c: Added missing informations (like public key) in 
18009         GetReferencedAssemblies. Fix #60519.
18010         * image.h: Changed definition for public key token from const char*
18011         public_tok_value to guchar public_key_token [17];
18012         * reflection.c: Updated for changes to public key token.
18013
18014 2004-06-22  Lluis Sanchez Gual
18015
18016         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
18017         for the field in base classes.
18018
18019 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
18020
18021         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
18022         mark headers as not supported, they are installed only for use by the
18023         debugger.
18024
18025 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
18026
18027         * *.c, *.h: avoid namespace pollution in public headers.
18028
18029 2004-06-21  Martin Baulig  <martin@ximian.com>
18030
18031         * exception.c (mono_get_exception_security): It's in
18032         "System.Security", not in "System".
18033
18034         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
18035         the exception classes.
18036
18037 2004-06-21  Martin Baulig  <martin@ximian.com>
18038
18039         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
18040         Protect the exception object from being finalized.
18041
18042 2004-06-21  Martin Baulig  <martin@ximian.com>
18043
18044         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
18045         public function.
18046
18047 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
18048
18049         * reflection.c: Load the assembly in mono_reflection_type_from_name,
18050         if it was not loaded before. Fix parts of #60439.
18051
18052 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
18053
18054         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
18055         code that was broken since Ben's change: wrappers are now
18056         dependent on the method signature only again.
18057
18058 2004-06-21  Martin Baulig  <martin@ximian.com>
18059
18060         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
18061         added interface support.
18062
18063 2004-06-21  Martin Baulig  <martin@ximian.com>
18064
18065         * class.c (mono_vtable_get_static_field_data): New public method.
18066
18067 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
18068
18069         * filewatcher.c : Windows build fix to be compliant with API changes.
18070
18071 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
18072
18073         * class.h, class.c: more accessors.
18074         * metadata.h, metadata.c: prepare for hiding MonoType and
18075         MonoMethodSignature: people should use the accessors from now on
18076         outside of the tree.
18077
18078 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
18079
18080         * *.c, *.h: more API cleanups.
18081
18082 2004-06-18  Jackson Harper  <jackson@ximian.com>
18083
18084         * assembly.c: Trace loading assemblies.
18085         * loader.c: Trace loading native libraries.
18086         * mono-config.c: Trace loading config files.
18087         
18088 2004-06-18  Dick Porter  <dick@ximian.com>
18089
18090         * locales.c: Tell ICU the lengths of strings, it can cope with
18091         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
18092
18093 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
18094
18095         * image.c: swapped name/filename;
18096
18097 2004-06-18  Martin Baulig  <martin@ximian.com>
18098
18099         * mono-debug-debugger.c (write_class): Write the parent class at
18100         the end of the header.
18101
18102 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
18103
18104         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
18105
18106 2004-06-17  Raja R Harinath  <rharinath@novell.com>
18107
18108         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
18109         (bundle_obj): New conditional define.
18110         (BUILT_SOURCES): Remove.
18111         ($(bundle_srcs)): Make parallel-make safe.
18112         (libmonoruntime_la_LIBADD): Make unconditional.
18113         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
18114         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
18115
18116 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
18117
18118         * culture-info-tables.h: It was inconsistent with the latest
18119           supp info files.
18120
18121 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
18122
18123         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
18124         be loaded.
18125
18126         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
18127         with gcc 2.95.
18128
18129 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
18130
18131         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
18132         cleaned up public header threads.h.
18133
18134 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
18135
18136         * Makefile.am, *.c, *.h: more API cleanups.
18137
18138 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
18139
18140         * Makefile.am: removed monosn from compilation.
18141         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
18142         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
18143         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
18144         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
18145         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
18146         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
18147
18148 2004-06-15  Jackson Harper  <jackson@ximian.com>
18149
18150         * assembly.c: Make locales lower case when searching the GAC for
18151         assemblies. gacutil will always make locales lowercase when
18152         installing so this effectively makes them case insensitive.
18153         
18154 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
18155
18156         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
18157         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
18158           parameter which allows to choose whether the wait can be interrupted or 
18159           not. Also added the method mono_monitor_enter(), which locks the monitor
18160           using an infinite wait and without allowing interruption.
18161           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
18162           interrupted.
18163         * object.h: Added new fields in MonoThread. suspend_event holds the event
18164           used to susped/resume the thread. synch_lock is the lock object to use for
18165           modifying the thread state.
18166         * threads.c: Use the new synch_lock object for locking, instead of "this",
18167           which can generate deadlocks.
18168           Moved thread state change in Thread.Sleep and Thread.Join from managed
18169           to unmanaged code. This avoids a deadlock when the thread was suspended
18170           just after acquiring the thread lock.
18171           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
18172           Implemented Thread.Suspend using an event instead of ThreadSuspend,
18173           which is not fully implemented in the io-layer.
18174         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
18175
18176 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
18177
18178         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
18179         threads-types.h: more API cleanups.
18180
18181 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
18182
18183         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
18184         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
18185         threadpool.c, threads.c: first pass at the exported API cleanup.
18186
18187 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
18188
18189         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
18190
18191 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18192
18193         * icall.c: added internalGetHome.
18194
18195 2004-06-14  Dick Porter  <dick@ximian.com>
18196
18197         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
18198         possible to return successfully when '.' or '..' were the only
18199         entries in a directory, but were skipped.  The MonoIOStat was not
18200         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
18201         Fixes bug 59574.
18202
18203 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
18204
18205         * reflection.c: make binaries run on .Net 1.1 by default.
18206
18207 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
18208
18209         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
18210
18211 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
18212
18213         * marshal.c: keep track of struct size with explicit layout
18214         (bug #59979).
18215
18216 2004-06-12  Martin Baulig  <martin@ximian.com>
18217
18218         * mono-debug-debugger.c: Comment out a debugging g_message().
18219
18220 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
18221
18222         * reflection.c, reflection.h: do not free custom attrs that are cached.
18223         * icall.c: use braces to make code clearer.
18224
18225 2004-06-11  Martin Baulig  <martin@ximian.com>
18226
18227         * class.h (MonoInflatedField): New type.
18228         (MonoClassField): Replaced `MonoType *generic_type' with
18229         `MonoInflatedField *generic_info'.
18230
18231         * icall.c
18232         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
18233
18234 2004-06-11  Martin Baulig  <martin@ximian.com>
18235
18236         * reflection.c (mono_image_create_method_token): Correctly encode
18237         varargs methods.
18238
18239 2004-06-11  Martin Baulig  <martin@ximian.com>
18240
18241         * metadata.c (mono_metadata_parse_method_signature): When parsing
18242         a MethodDef which has VarArgs, also set sentinelpos if we don't
18243         have any parameters.
18244
18245 2004-06-11  Martin Baulig  <martin@ximian.com>
18246
18247         * verify.c (mono_method_verify): In CEE_CALL, use
18248         mono_method_get_signature() to get the method's signature, unless
18249         we're a PInvoke method.
18250
18251 2004-06-10  Jackson Harper  <jackson@ximian.com>
18252
18253         * assembly.c: Use <path>/lib/mono/gac for the extra paths
18254         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
18255         logical name as the supplied path is just a prefix to the gac not
18256         the direct path to it.
18257         
18258 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
18259
18260         * reflection.c: make the token for a created method match
18261         the token of the MethodBuilder it was created from
18262         (IKVM requires this behaviour now).
18263
18264 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
18265
18266         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
18267         reflection.c, socket-io.c: leak fixes.
18268
18269 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
18270
18271         * icall.c: handle sentinel pos in vararg methods in position different
18272         from 0.
18273
18274 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18275
18276         * culture-info-tables.h: freshly generated.
18277
18278 2004-06-09  Martin Baulig  <martin@ximian.com>
18279
18280         * loader.c (mono_get_method_constrained): Call `mono_class_init
18281         (constrained_class)'.   
18282
18283 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
18284
18285         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
18286         any methods. Fixes #59629.
18287
18288 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
18289
18290         * culture-info-tables.h: reflecting locale-builder updates.
18291
18292 2004-06-08  Dick Porter  <dick@ximian.com>
18293
18294         * object.h:
18295         * locales.c: Fixed compile warnings, including a real bug in
18296         CompareInfo_internal_compare.
18297         
18298 2004-06-08  Dick Porter  <dick@ximian.com>
18299
18300         * locales.c
18301         (ves_icall_System_Globalization_CompareInfo_internal_index):
18302         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
18303         Double-check the resuls of usearches, because ICU currently
18304         ignores most of the collator settings here.  Fixes bug 59720.
18305         
18306 2004-06-08  Dick Porter  <dick@ximian.com>
18307
18308         * locales.c
18309         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
18310         Fix memory leak and segfault-causing typo.  No idea how this one
18311         lasted so long without being noticed.
18312
18313 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
18314
18315         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
18316         any methods. Fixes #59629.
18317
18318 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18319
18320         * assembly.c:
18321         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
18322         own the critical section before). Removed dead code (that's done
18323         in the preload hook).
18324
18325         (mono_assembly_load_with_partial_name): call the preload hook.
18326
18327 2004-06-08  Martin Baulig  <martin@ximian.com>
18328
18329         * metadata.c (mono_metadata_signature_alloc): Default
18330         `sentinelpos' to -1.
18331
18332         * reflection.c (mono_image_get_array_token): Likewise.
18333
18334 2004-06-08  Martin Baulig  <martin@ximian.com>
18335
18336         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
18337
18338         * metadata.c (mono_metadata_parse_method_signature): When parsing
18339         a MethodDef which has VarArgs, set sentinelpos.
18340
18341         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
18342         `gint16' since we're using -1 for non-varargs methods.
18343
18344         * reflection.c
18345         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
18346         (method_encode_signature): Added varargs support.
18347         (method_builder_encode_signature): Likewise.
18348         (mono_image_get_varargs_method_token): New static method.
18349         (mono_image_create_method_token): New public method; this is
18350         called via an icall instead of mono_image_create_token() when
18351         calling a varargs method.       
18352
18353 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
18354
18355         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
18356
18357 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
18358
18359         * culture-info-tables.h : Reflecting the latest locale-builder that
18360           fixed empty array representation ({} to {0}).
18361
18362 2004-06-07  Jackson Harper  <jackson@ximian.com>
18363
18364         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
18365         looking up extra gac paths. This allows MONO_GAC_PATH to act
18366         exactly like a prefix.
18367         
18368 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
18369
18370         * reflection.c (mono_reflection_type_from_name): Make a copy of the
18371         type name before modifying it. Fixes #59405.
18372
18373 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
18374
18375         * culture-info.h: added fields for "all datetime patterns".
18376         * locales.c: (  ves_icall_System_Globalization_CultureInfo
18377           _construct_datetime_format ()): fill xxx_patterns fields.
18378         * object.h: added fields for "all datetime patterns" to
18379           MonoDateTimeFormatInfo.
18380         * culture-info-tables.h: reflecting locale-builder updates.
18381
18382 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
18383
18384         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
18385         the event has no add and remove methods. Fixes #59629.
18386
18387 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
18388
18389         * object.c: Fixed possible integer overflow when allocating large
18390         strings.
18391
18392 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
18393
18394         * culture-info-tables.h: reflecting locale-builder updates.
18395
18396 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
18397
18398         * culture-info-tables.h: reflecting locale-builder updates.
18399
18400 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
18401
18402         * culture-info-tables.h: reflecting locale-builder updates.
18403
18404 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
18405
18406         * threads.c: Made Thread.Sleep abortable.
18407
18408 2004-06-02  Martin Baulig  <martin@ximian.com>
18409
18410         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
18411
18412         * debug-mono-symfile.h: Bumped symbol file version number to 37.
18413
18414 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
18415
18416         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
18417
18418 2004-05-30  Jackson Harper  <jackson@ximian.com>
18419
18420         * reflection.c: Do not hardcode assembly versions or public key
18421         tokens anymore. All of this except the corlib section was dead
18422         code anyways.
18423         
18424 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
18425
18426         * object.c (mono_runtime_invoke_array): Automatically create boxed
18427         objects for byref valuetypes if needed. Fixes #59300.
18428         
18429         * object.c (mono_method_return_message_restore): Handle 
18430         MONO_TYPE_OBJECT as well.
18431
18432 2004-05-28  Jackson Harper  <jackson@ximian.com>
18433
18434         * reflection.c: The modified type encoding was causing build
18435         problems. Reverted for now.
18436         
18437 2004-05-28  Jackson Harper  <jackson@ximian.com>
18438
18439         * reflection.c/h: Take an assembly ref so that we dont create
18440         fully qualified names when encoding types in the same assembly as
18441         the custom attribute being emitted.
18442         * appdomain.c: Increment version number.
18443         
18444 2004-05-26  Duncan Mak  <duncan@ximian.com>
18445
18446         * icall.c
18447         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
18448         Set the full version number (major, minor, build, revision).
18449
18450 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
18451
18452         * marshal.c (emit_struct_conv): increment src/dst after blit
18453         (mono_marshal_get_managed_wrapper,
18454         mono_marshal_get_native_wrapper): make sure we have marshalling
18455         info before marshalling params (info computation affects
18456         blittable)
18457
18458         * class.c (class_compute_field_layout): correctly deal with
18459         blittable
18460         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
18461         value types (as per what windows dows by default)
18462         (mono_class_setup_mono_type): System.ValueType is blittable
18463         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
18464         blittable
18465
18466         * marshal.c (mono_marshal_load_type_info): flag types  as
18467         non-blittable if the native layout doesn't match the managed
18468         layout
18469
18470 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18471
18472         * appdomain.c: don't add stuff in the private search path that is
18473         above the application base. If application base is not set, there's
18474         no private search path.
18475
18476 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
18477
18478         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
18479         byref struct arguments in native->managed marshalling.
18480
18481 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
18482
18483         * marshal.c (mono_marshal_get_runtime_invoke): correctly
18484         cache methods using signature (special case for methods
18485         that are value type or string class)
18486         
18487         * image.c (mono_image_close): clean up allocated GSList's
18488         in runtime_invoke_cache.
18489
18490 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18491
18492         * mono-config.c: set the correct path for mono_cfg_dir on windows when
18493         there's no MONO_CFG_DIR environment variable defined.
18494
18495 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18496
18497         * threads.c: windows version must be >= 0x0500 to include OpenThread.
18498
18499 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
18500
18501         * threadpool.c: Really wait for 500ms after the async call, even if the wait
18502           is interrumped.
18503         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
18504           before waiting for it, and call CloseHandle after the wait to unref it.
18505           This will make sure that handles are not disposed too early.
18506
18507 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18508
18509         * appdomain.c:
18510         * appdomain.h:
18511         * icall.c: removed
18512         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
18513         needed now.
18514
18515         * object.c: se the application_base only for the domain that runs
18516         Main. Fixes bug #59216,
18517
18518 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18519
18520         * appdomain.c:
18521         * object.c: only the domain in which Main is run have
18522         SetupInformation.ConfigurationFile set, so moved a few lines from
18523         appdomain.c to object.c.
18524
18525 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18526
18527         * appdomain.c: we tried to load [name].(dll|exe), but according
18528         to bug #57710, we must also try [culture]/[name].(dll|exe) and
18529         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
18530         There's a test case attached to bug #58922.
18531
18532 2004-05-27  Dick Porter  <dick@ximian.com>
18533
18534         * icall.c:
18535         * file-io.c: Implemented icalls for locking and unlocking regions
18536         in a file.
18537         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
18538         FALSE on error (fixes both compiler warning and real bug.)
18539
18540 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
18541
18542         * culture-info-tables.h: reflecting locale-builder updates.
18543
18544           (Added missing ChangeLog entry for 05/26)
18545
18546 2004-05-27  Jackson Harper  <jackson@ximian.com>
18547
18548         * locales.c: Fix some cut and paste errors.
18549         
18550 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18551
18552         * mono-config.c: set the correct path for config. directory on windows.
18553
18554 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
18555
18556         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
18557           on win32.
18558
18559 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
18560
18561         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
18562         from pinvoke functions.
18563         
18564         * marshal.c (mono_ftnptr_to_delegate): Implement this.
18565
18566 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
18567
18568         * culture-info-tables.h: reflecting locale-builder updates.
18569
18570 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
18571
18572         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
18573         #59086.
18574
18575 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
18576
18577         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
18578         * icall.c: Modified icalls for RNG.
18579         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
18580         Windows (CryptoAPI).
18581
18582 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
18583
18584         * locales.c: Fix build.
18585
18586 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
18587
18588         * culture-info-tables.h: reflecting locale-builder updates.
18589
18590 2004-05-25  Jackson Harper  <jackson@ximian.com>
18591
18592         * locales.c: When creating the current culture use the $LANGs
18593         specific culture. So DateTimeFormat and NumberFormat entries are created.
18594         
18595 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
18596
18597         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
18598         a char array as parameter.
18599
18600 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
18601
18602         * image.c: In mono_image_open(), always use an absolute path name to
18603           look for already loaded images.
18604
18605 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
18606
18607         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
18608         missing in the windows build (like older cygwin include files).
18609
18610 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
18611
18612         * icall.c: Fixed check for possible integer overflow in Buffer_
18613         BlockCopy icall. Replaced comments style // by /* */.
18614
18615 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
18616
18617         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
18618         
18619         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
18620         check after MONO_VTADDR. Fixes pinvoke2.exe.
18621
18622         * marshal.h marshal.c metadata.h: Add beginnings of support for
18623         ftnptr -> delegate marshalling.
18624
18625 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
18626
18627         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
18628         * threads.c: Fix warnings.
18629
18630 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
18631
18632         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
18633         * icall.c: Registered icalls for Suspend and Resume.
18634         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
18635           Thread.Abort.
18636         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
18637         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
18638         * process.c: Use WaitForSingleObjectEx.
18639         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
18640           checkpoints.
18641         * threads.c, threads.h: Make use of new Ex wait methods. Improved
18642           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
18643           for Suspend and Resume. Added new mono_thread_stop, used for stoping
18644           background threads. Added basic support for Abort in Windows.
18645           Start new threads using a managed delegate invoke wrapper. This wrapper
18646           has an interruption checkpoint that is needed since an interruption
18647           can be requested before the thread leaves the unmanaged code that starts 
18648           the thread.
18649         * marshal.c: Added interruption checkpoint after every native call, and
18650           also before managed calls for wrappers called from unmanaged code to
18651           go into managed code.
18652         * object.h: Added new field in MonoThread to keep track of interruption
18653           requests.
18654
18655 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
18656
18657         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
18658         calls.
18659
18660 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18661
18662         * appdomain.c:
18663         * assembly.c:
18664         * gc.c:
18665         * locales.c:
18666         * mono-config.c:
18667         * rand.c: getenv -> g_getenv (windows!)
18668
18669         * process.c: complete_path is also used on non-windows platforms.
18670
18671 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18672
18673         * icall.c: new signature for Process_Start.
18674
18675         * process.[ch]: new signature for Process_Start. If we're on windows
18676         and UseShellExecute is false, we have to search for the program by
18677         ourselves if we don't get a full path.
18678
18679 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
18680
18681         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
18682         marshalling and call CleanUpNativeData if needed. Fixes #58646.
18683
18684 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18685
18686         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
18687         Fixes bug #58373.
18688
18689 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18690
18691         * process.c: use double quotes to quote program name and arguments on
18692         windows. Fixes bug #58575.
18693
18694 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18695
18696         * file-io.c: don't return "." and ".." when using windows Find*File.
18697
18698 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
18699
18700         * marshal.c: Don't pass wrappers to message init because method 
18701         addressed used to lookup metadata. part of remoting[2|3] fix.
18702
18703 2004-05-15  Jackson Harper  <jackson@ximian.com>
18704
18705         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
18706         path is essentially the same as MONO_PATH except that it points to
18707         GACs instead of lib directories.
18708         * loader.h: The user gac is gone so we dont need function to
18709         enable/disable it.
18710         * mono-config.c: user gac option is now gone.
18711         
18712 2004-05-15  Jackson Harper  <jackson@ximian.com>
18713
18714         * culture-info.h: Make defines more consistent, add calendar data
18715         to the culture info table.
18716         * culture-info-tables.h: Add basic calendar data. Basically
18717         everyone gets default gregorian until all the data is
18718         updated.
18719         * locales.c: Use the new consistent defines. Set calendar data for
18720         culture info objects.
18721         * object.h: add a field for calendar data to CultureInfo
18722         
18723 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
18724
18725         * image.c: image->runtime_invoke_cache is keyed on signatures now.
18726         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
18727         a signature.
18728         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
18729         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
18730         an extra param that is the pointer of the method to invoke. The IL for
18731         the invoke method is no longer specific to the method, but to the
18732         signature of the method. Thus, we can share the same code for multiple
18733         methods. This reduces the number of methods that have to be compiled.
18734
18735 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
18736
18737         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
18738
18739         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18740
18741         * icall.c: Optimize Buffer.BlockCopy.
18742
18743 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18744
18745         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
18746         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
18747         quote). Changed them to "MMMM yyyy".
18748
18749 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
18750
18751         * rand.c
18752         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
18753
18754 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
18755
18756         * reflection.h: Updated after changes to managed structures.
18757
18758         * appdomain.c: Bump corlib version.
18759
18760 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18761
18762         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
18763         windows.
18764
18765 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18766
18767         * Makefile.am: link to ../os/libmonoos.la on windows.
18768
18769         * assembly.c:
18770                 -If MONO_DEBUG, warn about non-existing directories in
18771                 MONO_PATH.
18772                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
18773                 compile time variable.
18774                 -Removed init_default_path and call mono_set_rootdir from
18775                 libmonoos.a instead (windows only).
18776
18777         * assembly.h: declare mono_assembly_getrootdir().
18778
18779         * domain.c:
18780         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
18781
18782         * loader.c: s/getenv/g_getenv/
18783
18784 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
18785
18786         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
18787
18788         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
18789
18790         * metadata.h: Add new marshalling conversions.
18791
18792         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
18793         function.
18794
18795         * reflection.c (mono_reflection_get_type): Lookup the type in all
18796         modules of a multi-module assembly. Fixes #58291.
18797
18798 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
18799
18800         * threads.c: Before aborting a background, set the StopRequested
18801         state.  This avoids throwing the Abort exception.
18802         In mono_thread_manage, don't continue with the shutdown until all
18803         aborted threads have actually stopped.
18804
18805 2004-05-10  Jackson Harper  <jackson@ximian.com>
18806
18807         * locales.c: Remove the modifier from culture names.
18808         
18809 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18810
18811         * Makefile.am: monosn is not installed any more. It has been deprecated
18812         in favor of sn.
18813
18814 2004-05-07  Jackson Harper  <jackson@ximian.com>
18815
18816         * locales.c
18817         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
18818         Fix array construction, add bailout if the length is 0.
18819
18820 2004-05-07  Dick Porter  <dick@ximian.com>
18821
18822         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
18823         machine doesn't have a DNS entry.  Patch by Urs Muff
18824         (umuff@quark.com), fixes bug 57928.
18825
18826 2004-05-06  Jackson Harper  <jackson@ximian.com>
18827
18828         * reflection.c: Handle null PublicTokens properly. alloc mem for
18829         assembly names culture so we dont crash when freeing it.
18830         
18831 2004-05-06  Jackson Harper  <jackson@ximian.com>
18832
18833         * assembly.c: Check the usergac when loading with partial names.
18834         
18835 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
18836
18837         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
18838         does nothing for now (not required for Linux/Windows) but the class
18839         library can call it (and a newer or modified runtime could need it).
18840         * icall.c: Registred icall.
18841
18842 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18843
18844         * loader.c: prints a message on module loading error we set MONO_DEBUG
18845         environment variable.
18846
18847 2004-05-05  Jackson Harper  <jackson@ximian.com>
18848
18849         * appdomain.c: Handle PublicKeyToken=null properly.
18850         
18851 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
18852
18853         * environment.c|h: Added icall ves_icall_System_Environment_
18854         GetOSVersionString to get the current OS version as a string.
18855         * icall.c: Registred icall.
18856
18857 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
18858
18859         * object.c: in mono_object_get_virtual_method(), take into account that
18860         non-virtual methods don't have a slot in the vtable. Check needed when
18861         the object is a proxy.
18862
18863 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
18864
18865         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
18866         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
18867
18868         * object.c (mono_class_compute_gc_descriptor): Fix warning.
18869
18870         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
18871         passed when a valuetype is expected.
18872
18873         * object.c (mono_unhandled_exception): Only set the exit code if the
18874         exception happens in the main thread. Fixes thread5.exe.
18875
18876         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
18877         invalid names. Fixes #58047.
18878
18879 2004-05-03  Jackson Harper  <jackson@ximian.com>
18880
18881         * assembly.c: This line was committed accidently and is unneeded.
18882         
18883 2004-05-03  Jackson Harper  <jackson@ximian.com>
18884
18885         * icall.c: Add new icall for Assembly::LoadWithPartialName
18886         * assembly.c/.h: new function that probes the GAC to load partial
18887         assembly names by Paolo Molaro.
18888         
18889 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18890
18891         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
18892         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
18893         (type_get_fully_qualified_name): Added PublicKeyToken when building a
18894         full type name.
18895
18896 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18897
18898         * appdomain.c: fixed check for 'neutral' culture and removed warning.
18899         * reflection.c: fix bug when parsing a full type name and Version is not
18900         the last thing in the string.
18901
18902 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
18903
18904         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
18905         crashes when it is freed.
18906
18907 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18908
18909         * assembly.c: print the compat warning to stderr.
18910
18911 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
18912
18913         * assembly.c (mono_assembly_load_references): Add a compatibility
18914         hack to run old applications that might be still referencing the
18915         3300-based assemblies, only do this for System.xxx.
18916
18917 2004-05-01  Jackson Harper  <jackson@ximian.com>
18918
18919         * appdomain.c: If the culture is neutral we set it to "".
18920         
18921 2004-04-29  Jackson Harper  <jackson@ximian.com>
18922
18923         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
18924
18925 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
18926  
18927         * string-icalls.c: added low overhead function for copying chars
18928         * icall.c: added needed icall for the above function
18929  
18930 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18931
18932         * icall.c: fix return value of get_global_assembly_cache.  Implemented
18933         Environment.GetLogicalDrives.
18934
18935 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
18936
18937         * rand.c: try and talk to egd or prngd
18938         for random bytes if opening devices fail.
18939
18940 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
18941
18942         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
18943         alignment for the type using the native alignment of its members 
18944         instead of using klass->min_align.
18945
18946         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
18947
18948 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18949
18950         * file-io.c:
18951         * socket-io.c: added check for sys/aio.h.
18952
18953 2004-04-28  Dick Porter  <dick@ximian.com>
18954
18955         * threads.c: Don't abort a thread thats already aborting, when
18956         terminating everything.
18957
18958 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18959
18960         * icall.c: added 2 new async calls for Socket.
18961
18962         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
18963         IO on *nix systems.
18964
18965         * threadpool.c: removed unused variable.
18966
18967 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
18968
18969         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
18970
18971 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
18972
18973         * locales.c: put back string_invariant_tolower () and
18974         string_invariant_toupper ().
18975
18976 2004-04-26 David Waite <mass@akuma.org>
18977
18978         * file-io.h:
18979         * socket-io.h:
18980         * threads.h:
18981         * unicode.h: remove comma from end of enumeration declarations
18982
18983 2004-04-26 David Waite <mass@akuma.org>
18984
18985         * debug-mono-symfile.h:
18986         * decimal.c:
18987         * mono_debug.h:
18988         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
18989
18990
18991 2004-04-26  Jackson Harper  <jackson@ximian.com>
18992
18993         * appdomain.c: Increment version number.
18994         
18995 2004-04-26  Jackson Harper  <jackson@ximian.com>
18996
18997         * appdomain.c: Set assembly references public token value when
18998         PublicKeyToken is specified, not the hash_value. Free public token
18999         values when free assembly name data. Previously the public key
19000         token was hex decoded, however we are using hex encoded public key
19001         tokens, so this is not neccasary.
19002         * assembly.c: Lookup assemblies in the gac if their public token
19003         value is set. Add function to allow enabling user gac
19004         lookups. Specify whether or not the assembly was loaded from the
19005         GAC. Compare full assembly names when checking the cache for
19006         assemblies (Temporarily disabled see comment in code). Remove
19007         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
19008         specifies trace-loader they get extra info to stdout on the
19009         loading of assemblies.
19010         * image.h: Add a field for an assembly references public token
19011         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
19012         whether an assembly has been loaded from the GAC.
19013         * image.c: Remove a corlib -> mscorlib name mapping.
19014         * loader.h: Add function to enable/disable the user gac.
19015         * mono-config.c: Check if the usergac is enabled in the config
19016         file.
19017         * icall.c: New icall to determine whether or not an assembly has
19018         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
19019         * tabldefs.h: Add constant for assemblyref flag that specifies a
19020         full public key is used instead of a public token.
19021         * reflection.c: Remove mscorlib -> corlib mappings. Set
19022         PublicTokenValue instead of hash value. This value is a hex
19023         string so it does not need to be expanded.
19024
19025 2004-04-26  Martin Baulig  <martin@ximian.com>
19026
19027         * mono-debug-debugger.c (mono_debugger_initialize): Set
19028         `mono_debugger_initialized' before calling mono_debug_lock().
19029
19030 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
19031
19032         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
19033           InternalToUpper/InternalToLower.
19034         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
19035           removed invariant culture shortcut.  This is now done in managed code.
19036         * locales.c: (string_invariant_toupper/tolower) removed.
19037
19038 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19039
19040         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
19041         Added Poll internal call.
19042
19043         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
19044         call for Poll. Select was too heavy for polling a single socket.
19045
19046         * threadpool.[ch]: added mono_threadpool_cleanup.
19047         * threads.c: use it. Don't use Thread_Abort on windows.
19048
19049 2004-04-23  Martin Baulig  <martin@ximian.com>
19050
19051         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
19052
19053 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
19054
19055         * icall.c: Registred new icalls for key pair protection and added an
19056         icall for Environment.GetFolderPath on Windows.
19057         * security.c|h: Added new icalls for key pair protection.
19058
19059 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19060
19061         * socket-io.c: don't display the non-supported family warning for known
19062         families. Now this is not displayed on windows when checking support
19063         for IPv4/IPv6.
19064
19065 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19066
19067         * class.c: don't display the layout warning for static fields.
19068
19069 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
19070
19071         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
19072         * locales.c, locales.h: Added new icalls for culture-specific
19073         Char.ToLower and Char.ToUpper.
19074
19075 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19076
19077         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
19078         by David Waite.
19079
19080 2004-04-20  Martin Baulig  <martin@ximian.com>
19081
19082         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
19083         of the type name before passing it to mono_reflection_type_from_name().
19084
19085 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
19086
19087         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
19088         encodings here. Fixes #56965.
19089
19090 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
19091
19092         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
19093         fix test on strstr result not that I can see anything that
19094         relies on the result.
19095
19096 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
19097
19098         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
19099         Fixes #57081.
19100
19101         * marshal.c (mono_marshal_get_string_encoding): New helper function.
19102
19103         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
19104         function to determine which marshalling to use for strings. Fixes
19105         #56965.
19106
19107         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
19108
19109         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
19110
19111 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
19112
19113         * icall.c: #include mono-config.h
19114
19115 2004-04-15  Jackson Harper  <jackson@ximian.com>
19116
19117         * culture-info-tables.h: Fix date formats for en-US culture.
19118         
19119 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
19120
19121         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
19122         ThreadPool.SetMinThreads.
19123         * threadpool.c: Implemented ThreadPool.GetMinThreads and
19124         ThreadPool.SetMinThreads.
19125
19126 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
19127
19128         * mono-config.c: also load the .config file in the directory
19129         where the assembly was found.
19130
19131 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
19132
19133         * assembly.c: load per-assembly config files.
19134         * icall.c: decrapified code to get the config dir and moved to
19135         mono-config.c.
19136         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
19137         per-assembly config files. When doing a dll map lookup give precedence
19138         to the per-assembly data.
19139
19140 2004-04-14  Martin Baulig  <martin@ximian.com>
19141
19142         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
19143         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
19144         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
19145
19146         * mono-debugger-debugger.c: While the debugger is locked, remember
19147         whether the symbol tables have changes and send one single
19148         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
19149
19150 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
19151
19152         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
19153
19154         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
19155         function.
19156
19157         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
19158         account when marshalling string arrays. Fixes #56965.
19159
19160 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
19161
19162         * icall.c: Add new icalls mapping for security.
19163         * security.c|h: Add internal calls for WindowsIdentity,
19164         WindowsImpersonationContext and WindowsPrincipal.
19165
19166 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
19167
19168         * class.c: Added comment to ensure the System.MonoDummy class
19169         is removed when no longer necessary
19170
19171 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
19172
19173         * appdomain.c: Pass arguments to the bootstraping exceptions to
19174         minimize JITed methods at boot
19175
19176         * metadata.c (mono_exception_from_name_two_strings): Allow for the
19177         second string to be null.
19178
19179         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
19180         Change the protocol to minimize the JIT methods at startup.  Now
19181         it Returns the internal codepage, if the value of "int_code_page"
19182         is 1 at entry, and we can not compute a suitable code page
19183         number, returns the code page as a string.
19184
19185 2004-04-13  Jackson Harper  <jackson@ximian.com>
19186
19187         * culture-info-tables.h: Fix number of decimal digits for all
19188         english locales.
19189
19190 2004-04-13  Jackson Harper  <jackson@ximian.com>
19191
19192         * icall.c: Clairfy out of sync error message. It is not always
19193         your corlib that is out of sync.
19194
19195 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
19196
19197         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
19198         properties when only the set accessor is overriden. Fixes #55874.
19199
19200 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
19201
19202         * assembly.c (mono_assembly_load_references): Make this thread safe.
19203         Fixes #56327.
19204
19205 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
19206
19207         * monosn.c: Add missing initialization calls.
19208
19209 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
19210
19211         * locales.c:
19212         ves_icall_System_Globalization_CultureInfo_construct_number_format
19213         Fix g_assert so it compiles on fussier compilers re int/ptr
19214         mismatch
19215
19216 2004-04-08  Dick Porter  <dick@ximian.com>
19217
19218         * socket-io.h:
19219         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
19220         53992.  Also rearrange the code so that the internal calls return
19221         an error value and exceptions are thrown from managed code.
19222
19223         * icall.c: Add type info to the socket icalls.
19224
19225 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19226
19227         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
19228         owes me a beer.
19229
19230 2004-04-07  Martin Baulig  <martin@ximian.com>
19231
19232         * class.c (mono_class_from_generic_parameter): Don't default
19233         `klass->parent' to `mono_defaults.object_type'.
19234
19235 2004-04-07  Martin Baulig  <martin@ximian.com>
19236
19237         * reflection.c (mono_reflection_initialize_generic_parameter): Set
19238         `param->pklass->reflection_info'.       
19239
19240 2004-04-07  Jackson Harper  <jackson@ximian.com>
19241
19242         * culture-info-tables.h: Fix date separator symbol.
19243         
19244 2004-04-07  Martin Baulig  <martin@ximian.com>
19245
19246         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
19247         from System.Type to System.MonoType.
19248
19249 2004-04-07  Martin Baulig  <martin@ximian.com>
19250
19251         * reflection.h
19252         (MonoReflectionGenericParam): Added `has_reference_type' and
19253         `has_value_type' fields.
19254
19255         * reflection.c (mono_image_get_generic_param_info): Encode the
19256         correct flags if we have the `class' or `struct' constraint.
19257
19258 2004-04-07  Martin Baulig  <martin@ximian.com>
19259
19260         * reflection.h
19261         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
19262
19263 2004-04-07  Jackson Harper  <jackson@ximian.com>
19264
19265         * appdomain.c: Revert extra patches, just wanted to bump the
19266         version number.
19267         
19268 2004-04-07  Jackson Harper  <jackson@ximian.com>
19269
19270         * Makefile.am: Add culture-info private headers.
19271         * icall.c: Add new icalls for contructing locales.
19272         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
19273         * locales.h: Declare new culture info construction methods.
19274         * object.h: Add new fields used to avoid the CultureMap to
19275         MonoCultureInfo.
19276         * culture-info.h: Definition of structs used in the culture info
19277         tables.
19278         * culture-info-tables.h: Autogenerated tables that contain culture
19279         info data. This file was generated with the locale-builder tool.
19280         * appdomain.c: Incement corlib version number.
19281         
19282 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
19283
19284         * appdomain.c: (mono_runtime_init) move mono_thread_init
19285         to before mono_object_new calls so critical sections
19286         are initialized before use.
19287
19288 2004-04-07  Martin Baulig  <martin@ximian.com>
19289
19290         * icall.c
19291         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
19292         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
19293         (ves_icall_MonoGenericParam_initialize): Removed.
19294         (monogenericparam_icalls): Removed.
19295         (generictypeparambuilder_icalls): Added new table for
19296         System.Reflection.Emit.GenericTypeParameterBuilder.
19297
19298         * reflection.c
19299         (mono_reflection_define_generic_parameter): Removed.
19300         (mono_reflection_initialize_generic_parameter): This is now called
19301         from GenericTypeParameterBuilder's .ctor.
19302
19303 2004-04-06  Martin Baulig  <martin@ximian.com>
19304
19305         * class.c (mono_class_init): Don't inflate nested classes in a
19306         generic instance.
19307         (mono_type_get_name_recurse): Include the generic arguments for
19308         generic instances and generic type declarations.
19309         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
19310         (_mono_class_get_instantiation_name): Removed.
19311         (mono_class_create_generic): Always use `gklass->name' as our name.
19312
19313         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
19314
19315         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
19316         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
19317         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
19318         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
19319         closed generic methods here.
19320
19321         * reflection.c
19322         (mono_reflection_generic_inst_get_nested_types): Removed.
19323         (inflate_mono_method): Copy the generic parameters from the
19324         MonoMethodHeader into out MonoGenericMethod.
19325
19326 2004-04-06  Martin Baulig  <martin@ximian.com>
19327
19328         * row-indexes.h
19329         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
19330
19331         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
19332
19333         * reflection.c (build_compressed_metadata): If we have any entries
19334         in the GenericParam, MethodSpec or GenericParamConstraint tables,
19335         set the header version to 1.1.
19336
19337 2004-04-06  Martin Baulig  <martin@ximian.com>
19338
19339         * class.c (mono_class_init): If we're a generic instance,
19340         initialize our nested classes, too.
19341         (_mono_class_get_instantiation_name): Deal with the new `!%d'
19342         suffix. 
19343
19344 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19345
19346         * process.c: quote the argument passed to the shell on windows.
19347
19348 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
19349
19350         * threads.c (mono_alloc_special_static_data): Allow this to be
19351         called during startup.
19352
19353 2004-04-02  Martin Baulig  <martin@ximian.com>
19354
19355         * icall.c
19356         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
19357
19358 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
19359
19360         * icall.c: Fix build.
19361
19362 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
19363
19364         * Makefile.am: Added security.c|h.
19365         * icall.c: Added icall for get_UserName;
19366         * security.c: New file for security related icalls. Added function
19367         get_UserName for System.Environment (fix #56144).
19368         * security.h: New. Header file for security.c
19369
19370 2004-04-02  Dick Porter  <dick@ximian.com>
19371
19372         * icall.c: Deleted the icalls that were obsoleted some time ago
19373         by the ICU string code, and which were mixed into the icall
19374         rearranging.  Fixes bug 55969.
19375
19376         * string-icalls.h: 
19377         * string-icalls.c: Deleted the code that those icalls reference.
19378
19379 2004-04-01  Martin Baulig  <martin@ximian.com>
19380
19381         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
19382
19383         * class.c (mono_class_from_generic_parameter): Don't set 
19384         TYPE_ATTRIBUTE_INTERFACE.
19385         (my_mono_class_from_generic_parameter): Likewise.
19386
19387 2004-04-01  Martin Baulig  <martin@ximian.com>
19388
19389         * loader.c (find_method): Added an optional `MonoClass *ic'
19390         argument to search in a specific interface.
19391         (mono_get_method_constrained): New public function.
19392
19393 2004-04-01  Martin Baulig  <martin@ximian.com>
19394
19395         * reflection.c (mono_image_get_generic_field_token): Use the
19396         `handleref' cache here.
19397
19398 2004-04-01  Martin Baulig  <martin@ximian.com>
19399
19400         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
19401
19402         * reflection.c (create_generic_typespec): Use the `typespec' hash
19403         here, not the `typeref' one.    
19404
19405 2004-04-01  Martin Baulig  <martin@ximian.com>
19406
19407         * class.c (mono_class_inflate_generic_type): Moved the
19408         functionality into a new static inflate_generic_type() which
19409         returns NULL if it didn't do anything.  Only increment the
19410         `mono_stats.inflated_type_count' if we actually inflated
19411         something.
19412         (mono_class_get_full): Check the classes type to see whether we
19413         need to inflate it; also inflate MONO_TYPE_(M)VAR.
19414
19415 2004-04-01  Jackson Harper  <jackson@ximian.com>
19416
19417         * reflection.c: Set culture for assembly references.
19418         
19419 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
19420
19421         * reflection.[ch], icall.[ch], Fix support for pinning variables.
19422
19423 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19424
19425         * assembly.c:
19426         (do_mono_assembly_open): the critical section also covers
19427         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
19428
19429 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19430
19431         * threads.c:
19432         (mono_manage_threads): abort the background threads when finishing.
19433         Fixes bug #47232.
19434
19435 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19436
19437         * gc.c: only close the done_event handle if there was no timeout.
19438         C-ified comments.
19439
19440 2004-03-30  Martin Baulig  <martin@ximian.com>
19441
19442         * icall.c (icall_entries): It's called "System.Activator", not
19443         "System.Activation".    
19444
19445 2004-03-30  Martin Baulig  <martin@ximian.com>
19446
19447         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
19448         (mono_class_create_from_typespec): Likewise.
19449
19450 2004-03-30  Martin Baulig  <martin@ximian.com>
19451
19452         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
19453         `has_ctor_constraint' and `initialized'.
19454
19455 2004-03-30  Martin Baulig  <martin@ximian.com>
19456
19457         * reflection.c (encode_new_constraint): New static function to add
19458         the constructor constraint attribute to a type parameter.
19459         (encode_constraints): Call encode_new_constraint() if necessary.
19460
19461         * reflection.h
19462         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
19463
19464         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
19465         
19466 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
19467
19468         * reflection.c, icall.c: add support for pinning variables. 
19469
19470 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
19471
19472         * marshal.c (mono_marshal_get_managed_wrapper):
19473         init bool local with zero rather than null.
19474
19475 2004-03-29  Martin Baulig  <martin@ximian.com>
19476
19477         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
19478         the "official" behavior here.
19479         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
19480
19481 2004-03-29  Martin Baulig  <martin@ximian.com>
19482
19483         * icall.c: Reflect latest API changes.
19484
19485 2004-03-29  Martin Baulig  <martin@ximian.com>
19486
19487         * loader.c (mono_get_method_from_token): Also call
19488         mono_metadata_load_generic_params () for abstract and interface
19489         methods; replace the type arguments in the method signature with
19490         the ones which are loaded from the metadata.
19491
19492 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
19493
19494         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
19495         of the lock is not the current thread. MS.NET don't do it, in spite of
19496         what the documentation says. See bug #56157.
19497
19498 2004-03-28  Martin Baulig  <martin@ximian.com>
19499
19500         * class.c (mono_class_init): Don't call init_properties() and
19501         init_events() for generic instances; set `prop->parent' when
19502         inflating properties.
19503
19504         * reflection.c (mono_generic_inst_get_object): Call
19505         `mono_class_init (ginst->klass)'.
19506         (mono_type_get_object): Only create a MonoGenericInst if your
19507         generic type is a TypeBuilder.
19508         (do_mono_reflection_bind_generic_parameters): Only set
19509         `ginst->is_dynamic' if our generic type is a TypeBuilder.
19510
19511 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
19512
19513         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
19514         Fixes #56091.
19515
19516 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19517
19518         * icall.c: added Kill_internal icall.
19519         * process.[ch]: added Kill_internal icall.
19520
19521 2004-03-25  Martin Baulig  <martin@ximian.com>
19522
19523         * class.h (MonoStats): Added `generic_instance_count',
19524         `inflated_method_count', `inflated_type_count' and
19525         `generics_metadata_size'.       
19526
19527 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19528
19529         * reflection.c: no warnings now.
19530
19531 2004-03-25  Martin Baulig  <martin@ximian.com>
19532
19533         * class.c (mono_class_get_full): New public function; does a
19534         mono_class_get(), but also takes a `MonoGenericContext *'.
19535
19536         * loader.c (mono_field_from_memberref): Renamed to
19537         `field_from_memberref', made static and added `MonoGenericContext *'
19538         argument.
19539         (mono_field_from_token): Added `MonoGenericInst *' argument.
19540         (method_from_memberef): Likewise.
19541         (mono_get_method_from_token): Likewise.
19542         (mono_get_method_full): New public function; does a
19543         mono_get_method(), but also takes a `MonoGenericContext *'.
19544
19545         * verify.c (mono_method_verify): Get the method's generic context
19546         and pass it to mono_field_from_token(), mono_get_method_full() and
19547         mono_class_get_full().
19548
19549 2004-03-25  Martin Baulig  <martin@ximian.com>
19550
19551         * class.c (mono_class_inflate_generic_type): Take a
19552         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
19553         `MonoGenericMethod *'.
19554
19555 2004-03-25  Martin Baulig  <martin@ximian.com>
19556
19557         * loader.h (MonoMethodInflated): Store the MonoGenericContext
19558         instead of the MonoGenericMethod here.
19559
19560 2004-03-25  Martin Baulig  <martin@ximian.com>
19561
19562         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
19563         each time we create a new MonoGenericInst, we also create a new
19564         context which points back to us.
19565
19566         * class.c (inflate_method): Use `ginst->context' instead of
19567         creating a new context.
19568
19569         * loader.c (method_from_memberref): Use
19570         `klass->generic_inst->context' instead of creating a new context.
19571
19572 2004-03-25  Martin Baulig  <martin@ximian.com>
19573
19574         * class.h (MonoGenericContext): New struct.
19575         (MonoGenericMethod): Removed `generic_inst'.
19576
19577         * class.c (mono_class_inflate_generic_method): Take a
19578         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
19579
19580 2004-03-25  Martin Baulig  <martin@ximian.com>
19581
19582         * loader.h (MonoMethodInflated): New typedef.
19583
19584         * metadata.h (MonoMethodSignature): Removed `gen_method', make
19585         `generic_param_count' consume just 30 bits, added `is_inflated'
19586         and `has_type_parameters' flags (one bit each).
19587
19588         * class.c (mono_class_inflate_generic_method): Create a
19589         MonoMethodInflated instead of a MonoMethodNormal and set
19590         `is_inflated' in the method signature.
19591
19592         * class.h (MonoGenericMethod): Removed `generic_method'.
19593
19594 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
19595
19596         * image.c: Make sure the name of a MonoImage is always an absolute path.
19597           This fixes bug #54415.
19598
19599 2004-03-24  Martin Baulig  <martin@ximian.com>
19600
19601         * class.c (mono_class_setup_vtable): If we're a generic instance,
19602         use our generic type's vtable size.
19603
19604 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
19605
19606         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
19607         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
19608         problems.
19609
19610 2004-03-23  Martin Baulig  <martin@ximian.com>
19611
19612         * class.h (MonoDynamicGenericInst): Added `int count_events' and
19613         `MonoEvent *events'.
19614
19615         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
19616         (typebuilder_icalls): Added "get_event_info"; calls
19617         mono_reflection_event_builder_get_event_info(). 
19618
19619         * reflection.c (mono_reflection_generic_inst_initialize): Added
19620         `MonoArray *events'.
19621         (mono_reflection_event_builder_get_event_info): New function.
19622
19623 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
19624
19625         * object.h: add mono_type_initialization_init
19626
19627         * object.c (mono_runtime_class_init): 
19628         implement class constructor synchronization rules
19629         to cope with threading issues.  
19630         add mono_type_initialization_init
19631
19632         * appdomain.c (mono_runtime_init): call 
19633         mono_type_initialization_init
19634
19635         * class.h: removing initializing field from MonoVTable
19636
19637 2004-03-23  Martin Baulig  <martin@ximian.com>
19638
19639         * class.c (my_mono_class_from_generic_parameter): Use
19640         `param->name' if it's not NULL. 
19641
19642 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
19643
19644         * class.c: do not insert non-virtual methods in the vtable.
19645         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
19646         that means the method is non-virtual. This never would have
19647         happened before.
19648
19649 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
19650
19651         * profiler.c: Added lock for accessing coverage_hash.
19652
19653 2004-03-22  Martin Baulig  <martin@ximian.com>
19654
19655         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
19656         `method->method->signature->generic_param_count != 0' to make it
19657         work for interface methods.
19658
19659 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19660
19661         * process.c: quote the string passed to the shell using g_shell_quote.
19662
19663 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19664
19665         * threads.c:
19666         (mono_threads_manage): don't remove the finalizer thread and self
19667         from the threads hash table so that mono_thread_manage can be called
19668         more than once.
19669
19670 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19671
19672         * process.c: quote the arguments when UseShellExecute is true. Fixes
19673         bug #55790.
19674
19675 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19676
19677         * threads.c: set mono_thread_detach as a cleanup routine for every
19678         thread. This way it's always executed upon thread termination, either
19679         aborted or finished normally. No more xsp hangs!
19680
19681 2004-03-17  Martin Baulig  <martin@ximian.com>
19682
19683         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
19684         `int count_nested' and a `MonoType **nested'.
19685
19686         * reflection.c (mono_reflection_bind_generic_parameters): Moved
19687         most of the functionality into a new static
19688         do_mono_reflection_bind_generic_parameters() and don't take a
19689         `MonoType *nested_in' argument any more.  Don't compute nested
19690         types here.
19691         (mono_reflection_generic_inst_get_nested_types): New public method
19692         to get nested types.
19693
19694         * class.c (mono_class_create_generic): Set `klass->nested_in' if
19695         we're a nested class.
19696
19697         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
19698         mono_reflection_generic_inst_get_nested_types() to compute the
19699         nested types.
19700
19701 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
19702
19703         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
19704         descriptive error message under windows.
19705         
19706 2004-03-17  Martin Baulig  <martin@ximian.com>
19707
19708         * class.c (dup_type): Added `const MonoType *original' argument;
19709         copy the attrs from the original type.
19710
19711 2004-03-17  Martin Baulig  <martin@ximian.com>
19712
19713         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
19714         `m->generic_inst_cache' here.
19715
19716 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
19717
19718         * exception.h exception.c: Add stack_overflow_exception.
19719
19720 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19721
19722         * threadpool.c:
19723         (overlapped_callback): call SetEvent *after* invoking the callback.
19724         No need to call CloseHandle.
19725
19726 2004-03-16  Martin Baulig  <martin@ximian.com>
19727
19728         * reflection.c (mono_image_get_fieldref_token): Take a
19729         `MonoReflectionField *' instead of a `MonoClassField *' and a
19730         `MonoClass *'; store the `MonoReflectionField *' in the hash.
19731
19732 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19733
19734         * appdomain.c: don't add the culture to the filename we're looking for
19735         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
19736
19737 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19738
19739         * locales.c: don't ignore symbols when doing case insensitive compares.
19740         Thanks Dick! Fixes bug #54046.
19741
19742         * threads.c: surround 'threads' usage with enter/leave in
19743         mono_thread_manage.
19744
19745 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
19746
19747         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
19748         implicitly marshalled as [Out]. Fixes #55450.
19749
19750         (mono_marshal_get_runtime_invoke): Zero out the result if there is
19751         an exception.
19752
19753 2004-03-16  Martin Baulig  <martin@ximian.com>
19754
19755         * class.c (mono_class_from_generic_parameter): Use the actual
19756         parameter name. 
19757
19758 2004-03-16  Martin Baulig  <martin@ximian.com>
19759
19760         * reflection.c (type_get_signature_size): New static function.
19761         Compues the size of the type in a method signature.
19762         (method_get_signature_size): New static function; calls
19763         type_get_signature_size() to compute the actual size of the
19764         method's signature.
19765         (method_encode_signature): Use method_get_signature_size() to get
19766         the signature's size rather than using `nparams * 10'.
19767
19768 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19769
19770         * file-io.h: define here WapiOverlapped on windows. I don't want the
19771         regular OVERLAPPED one.
19772
19773         * file-io.c:
19774         * threadpool.c: somehow, BindIoCompletionCallback is not found.
19775         Disabling AIO on windows.
19776
19777 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19778
19779         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
19780         bug #55385.
19781
19782 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19783
19784         * appdomain.c: upgraded corlib version.
19785
19786         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
19787         and BeginWrite. Allow opening files for asynchrnous operations.
19788
19789         * file-io.h: new struct that maps FileStreamAsyncResult.
19790         * icall.c: added new icalls.
19791         * process.[ch]: support setting child process environment variables
19792         and use the SHELL or COMSPEC when UseShellExecute is true.
19793
19794         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
19795         callback for async. IO is here and also BindHandle.
19796
19797         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
19798         from here.
19799
19800 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
19801
19802         * reflection.c (create_custom_attr): Allow len == 0.
19803
19804         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
19805         computation on big-endian machines.
19806
19807 2004-03-13  Martin Baulig  <martin@ximian.com>
19808
19809         * class.h (MonoGenericInst): Added `int count_ifaces'.
19810
19811         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
19812         `ginst->count_ifaces' instead `klass->interface_count' since we
19813         may get called before the vtable is created.
19814
19815         * loader.c (mono_method_get_param_names): If we're a generic
19816         instance, return and don't initialize the class.
19817
19818         * reflection.c (mono_reflection_setup_generic_class): Don't call
19819         ensure_runtime_vtable().
19820         (mono_reflection_bind_generic_parameters): Set
19821         `ginst->count_ifaces'.
19822
19823 2004-03-11  Jackson Harper <jackson@ximian.com>
19824
19825         * icall.c:
19826         * unicode.c:
19827         * unicode.h: Remove unused System.Char icalls.
19828         
19829 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
19830
19831         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
19832         code when we P/Invoke the first library in Windows.Forms, instead
19833         of when we first open the assembly.
19834
19835         * assembly.c: Drop the lookup from here.
19836
19837 2004-03-10  Martin Baulig  <martin@ximian.com>
19838
19839         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
19840         class for properties, fields and events.  Finally fixes #54945.
19841
19842 2004-03-10  Martin Baulig  <martin@ximian.com>
19843
19844         * metadata.c (mono_metadata_class_equal): New static function;
19845         checks whether two generic instances or two generic parameters are
19846         equal.
19847         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
19848         compare classes.        
19849
19850 2004-03-10  Martin Baulig  <martin@ximian.com>
19851
19852         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
19853
19854         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
19855         argument and write it into the `reflection_info' field.
19856
19857         * icall.c
19858         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
19859         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
19860
19861 2004-03-09  Jackson Harper  <jackson@ximian.com>
19862
19863         * char-conversions.h: use 8 bits for numeric data its all we need
19864         * icall.c: numeric data is only 8 bits now.
19865
19866 2004-03-09  Martin Baulig  <martin@ximian.com>
19867
19868         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
19869
19870         * class.c (init_properties, init_events): Initialize the new
19871         `parent' field.
19872
19873         * reflection.c (typebuilder_setup_properties): Likewise.
19874         (typebuilder_setup_events): Likewise.
19875
19876         * reflection.h (MonoEventInfo): Replaced `parent with
19877         `declaring_type' and `reflected_type'.
19878
19879         * icall.c (ves_icall_get_property_info): Distinguish between
19880         declaring and reflected type.
19881         (ves_icall_get_event_info): Likewise.
19882
19883 2004-03-09  Martin Baulig  <martin@ximian.com>
19884
19885         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
19886         (ves_icall_Type_GetField): Correctly set field->klass.
19887
19888 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
19889
19890         * loader.h: Fix warning.
19891
19892 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
19893
19894         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
19895         library routine if present.  Notice that it will still continue
19896         executing even if its missing, for those working on the Gtk#
19897         edition of Windows.Forms.
19898
19899         * assembly.c (do_mono_assembly_open): If loading the
19900         System.Windows.Forms call mono_loader_wini_init.
19901
19902 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
19903
19904         * class.h: Added MonoRemoteClass struct.
19905         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
19906         function for MonoStrings.
19907         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
19908         Added internal call for getting the proxy type.
19909         * marshal.c: Get the type of transparent proxies from its remote_class.
19910         Added methods that generate the IL for type checks and casts:
19911         mono_marshal_get_isinst, mono_marshal_get_castclass, 
19912         mono_marshal_get_proxy_cancast.
19913         * marshal.h: Declaration of the previous new methods.
19914         * object.c: Added new moethods for creating and updating MonoRemoteClass
19915         instances: mono_remote_class, mono_upgrade_remote_class, 
19916         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
19917         * verify.c: FIx transparent_proxy_fields layout.
19918         * appdomain.c: Bump corlib version.
19919
19920 2004-03-04  Jackson Harper  <jackson@ximian.com>
19921
19922         * icall.c: Add icall to access char conversion tables.
19923         * char-conversions.h: Character conversion tables.
19924         * Makefile.am: Add char-conversions.h private header file.
19925         
19926 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
19927
19928         * appdomain.c (unload_thread_main): Increase unloading timeout to
19929         10 sec as a temporary workaround for Nant problems.
19930
19931 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
19932
19933         * gc.c: Add checks for GC_enable and GC_disable.
19934
19935         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
19936         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
19937         (bug #54988).
19938         
19939 2004-02-27  Martin Baulig  <martin@ximian.com>
19940
19941         * reflection.c (mono_reflection_bind_generic_parameters): Take a
19942         `MonoReflectionType *' instead of a `MonoType *'.
19943
19944 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
19945
19946         * gc.c (run_finalize): Avoid finalizing the object representing the
19947         finalizer thread.
19948         (finalizer_thread): Fix warning.
19949
19950 2004-02-25  Martin Baulig  <martin@ximian.com>
19951
19952         * class.c (_mono_class_get_instantiation_name): Added `int offset'
19953         argument for nested types.
19954         (mono_class_create_generic): Added support for nested generictypes.
19955
19956         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
19957         `GList *nested'.
19958
19959         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
19960
19961         * reflection.c (method_encode_signature): Increase the minimum
19962         value of `size' from 10 to 11.
19963         (mono_reflection_bind_generic_parameters): Take `int type_argc'
19964         and `MonoType **types' arguments instead of the `MonoArray
19965         *types'; added `MonoType *nested_in'.  Recursively instantiate
19966         nested classes. 
19967
19968 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
19969
19970         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
19971         stack_overflow_ex members which are used by exception handling.
19972
19973         * appdomain.c (mono_runtime_init): Initialize the new members.
19974
19975         * gc.c (mono_gc_enable): New helper function.
19976         * gc.c (mono_gc_disable): New helper function.
19977
19978 2004-02-23  Martin Baulig  <martin@ximian.com>
19979
19980         * icall.c: I must have been really stupid - make it actually work
19981         this time ;-)
19982
19983 2004-02-23  Martin Baulig  <martin@ximian.com>
19984
19985         * loader.c (method_from_memberref): Only inflate the method if
19986         it's in another klass.
19987
19988 2004-02-23  Martin Baulig  <martin@ximian.com>
19989
19990         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
19991         (mono_class_init): If we're a generic instance and an interface,
19992         compute `class->interface_id'; also create `class->interfaces'
19993         here and inflate them.
19994
19995         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
19996         `ginst->is_open'.
19997         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
19998
19999         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
20000
20001 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
20002
20003         * reflection.c (method_encode_code): Improved the error message
20004         generated by the exception.
20005
20006 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20007
20008         * icall.c: Martin did not do what he said in the ChangeLog for
20009         2004-02-18, but put back the changes for properties and events.
20010         Commenting those changes out again and adding comment to bug #54518.
20011         
20012         * process.c: removed warning.
20013
20014 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
20015
20016         * marshal.c (emit_struct_conv): Print an error message instead of
20017         asserting when a type does not have the StructLayout attribute.
20018
20019 2004-02-20  Martin Baulig  <martin@ximian.com>
20020
20021         * reflection.c (mono_type_get_object): Also use the cache for
20022         generic instances.
20023         (mono_reflection_bind_generic_parameters): Always compute
20024         `ginst->ifaces'.        
20025
20026 2004-02-20  Martin Baulig  <martin@ximian.com>
20027
20028         * class.h (MonoGenericMethod): Removed `klass'.
20029
20030         * class.c (mono_class_inflate_generic_method): Added `MonoClass
20031         *klass' argument.
20032
20033 2004-02-20  Martin Baulig  <martin@ximian.com>
20034
20035         * reflection.c (method_encode_methodspec): Actually use the
20036         uninflated signature for the memberref.
20037
20038 2004-02-20  Martin Baulig  <martin@ximian.com>
20039
20040         * class.h (MonoGenericMethod): Removed `declaring'.
20041
20042         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
20043         is NULL, compute it here.
20044
20045 2004-02-20  Martin Baulig  <martin@ximian.com>
20046
20047         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
20048
20049         * metadata.c (mono_metadata_generic_inst_hash): New method.
20050         (mono_metadata_generic_inst_equal): New method.
20051
20052         * reflection.c (mono_reflection_bind_generic_parameters): Use the
20053         `klass->image->generic_inst_cache' cache to avoid creating
20054         duplicate MonoGenericInst's.
20055
20056         * class.c (mono_class_inflate_generic_type): Use the cache.
20057
20058 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
20059
20060         * object.c: fixed gc descriptor calculation for embedded valuetypes.
20061
20062 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20063
20064         * icall.c: added Socket.WSAIoctl icall.
20065
20066         * socket-io.[ch]: implemented
20067         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
20068
20069 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
20070
20071         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
20072
20073 2004-02-18  Urs C Muff  <umuff@quark.com>
20074
20075         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
20076         this work on PPC and other big-endian architectures.
20077
20078         * debug-mono-symfile.h: Prepended the names of all the `guint32'
20079         fields with an underscore to make sure they're only accessed by
20080         the read32() macro.
20081
20082 2004-02-18  Martin Baulig  <martin@ximian.com>
20083
20084         * icall.c: Put the klass->refclass changes back for methods and
20085         fields, but not for properties and events.  We're currently not
20086         distinguishing between DeclaringType and ReflectedType for
20087         properties and events, that's what caused the regressions.
20088
20089 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20090
20091         * object.c:
20092         (mono_async_result_new): the handle can be NULL.
20093
20094         * threadpool.c: Use an event instead of a semaphore, don't initialize
20095         it until needed. This saves quite a few semaphores from being created
20096         when using the threadpool.
20097
20098 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
20099
20100         * object.c (mono_string_is_interned_lookup): Fix interning of long
20101         strings. Fixes #54473.
20102
20103         * domain.c (ldstr_equal): Optimize if the two strings are equal.
20104
20105         * icall.c: Revert the klass->refclass changes since they introduce
20106         regressions (bug #54518).
20107
20108 2004-02-18  Martin Baulig  <martin@ximian.com>
20109
20110         * class.c (mono_class_init): If we're a generic instance and don't
20111         come from a TypeBuilder, inflate our members here.
20112         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
20113         (mono_class_create_generic): New public method.
20114         (mono_class_initialize_generic): Removed.
20115         (get_instantiation_name): Renamed to
20116         _mono_class_get_instantiation_name() and made it public.
20117
20118 2004-02-18  Martin Baulig  <martin@ximian.com>
20119
20120         * class.c (mono_class_inflate_generic_type): Clear the new
20121         instance's `nginst->klass' when inflating a generic instance.
20122         (mono_class_is_subclass_of): Added (basic) support for generic
20123         instances.
20124
20125 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
20126
20127         * appdomain.h, domain.c: use a MonoCodeManager instead of a
20128         MonoMempool to hold compiled native code.
20129
20130 2004-02-17  Martin Baulig  <martin@ximian.com>
20131
20132         * class.h (MonoDynamicGenericInst): Added `count_properties' and
20133         `properties'.
20134
20135         * reflection.c (mono_reflection_generic_inst_initialize): Added
20136         `MonoArray *properties' argument.
20137
20138         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
20139
20140 2004-02-17  Martin Baulig  <martin@ximian.com>
20141
20142         * icall.c (ves_icall_Type_GetFields): Renamed to
20143         ves_icall_Type_GetFields_internal() and added a
20144         `MonoReflectionType *rtype' argument; pass it to
20145         mono_field_get_object() to set the field's "reflected" type.
20146         (ves_icall_Type_GetConstructors): Likewise.
20147         (ves_icall_Type_GetEvents): Likewise.
20148         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
20149         argument; pass it to mono_method_get_object() to set the method's
20150         "reflected" type.       
20151
20152 2004-02-17  Martin Baulig  <martin@ximian.com>
20153
20154         * class.h (MonoDynamicGenericInst): New type.
20155         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
20156
20157         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
20158         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
20159         (ves_icall_MonoGenericInst_GetFields): New interncall.
20160
20161         * class.c (mono_class_from_generic): Don't call
20162         mono_class_initialize_generic() if this is a dynamic instance;
20163         ie. it's being created from a TypeBuilder.
20164         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
20165         `class->byval_arg.type'.
20166
20167         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
20168         to `inflate_method' and made static.
20169         (mono_reflection_inflate_field): Removed.
20170         (mono_reflection_generic_inst_initialize): New public method.
20171
20172         * reflection.h (MonoReflectionGenericInst): Removed `methods',
20173         `ctors' and `fields'; added `initialized'.
20174
20175 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
20176
20177         * debug-helpers.c (mono_method_full_name): Fix output for empty
20178         namespaces.
20179
20180 2004-02-12  Martin Baulig  <martin@ximian.com>
20181
20182         * class.h (MonoClassField): Added `MonoType *generic_type'.
20183
20184         * reflection.c (mono_image_get_fieldref_token): Added support for
20185         instantiated generic types.
20186         (field_encode_inflated_field): Removed.
20187         (mono_image_get_inflated_field_token): Removed.
20188         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
20189
20190         * reflection.h (MonoReflectionInflatedField): Removed.
20191
20192 2004-02-12  Martin Baulig  <martin@ximian.com>
20193
20194         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
20195         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
20196
20197         * reflection.c (mono_image_get_methodspec_token): Take a
20198         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
20199         (mono_image_create_token): Check whether we have a
20200         `method->signature->gen_method' and call
20201         mono_image_get_methodspec_token() if appropriate.
20202         (inflated_method_get_object): Removed.
20203         (mono_reflection_bind_generic_method_parameters): Return a
20204         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
20205         (mono_reflection_inflate_method_or_ctor): Likewise.
20206
20207         * reflection.h (MonoReflectionInflatedMethod): Removed.
20208
20209 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
20210
20211         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
20212         for custom valuetype marshalling.
20213
20214         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
20215
20216 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20217
20218         * icall.c: fixed WSAGetLastError_internal name.
20219
20220 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
20221
20222         * threads.c (mono_thread_attach): Allow this to be called multiple
20223         times for a thread.
20224         
20225         * threads.c (build_wait_tids): Do not wait for ourselves.
20226
20227         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
20228         appdomain list is empty.
20229
20230         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
20231         memory returned by mono_string_builder_to_utf16, since it points into
20232         managed memory. Thanks to Bernie Solomon for noticing this.
20233
20234         * icall.c: Add AppDomainSetup icalls.
20235
20236         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
20237
20238         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
20239         types.
20240
20241         * reflection.c (reflection_methodbuilder_to_mono_method): Save
20242         custom attributes to the method_aux struct. Also fix array indexes etc.
20243
20244         * loader.c (mono_method_get_param_names): Make dynamic case work again.
20245         
20246 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
20247
20248         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
20249         (both static and runtime) and reduce startup time.
20250
20251 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
20252
20253         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
20254         AsAny marshalling conversion instead of crashing.
20255
20256         * marshal.c: Fix warnings.
20257
20258 2004-02-09  Martin Baulig  <martin@ximian.com>
20259
20260         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
20261
20262         * reflection.h (MonoReflectionInflatedMethod): Removed the
20263         `declaring' field, it's now in the unmanaged MonoGenericMethod.
20264
20265         * reflection.c (method_encode_methodspec): Removed the `method'
20266         argument; we get it from `gmethod->declaring'.
20267         (inflated_method_get_object): Removed the `declaring' argument.
20268
20269 2004-02-09  Martin Baulig  <martin@ximian.com>
20270
20271         * class.h (MonoGenericMethod): New type.
20272         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
20273         `generic_method'.
20274
20275         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
20276         a `MonoGenericMethod *gen_method' one.
20277
20278         * class.c (mono_class_inflate_generic_type): Take an additional
20279         `MonoGenericMethod * argument.  This is only non-NULL if we're
20280         inflating types for a generic method.   
20281         (mono_class_inflate_generic_signature): Renamed to
20282         inflate_generic_signature() and made static; take a
20283         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
20284         (inflate_generic_header): Take a `MonoGenericMethod *' argument
20285         instead of a `MonoGenericInst *' one.
20286         (mono_class_inflate_generic_method): Likewise.
20287
20288         * reflection.c (encode_generic_method_sig): Take a
20289         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
20290         (method_encode_methodspec): Likewise.
20291         (inflated_method_get_object): Likewise. 
20292
20293         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
20294         field with a `MonoGenericMethod *gmethod' one.  
20295
20296 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
20297
20298         * class.h (mono_class_has_parent): add parens to expansion
20299         so you can ! this.
20300
20301 2004-02-08  Martin Baulig  <martin@ximian.com>
20302
20303         * image.h (MonoImage): Removed `generics_cache'.
20304
20305         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
20306         instead of a `MonoType *' argument; removed the `inflate_methods'
20307         argument.  Don't inflate methods here.
20308
20309         * loader.c (find_method): If it's a generic instance, call
20310         mono_class_init() on the `sclass->generic_inst->generic_type'.
20311
20312         * metadata.c (mono_type_size): Make this work on uninitialized
20313         generic instances; call it on the `ginst->generic_type's class.
20314
20315         * reflection.c (mono_reflection_bind_generic_parameters): Call
20316         mono_class_from_generic() to create the `ginst->klass'.
20317
20318 2004-02-08  Martin Baulig  <martin@ximian.com>
20319
20320         * class.h (MonoClass): Changed type of `generic_inst' from
20321         `MonoType *' to `MonoGenericInst *'.
20322
20323 2004-02-08  Martin Baulig  <martin@ximian.com>
20324
20325         * icall.c (ves_icall_Type_BindGenericParameters): Just call
20326         mono_type_get_object(), this is now creating a `MonoGenericInst'
20327         for MONO_TYPE_GENERICINST.
20328         (ves_icall_MonoGenericInst_GetParentType): Likewise.
20329         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
20330
20331         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
20332         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
20333         (inflated_method_get_object): Added `MonoClass *refclass' argument.
20334         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
20335         and reflected type.
20336
20337         * reflection.h (MonoReflectionInflatedMethod): Removed
20338         `declaring_type' and `reflected_type'.
20339
20340 2004-02-08  Martin Baulig  <martin@ximian.com>
20341
20342         * class.h (MonoGenericInst): Added `MonoType *parent' and
20343         `MonoType **ifaces'.
20344
20345         * reflection.h (MonoReflectionGenericInst): Removed `klass',
20346         `parent' and `interfaces'.
20347
20348         * reflection.c (mono_reflection_bind_generic_parameters): Take a
20349         `MonoType *' argument and return a `MonoType *'.
20350
20351         * icall.c
20352         (ves_icall_MonoGenericInst_GetParentType): New interncall.
20353         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
20354
20355 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
20356
20357         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
20358         valuetype marshalling.
20359
20360 2004-02-06  Martin Baulig  <martin@ximian.com>
20361
20362         * class.c
20363         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
20364         (my_mono_class_from_generic_parameter): Likewise.
20365
20366 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
20367
20368         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
20369         contents of the symbol files lazily.
20370
20371         * object.h (MonoThread): Add 'name' and 'name_len' fields.
20372
20373         * threads.h threads.c icall.c: New icalls for getting and setting the
20374         threads name.
20375
20376 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
20377
20378         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
20379         Raise an exception when the domain is not found.
20380
20381 2004-02-03  Martin Baulig  <martin@ximian.com>
20382
20383         * reflection.c (mono_image_get_methodspec_token): Use the
20384         uninflated signature; fixes gen-33.
20385
20386 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
20387
20388         * gc.c threads.c: Make the finalizer thread a normal managed thread so
20389         the finalizer code can use thread functionality.
20390
20391         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
20392         the finalizer thread.
20393
20394         * threads.c: Make some functions more robust.
20395
20396         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
20397
20398         * metadata.h: Add new marshalling conventions.
20399
20400         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
20401         stringbuilder marshalling. Fixes #53700.
20402
20403         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
20404
20405         * reflection.c (mono_image_get_type_info): Save declarative security
20406         info.
20407
20408         * reflection.c (mono_image_get_field_info): Handle uninitialized 
20409         unmanaged fields as well.
20410
20411         * appdomain.c: Bump corlib version.
20412
20413 2004-02-01  Martin Baulig  <martin@ximian.com>
20414
20415         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
20416         method type arguments.  
20417
20418 2004-01-30  Duncan Mak  <duncan@ximian.com>
20419
20420         * marshal.h: Add prototype for
20421         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
20422         and
20423         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
20424         fix the build.
20425
20426 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
20427
20428         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
20429         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
20430
20431 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
20432
20433         * marshal.c (mono_marshal_get_native_wrapper): Add support for
20434         custom marshalling of valuetypes.
20435
20436         * marshal.c: Fix some warnings.
20437
20438 2004-01-29  Martin Baulig  <martin@ximian.com>
20439
20440         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
20441         for generic method parameters.
20442
20443         * reflection.c (method_encode_methodspec): Write the uninflated
20444         signature into the methodspec table.
20445         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
20446         is always the uninflated method.
20447         (reflection_methodbuilder_to_mono_method): Copy the generic
20448         parameters from the MethodBuilder into `header->gen_params'.
20449
20450 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
20451
20452         * class.c (mono_class_from_generic_parameter): Fix warning.
20453
20454 2004-01-27  Martin Baulig  <martin@ximian.com>
20455
20456         * class.c (mono_class_from_generic_parameter): Don't create
20457         `klass->methods' here.  
20458
20459 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
20460
20461         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
20462         extension since it does not work with libraries named lib<FOO>.dll.so.
20463
20464 2004-01-25  Martin Baulig  <martin@ximian.com>
20465
20466         * class.c (mono_class_inflate_generic_type): Added support for
20467         MONO_TYPE_GENERICINST.
20468
20469         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
20470         inflate methods on open constructed types.      
20471
20472 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20473
20474         * object.c: fire ProcessExit event in the root AppDomain after running
20475         Main. Fixes bug #53299.
20476
20477 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
20478
20479         * socket-io.c: include the new socket-wrappers.h header.
20480         Use the wrappers instead of the unix socket functions to make the code
20481         more clear.
20482
20483 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
20484
20485         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
20486
20487         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
20488         Fixes #22532.
20489
20490 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
20491
20492         * reflection.c (mono_image_create_pefile): Handle the case when the
20493         entry point is not a MethodBuilder.
20494
20495         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
20496         field to ReflectionMethod since it is not allways a builder.
20497
20498         * reflection.c (type_get_fully_qualified_name): New helper function to
20499         return the fully qualified name of a type.
20500
20501         * reflection.c (encode_marshal_blob): Always emit the fully qualified
20502         type name for custom marshallers.
20503
20504         * reflection.c (mono_marshal_spec_from_builder): Ditto.
20505
20506         * class.c (mono_class_setup_vtable): If a parent class already 
20507         implements an interface, use the implementing methods from that class.
20508         Fixes #53148.
20509
20510 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20511
20512         * threadpool.c: just return instead of ExitThread to allow for thread
20513         clean up earlier.
20514
20515 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
20516
20517         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
20518         when closing resource modules.
20519
20520         * reflection.c (mono_image_create_pefile): Handle the case when the
20521         entry point is not a MethodBuilder.
20522
20523         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
20524         field to ReflectionMethod since it is not allways a builder.
20525
20526 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
20527
20528         * marshal.c (mono_marshal_get_managed_wrapper): 
20529         mono_marshal_alloc takes native int so CONV_I
20530         the arg for 64bits.
20531
20532 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
20533
20534         * reflection.c (fixup_cattrs): New function to fixup the methoddef
20535         tokens in the cattr table. Fixes #53108.
20536
20537 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20538
20539         * loader.c: don't trim ".dll" before looking up in the config file.
20540         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
20541
20542 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
20543
20544         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
20545         Return the module which contains the resource as well.
20546         (ves_icall_System_Reflection_Module_Close): New icall.
20547
20548         * appdomain.c: Bump corlib version number.
20549
20550         * image.c (mono_image_addref): New public function.
20551
20552         * assembly.c: Call mono_image_addref.
20553
20554         * reflection.c (mono_module_get_object): Increase reference count of 
20555         the image.
20556
20557         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
20558         Fixes #22532.
20559
20560         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
20561         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
20562         proper exceptions on DllImport problems.
20563
20564 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
20565
20566         * class.c, metadata.c: eliminate CSIZE macro.
20567
20568 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
20569
20570         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
20571         * object.h: Added async_callback field in MonoAsyncResult.
20572         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
20573         * verify.c: Added async_callback in MonoAsyncResult layout.
20574
20575 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
20576
20577         * reflection.c (mono_reflection_get_custom_attrs): Add support
20578         for Modules.
20579
20580 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
20581
20582         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
20583         marshalling.
20584         (mono_marshal_method_from_wrapper): Add null pointer check.
20585
20586 2004-01-16  Martin Baulig  <martin@ximian.com>
20587
20588         * debug-mono-symfile.h: Set version number to 36 and reflect
20589         latest symbol writer changes.
20590
20591 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
20592
20593         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
20594         multi-dimensional arrays.
20595         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
20596         (mono_class_from_mono_type): Use bounded_array_class_get.
20597         
20598         * class.c (mono_bounded_array_class_get): New function which takes
20599         a 'bounded' bool argument to distinguish vectors from one dimensional
20600         arrays.
20601
20602         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
20603         bounded_array_class_get if the array has bounds.
20604
20605         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
20606         Search modules loaded using AssemblyBuilder:AddModule as well.
20607
20608 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20609
20610         * appdomain.c: increased corlib version.
20611         * filewatcher.c: removed g_print.
20612         * icall.c:
20613         (get_property_info): only allocate what is actually requested.
20614         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
20615
20616 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20617
20618         * Makefile.am: added filewatcher.[ch]
20619         * filewatcher.[ch]: FileSystemWatcher runtime support.
20620         * icall.c: added new FSW icalls.
20621
20622 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
20623
20624         * string-icalls.c: fix stringbuilder regression as suggested by
20625         Iain McCoy <iain@mccoy.id.au>.
20626
20627 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
20628
20629         * process.c (process_read_stringtable_block): Recognize '007f' as
20630         a language neutral stringtable block.
20631
20632 2004-01-12  Patrik Torstensson
20633
20634         * object.h (MonoStringBuilder) : Changed layout to support our
20635         new stringbuilder class.
20636         * marshal.c: Change marshalling to support the new layout of 
20637         string builder.
20638         * appdomain.c: increased version number because new layout of
20639         string builder.
20640
20641 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
20642
20643         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
20644         assembly name as an string instead of an AssemblyName, since it is
20645         easier to extract info from it.
20646
20647         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
20648         the culture subdirectories too. Fixes #52231.
20649
20650 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20651
20652         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
20653         It takes 2 new parameters with an optional name for the method to look
20654         for and case ignoring info.
20655
20656         * threadpool.c: removed unused variable.
20657
20658 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20659
20660         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
20661         It takes 2 new parameters with an optional name for the property to look
20662         for and case ignoring info.
20663         Fixes bug #52753.
20664
20665 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
20666
20667         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
20668         Fix #52451.
20669
20670 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20671
20672         * appdomain.c:
20673         * assembly.c: escape the uri before passing it to g_filename_from_uri.
20674         Fixes bug #52630.
20675
20676 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
20677
20678         * reflection.c: Add support for more than one unmanaged resource.
20679
20680         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
20681         in field->def_value, as done in all other cases.
20682
20683         * reflection.c (mono_reflection_get_custom_attrs): Add support for
20684         TypeBuilders.
20685
20686         * reflection.c (mono_reflection_create_runtime_class): Remove 
20687         errorneous assignment to klass->element_class, since it is already
20688         done in mono_reflection_setup_internal_class.
20689
20690 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20691
20692         * gc.c: added missing LeaveCriticalSection.
20693         * icall.c: indented a couple of lines.
20694         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
20695         if we call EndInvoke inside a callback. Fixes bug #52601.
20696
20697 2004-01-07  Martin Baulig  <martin@ximian.com>
20698
20699         * mono-debug-debugger.h
20700         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
20701
20702 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
20703
20704         * appdomain.c: Use messages in NotImplementedException.
20705
20706         * exception.c (mono_get_exception_not_implemented): Now this takes
20707         a message argument.
20708
20709         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
20710         exception instead of g_asserting an aborting when something is not
20711         implemented.
20712
20713         Add some inline docs.
20714
20715 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
20716
20717         * reflection.h: Update after changes to object layout.
20718
20719         * reflection.c: Implement saving of unmanaged aka win32 resources.
20720
20721         * appdomain.c: Bump version number.
20722
20723         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
20724         Handle missing domains gracefully.
20725
20726 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
20727
20728         * file-io.c : On Windows, there are much more invalid_path_chars.
20729
20730 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
20731
20732         * class.h, object.c: prepare for GetType () speedup.
20733
20734 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
20735
20736         * profiler.c: workaround for --profile null reference exception on
20737           cygwin. Patch by Patrik Torstensson.
20738
20739 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
20740
20741         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
20742         make work for unaligned access.
20743
20744 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
20745
20746         * class.c: small cleanup (class->fields [i] -> field).
20747         * image.c: check address of metadata is valid.
20748
20749 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
20750
20751         * assembly.h assembly.c (mono_assembly_loaded): New public function to
20752         search the list of loaded assemblies.
20753
20754         * reflection.c (mono_reflection_type_from_name): Use 
20755         mono_assembly_loaded instead of mono_image_loaded.
20756
20757         * reflection.c: Fix warnings.
20758
20759 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
20760
20761         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
20762         is dynamic. This is needed since an assembly can contain both dynamic and
20763         non-dynamic images.
20764
20765         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
20766         assembly->dynamic.
20767
20768         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
20769
20770         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
20771         to store modules loaded using AddModule.
20772
20773         * reflection.c (mono_image_fill_file_table): Generalize this so it works
20774         on Modules.
20775
20776         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
20777
20778         * reflection.c (mono_image_fill_export_table_from_module): New function to
20779         fill out the EXPORTEDTYPES table from a module.
20780
20781         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
20782         into a separate function. Also handle loaded non-dynamic modules.
20783
20784         * reflection.c (mono_image_basic_init): Fix memory allocation.
20785
20786         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20787
20788         * assembly.c (mono_assembly_load_references): Make this public.
20789
20790 2003-12-19  Martin Baulig  <martin@ximian.com>
20791
20792         * class.c (mono_class_initialize_generic): Made this static, take
20793         a `MonoGenericInst *' instead of a `MonoClass *'.
20794         (mono_class_from_generic): Call mono_class_initialize_generic()
20795         unless we're already initialized or being called from
20796         do_mono_metadata_parse_generic_inst().
20797
20798         * class.h (MonoGenericInst): Added `initialized' and
20799         `init_pending' flags.
20800
20801         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
20802         `mono_class_init (gklass)' or mono_class_initialize_generic()
20803         here; set `generic_inst->init_pending' while parsing the
20804         `type_argv'.
20805
20806 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
20807
20808         * locales.c: include string.h for memxxx prototypes
20809
20810 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
20811
20812         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
20813         constructor when accessing literal fields.
20814
20815 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
20816
20817         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20818
20819         * reflection.c (assembly_add_resource_manifest): New function to fill
20820         the MANIFESTRESOURCE table.
20821
20822         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
20823
20824         * reflection.h: Update to changes in class layout.
20825
20826         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
20827         Reenable call to mono_runtime_is_shutting_down ().
20828
20829         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
20830         determine if the runtime is shutting down.
20831
20832 2003-12-16  Jackson Harper <jackson@ximian.com>
20833
20834         * icall.c: comment out call to mono_runtime_is_shutting_down to
20835         fix build.
20836         
20837 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
20838
20839         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
20840         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
20841
20842 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
20843
20844         * reflection.c: move definition of swap_with_size
20845         to before its first call
20846
20847 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
20848
20849         * appdomain.c (mono_runtime_is_shutting_down): New public function.
20850
20851         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
20852         icall.
20853
20854         * object.c: Fix warnings.
20855
20856         * icall.c (ves_icall_Type_Get...): Only consider inherited static
20857         members if FlattenHierarchy is set.
20858
20859         * reflection.c (mono_image_add_decl_security): New function to emit
20860         declarative security.
20861
20862         * reflection.h reflection.c: Add support for declarative security.
20863
20864         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
20865         
20866 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
20867
20868         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
20869         
20870         * appdomain.c verify.c: Moved corlib version checking into its own
20871         function in appdomain.c since it needs to create vtables etc.
20872
20873 2003-12-13  Patrik Torstensson <p@rxc.se>
20874
20875         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
20876         instead of unwrapped server.
20877
20878 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
20879
20880         * verify.c (check_corlib): Fix field index.
20881
20882 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
20883
20884         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
20885         GetGacPath icall.
20886
20887 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
20888
20889         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
20890         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
20891         cope with sizeof(size_t) != sizeof(guint32).
20892
20893 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20894
20895         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
20896         in case of failure.
20897
20898 2003-12-10  Mark Crichton <crichton@gimp.org>
20899
20900         * icall.c: removed the GetNonZeroBytes.  We now handle this case
20901         in managed code.
20902
20903         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
20904
20905 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
20906
20907         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
20908         marked as deleted.
20909
20910 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
20911
20912         * verify.c (check_corlib): Handle the case when the version field is 
20913         initialized by a static constructor.
20914
20915 2003-12-08  Patrik Torstensson  <p@rxc.se>
20916
20917     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
20918
20919 2003-12-08  Martin Baulig  <martin@ximian.com>
20920
20921         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
20922         a MonoReflectionGenericParameter, also take the parameter index
20923         and name as arguments.
20924         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
20925         (ves_icall_MonoGenericParam_initialize): New interncall.
20926         (ves_icall_Type_make_byref_type): New interncall.
20927
20928         * reflection.h (MonoReflectionGenericParam): Derive from
20929         MonoReflectionType, not just from MonoObject.  Added `refobj' and
20930         `index' fields.
20931
20932         * reflection.c (mono_reflection_define_generic_parameter): Create
20933         and return a new MonoReflectionGenericParam; don't initialize the
20934         constraints here.
20935         (mono_reflection_initialize_generic_parameter): New public method;
20936         initializes the constraints and creates the `param->pklass'.
20937
20938 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
20939
20940         * reflection.h reflection.c: Use the new fields 'num_types', 
20941         'num_fields' and 'num_methods' to track the number of types etc.
20942
20943         * verify.c (check_corlib): Check corlib version number.
20944
20945 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
20946
20947         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
20948         function works on all methods.
20949
20950 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
20951
20952         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
20953         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
20954         the custom_type_info flag of the transparent proxy.
20955         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
20956         objects that supports IRemotingTypeInfo.
20957         * object.h: Added custom_type_info field in transparent proxy.
20958
20959 2003-12-06  Martin Baulig  <martin@ximian.com>
20960
20961         * class.c (mono_class_create_from_generic): Removed.
20962         (mono_class_from_generic): Check `ginst->klass' before doing
20963         anything else.  This is important to fully support "recursive"
20964         generic types.
20965
20966         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
20967         empty `generic_inst->klass' before doing anything else.
20968
20969 2003-12-06  Dick Porter  <dick@ximian.com>
20970
20971         * verify.c: 
20972         * object.h:
20973         * icall.c:
20974         * locales.c: Use C structs to access class fields.  Don't do a
20975         conversion between MonoString and UChar because both are
20976         platform-endian UTF-16.  Compare now takes startindex and count
20977         parameters.  Add a char overload for IndexOf.  Speed up the
20978         invariant string IndexOf.
20979
20980 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
20981
20982         * Makefile.am (monosn_LDADD): Fix parallel build.
20983
20984 2003-12-04  Martin Baulig  <martin@ximian.com>
20985
20986         * icall.c
20987         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
20988         (ves_icall_Type_make_array_type): New interncall.       
20989
20990 2003-12-04  Martin Baulig  <martin@ximian.com>
20991
20992         * locales.c: also change it in the !HAVE_ICU case.
20993
20994 2003-12-04  Dick Porter  <dick@ximian.com>
20995
20996         * icall.c:
20997         * locales.c: construct_compareinfo is now in CompareInfo, not
20998         CultureInfo.
20999
21000 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
21001
21002         * image.c (mono_image_load_file_for_image): Cache loaded images in the
21003         image->files array.
21004
21005         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
21006         table as well.
21007
21008         * assembly.c (mono_assembly_load_references): Only load references
21009         once.
21010
21011         * class.c (mono_class_from_name): Avoid linear search of the 
21012         EXPORTEDTYPE table.
21013
21014         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
21015
21016 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
21017
21018         * image.h (MonoImage): Add 'field_cache' field.
21019
21020         * loader.c (mono_field_from_token): Cache field lookups.
21021         
21022         * reflection.c (mono_module_get_object): Fix name property.
21023
21024         * icall.c (ves_icall_get_enum_info): Update after changes to 
21025         mono_metadata_get_constant_index ().
21026
21027         * icall.c: Get rid of get_type_info icall, use a separate icall for
21028         each type property to avoid needless memory allocations. Fixes #51514.
21029
21030         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
21031         to avoid needless binary searches.
21032
21033         * class.c (class_compute_field_layout): Move the initialization of
21034         field->def_value to mono_class_vtable ().
21035
21036         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
21037         non-corlib types.
21038
21039         * object.c (mono_object_allocate): Make it inline.
21040
21041         * object.c (mono_object_allocate_spec): Make it inline.
21042         
21043 2003-12-02  Dick Porter  <dick@ximian.com>
21044
21045         * locales.c (create_NumberFormat): NumberFormatInfo construction.
21046         Patch by Mohammad DAMT (mdamt@cdl2000.com).
21047
21048 2003-12-01  Dick Porter  <dick@ximian.com>
21049
21050         * threads.c: Fix signature and call in CreateMutex and
21051         CreateEvent.
21052
21053 2003-12-01  Dick Porter  <dick@ximian.com>
21054
21055         * icall.c: 
21056         * locales.c: Implement string compares and searching
21057
21058         * object.h: Add extra Thread field
21059
21060 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
21061
21062         * reflection.c (fixup_method): Add support for MonoCMethod.
21063
21064 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
21065
21066         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
21067
21068         * reflection.c (assembly_name_to_aname): Allow extra characters in
21069         assembly names. Fixes #51468.
21070
21071 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
21072
21073         * exception.c (mono_exception_from_name_domain): New helper function.
21074
21075         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
21076         exception object in the correct domain.
21077
21078         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
21079         formatting + make a copy a the input data.
21080
21081         * loader.c (mono_get_method_from_token): Methods which contain
21082         native code do not have entries in the ImplMap.
21083
21084         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
21085         Thanks to Gonzalo for spotting this.
21086         
21087         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
21088         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
21089
21090         * assembly.h (mono_assembly_load_from): Split the second part of 
21091         assembly loading into a new public function.
21092
21093         * exception.h (mono_get_exception_bad_image_format): New function.
21094
21095 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
21096
21097         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
21098         Enumerate all modules inside a dynamic assembly. Fixes #51293.
21099         
21100         * icall.c: Add new icall for creating dynamic methods.
21101
21102         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
21103
21104         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
21105
21106         * reflection.c (mono_reflection_create_dynamic_method): New icall to
21107         create a dynamic method.
21108
21109         * reflection.c (resolve_object): New helper function.
21110
21111         * reflection.c: Generalize ReflectionMethodBuilder and the functions
21112         which manipulate it so they can also work on dynamic methods.
21113
21114         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
21115         creating the MonoReflectionMethodAux structure if it is not needed.
21116         
21117         * reflection.h verify.c: Update after changes to object layout.
21118
21119         * reflection.c (method_builder_encode_signature): Fix compilation on
21120         gcc 2.95.x.
21121
21122 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
21123
21124         * appdomain.h: Added support for context static fields. Added static_data
21125           field to MonoAppContext and renamed thread_static_fields to a more
21126           generic special_static_fields in MonoAppDomain, since it can now contain
21127           context static fields.
21128         * domain.c: Updated hashtable name.
21129         * object.c: Replaced field_is_thread_static() for a more generic
21130           field_is_special_static() which also checks for context static attribute.
21131           In mono_class_vtable(), added support for static context fields.
21132         * threads.c: Changed methods that manage thread static fields to more
21133           generic methods so they can be reused both for thread and context static
21134           data.
21135         * threads.h: Declared some new methods.
21136
21137 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
21138
21139         * reflection.h: Update after changes to the managed types.
21140
21141         * reflection.c (encode_custom_modifiers): New helper function.
21142
21143         * reflection.c (method_encode_signature): Emit custom modifiers.
21144
21145         * reflection.c (field_encode_signature): Emit custom modifiers.
21146
21147 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
21148
21149         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
21150
21151         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
21152         implementation.
21153
21154         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
21155         icall.
21156
21157         * object.c (mono_field_get_value_object): New function.
21158
21159         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
21160         specific.
21161
21162 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
21163
21164         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
21165         return a preallocated out-of-memory exception instance.
21166
21167         * object.c (out_of_memory): Use the new function.
21168
21169         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
21170         flag is before the custom modifiers. Fixes #49802.
21171
21172 2003-11-16  Martin Baulig  <martin@ximian.com>
21173
21174         * class.c (mono_class_is_open_constructed_type): Implemented the
21175         MONO_TYPE_GENERICINST case.
21176
21177 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
21178
21179         * assembly.c (mono_assembly_fill_assembly_name): New function to
21180         fill out the MonoAssemblyName structure.
21181         (mono_assembly_open): Use the new function.
21182
21183         * icall.c (fill_reflection_assembly_name): New helper function.
21184
21185         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
21186         new function.
21187
21188         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
21189
21190 2003-11-15  Martin Baulig  <martin@ximian.com>
21191
21192         * class.c (mono_class_is_open_constructed_type): New public
21193         function; checks whether a type is an open constructed type,
21194         ie. whether it still contains type parameters.
21195         (mono_class_inflate_generic_type): If we're a type parameter and
21196         the inflated type is also a MONO_TYPE_(M)VAR, return the original
21197         type.
21198
21199         * class.h (MonoGenericInst): Added `guint32 is_open'.
21200
21201         * loader.c (method_from_methodspec): Check whether we're an open
21202         or closed constructed type and set `ginst->is_open'.
21203
21204         * reflection.c (mono_reflection_bind_generic_parameters): Check
21205         whether we're an open or closed constructed type and set
21206         `ginst->is_open'.
21207         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
21208         from open constructed types.
21209
21210 2003-11-15  Martin Baulig  <martin@ximian.com>
21211
21212         * reflection.c (mono_reflection_bind_generic_parameters): If we're
21213         a generic instance (instead of a generic type declaration) with
21214         unbound generic parameters, bind them to our actual types.
21215
21216 2003-11-14  Martin Baulig  <martin@ximian.com>
21217
21218         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
21219
21220         * reflection.c (mono_reflection_bind_generic_parameters): If we're
21221         an interface type, populate `res->interfaces' with instantiated
21222         versions of all the interfaces we inherit.
21223
21224 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
21225
21226         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
21227         when MONO_PATH is set but doesn't contain the install dir.
21228
21229 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21230
21231         * icall.c:
21232         (ves_icall_Type_GetInterfaces): don't return an interface twice when
21233         it's also implemented in base classes. Fixes bug #50927.
21234
21235 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
21236
21237         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
21238         if this method is called from a finalizer. Fixes #50913.
21239
21240 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
21241
21242         * threads.c: Implement VolatileRead/VolatileWrite
21243
21244         * icall.c: Add new icalls for VolatileRead/VolatileWrite
21245
21246 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
21247
21248         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
21249         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
21250         2.95.3.
21251
21252         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
21253         from Peter Ross (pro@missioncriticalit.com).
21254         
21255 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
21256
21257         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
21258
21259 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
21260
21261         * assembly.c (mono_assembly_load_references): Disable check because it
21262         triggers on older corlibs which lots of people have.
21263
21264 2003-11-12  Jackson Harper  <jackson@ximian.com>
21265
21266         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
21267         load corlib.dll if mscorlib.dll is not found.
21268         * assembly.h: Remove corlib name define.
21269         * class.c:
21270         * domain.c:
21271         * image.c: Change corlib name to mscorlib.
21272         
21273 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
21274
21275         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
21276
21277 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
21278
21279         * appdomain.h: Added loader_optimization here to sync with the C#
21280         code, and add disallow_binding_redirects field.
21281
21282 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
21283
21284         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
21285
21286         * reflection.c (mono_image_build_metadata): Fix crash on modules
21287         with no types.
21288
21289         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
21290
21291         * icall.c (ves_icall_get_method_info): Return callingConvention as
21292         well.
21293
21294         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
21295         namespaces from the EXPORTEDTYPE table as well.
21296
21297         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
21298         from all modules inside the assembly.
21299         
21300 2003-11-11  Martin Baulig  <martin@ximian.com>
21301
21302         * reflection.c (mono_reflection_bind_generic_parameters): Make
21303         this work for interfaces.
21304
21305 2003-11-11  Martin Baulig  <martin@ximian.com>
21306
21307         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
21308
21309 2003-11-11  Martin Baulig  <martin@ximian.com>
21310
21311         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
21312         "MonoInflatedMethod" and "MonoInflatedCtor".
21313
21314 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
21315
21316         * reflection.c (resolution_scope_from_image): Use the assembly table
21317         from the manifest module, since other modules don't have it.
21318
21319         * debug-helpers.c (mono_type_full_name): New helper function.
21320
21321         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
21322
21323         * image.c (mono_image_load_file_for_image): New public function which
21324         is a replacement for the load_file_for_image in class.c.
21325
21326         * assembly.c (mono_assembly_load_module): A wrapper for the function
21327         above which does assembly association and reference loading too.
21328
21329         * class.c (mono_class_from_name): Call mono_assembly_load_module.
21330
21331 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21332
21333         * appdomain.c: not all of the attributes for the full assembly name
21334         are required and the order doesn't matter. Fixes bug #50787.
21335
21336 2003-11-10  Dick Porter  <dick@ximian.com>
21337
21338         * locales.c: Use platform-endian UTF16
21339
21340 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
21341
21342         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
21343         
21344 2003-11-10  Martin Baulig  <martin@ximian.com>
21345
21346         * metadata.c
21347         (mono_metadata_load_generic_params): Make this actually work.
21348
21349         * reflection.c (mono_reflection_bind_generic_parameters): If our
21350         parent is a generic instance, pass all the `types' to it, no
21351         matter whether it has the same number of type parameters or not.
21352
21353 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
21354
21355         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
21356
21357         * assembly.c (mono_assembly_load_references): Move the image<->assembly
21358         assignment code to this function so it gets called recursively for all
21359         modules.
21360
21361         * image.c (load_modules): Remove the assembly assignment since it is
21362         now done by mono_assembly_load_references.
21363         
21364         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
21365         Add 'module' argument.
21366         (mono_module_get_types): New helper function.
21367         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
21368
21369 2003-11-08  Martin Baulig  <martin@ximian.com>
21370
21371         * class.c (mono_class_inflate_generic_method): Interface method
21372         don't have a header.
21373
21374         * reflection.c (mono_image_get_methodspec_token): Take an
21375         additional `MonoGenericInst *' argument instead of reading it from
21376         the header; this is necessary to support interfaces.
21377         (mono_image_create_token): Pass the `MonoGenericInst *' from the
21378         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
21379         (inflated_method_get_object): Take an additional `MonoGenericInst *'
21380         argument.
21381
21382         * reflection.h (MonoReflectionInflatedMethod): Added
21383         `MonoGenericInst *ginst'.
21384
21385 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
21386
21387         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
21388
21389 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
21390
21391         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
21392
21393 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
21394
21395         * reflection.c 
21396         (reflection_methodbuilder_from_method_builder):
21397         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
21398         initialize a ReflectionMethodBuilder structure.
21399         (mono_image_get_methodbuilder_token):
21400         (mono_image_get_ctorbuilder_token): New functions to emit memberref
21401         tokens which point to types in another module inside the same assembly.
21402
21403         * reflection.c: Use the new helper functions.
21404         
21405         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
21406
21407         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
21408         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
21409
21410         * reflection.c (resolution_scope_from_image): Emit a moduleref if
21411         neccesary.
21412
21413         * reflection.c (mono_image_build_metadata): Emit metadata only for the
21414         current module. Emit the manifest only for the main module.
21415
21416         * reflection.c (mono_image_create_token): Add assertion when a 
21417         memberref needs to be created.
21418
21419         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
21420
21421         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
21422         larger buffer for the custom attribute blob. Fixes #50637.
21423         
21424 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21425
21426         * threadpool.c: notify listener on async processing handles after
21427         invoking the async callback. Thanks to Zoltan.
21428
21429 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
21430
21431         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
21432         avoid code duplication.
21433
21434         * reflection.h (MonoDynamicImage): New type which is currently unused,
21435         but will be used through the ref.emit code in place of 
21436         MonoDynamicAssembly.
21437
21438         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
21439         object layout.
21440
21441         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
21442         a MonoDynamicImage instead of just a MonoImage.
21443         
21444         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
21445         icalls to ModuleBuilder but keep their semantics, so they will work
21446         with moduleb->assemblyb. This will change later.
21447         
21448 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
21449
21450         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
21451         object layout.
21452
21453         * reflection.c (mono_image_build_metadata): Avoid creation of a default
21454         main module, since it is now done by the managed code.
21455
21456 2003-11-03  Martin Baulig  <martin@ximian.com>
21457
21458         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
21459         `ginst->klass' here.
21460         (method_encode_methodspec): Don't use the `ginst->generic_method's
21461         klass if it's a generic instance, use `ginst->klass' in this case.
21462
21463 2003-11-03  Martin Baulig  <martin@ximian.com>
21464
21465         * reflection.c (mono_image_get_generic_method_param_info):
21466         Removed, use mono_image_get_generic_param_info() instead.
21467         (mono_image_get_type_info): Write the GenericParam table before
21468         the Method table.  This is neccessary because in the GenericParam
21469         table, type parameters of the class (ie. '!0' etc.) must come
21470         before the ones from its generic methods (ie. '!!0' etc).
21471
21472 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
21473
21474         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
21475
21476 2003-11-02  Martin Baulig  <martin@ximian.com>
21477
21478         * reflection.c (create_generic_typespec): Take a
21479         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
21480         the generic parameters from it.
21481
21482 2003-11-02  Martin Baulig  <martin@ximian.com>
21483
21484         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
21485         instead of a `MonoClassField *' since we just need the type.
21486         (create_generic_typespec): New static function.  Creates a
21487         TypeSpec token for a generic type declaration.
21488         (mono_image_get_generic_field_token): New static function.
21489         (mono_image_create_token): If we're a FieldBuilder in a generic
21490         type declaration, call mono_image_get_generic_field_token() to get
21491         the token.
21492
21493 2003-11-02  Martin Baulig  <martin@ximian.com>
21494
21495         * reflection.h
21496         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
21497         `MonoReflectionGenericInst *declaring_type' and
21498         `MonoReflectionGenericInst *reflected_type' fields.
21499
21500         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
21501         `MonoReflectionGenericInst *declaring_type' and a
21502         `MonoReflectionGenericInst *reflected_type' argument instead of a
21503         single `MonoReflectionGenericInst *type' one.  Set
21504         `res->declaring_type' and `res->reflected_type' from them.
21505         (mono_reflection_inflate_field): Likewise.      
21506
21507 2003-11-02  Martin Baulig  <martin@ximian.com>
21508
21509         * class.c (mono_class_setup_vtable): Don't store generic methods
21510         in the vtable.  
21511
21512 2003-11-02  Martin Baulig  <martin@ximian.com>
21513
21514         * reflection.h (MonoReflectionGenericInst): Added
21515         `MonoReflectionType *declaring_type'.
21516
21517         * reflection.c (mono_reflection_bind_generic_parameters): Use
21518         `if (tb->parent)' instead of `klass->parent'.
21519
21520 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
21521
21522         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
21523         with an empty ASSEMBLY table.
21524
21525         * reflection.c (mono_image_build_metadata): Avoid using the same loop
21526         variable in the inner and outer loops.
21527
21528 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
21529
21530         * metadata.h (mono_metadata_make_token): Put parentheses around macro
21531         argument.
21532
21533         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
21534         
21535         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
21536         icalls. Instead, do everything in managed code. This is needed since
21537         it is hard to restore the original domain etc. in unmanaged code in the
21538         presence of undeniable exceptions.
21539
21540         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
21541         New icalls to push and pop appdomain refs.
21542
21543 2003-10-31  Martin Baulig  <martin@ximian.com>
21544
21545         * class.c (inflate_generic_type): Renamed to
21546         mono_class_inflate_generic_type() and made it public.
21547
21548         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
21549         New interncall.
21550
21551         * loader.c (mono_field_from_memberref): Also set the retklass for
21552         typespecs.
21553
21554         * fielder.c (mono_image_get_inflated_field_token): New static
21555         method; creates a metadata token for an inflated field.
21556         (mono_image_create_token, fixup_method): Added support for
21557         "MonoInflatedField".
21558         (fieldbuilder_to_mono_class_field): New static function.
21559         (mono_reflection_inflate_field): New public function.
21560
21561         * reflection.h
21562         (MonoReflectionGenericInst): Added `MonoArray *fields'.
21563         (MonoReflectionInflatedField): New typedef.     
21564
21565 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
21566
21567         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
21568         for Solaris and other platforms without s6_addr16
21569
21570 2003-10-30  Martin Baulig  <martin@ximian.com>
21571
21572         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
21573         argument instead of two.
21574         (mono_class_inflate_generic_signature): Likewise.
21575         (inflate_generic_header): Likewise.
21576         (mono_class_inflate_generic_method): Likewise.  In addition, if
21577         `ginst->klass' is set, it becomes the new `method->klass'.
21578
21579         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
21580         field.
21581
21582         * reflection.c (encode_generic_method_sig): Write a 0xa as the
21583         first byte. [FIXME]
21584         (method_encode_methodspec): If we have generic parameters, create
21585         a MethodSpec instead of a MethodRef.
21586         (fixup_method): Added support for "MonoInflatedMethod" and
21587         "MonoInflatedCtor".
21588         (mono_image_create_token): Added support for "MonoInflatedMethod"
21589         and "MonoInflatedCtor".
21590         (inflated_method_get_object): New static function; returns a
21591         managed "System.Reflection.MonoInflatedMethod" object.
21592         (mono_reflection_bind_generic_method_parameters): Return a
21593         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
21594         (mono_reflection_inflate_method_or_ctor): Likewise.
21595         (mono_image_get_generic_method_param_info): Initialize unused
21596         fields to zero.
21597         (mono_image_get_generic_param_info): Likewise.
21598
21599         * reflection.h (MonoReflectionInflatedMethod): New public
21600         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
21601         "S.R.MonoInflatedCtor" classes.
21602
21603         * loader.c (method_from_memberref): If we're a TypeSpec and it
21604         resolves to a generic instance, inflate the method.
21605
21606 2003-10-28  Dick Porter  <dick@ximian.com>
21607
21608         * object.c (mono_runtime_run_main): Convert command-line arguments
21609         into utf8, falling back to the user's locale encoding to do so.
21610
21611 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
21612
21613         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
21614         at this time.
21615
21616         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
21617
21618         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
21619         up icalls at method definition time. Partially fixes #33569.
21620
21621 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
21622
21623         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
21624         marshalling of arrays. Fixes #50116.
21625
21626         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
21627
21628         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
21629         points to a vtable in the dying appdomain.
21630
21631         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
21632         listeners into unmanaged code inside the lock.
21633
21634         * object.c (mono_class_vtable): Turn off typed allocation in non-root
21635         domains and add some comments.
21636
21637 2003-10-25  Martin Baulig  <martin@ximian.com>
21638
21639         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
21640
21641         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
21642
21643         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
21644         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
21645         currently parsing.  Create the generic class and store it in
21646         `generic_inst->klass' before parsing the type arguments.  This is
21647         required to support "recursive" definitions; see mcs/tests/gen-23.cs
21648         for an example.
21649         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
21650         to support recursive typespec entries.
21651
21652         * class.c (mono_class_setup_parent): If our parent is a generic
21653         instance, we may get called before it has its name set.
21654         (mono_class_from_generic): Splitted into
21655         mono_class_create_from_generic() and mono_class_initialize_generic().
21656
21657 2003-10-25  Martin Baulig  <martin@ximian.com>
21658
21659         * icall.c (ves_icall_Type_BindGenericParameters): Return a
21660         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
21661         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
21662         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
21663
21664         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
21665         (create_typespec): Likewise.
21666         (mono_reflection_bind_generic_parameters): Return a
21667         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
21668         (mono_reflection_inflate_method_or_ctor): New public function.
21669
21670         * reflection.h (MonoReflectionGenericInst): New typedef.        
21671
21672 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
21673
21674         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
21675         inside the domain lock. Fixes #49993.
21676         
21677         * object.c (mono_class_vtable): When typed allocation is used, 
21678         allocate vtables in the GC heap instead of in the mempool, since the
21679         vtables contain GC descriptors which are used by the collector even
21680         after the domain owning the mempool is unloaded.
21681
21682         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
21683
21684         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
21685         reflect what it does. Also invalidate mempools instead of freeing
21686         them if a define is set.
21687
21688         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
21689         of the appdomain.
21690         
21691         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
21692         hold the finalizable objects in this domain.
21693
21694         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
21695         appdomain.
21696
21697         * appdomain.c (mono_domain_set): New function to set the current
21698         appdomain, but only if it is not being unloaded.
21699
21700         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
21701         appdomain which is being unloaded.
21702         
21703         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
21704         unloading of the root appdomain.
21705
21706         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
21707         icall to execute a method in another appdomain. Intended as a 
21708         replacement for InternalSetDomain, which can confuse the code 
21709         generation in the JIT.
21710
21711         * appdomain.c (mono_domain_is_unloading): New function to determine
21712         whenever an appdomain is unloading.
21713
21714         * appdomain.c (mono_domain_unload): New function to correctly unload
21715         an appdomain.
21716
21717         * assembly.c (mono_assembly_load_references): Check that an assembly
21718         does not references itself.
21719
21720         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
21721         domain manually, it asks the finalizer thread to do it, then waits for
21722         the result. Also added a timeout.
21723
21724         * icall.c: Register the new icalls.
21725
21726         * threads.h threads.c: Export the mono_gc_stop_world and 
21727         mono_gc_start_world functions.
21728         
21729         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
21730         function to fill out the mempool with 0x2a.
21731
21732 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
21733
21734         * reflection.h (MonoReflectionMethodAux): New structure to store
21735         information which is rarely used, thus is not in the MonoMethod
21736         structure.
21737
21738         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
21739         store the aux info.
21740
21741         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
21742         and marshalling info into the aux structure.
21743
21744         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
21745         from the aux structure.
21746
21747         * loader.c (mono_method_get_param_names): Retrieve the param names from
21748         the aux structure.
21749         
21750 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
21751
21752         * exception.h exception.c: Add AppDomainUnloadedException && fix 
21753         warning.
21754
21755 2003-10-21  Dick Porter  <dick@ximian.com>
21756
21757         * socket-io.c
21758         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
21759         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
21760
21761 2003-10-21  Martin Baulig  <martin@ximian.com>
21762
21763         * reflection.c (mono_reflection_bind_generic_parameters):
21764         `klass->parent' is NULL for interfaces.
21765
21766 2003-10-21  Martin Baulig  <martin@ximian.com>
21767
21768         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
21769
21770 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
21771
21772         * exception.c (mono_exception_from_name_msg): New helper function for
21773         creating exceptions and initializing their message field.
21774
21775         * exception.c: Simplify functions using the new helper.
21776
21777         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
21778         New function.
21779
21780         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
21781         mono_raise_exception, since otherwise gcc doesn't generate the function
21782         epilog for raise_exception, confusing the stack unwinding in the JIT.
21783         Fixes #45043.
21784
21785         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
21786         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
21787         Fixes #49499.
21788
21789 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21790
21791         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
21792         utf8.
21793
21794 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
21795
21796         * icall.c: Removed GetUninitializedObject method because
21797           AllocateUninitializedClassInstance does the same.
21798
21799 2003-10-18  Martin Baulig  <martin@ximian.com>
21800
21801         * class.c (inflate_generic_signature): Renamed to
21802         mono_class_inflate_generic_signature() and made it public.
21803         (my_mono_class_from_generic_parameter): New static function; if we
21804         don't already have the generic parameter's MonoClass, create a
21805         very simple one which is just used internally in the runtime and
21806         not passed back to managed code.
21807
21808         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
21809
21810         * metadata.h (MonoMethodSignature): Moved the
21811         `MonoGenericParam *gen_params' to the MonoMethodHeader.
21812         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
21813
21814         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
21815         ves_icall_MonoMethod_GetGenericArguments(); this is now an
21816         interncall on the MonoMethod class, not on MethodInfo.
21817         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
21818         calling mono_reflection_bind_generic_method_parameters() directly.
21819
21820         * loader.c (mono_method_get_signature): If this is a MethodSpec;
21821         return the already computed `method->signature'.
21822         (method_from_methodspec): New static function to load a method
21823         from a MethodSpec entry.
21824         (mono_get_method_from_token): Call the new method_from_methodspec()
21825         for MethodSpec tokens.  
21826         (mono_get_method_from_token): If we're a generic method, load the
21827         type parameters.
21828
21829         * reflection.c (mono_image_get_memberref_token): Allow
21830         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
21831         table.
21832         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
21833         (mono_image_create_token): First check whether it's a generic
21834         method (so we'd need to create a MethodSpec), then do the other
21835         two alternatives.
21836         (mono_reflection_bind_generic_method_parameters): Return a
21837         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
21838         called directly from the interncall.
21839
21840 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
21841
21842         * reflection.c (load_public_key): Move loading of the public key
21843         into managed code.
21844
21845         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
21846
21847         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
21848         fields.
21849
21850         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
21851         culture, hash_alg and public_key. Fixes #49555.
21852
21853 2003-10-17  Martin Baulig  <martin@ximian.com>
21854
21855         * class.h (MonoGenericInst): Moved this declaration here and added
21856         `MonoMethod *generic_method'.
21857
21858         * icall.c
21859         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
21860         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
21861
21862         * metadata.c (mono_metadata_type_equal): Two types of
21863         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
21864         index; ie. don't compare the address of the `MonoGenericParam'
21865         structure.
21866         (mono_metadata_load_generic_params): Removed the `MonoMethod
21867         *method' argument.
21868
21869         * metadata.h (MonoGenericInst): Moved declaration to class.h.
21870         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
21871
21872         * reflection.c (method_encode_signature): Encode the number of
21873         generic parameters.
21874         (encode_generic_method_sig): New static function.
21875         (method_encode_methodspec): New static function; creates an entry
21876         in the MethodSpec table for a generic method.
21877         (mono_image_get_methodspec_token): New static function.
21878         (mono_image_create_token): Call mono_image_get_methodspec_token()
21879         for generic methods.
21880         (mono_reflection_bind_generic_method_parameters): New public
21881         function.  Instantiates a generic method.
21882
21883 2003-10-16  Martin Baulig  <martin@ximian.com>
21884
21885         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
21886         *gen_params' here from MonoMethodHeader.
21887
21888         * metadata.c (mono_metadata_parse_method_signature): If we have
21889         generic parameters, initialize `method->gen_params' and then set
21890         the correct `type->data.generic_param' in all the parameters.
21891
21892 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
21893
21894         * threads.c (mono_threads_get_default_stacksize): New function to 
21895         return the default stacksize.
21896
21897         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
21898         termination of the finalizer thread, since the previous method had
21899         race conditions. Fixes #49628.
21900
21901         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
21902         as for the other managed threads.
21903
21904 2003-10-16  Martin Baulig  <martin@ximian.com>
21905
21906         * class.c (inflate_generic_signature): Copy `generic_param_count'
21907         and `gen_params'.
21908
21909         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
21910         New interncall.
21911
21912         * metadata.c (mono_metadata_parse_method_signature): Actually set
21913         the `method->generic_param_count' here.
21914         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
21915
21916 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
21917
21918         * object.h: Add a new field to TypedRef to simplify the implementation
21919         of the REFANY opcodes in the JIT.
21920
21921         * icall.c: Make use of the new field.
21922
21923         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
21924         dynamically.
21925
21926 2003-10-15  Martin Baulig  <martin@ximian.com>
21927
21928         * class.c (mono_class_from_gen_param): Renamed to
21929         mono_class_from_generic_parameter() and moved most of the
21930         functionality from mono_reflection_define_generic_parameter()
21931         here; ie. we create a "real" class here.
21932         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
21933         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
21934         previously been called.
21935
21936         * class.h (MonoGenericParam): Moved the declaration of this struct
21937         here from metadata.h and added `MonoMethod *method'.
21938
21939         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
21940         interncall.
21941
21942         * loader.c (mono_get_method_from_token): If we have any generic
21943         parameters, call mono_metadata_load_generic_params() to read them
21944         from the MONO_TABLE_GENERICPAR.
21945
21946         * metadata.c (mono_metadata_load_generic_params): Added
21947         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
21948
21949         * metadata.h (MonoMethodSignature): Replaced
21950         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
21951         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
21952
21953         * reflection.c (mono_reflection_define_generic_parameter): Moved
21954         most of the functionality into the new
21955         mono_class_from_generic_parameter(); set the `method' field if
21956         we're a method parameter.       
21957
21958 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
21959
21960         * marshal.c (emit_struct_conv): if native size is 0
21961         emit no code.
21962
21963 2003-10-14  Martin Baulig  <martin@ximian.com>
21964
21965         * icall.c: The generics API has changed in the spec since it was
21966         added to System.Type; these modifications make it match the spec
21967         again.
21968         (ves_icall_Type_GetGenericParameters): Renamed to
21969         `ves_icall_Type_GetGenericArguments'.
21970         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
21971         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
21972         `ves_icall_MonoType_get_HasGenericArguments'.
21973         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
21974         `ves_icall_MonoType_get_IsGenericParameter'.
21975         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
21976         this is no interncall anymore.
21977         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
21978         `ves_icall_TypeBuilder_get_IsGenericParameter'.
21979
21980 2003-10-14  Martin Baulig  <martin@ximian.com>
21981
21982         * reflection.c (mono_reflection_bind_generic_parameters): Also
21983         inflate generic methods if we're reading the class from IL.
21984
21985 2003-10-13  Martin Baulig  <martin@ximian.com>
21986
21987         * reflection.c (mono_reflection_define_generic_parameter): This
21988         method isn't called directly from the icall anymore; take a
21989         `MonoReflectionAssemblyBuilder *' so we can use this for type and
21990         method generic parameters.
21991         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
21992         (method_builder_encode_signature): Encode generic parameters.
21993         (mono_image_get_method_info): Write generic params to the
21994         MONO_TABLE_GENERICPARAM table.
21995
21996         * reflection.h (MonoReflectionMethodBuilder): Added
21997         `MonoArray *generic_params'.
21998
21999         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
22000
22001         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
22002         wrapper for mono_reflection_define_generic_parameter().
22003         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
22004
22005 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
22006
22007         * marshal.h: Add missing function to fix build.
22008
22009         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
22010         the SetLastError pinvoke attribute.
22011
22012         * marshal.c (mono_marshal_set_last_error): New helper function called
22013         by the generated code.
22014         
22015         * marshal.c (mono_mb_emit_branch): New helper function.
22016
22017         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
22018
22019         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
22020         classes as parameters and return values of delegates. Fixes #29256. 
22021
22022 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
22023
22024         * locales.c: use gint32 in non HAVE_ICU case
22025
22026 2003-10-11  Martin Baulig  <martin@ximian.com>
22027
22028         * mono-debug.c (mono_debug_add_method): Added a workaround for
22029         bug #48591.
22030
22031 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
22032
22033         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
22034         delegates passed to native code must use the STDCALL calling 
22035         convention. Fixes #35987.
22036
22037 2003-10-10  Martin Baulig  <martin@ximian.com>
22038
22039         * class.c (inflate_generic_type): If we're inflating for a generic
22040         type instance (and not for a generic method), return
22041         MONO_TYPE_MVAR unchanged.
22042
22043 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22044
22045         * string-icalls.c: Join ignores null strings in the source array.
22046         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
22047         * threads.c: GetAvailableTheads is slightly more accurate.
22048
22049 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
22050
22051         * threads.h threads.c : add mono_threads_set_default_stacksize
22052         and pass default to CreateThread calls.
22053
22054 2003-10-09  Dick Porter  <dick@ximian.com>
22055
22056         * icall.c:
22057         * locales.h:
22058         * locales.c: Internal calls for constructing CultureInfo and
22059         related objects from libicu (if its available.)
22060
22061 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
22062
22063         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
22064
22065 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22066
22067         * threadpool.c: added an argument to async_invoke_thread that is the
22068         item to process, pass the MonoAsyncResult to the thread start function
22069         when creating a new thread. This way we don't need to acquire any lock
22070         when we're creating a new thread. Readded a semaphore for faster
22071         response times (instead of that Sleep i added).
22072
22073 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
22074
22075         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
22076         get daylight change dates better on Windows, fix handling
22077         of platforms without tm_gmtoff.
22078
22079 2003-10-06  Martin Baulig  <martin@ximian.com>
22080
22081         * class.c (inflate_generic_method): Renamed to
22082         mono_class_inflate_generic_method() and made public.
22083         (mono_class_init): Don't inflate the generic methods here.
22084         (mono_class_from_generic): Added `gboolean inflate_methods'
22085         argument.  Inflate the methods here.
22086
22087         * loader.c (mono_method_get_param_names): Ignore instances of
22088         generic types for the moment.
22089
22090         * reflection.c (fixup_method): Added support for inflated methods.
22091         (mono_image_create_token): Use mono_image_get_methodref_token()
22092         for inflated methods.
22093         (mono_custom_attrs_from_param): Ignore instances of generic types
22094         for the moment.
22095         (mono_reflection_bind_generic_parameters): New public function.
22096         Moved all the functionality from
22097         ves_icall_Type_BindGenericParameters() here and added support for
22098         dynamic types.
22099         (mono_reflection_define_generic_parameter): Initialize
22100         `klass->methods' here.
22101
22102         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
22103         functionality into mono_reflection_define_generic_parameter().
22104         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
22105         TypeBuilder, return that TypeBuilder.
22106
22107 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22108
22109         * appdomain.c: removed mono_delegate_semaphore.
22110
22111         * threadpool.c:
22112         (mono_thread_pool_add): moved hash table creation inside and the thread 
22113         creation outside of the critical region.
22114         (mono_thread_pool_finish): removed obsolete code.
22115         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
22116         continue or exit the thread depending on the queue.
22117
22118 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
22119
22120         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
22121         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
22122         handle more bool marshalling options
22123
22124 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
22125
22126         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
22127         arrays of structs. Also add a more descriptive error message when
22128         a structure member is marshalled as LPArray.
22129
22130 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
22131
22132         * marshal.c (mono_marshal_get_native_wrapper): Add support for
22133         marshalling arrays of complex types. Fixes #29098. Also remove an
22134         usused and incomplete function.
22135
22136 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
22137
22138         * gc.c: report heap_size - free_bytes as total memory allocated
22139         (bug#49362).
22140
22141 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
22142
22143         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
22144         fix timezone handling problems on Windows.
22145         
22146         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
22147         asserts when the year is outside the range handled by ms the functions.
22148
22149         * class.c (setup_interface_offsets): If the class is an interface,
22150         fill out its interface_offsets slot.
22151
22152 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22153
22154         * threadpool.c: mark threadpool threads as background.
22155
22156 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
22157
22158         * decimal.c - define DECINLINE to nothing if not using GCC
22159
22160 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
22161
22162         * assembly.c: More refcount fixes.
22163
22164 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22165
22166         * string-icalls.c: if we're not trimming, return the same string.
22167         When not splitting, don't create a new string.
22168
22169 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22170
22171         * image.c:
22172         (mono_image_open): increment the ref_count inside the critical section.
22173
22174 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
22175
22176         * image.c (mono_image_open): Fix reference counting bug.
22177
22178 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
22179
22180         * marshal.c (mono_marshal_type_size) struct alignment changed for 
22181         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
22182         64bits. Avoid leak in mono_marshal_get_native_wrapper when
22183         mono_lookup_pinvoke_call throws.        
22184
22185 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
22186
22187         * reflection.c (mono_reflection_parse_type): Fix #49114.
22188
22189         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
22190         temporary workaround for cygwin header problem.
22191
22192         * object.c (mono_object_isinst): Synchronize this with the code
22193         generated by the JIT for casts.
22194
22195 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
22196
22197         * reflection.c (encode_type): Fix #38332.
22198
22199 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
22200
22201         * marshal.c (mono_marshal_method_from_wrapper): New function to return
22202         the original method from the wrapper method.
22203
22204 2003-09-25  Martin Baulig  <martin@ximian.com>
22205
22206         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
22207         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
22208         (ves_icall_Type_get_IsGenericInstance): New interncall.
22209
22210 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
22211
22212         * object.c: fix cast warning in big endian code.
22213
22214 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
22215
22216         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
22217         
22218 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22219
22220         * assembly.c: don't call check_env from mono_assembly_load. It's
22221         already done once in mono_assemblies_init and may cause headaches when
22222         multiple threads are loading assemblies.
22223
22224 2003-09-19  Martin Baulig  <martin@ximian.com>
22225
22226         * reflection.c (mono_reflection_define_generic_parameter): Don't
22227         allocate `klass->methods', set `klass->flags' to
22228         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
22229
22230 2003-09-18  Martin Baulig  <martin@ximian.com>
22231
22232         * class.c (mono_class_init): Don't create `class->methods' if it's
22233         already initialized.
22234
22235         * metadata.c (mono_metadata_load_generic_params): Make this
22236         actually work.
22237
22238         * reflection.c (mono_reflection_define_generic_parameter): Set
22239         parent class and interfaces from the constraints.
22240
22241         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
22242         to keep this struct in sync with the declaration in TypeBuilder.cs.
22243
22244 2003-09-17  Martin Baulig  <martin@ximian.com>
22245
22246         * metadata.h (MonoType): Replaced the data's `int type_param'
22247         field with `MonoGenericParam *generic_param'.
22248         (MonoGenericParam): Added `MonoClass *klass'.
22249
22250         * class.c (mono_class_from_gen_param): Removed the
22251         `MonoImage *image' and `int type_num' arguments.
22252
22253         * metadata.c (mono_metadata_parse_generic_param): New static
22254         method; creates a MonoGenericParam which just contains the index.
22255         (do_mono_metadata_parse_type): Call
22256         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
22257         MONO_TYPE_MVAR.
22258
22259         * reflection.c (mono_image_typedef_or_ref): Generic type
22260         parameters may be in the same assembly, but never use a typedef
22261         for them.
22262         (mono_reflection_define_generic_parameter): We're now creating a
22263         "real" class for the type parameter; it's now safe to call
22264         mono_class_from_mono_type() on the class'es type, it'll do the
22265         right thing.
22266
22267 2003-09-16  Martin Baulig  <martin@ximian.com>
22268
22269         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
22270         `symfile->range_entry_size' and `symfile->class_entry_size' here;
22271         the `symfile' data structure must be fully initialized before it
22272         gets added to the table.
22273
22274 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
22275
22276         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
22277
22278         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
22279         class init trampolines.
22280
22281 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
22282
22283         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
22284         to the built-in profiler to turn off time and allocation profiling
22285         respectively.
22286
22287 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
22288
22289         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
22290         g_direct_equal.
22291
22292         * debug-helpers.c (mono_method_full_name): Print the wrapper type
22293         in human readable form.
22294
22295 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
22296
22297         * reflection.c icall.c: Fixed warnings.
22298
22299         * image.c (load_class_names): Use a temporary hash table to hold the
22300         namespaces in order to avoid doing many string comparisons.
22301
22302         * image.h: Fix typo.
22303
22304         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
22305         Pass NULL instead of g_direct_equal to the GHashTable constructor 
22306         since the NULL case is short-circuited inside g_hash_table_lookup, 
22307         leading to better performance.  
22308
22309         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
22310         obtain the first custom attribute for a given index. Depends on the
22311         CustomAttribute table being sorted by the parent field.
22312
22313         * reflection.c (mono_custom_attrs_from_index): Use the new function 
22314         for better performance.
22315
22316 2003-09-07  Martin Baulig  <martin@ximian.com>
22317
22318         * class.c (mono_class_init): If we're a generic instance, inflate
22319         all our methods instead of loading them from the image.
22320         (mono_class_from_generic): Set `class->methods = gklass->methods'.
22321
22322 2003-09-07  Martin Baulig  <martin@ximian.com>
22323
22324         * mono-debug-debugger.c: Added support for constructors.
22325
22326 2003-09-06  Martin Baulig  <martin@ximian.com>
22327
22328         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
22329         New interncall.
22330
22331         * reflection.c (mono_reflection_setup_generic_class): Call
22332         ensure_runtime_vtable() to create the vtable.
22333
22334 2003-09-05  Martin Baulig  <martin@ximian.com>
22335
22336         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
22337         MONO_TYPE_MVAR.
22338
22339 2003-09-04  Martin Baulig  <martin@ximian.com>
22340
22341         * reflection.c (mono_reflection_define_generic_parameter): Generic
22342         parameters start with zero.
22343
22344 2003-09-04  Martin Baulig  <martin@ximian.com>
22345
22346         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
22347
22348         * reflection.h (MonoReflectionGenericParam): New typedef.
22349         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
22350         the generic parameters from the managed TypeBuilder.
22351
22352         * reflection.c (mono_reflection_define_generic_parameter): New function.
22353         (mono_reflection_create_runtime_class): Encode generic parameters.
22354         (mono_reflection_setup_generic_class): New function; this is
22355         called after adding adding all generic params to the TypeBuilder.
22356         (encode_type): Added MONO_TYPE_VAR.
22357
22358 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
22359
22360         * class.h class.c (mono_class_needs_cctor_run): Moved this method
22361         here from the JIT.
22362
22363         * assembly.h assembly.c: Moved the AOT loading code into an assembly
22364         load hook.
22365
22366 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
22367
22368         * reflection.h reflection.c class.h class.c: Delete duplicate 
22369         definition of mono_type_get_name () from reflection.c and export the
22370         one in class.c.
22371
22372         * class.c: Class loading fixes from Bernie Solomon 
22373         (bernard@ugsolutions.com).
22374
22375         * reflection.c: Endianness fixes from Bernie Solomon 
22376         (bernard@ugsolutions.com).
22377         
22378 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
22379
22380         * assembly.h assembly.c: Define a file format version for AOT
22381         libraries.
22382         
22383         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
22384
22385         * appdomain.h (MonoJitInfo): New field to determine whenever the
22386         code is domain neutral.
22387         
22388 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
22389
22390         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
22391
22392 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
22393
22394         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
22395         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
22396         Avoid caching the result since strings must be domain specific. Fixes
22397         #48050.
22398
22399 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
22400
22401         * marshal.c (mono_marshal_init): Make this callable multiple times
22402         since it is hard to find a correct place to call it.
22403
22404         * object.c (mono_runtime_class_init): Execute static constructors in
22405         the correct appdomain.
22406
22407         * image.c (build_guid_table): Handle the case when multiple images have
22408         the same GUID.
22409
22410 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22411
22412         * icall.c: added a couple of icalls for System.Web.
22413
22414 2003-08-28  Martin Baulig  <martin@ximian.com>
22415
22416         * icall.c (ves_icall_Type_BindGenericParameters): Use
22417         `klass->generic_inst' instead of `&klass->byval_arg' in the
22418         mono_type_get_object() call.  The returned type must be
22419         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
22420
22421 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
22422
22423         * NOTES: New file.
22424
22425         * object.c (mono_class_proxy_vtable): Make it thread safe.
22426
22427         * pedump.c: Fix warning.
22428
22429         * object.c appdomain.h: Get rid of metadata_section. 
22430         It is no longer needed and it was causing deadlocks with domain->lock.
22431
22432         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
22433
22434 2003-08-26  Martin Baulig  <martin@ximian.com>
22435
22436         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
22437
22438 2003-08-26  Martin Baulig  <martin@ximian.com>
22439
22440         * pedump.c (main): Call mono_metadata_init(),
22441         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
22442         and mono_loader_init().
22443
22444 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
22445
22446         * loader.h: Add missing include to fix build.
22447
22448         * image.h: mono_image_load_references is no more.
22449
22450         * assembly.c: Reworked assembly loading to make it really thread safe.
22451         After these changes, the assembly returned by mono_assembly_open is
22452         fully initialized, i.e. all its references assemblies are loaded.
22453
22454         * assembly.c (mono_image_load_references): Renamed to 
22455         mono_assembly_load_references, and made private, since clients no
22456         longer need to call it.
22457
22458         * class.c: Removed calls to mono_assembly_load_references, since it was
22459         a source of deadlocks.
22460
22461         * loader.h loader.c class.h class.c: Protect data structures using a 
22462         new lock, the loader lock.
22463
22464         * class.c (mono_class_setup_vtable): Create temporary hash tables and
22465         GPtrArrays only when needed.
22466
22467         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
22468         into empty structures by mcs. Fixes pinvoke7.cs.
22469         
22470         * domain.c (mono_init): Call a new initialization function.
22471
22472         * appdomain.c (mono_runtime_init): Call the new initializer function
22473         of the marshal module.
22474
22475         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
22476         inserted into empty structures by mcs. Fixes pinvoke7.cs.
22477
22478         * marshal.h marshal.c: Added locks around the wrapper caches to make
22479         this module thread safe.
22480
22481         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
22482         this argument. Fixes pinvoke1.exe.
22483
22484 2003-08-25  Lluis Sanchez <lluis@ximian.com>
22485
22486         * object.h: Added call_type field to MonoMethodMessage and the corresponding
22487         enumeration of values. Removed fields to store remote call output values in
22488         MonoAsyncResult. Not needed any more.
22489         * object.c: Initialize call_type and async_result fields in mono_message_init.
22490         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
22491         dispatching the message.
22492         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
22493         async call to finish. To do it use a message with EndInvoke call type.
22494
22495 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
22496
22497         * loader.h loader.c (mono_method_hash_marhal_info): New function which
22498         determines whenever a method has marshalling info.
22499
22500 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22501
22502         * assembly.c: fix the build on windows.
22503
22504 2003-08-22 Lluis Sanchez <lluis@ximian.com>
22505
22506         * object.cs: Fixed bug #47785.
22507
22508 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
22509
22510         * string-icalls.c (StringReplace): If their are no occurances of
22511         the old string found return a reference to the supplied
22512         string. This saves some memory and matches MS behavoir.
22513         
22514 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22515
22516         * socket-io.c: fixed compilation for systems that define AF_INET6
22517         and don't define SOL_IP/SOL_IPV6.
22518
22519 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
22520
22521         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
22522         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
22523
22524         * rawbuffer.c rawbuffer.h: Make this module thread safe.
22525
22526         * domain.c: Make this module thread safe.
22527
22528         * domain.c (mono_init): Call new initialization function.
22529
22530         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
22531         reference types too. Fixes #38812.
22532
22533         * image.c (mono_image_init): Fixed warnings.
22534
22535         * class.c (mono_class_from_typeref): Handle assembly load failure
22536         correctly.
22537
22538         * appdomain.c (add_assemblies_to_domain): Handle the case when
22539         the references of an assembly are not yet loaded.
22540
22541         * metadata.c image.c assembly.c: Moved initialization of global
22542         variables to a separate function called at startup since lazy 
22543         initialization of these variables is not thread safe.
22544         
22545         * image.c assembly.c: Made this module thread safe by adding locks in 
22546         the appropriate places.
22547
22548         * domain.c (mono_init): Call the new initialization functions of the
22549         three modules.
22550
22551 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
22552
22553         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
22554           make a direct call. It is proxy's work to make the call asynchronous.
22555           mono_delegate_end_invoke(): If the targe is a proxy, just collect
22556           the return values.
22557         * object.cs: mono_method_call_message_new(): read AsyncResult and
22558           state object from parameters list, if this info is requested.
22559         * object.h: Added fields to store remote call output values in
22560           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
22561
22562 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
22563
22564         * object.h: add needed fields to MonoThread.
22565         * threads.c, threads.h: allow registering a function to cleanup data
22566         allocated per thread by the JIT.
22567
22568 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
22569
22570         * loader.h: portability fix by Bernie Solomon
22571         * <bernard@ugsolutions.com>.
22572
22573 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
22574
22575         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
22576         return a MonoArray. This simplifies the code and also ensures that
22577         the cache allways contains an object reference as a value.
22578
22579         * icall.c (ves_icall_get_parameter_info): Simplified using the new
22580         function.
22581
22582 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22583
22584         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
22585         fixes a problem with byte ordering when getting the address family for
22586         a socket.
22587
22588 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
22589
22590         * .cvsignore: Added monosn.
22591
22592         * reflection.h reflection.c loader.c: Added support for parameter
22593         marshalling to dynamically created types. Fixes #47295.
22594
22595 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
22596
22597         * rand.c: remove useless warnings.
22598
22599 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
22600
22601         * class.c: implemented ldtoken for methods and fieldrefs.
22602
22603 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22604
22605         * threadpool.c: when mono_async_invoke was called, no one took care of
22606         monitoring the queue. So if the method invoked took some time and we
22607         got new async invoke requests after 500 ms (the thread created waited
22608         that long in WaitForSingleObject), the new async invoke was not called
22609         until the previous one finished.
22610
22611         This is fixed now. Thanks to Totte for helping with it.
22612
22613 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22614
22615         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
22616
22617 2003-08-11  Martin Baulig  <martin@ximian.com>
22618
22619         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
22620
22621 2003-08-06  Martin Baulig  <martin@ximian.com>
22622
22623         * mono-debug-debugger.c: Added support for static fields,
22624         properties and methods.
22625
22626 2003-08-06  Martin Baulig  <martin@ximian.com>
22627
22628         * mono-debug-debugger.c: Don't store the MonoString's vtable to
22629         make this work for applications with multiple application domains.
22630
22631 2003-08-04  Martin Baulig  <martin@ximian.com>
22632
22633         * mono-debug-debugger.c: Completely reworked the type support; the
22634         most important thing is that we're now just using one single
22635         `MonoType' instance per type.
22636
22637 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
22638
22639         * mono-endian.h, mono-endian.c, icall.c: Added icall
22640         ves_icall_System_Double_AssertEndianity to assert double word endianity
22641         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
22642
22643 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
22644
22645         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
22646         support, icalls and fixes.
22647
22648 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
22649
22650         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
22651         classes that are a punctuation character in .NET is not the same a
22652         g_unichar_ispunct.
22653
22654 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
22655
22656         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
22657
22658 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
22659
22660         * icall.c: Add new MemCopy internalcall.
22661         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
22662         Simplified code; It is not necessary to handle all the cases here,
22663         as the C# code takes care of it.  Only handle the case of the name
22664         resource embedded into the assembly.
22665
22666         Changed signature to return the data pointer and the size of the
22667         data. 
22668
22669 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
22670
22671         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
22672         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
22673
22674 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
22675
22676         * socket-io.c: ignore EINTR error in select.
22677
22678 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
22679
22680         * class.h, class.c: removed unused subclasses field in MonoClass.
22681
22682 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
22683
22684         * icall.c: improve fix of get_base_definition(). If the parent class
22685           doesn't have the mehod, look at the parent of the parent.
22686         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
22687           to check if a parameter is an in or out parameter
22688           (PARAM_ATTRIBUTE_IN is not set by default).
22689           mono_method_return_message_restore(): Use mono_class_value_size to
22690           get the size of a value type. mono_type_stack_size (parameterType)
22691           does not return the correct value if parameterType is byRef.
22692           mono_load_remote_field(), mono_load_remote_field_new(),
22693           mono_store_remote_field(), mono_store_remote_field_new():
22694           raise exception if the remote call returns an exception.
22695
22696 2003-07-28  Martin Baulig  <martin@ximian.com>
22697
22698         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
22699         method.  This is a wrapper around mono_runtime_invoke() which
22700         boxes the instance object if neccessary.
22701
22702 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
22703
22704         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
22705         metadata.h, row-indexes.h, verify.c: first cut of generics support.
22706
22707 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
22708
22709         * icall.c: disable mcs bug workaround.
22710
22711 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
22712
22713         * object.c (mono_runtime_class_init): Take the metadata_section
22714         mutex before obtaining the domain mutex.
22715
22716         * appdomain.h: Added definition of metadata_section mutex here. 
22717
22718         * object.c: define metadata_mutex here.
22719
22720 2003-07-24  Ravi Pratap  <ravi@ximian.com>
22721
22722         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
22723         fixed.
22724
22725 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
22726
22727         * reflection.c: Fix bug #46669
22728
22729 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22730
22731         * exception.c:
22732         * exception.h:
22733         * icall.c:
22734         * object.h: fill in the type name for TypeLoadException.
22735
22736 2003-07-23  Ravi Pratap  <ravi@ximian.com>
22737
22738         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
22739         relationship between TypeBuilders while compiling corlib) and bug
22740         45993 (Array types returned from the runtime while compiling
22741         corlib were from the loaded corlib).
22742
22743 2003-07-22  Martin Baulig  <martin@ximian.com>
22744
22745         * mono-debug-debugger.c: Reworked the type support a bit more;
22746         distinguish between types and classes.
22747
22748 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
22749
22750         * icall.c: add IsArrayImpl icall.
22751
22752 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
22753
22754         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
22755         initializing real_size only once. Also fix bug #46602.
22756
22757 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
22758
22759         * object.c: Renamed mono_metadata_section to metadata_section.
22760
22761 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
22762
22763         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
22764           empty array if the type is an array. Fixed.
22765           ves_icall_MonoMethod_get_base_definition: if the base method
22766           is abstract, get the MethodInfo from the list of methods of
22767           the class.
22768         * reflection.c: ParameterInfo.PositionImpl should be zero-based
22769           and it was 1-based. Fixed in mono_param_get_objects.
22770
22771 2003-07-20  Martin Baulig  <martin@ximian.com>
22772
22773         * mono-debug.h: Set version number to 31.
22774         (mono_debug_init): Added `MonoDomain *' argument.
22775
22776         * mono-debug-debugger.c: Reworked the type support; explicitly
22777         tell the debugger about builtin types; pass the `klass' address to
22778         the debugger.
22779
22780 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
22781
22782         * image.c: Allow new metadata tables to be loaded without a
22783         warning. Also update the warning message to give the new constant value.
22784                 
22785 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
22786
22787         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
22788         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
22789         array type representation changes.
22790
22791 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
22792
22793         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
22794         on Environment.Exit () call.
22795
22796 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
22797
22798         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
22799         requires a matching corlib.
22800
22801 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
22802
22803         * Changelog: My editor decided to add a CR to each line. Sorry about that.
22804           Committed again without the CRs.
22805         
22806 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
22807
22808         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
22809           getting it from the "this" socket instance. Did not work
22810           if the socket is a subclass of Socket.
22811           Also fixed bug #35371.
22812
22813 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
22814
22815         * metadata.c: fixed size for TypedByRef.
22816         * loader.c: when searching for a method, consider the vararg amrker.
22817         * unicode.c, decimal.c: constify some arrays.
22818
22819 2003-07-15  Dick Porter  <dick@ximian.com>
22820
22821         * socket-io.c: Fixed compilation for gcc < 3.2.
22822
22823         Fixed compilation for machines that don't have AF_INET6 (thanks to
22824         Bernie Solomon <bernard@ugsolutions.com> for that part.)
22825
22826         Fixed compile warnings.
22827         
22828         Fixed formatting and line endings.
22829
22830 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
22831
22832         * socket-io.h:
22833         * socket-io.c: Added IPv6 support.
22834
22835 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
22836
22837         * class.c (mono_class_is_assignable_from): New function to implement
22838         the is_assignable_from logic. Used by mono_object_isinst, 
22839         Type::IsAssignableFrom () and the interpreter.
22840
22841         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
22842         Object, even interfaces.
22843         
22844         * object.c (mono_object_isinst): Implement in terms of 
22845         is_assignable_from.
22846
22847         * icall.c (ves_icall_type_is_assignable_from): New icall.
22848
22849 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
22850
22851         * domain.c (foreach_domain): fix compiler warning.
22852
22853 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
22854
22855         * image.c (load_metadata_ptrs): use g_strndup because strndup is
22856         not available on all plattforms
22857
22858 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
22859
22860         * image.h image.c: Store the metadata version string in MonoImage.
22861         * icall.c: New icall to retrieve the image version.
22862         * reflection.c (create_dynamic_image): Fill in the image version field
22863         * reflection.c (build_compressed_metadata): Use the image version
22864         from the image structure.
22865
22866 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22867
22868         * appdomain.c: modified comment.
22869         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
22870         That will be its last iteration when mono_gc_cleanup is called from
22871         mono_runtime_cleanup and before the domain is unloaded.
22872
22873         Fixes bug #45962.
22874
22875 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
22876
22877         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
22878         attributes.
22879
22880 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
22881
22882         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
22883         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
22884         Bernie Solomon <bernard@ugsolutions.com>.
22885
22886 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
22887
22888         * object.c, object.h: provide mono_object_new_fast() for faster
22889         allocation in some special cases.
22890
22891 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
22892
22893         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
22894         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
22895
22896 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
22897
22898         * threadpool.c: fix leaks.
22899
22900 2003-07-01  Dick Porter  <dick@ximian.com>
22901
22902         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
22903         using MonoGHashTables.  Fixes threadpool bug posted to list.
22904
22905 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
22906
22907         * image.h, image.c: added support to load an assembly from a byte array.
22908         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
22909         assembly bundle support.
22910
22911 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
22912
22913         * threadpool.c (mono_thread_pool_add): keep a reference to the
22914         AsyncResult to prevent GC
22915
22916 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
22917
22918         * class.c: leak fix.
22919
22920 2003-06-25  Dick Porter  <dick@ximian.com>
22921
22922         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
22923         for the async object, the WaitHandle object will close the handle.
22924         Fixes bug 45321.
22925
22926 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
22927
22928         * class.c: in mono_array_class_get (), lookup from the hash with the
22929         same type we insert: this works around a bug in
22930         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
22931         lluis. The real fix will have to wait for after the release.
22932
22933 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
22934
22935         * icall.c: fix memory leak when getting type members.
22936
22937 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
22938
22939         * reflection.c: added more pubtoken special cases.
22940
22941 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
22942
22943         * class.c: handle field offset correctly when class size
22944         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
22945
22946 2003-06-20  Martin Baulig  <martin@ximian.com>
22947
22948         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
22949         *image' field.
22950
22951 2003-06-20  Martin Baulig  <martin@ximian.com>
22952
22953         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
22954
22955 2003-06-20  Martin Baulig  <martin@ximian.com>
22956
22957         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
22958         just distinguish between variables in registers and variables at
22959         an offset relative to a register.
22960
22961 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22962
22963         * icall.c: #ifdef out latest changes until mcs is fixed.
22964
22965 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
22966
22967         * icall.c: return members in metadata order.
22968
22969 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
22970
22971         * icall.c: avoid infinite loop in GetTimeZoneData.
22972
22973 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
22974
22975         * icall.c: added Marshal.Prelink/All icalls.
22976
22977 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
22978
22979         * object.c, object.h: fix warnings and do some overflow checking
22980         when creating arrays.
22981
22982 2003-06-17  Dick Porter  <dick@ximian.com>
22983
22984         * file-io.h:
22985         * file-io.c: File attributes need to be tweaked slightly when
22986         passed from the managed to the w32 world.
22987
22988 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
22989         * profiler.h profiler-private.h profiler.c: Rework last patch
22990         based on suggestion by Paolo.
22991         
22992 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
22993
22994         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
22995         instruction level coverage data collection.
22996         * profiler.h profiler.c (: Added new callback function which can be
22997         used by the profiler to limit which functions should have coverage
22998         instrumentation.
22999         * profiler.c (mono_profiler_load): Call g_module_build_path to
23000         generate the file name of the profiler library.
23001
23002 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
23003
23004         * profiler.c, profiler.h, profiler-private.h: added basic block 
23005         coverage profiling API.
23006
23007 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
23008
23009         * reflection.c (mono_reflection_create_runtime_class): Add support
23010         for events in dynamically generated code.
23011
23012         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
23013         not allocated.
23014
23015 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
23016
23017         * icall.c: when getting timezone info, return reasonable values if we
23018         can't get the actual data.
23019
23020 2003-06-14  Dick Porter  <dick@ximian.com>
23021
23022         * threads.c (start_wrapper): Remove the reference to the thread
23023         object in the TLS data, so the thread object can be finalized.
23024         This won't be reached if the thread threw an uncaught exception,
23025         so those thread handles will stay referenced :-( (This is due to
23026         missing support for scanning thread-specific data in the Boehm GC
23027         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
23028
23029 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
23030
23031         * reflection.c: ensure streams and tables are first allocated with
23032         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
23033
23034 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
23035
23036         * icall.c: fixed GetElementType for byrefs (bug# 44792).
23037
23038 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
23039
23040         * reflection.c (mono_reflection_create_runtime_class): Add support for
23041         properties to dynamically created classes.
23042         * reflection.c: Fix a few places where non-MonoObjects were inserted
23043         into the tokens hashtable.
23044
23045 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23046
23047         * object.c: some support to handle out of memory exceptions.
23048
23049 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
23050
23051         * marshal.c (mono_marshal_get_native_wrapper): support reference
23052         return types
23053
23054 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
23055
23056         * object.h, object.c: more portability stuff from Bernie Solomon.
23057         Unexport mono_object_allocate(). Added mono_object_unbox ().
23058         Set exitcode when an unhandled exception is thrown.
23059
23060 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
23061
23062         * marshal.c (mono_marshal_get_native_wrapper): use custom
23063         marshaler for return types.
23064
23065 2003-06-10  Dick Porter  <dick@ximian.com>
23066
23067         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
23068         ip_mreq is available
23069
23070 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
23071
23072         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
23073         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
23074         by Bernie Solomon <bernard@ugsolutions.com>.
23075
23076 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
23077
23078         * gc.c (mono_gc_init): Avoid error message on shutdown when
23079         GC_DONT_GC=1 is used.
23080
23081         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
23082         New icall to return the GUID of a module.
23083
23084 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
23085
23086         * class.c: ensure instance size always includes the parent's size
23087         even whem class size is set explicitly (fixes bug#44294).
23088
23089 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
23090
23091         * profiler.h, profiler.c: made the simple profiler thread-safe,
23092         get more accurate timing info. Allow the loading of an
23093         externally-developed profiler module.
23094
23095 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
23096
23097         * marshal.c (mono_marshal_get_native_wrapper): improved
23098         class/byref arguments.
23099         (mono_marshal_get_native_wrapper): better string marshaling support.
23100
23101 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
23102
23103         * class.c: ensure .pack and .size are handled correctly and
23104         simplified layout of static fields.
23105
23106 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
23107
23108         * appdomain.c
23109         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
23110
23111         * loader.c (mono_lookup_pinvoke_call): look for modules in the
23112         current directory (fix bug 44008)
23113
23114 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
23115
23116         * marshal.c (mono_marshal_get_native_wrapper): started support for
23117         custom marshalers.
23118         (mono_delegate_to_ftnptr): consider marshalling specifications
23119
23120 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
23121
23122         * reflection.c, reflection.h: emit custom marshal info.
23123
23124 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23125
23126         * object.c: free the GError.
23127         * icall.c: added CloseEvent_internal.
23128         * threads.[ch]:
23129         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
23130         call.
23131
23132 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
23133
23134         * loader.c (mono_method_get_signature): Add support for dynamic
23135         assemblies.
23136
23137 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
23138
23139         * reflection.c: fixed bug #43905.
23140
23141 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
23142
23143         * class.c, domain.c, icall.c, metadata.h, object.h: support for
23144         handling TypedReference and ArgIterator.
23145         * loader.c, loader.h: added function to get signature at call site.
23146
23147 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23148
23149         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
23150         data readonly. Buglets and warning fixes. Some MethodSpec support.
23151
23152 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
23153
23154         * class.h, class.c, object.c: remove relative numbering support.
23155
23156 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
23157
23158         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
23159         free the string, until we get a chance to fix Gtk#
23160
23161 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23162
23163         * marshal.c: revert last patch.
23164
23165 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
23166
23167         * icall.c: updates for new mono_class_vtable() not calling
23168         the type constructor anymore.
23169
23170 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
23171
23172         * object.h, object.c: separate vtable creation from type
23173         initialization. Make running the .cctor thread safe.
23174
23175 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
23176
23177         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
23178
23179 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
23180
23181         * loader.c (mono_get_method): consider calling convention
23182
23183 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
23184
23185         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
23186         to return the invisible global type for a module.
23187
23188         * reflection.c (mono_image_build_metadata): Emit global fields too.
23189
23190 2003-05-20  Peter Williams  <peterw@ximian.com>
23191
23192         * loader.c (mono_lookup_internal_call): Add a few newlines.
23193
23194 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
23195
23196         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
23197         literal strings.
23198
23199         * appdomain.c (set_domain_search_path): Recalculate search path when
23200         AppDomainSetup.PrivateBinPath changes.
23201
23202         * object.c (mono_class_compute_gc_descriptor): It turns out some
23203         parts of the class libs (like System.Thread) holds pointers to
23204         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
23205         to treat native int a pointer type here.
23206         
23207 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
23208
23209         * appdomain.h, domain.c: add hashtable for jump target resolution.
23210
23211 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
23212
23213         * reflection.h reflection.c icall.c: Added new icalls 
23214         GetManifestResourceInfoInternal, GetModulesInternal and support
23215         infrastructure.
23216
23217 2003-05-16  Dick Porter  <dick@ximian.com>
23218
23219         * icall.c:
23220         * file-io.h:
23221         * file-io.c: Implement System.IO.MonoIO::GetTempPath
23222
23223 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
23224
23225         * object.c: mono_store_remote_field: little fix to previous patch.
23226
23227 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
23228
23229         * class.c: add constructors to array classes.
23230         * icall.c: special case array construction for InternalInvoke (),
23231
23232 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
23233
23234         * class.h class.c reflection.c object.c: Added support for field
23235         defaults in dynamically generated classes.
23236
23237 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
23238
23239         * reflection.c: properly encode charset for ddlimport.
23240
23241 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
23242
23243         * threads.c: allow compiling without GC.
23244
23245 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
23246
23247         * appdomain.h, object.c, object.h, threads.c, threads.h: added
23248         handling of thread static data.
23249
23250 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
23251
23252         * reflection.h, reflection.c: added mono_custom_attrs_free ().
23253
23254 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
23255
23256         * class.c (mono_array_class_get): always set the serializable flags
23257         (mono_array_class_get): always set the SEALED attribute for array types
23258
23259 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
23260
23261         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
23262         attributes (fix for bug 42021).
23263
23264 2003-05-12  Dick Porter  <dick@ximian.com>
23265
23266         * gc.c: Don't run finalizers when the finalizer thread is
23267         finishing up, because the default domain has already been
23268         destroyed.
23269
23270 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
23271
23272         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
23273         value is null, we should throw an exception.   This is slightly
23274         different than the other conventions used for the constructor.
23275
23276 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23277
23278         * socket-io.c: fixed windows build.
23279
23280 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23281
23282         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
23283
23284 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
23285
23286         * object.c (mono_string_new_wrapper): Compatibility fix for MS
23287         compilers.
23288
23289 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
23290
23291         * class.c (mono_class_layout_fields): Add experimental GC aware
23292         auto layout facility. Requires class library changes to work correctly.
23293
23294         (mono_class_setup_vtable): Avoid overriding explicit interface
23295         method implementations. Fixes iface3.exe test.
23296
23297         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
23298         object reference.
23299         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
23300         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
23301
23302         * metadata.h: Add new type classification macro which determines
23303         whenever the type holds an object reference.
23304
23305 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
23306
23307         * marshal.c (mono_marshal_get_native_wrapper): cleanups
23308
23309 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
23310
23311         * gc.c (finalizer_thread): Work around a GC bug.
23312
23313 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
23314
23315         * marshal.c (emit_struct_conv): allow unions
23316
23317         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
23318
23319 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
23320
23321         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
23322
23323 2003-05-06  Martin Baulig  <martin@ximian.com>
23324
23325         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
23326
23327 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23328
23329         * socket-io.c:
23330         (Select_internal): allow NULLs, don't create arrays if not needed.
23331         Coupled with Socket.cs changes.
23332
23333         * threadpool.c:
23334         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
23335         register a finalizer for it that will close the semaphore handle. This
23336         fixes the leak and make Lupus' test run with > 4080 loops.
23337
23338 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
23339
23340         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
23341         Jerome Laban (bug #42287)
23342
23343 2003-05-02  Martin Baulig  <martin@ximian.com>
23344
23345         * debug-mono-symfile.h
23346         (MonoSymbolFile): Moved declaration into mono-debug.h.
23347         (MonoDebugMethodJitInfo): Likewise.
23348         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
23349         argument.
23350         (_mono_debug_address_from_il_offset): Take a
23351         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
23352
23353         * mono-debug.h
23354         (MonoDebugDomainData): New struct.
23355         (mono_debug_get_domain_data): New function.
23356         (mono_debug_add_method): Take an additional `MonoDomain *'
23357         argument.
23358         (mono_debug_source_location_from_address): Likewise.
23359         (mono_debug_il_offset_from_address): Likewise.
23360         (mono_debug_address_from_il_offset): Likewise.
23361
23362 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
23363
23364         * reflection.c: one more check for null type in custom attrs.
23365
23366 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23367
23368         * reflection.c: avoid warning (comparison is always false due to limited
23369         range of data type).
23370
23371 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23372
23373         * icall.c: throw an exception in Type.GetField if the argument 'name'
23374         is NULL.
23375
23376 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
23377
23378         * reflection.c: fixed handling of enums in named arguments to custom
23379         attributes (bug #42123).
23380
23381 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
23382
23383         * reflection.c: use the right array element type and handle
23384         a null for a Type argument, too.
23385
23386 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
23387
23388         * reflection.c: handle arrays as arguments to custom attributes.
23389
23390 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
23391
23392         * reflection.c: handle a string value in a custom attr
23393         ctor that takes an object.
23394
23395 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
23396
23397         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
23398         (fix bug #42063)
23399
23400 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
23401
23402         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
23403
23404 2003-04-27  Martin Baulig  <martin@ximian.com>
23405
23406         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
23407         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
23408         MONO_DEBUGGER_EVENT_BREAKPOINT.
23409         (mono_breakpoint_trampoline_code): Removed.
23410         (mono_debugger_event_handler): The last argument is now a
23411         `guint32'.
23412         (mono_debugger_insert_breakpoint_full): Removed the
23413         `use_trampoline' argument.
23414         (mono_debugger_method_has_breakpoint): Likewise.
23415         (mono_debugger_trampoline_breakpoint_callback): Renamed to
23416         mono_debugger_breakpoint_callback(); take the method and
23417         breakpoint number as arguments.
23418
23419 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
23420
23421         * metadata.c: fix off by one when loading parameters attributes.
23422
23423 2003-04-24  Martin Baulig  <martin@ximian.com>
23424
23425         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
23426
23427 2003-04-24  Martin Baulig  <martin@ximian.com>
23428
23429         * mono-debug-debugger.c: Moved all code which interacts with the
23430         Mono Debugger here.
23431
23432         * debug-mono-symfile.c: This code now just deals with the symbol
23433         file itself, the debugger code is now in mono-debug-debugger.c.
23434
23435 2003-04-23  Martin Baulig  <martin@ximian.com>
23436
23437         * mono-debug.c (mono_debug_source_location_from_il_offset):
23438         New method; like mono_debug_source_location_from_address(), but
23439         takes an IL offset instead of a machine address.
23440
23441 2003-04-23  Martin Baulig  <martin@ximian.com>
23442
23443         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
23444         `line' field; this is now computed by the debugger.
23445
23446 2003-04-23  Martin Baulig  <martin@ximian.com>
23447
23448         * mono-debug.[ch]: New files.  This is the new debugging interface.
23449
23450         * mono-debug-debugger.[ch]: New files.  Moved all code which
23451         interacts with the Mono Debugger here.
23452
23453 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
23454
23455         * domain.c (mono_init): initialize mono_defaults.monitor_class
23456
23457 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
23458
23459         * reflection.c (method_encode_code): Add a spicy exception to help
23460         future compiler authors.
23461
23462 2003-04-21  Martin Baulig  <martin@ximian.com>
23463
23464         * icall.c
23465         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
23466         Make this work with relative pathnames; g_filename_to_uri() needs
23467         an absolute filename.
23468
23469 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
23470
23471         * icall.c: Track name changes in Object and ValueType.
23472
23473 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
23474
23475         * metadata.c (mono_type_stack_size): size should be a multiple of
23476         sizeof (gpointer)
23477
23478 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23479
23480         * gc.c:
23481         (internal_domain_finalize): moved into mono_domain_finalize. No need
23482         to create another thread because the finalizers will be run in the
23483         finalizer thread.
23484         
23485         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
23486         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
23487         to be run (MS does this too).
23488
23489 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
23490
23491         * object.c (mono_class_compute_gc_descriptor): Update comment.
23492
23493         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
23494
23495         * image.h: Add synchronized wrapper cache.
23496
23497         * image.c (do_mono_image_open): Initialize cache.
23498
23499         * reflection.c (create_dynamic_mono_image): Initialize cache.
23500
23501 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23502
23503         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
23504         ves_icall_System_Buffer_ByteLengthInternal.
23505
23506 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23507
23508         * reflection.c: setup klass->nested_in earlier. Allow
23509         a dash in the assembly name.
23510
23511 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
23512
23513         * metadata.c (mono_type_to_unmanaged): dont access
23514         type->data.klass for MONO_TYPE_OBJECT
23515         (mono_type_to_unmanaged): consider System.Delegate class
23516
23517 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
23518
23519         * class.c: just setup supertypes in the proper place instead of
23520         initializing the full element class for arrays.
23521
23522 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
23523
23524         * class.c: ensure the element class of arrays is initialized.
23525         Setup the supertype info for array classes, too.
23526
23527 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
23528
23529         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
23530
23531 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23532
23533         * Makefile.am: re-added -m option when running cygpath. This way,
23534         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
23535         separator.
23536         * mono-config.c: same codepath for locating mono config file for WIN32
23537         and the rest.
23538         * assembly.c: if mono_assembly_setrootdir is called, don't override
23539         the value set.
23540
23541 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23542
23543         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
23544         MONO_ASSEMBLIES variable.
23545
23546 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
23547
23548         * icall.c: added Assembly::GetNamespaces() icall.
23549
23550 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23551
23552         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
23553
23554 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
23555
23556         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
23557         * object.c: fixed bug in the construction of vtable for proxies
23558
23559 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
23560
23561         * object.c (mono_array_new): Mark mono_array_new as an icall.
23562
23563 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23564
23565         * class.c: fixed test for public method when overriding interfaces.
23566         Closes bug #40970.
23567
23568 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
23569
23570         * appdomain.h, domain.c: added mono_domain_foreach() to
23571         be able to access the currently loaded appdomains.
23572         * object.c: make string interning work across sppdomains.
23573         Mark some functions for use as icalls.
23574
23575 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
23576
23577         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
23578
23579         * reflection.h reflection.c: Allocate long living data using 
23580         GC_MALLOC_ATOMIC so the collector does not need to scan it.
23581
23582         * reflection.c: Double the allocation size in streams instead of
23583         increasing it, to prevent unneccesary copying on large assemblies.
23584         
23585         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
23586         creation if the assembly does not have the Run flag set.
23587
23588 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
23589
23590         * class.h: avoid the C++ keywords in header files (Jerome Laban
23591         spotted and fixed this).
23592
23593 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23594
23595         * object.c:
23596         (mono_unhandled_exception): fill in the arguments for the
23597         UnhandledException event. Only trigger that event for the default
23598         domain (as MS does).
23599
23600 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
23601
23602         * object.c: Improve typed allocation stuff based on suggestions from
23603         Paolo. Also turn it on if the GC library supports it.
23604
23605 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
23606
23607         * object.c object.h class.h: Added experimental typed allocation
23608         facility using the interfaces in gc_gcj.h.
23609
23610         * os/gc_wrapper.h: Added new include files.
23611         
23612 2003-04-03  Martin Baulig  <martin@ximian.com>
23613
23614         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
23615         which is not yet enabled by default.
23616
23617         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
23618         functions.
23619         (mono_gc_lock, mono_gc_unlock): New static functions.
23620
23621         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
23622         functions; stop/start the world for the garbage collector.  This
23623         is using the windows API; we need to complete the SuspendThread()/
23624         ResumeThread() implementation in the io-layer to make this work on Unix.
23625         (mono_gc_push_all_stacks): New public function; tells the garbage
23626         collector about the stack pointers from all managed threads.
23627
23628 2003-04-03  Martin Baulig  <martin@ximian.com>
23629
23630         * object.h (MonoThread): Added `gpointer stack_ptr'.
23631
23632         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
23633
23634 2003-04-03  Martin Baulig  <martin@ximian.com>
23635
23636         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
23637
23638 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
23639
23640         * reflection.c (typebuilder_setup_fields): Initialize field.first and
23641         field.last.
23642
23643 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
23644
23645         * loader.c (mono_lookup_internal_call): Report the corlib that is
23646         out of sync.
23647
23648 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
23649
23650         * icall.c (ves_icall_type_GetTypeCode): fixed check for
23651         System.DBNull (it's class not valuetype).
23652
23653 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
23654
23655         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
23656         if the array method was already assigned a token (fixes bug#40646).
23657
23658 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
23659
23660         * reflection.c (mono_reflection_get_type): Attempt type resolve even
23661         if no assembly is given.
23662
23663 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
23664
23665         * metadata.h: Added the new tables.
23666
23667         * row-indexes.h: Added definitions for new tables.
23668
23669         * metadata.c: Add schemas for new tables, and add support for
23670         computing the sizes of them.
23671
23672         * class.c: Update for handling the new type cases.
23673
23674 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
23675
23676         * metadata.h (MONO_TYPE_IS_VOID): new macro
23677
23678 2003-03-31  Martin Baulig  <martin@ximian.com>
23679
23680         * threads.h (MonoThreadCallbacks): Added `thread_created'.
23681
23682         * threads.c (mono_thread_new_init): Call `thread_created' in the
23683         mono_thread_callbacks.
23684
23685 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
23686
23687         * loader.h: added marshalbyrefobject_class to mono_defaults
23688         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
23689         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
23690           generation of output parameters.
23691           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
23692         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
23693           contextbound and the target object belongs to the context of the caller.
23694         * object.h: added context and unwrapped_server variables in MonoRealProxy.
23695         * object.c: Implemented support for interfaces and abstract classes
23696           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
23697           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
23698
23699 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
23700
23701         * class.h class.c (mono_class_is_subclass_of): New function.
23702         
23703         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
23704         routines for most common case (calls from ArrayList::ToArray).
23705
23706         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
23707         routine so programs which call Environment::Exit() can be profiled.
23708
23709         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
23710         Added MONO_ARCH_SAVE_REGS.
23711
23712         * icall.c (ves_icall_type_is_subtype_of): Use new function.
23713
23714 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
23715
23716         * blob.h: Add a couple of new MonoType types definitions.
23717
23718         * tabledefs.h: Add a couple of new call convs.
23719
23720 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
23721
23722         * reflection.h (MonoReflectionDynamicAssembly): track changes in
23723         the layout of the class.
23724
23725         * reflection.c (alloc_table): double the size on overflow to avoid
23726         unnecessary copying.
23727
23728         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
23729         avoid filling out metadata tables and blobs. Also set mb->ilgen to
23730         null so it can be garbage collected.
23731         
23732 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
23733
23734         * reflection.c (mono_reflection_get_type): Return the resolved type
23735         only if it is in the assembly we searched.
23736
23737         * reflection.c (ensure_runtime_vtable): Initialize method slots.
23738
23739         * class.c (mono_class_setup_vtable): Set the slot of the overriding
23740         method.
23741
23742 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23743
23744         * appdomain.c:
23745         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
23746         the right one is 'file:///blah', but MS allows it.
23747         * assembly.c:
23748         (mono_assembly_open): allow 'file://blah'
23749
23750         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
23751
23752 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
23753
23754         * socket-io.c: fixes bug #40310.
23755
23756 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
23757
23758         * reflection.c (mono_reflection_parse_type): handle deeply nested
23759         types correctly.
23760
23761         * reflection.c (mono_image_create_token): Use unique token values
23762         since they will be put into a hash table.
23763
23764         * class.c (mono_class_setup_vtable): If a method occurs in more than
23765         one place in the vtable, and it gets overriden, then change the
23766         other occurances too.
23767
23768         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
23769         object as return type.
23770
23771 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
23772
23773         * icall.c: Deleted "ToString" implementation for double and float
23774         because they are full implemented in managed code.
23775
23776 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
23777
23778         * reflection.c, reflection.h: implemented and exported functions
23779         to retrieve info about custom attributes.
23780
23781 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23782
23783         * appdomain.c: moved Uri handling to assembly.c
23784         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
23785         work when using a file Uri in *nix and windows.
23786
23787         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
23788         GetReferencedAssemblies.
23789
23790 2003-03-18  Dick Porter  <dick@ximian.com>
23791
23792         * icall.c: Rename a couple of internal calls
23793
23794         * threads.c: Set the thread state to Stopped when a thread exits.
23795         Fixes bug 39377.
23796
23797 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
23798
23799         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
23800         New icall.
23801
23802         * object.c (mono_class_vtable): fix warning.
23803
23804 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
23805
23806         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
23807
23808         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
23809         memory.
23810         (method_encode_clauses): Create exception info structures in the right
23811         order.
23812         (mono_reflection_setup_internal_class): Initialize supertypes field.
23813
23814         * class.c object.c: Handle interfaces which implement other interfaces 
23815         correctly.
23816
23817         * class.h class.c: Move the supertypes array initialization code into 
23818         a separate function so it can be used for dynamic types too. Also call
23819         it earlier, in mono_class_init(), since it can be used before the
23820         type is initialized.
23821
23822 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23823
23824         * Makefile.am:
23825         * assembly.c:
23826         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
23827
23828         * appdomain.c:
23829         * appdomain.h:
23830         * marshal.c:
23831         * object.c: remove warnings.
23832
23833 2003-03-13  Martin Baulig  <martin@ximian.com>
23834
23835         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
23836         (MonoDebugLexicalBlockEntry): New types.
23837
23838         * debug-mono-symfile.c
23839         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
23840
23841 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23842
23843         * process.c: ret can be any non-zero value accroding to MS doc.
23844
23845 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
23846
23847         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
23848         fixing a warning for a miss-used prototype, would have cause
23849         random memory corruption.
23850
23851 2003-03-07  Martin Baulig  <martin@ximian.com>
23852
23853         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
23854         getting really annoying ....
23855
23856 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
23857
23858         * reflection.c (fixup_method): added support for array methods.
23859
23860 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
23861
23862         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
23863         (pointed out by Michael Adams).
23864
23865 2003-03-04  Dick Porter  <dick@ximian.com>
23866
23867         * icall.c: Temporarily reverted the Double and Single ToString()
23868         change, because it broke nunit.
23869
23870 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
23871
23872         * object.h, threads.h: make include files compatible with C++
23873         (patch by Jerome Laban <jlaban@wanadoo.fr>).
23874
23875 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
23876
23877         * icall.c: Erased ToString helper functions for Double and Single.
23878         Now, that implementations ar all in managed code (Double and Single
23879         Formatters).
23880
23881 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
23882
23883         * appdomain.c: Added method for initializing the default context of
23884         a domain. Added internal call for getting the default context.
23885         * appdomain.h: Added context variable in MonoDomain struct.
23886         * domain.c: mono_domain_set also sets the default context of the domain
23887         * icall.c: Mapped internal method InternalGetDefaultContext.
23888         * object.c: mono_object_get_virtual_method returns always a remoting
23889         wrapper if the object is a transparent proxy.
23890         mono_runtime_invoke_array: when creating an object by calling the
23891         constructor, if the created object is a proxy, then the constructor should
23892         be called using the a remoting wrapper.
23893
23894 2003-03-03  Dick Porter  <dick@ximian.com>
23895
23896         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
23897         variable so it compiles on solaris.  Problem spotted by
23898         Christopher Taylor <ct@cs.clemson.edu>
23899
23900 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23901
23902         * appdomain.c:
23903         (get_info_from_assembly_name): don't leak value.
23904
23905         * icall.c:
23906         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
23907         result.
23908
23909 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
23910
23911         * assembly.c: export mono_image_load_references ().
23912         * class.c: handle function pointers. mono_class_from_name() now
23913         supports nested type names directly.
23914
23915 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
23916
23917         * reflection.h reflection.c: Encode already created dynamic methods 
23918         and fields correctly as a DEF instead of a REF.
23919
23920         * reflection.c: Get rid of the force_ref argument to 
23921         mono_image_typedef_or_ref since it was wrong in the first place.
23922
23923         * string-icalls.c: add error checking to string constructors according
23924         to the MSDN docs.
23925
23926         * reflection.c: Emit types in the order their TypeBuilders were 
23927         created. Previously, a new table index was assigned to each type before
23928         the tables were emitted. This was wrong because the signature blob
23929         might already refer to a type by its original table index.
23930
23931 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
23932
23933         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
23934         change.
23935         
23936 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23937
23938         * Makefile.am: make assemblies dir have \ instead of / on windows.
23939
23940 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
23941
23942         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
23943         iterate over the NESTEDCLASS table using a linear search since the
23944         table is not guaranteed to be sorted by the secondary key.
23945
23946         * class.c (mono_class_create_from_typedef): fixed up call to
23947         mono_metadata_nesting_typedef.
23948         
23949 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
23950
23951         * marshal.c (mono_string_to_byvalstr): clear the memory as
23952         suggested by Jerome Laban <jlaban@wanadoo.fr>
23953
23954 2003-02-26  Dick Porter  <dick@ximian.com>
23955
23956         * process.c: Cope with padding in .rsrc blocks
23957
23958 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
23959
23960         * metadata.h: reverted the filter_len change, it breaks reflection
23961         
23962 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
23963
23964         * metadata.h: added a new field to store the filter_len
23965         
23966
23967 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
23968
23969         * reflection.c: handle custom attributes for types and members
23970         created with Reflection.Emit (bug#38422).
23971
23972 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
23973
23974         * reflection.c: define RTSpecialName automatically for constructors for
23975         compatibility with MS.NET.
23976
23977         * reflection.c (mono_reflection_create_runtime_class): initialize
23978         nested_in field of dynamically created classes.
23979
23980 2003-02-22  Martin Baulig  <martin@ximian.com>
23981
23982         * debug-mono-symfile.h: Incremented version number.
23983
23984 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
23985
23986         * object.h icall.c process.c: fix warnings.
23987
23988 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
23989
23990         * appdomain.h appdomain.c:
23991         (mono_domain_try_type_resolve): split the 
23992         name_or_tb argument into a name and a tb argument.
23993         (mono_domain_has_type_resolve): new function to check whenever the
23994         application has registered a TypeResolve event handler.
23995         
23996         * icall.c reflection.h reflection.c: move the type resolve logic into
23997         mono_reflection_get_type () so it will be invoked when 
23998         Assembly::GetType () is called.
23999
24000         * reflection.c:
24001         (mono_reflection_get_type): renamed to get_type_internal.
24002         (mono_reflection_get_type): fixed type name generation so it works 
24003         for nested types too.
24004         (mono_reflection_get_type): call has_type_resolve () to avoid the 
24005         costly type name generation if there is no resolve event handler.
24006
24007 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
24008
24009         * class.c, image.c: load exported types from file references.
24010
24011 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
24012
24013         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
24014           used to cache the managed methods used to create proxies and make 
24015           remote invocation of methods.
24016         * class.h: Added in MonoVTable a flag to indicate that a class needs 
24017           to be remotely created.
24018         * object.c: Modified the method mono_class_vtable(). It now initializes 
24019           the remote flag of the vtable. Modified mono_object_new_specific(), 
24020           so now it checks the remote flag.
24021         * icall.c: Added a couple of internal methods, one for enabling instance 
24022           creation interception for a type, and one for creating objects bypassing
24023           the remote check.
24024
24025 2003-02-18  Martin Baulig  <martin@ximian.com>
24026
24027         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
24028         New interncall to get a method's metadata token.
24029
24030         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
24031         New interncall for the debugger.
24032
24033 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
24034
24035         * class.c (mono_class_setup_vtable): allocate supertype array
24036
24037 2003-02-18  Martin Baulig  <martin@ximian.com>
24038
24039         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
24040
24041 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24042
24043         * reflection.c:
24044         (assembly_name_to_aname): jump over unknown properties (i've found
24045         something like: 'type, assembly, version=xxx, custom=null, public...',
24046         so now will ignore custom=null and still get the rest of the values).
24047
24048 2003-02-17  Dick Porter  <dick@ximian.com>
24049
24050         * threads.c: Have Thread.Start() wait for a semaphore to signal
24051         that the thread has set up all its local data.  This fixes bug
24052         34323, where Abort() raced the new thread's TLS data.
24053
24054         Also removes the handle_store() call from start_wrapper, because
24055         threads are now always created suspended and there is no longer a
24056         race between the parent and child threads to store the info.
24057
24058 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
24059
24060         * image.c: explain the #- heap issue in a message, hopefully
24061         avoiding FAQs on mono-list.
24062
24063 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24064
24065         * icall.c:
24066         (GetEntryAssembly): if the domain has not invoked
24067         AppDomain.ExecuteAssembly yet, return the assembly of the default
24068         AppDomain.
24069
24070 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
24071
24072         * class.c (mono_ldtoken): make it work in dynamic assemblies.
24073
24074 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
24075
24076         * metadata.c, reflection.c: simple speedup to type hash
24077         and equals code.
24078
24079 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
24080
24081         * image.c, image.h, class.c, assembly.c: move module loading
24082         to MonoImage. When loading metadata, consider alignemnet from
24083         the start of metadata, not from the metadata address in memory.
24084
24085 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
24086
24087         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
24088         AssemblyBuilder objects. Factored out custom attribute creation into
24089         a separate function.
24090         (create_custom_attr): new function to create custom attributes.
24091
24092 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
24093
24094         * Makefile.am: Got tired of typing the full pathname to pedump.
24095         Until there is another option, am installing this.
24096
24097 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
24098
24099         * class.c (class_compute_field_layout): always set field->parent 
24100         (mono_ldtoken): use mono_defaults.fieldhandle_class;
24101
24102 2003-02-11  Dick Porter  <dick@ximian.com>
24103
24104         * threads-types.h:
24105         * monitor.c: Rewrote Monitor, making lock much faster and
24106         Pulse/Wait work as specified.  Also uses much fewer handles, and only
24107         creates them as needed.
24108
24109         * exception.c: Added SynchronizationLockException
24110
24111         * threads.c: Deleted old Monitor implementation.  The new one is
24112         in a new file.
24113
24114 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
24115
24116         * class.c: handled TypedReference type code. Set the correct size for
24117         class data. Setup interface_offsets for interface classes, too.
24118
24119 2003-02-09  Martin Baulig  <martin@ximian.com>
24120
24121         * debug-mono-symfile.h: Reflect latest symbol writer changes.
24122
24123 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
24124
24125         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
24126         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
24127         * object.c: fixed mono_object_get_virtual_method () for interfaces.
24128         * verify.c: check for code that runs after the end of the method.
24129
24130 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
24131
24132         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
24133         "System.Math::Round2".
24134         * sysmath.h: Added Floor, Round and Round2 definitions.
24135         * sysmath.c: Modified certain functions that were not 100% compliant
24136         with MS.NET (math precision) and added the implementation of Floor,
24137         Round and Round2.
24138
24139 2003-02-07  Martin Baulig  <martin@ximian.com>
24140
24141         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
24142
24143 2003-02-07  Martin Baulig  <martin@ximian.com>
24144
24145         * debug-mono-symfile.c: Reflected latest symwriter changes.
24146         (mono_debug_create_mono_symbol_file): Removed.
24147         (mono_debug_open_mono_symbol_file): Take an argument which
24148         specifies whether to create a dynamic symbol file.
24149
24150 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
24151
24152         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
24153
24154 2003-02-05  Martin Baulig  <martin@ximian.com>
24155
24156         * reflection.c (mono_image_build_metadata): Make this public,
24157         protect it against being called multiple times, don't create
24158         resources and don't build the compressed metadata here.
24159         (mono_image_create_pefile): Do this here.
24160
24161         * icall.c
24162         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
24163
24164 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24165
24166         * socket-io.c: fixed bug #36322.
24167
24168 2003-02-06  Piers Haken <piersh@friskit.com>
24169
24170         * appdomain.[ch]:
24171         * class.h:
24172         * debug-mono-symfile.c:
24173         * icall.c:
24174         * loader.c:
24175         * mono-config.c:
24176         * monosn.c:
24177         * reflection.c:
24178         * socket-io.c: warning cleanups
24179
24180 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
24181
24182         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
24183         function. works like remoting invoke, but does a check for the Proxy first.
24184
24185 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
24186
24187         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
24188
24189 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
24190
24191         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
24192         array of pointers.
24193         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
24194         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
24195
24196         * object.c (mono_store_remote_field_new): used by the new jit
24197         instead of mono_store_remote_field
24198         (mono_load_remote_field_new): used by the new jit
24199         instead of mono_load_remote_field
24200
24201 2003-02-05  Patrik Torstensson
24202
24203         * appdomain.c: changed unload to take the domain id instead
24204         of domain
24205         
24206         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
24207
24208
24209 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24210
24211         * appdomain.c: don't look for assemblies in ApplicationBase if
24212         PrivateBinPathProbe is set.
24213
24214 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24215
24216         * object.c: make the first argument in main_args contain the absolute
24217         path to the assembly. Fixes bug #37511.
24218
24219 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24220
24221         * icall.c: get correct UTC offset for countries not using daylight
24222         time saving. Fixes bug #30030.
24223
24224 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24225
24226         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
24227         and 1 are the family).
24228
24229 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
24230
24231         * icall.c (ves_icall_InternalExecute): removed wrong assertion
24232
24233         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
24234
24235 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
24236
24237         * reflection.c: added support for SignatureHelper tokens, which is
24238         needed by the Calli opcode.
24239
24240         * reflection.h: track changes to SignatureHelper class.
24241
24242         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
24243
24244 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24245
24246         * appdomain.c: fixed loading assemblies from PrivateBinPath.
24247
24248 2003-02-03  Patrik Torstensson
24249         * appdomain.[c|h], domain.c : 
24250          - Added support for getting a domain via domain id
24251          - Support for setting and getting domain from System.AppDomain 
24252            (used in cross appdomain channel)
24253          - Added support for get/set for a MonoAppContext on a thread 
24254            (Context class in System.Runtime.Remoting.Contexts),
24255          - Removed hack in Get/SetData and ExecuteAssembly.
24256         
24257         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
24258         the managed world to get control when a proxy is created.
24259
24260         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
24261         
24262 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
24263
24264         * icall.c
24265         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
24266         Populate the codebase field as well.
24267
24268 2003-02-02  Martin Baulig  <martin@ximian.com>
24269
24270         * debug-mono-symfile.c
24271         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
24272         (mono_debug_symfile_add_method): Allow interncalls.
24273
24274 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24275
24276         * icall.c: throw parse exception if strtod fails or the string is empty.
24277
24278 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
24279
24280         * marshal.c: handle object type separately from defined
24281         class types.
24282
24283 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
24284
24285         * marshal.c: handle NATIVE_LPSTR for strings when it's
24286         explicitly specified.
24287
24288 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
24289
24290         * reflection.c, reflection.h, icall.c: setup the reflection
24291         handle cache for ModuleBuilders and AssemblyBuilders.
24292
24293 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
24294
24295         * reflection.c (reflection_methodbuilder_to_mono_method): set
24296         pinvoke flag
24297
24298 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24299
24300         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
24301
24302 2003-01-29  Dick Porter  <dick@ximian.com>
24303
24304         * threads.c: No need for the fake_thread kludge now that Thread
24305         doesn't run a class constructor
24306         
24307 2003-01-29  Dick Porter  <dick@ximian.com>
24308
24309         * threads.c: Use g_direct_hash instead of the rather bogus
24310         g_int_hash
24311
24312 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
24313
24314         * marshal.c (mono_marshal_get_native_wrapper): add check for null
24315         (fix pinvoke12.exe)
24316         (mono_marshal_get_struct_to_ptr): generate valid IL code
24317         (mono_marshal_get_ptr_to_struct): generate valid IL code
24318         (*): correctly set sig->pinvoke, we need to memdup the signature
24319         to do that
24320
24321 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
24322
24323         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
24324         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
24325
24326 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
24327
24328         * profiler.c: provide more callers information.
24329
24330 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
24331
24332         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
24333
24334         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
24335
24336         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
24337
24338 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24339
24340         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
24341         exception instead of going into an infinite loop on dates which it 
24342         can't yet handle.
24343
24344         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
24345         out-of-range exception if needed.
24346
24347         * class.c (mono_class_setup_vtable): allow a virtual method to provide
24348         an implementation for an interface method and to override an inherited
24349         method at the same time. 
24350         Imagine a scenario when a virtual method is used to override a
24351         virtual abstract method in a parent class, and this same method 
24352         provides an implementation for an method inherited from an interface. 
24353         In this case, the interface resolution code will set im->slot, which 
24354         means that the virtual method override pass will skip this method 
24355         which means a pointer to the abstract method inherited from the parent
24356         will remain in the vtable of this non-abstract class.
24357
24358         * class.c: (mono_class_setup_vtable): continue search for a real 
24359         method if only an abstract method is found.     
24360
24361 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
24362
24363         * reflection.c: add size to encoding for ByValStr and ByValArray
24364         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
24365
24366 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24367
24368         * class.c (mono_class_setup_vtable): pass the override info as an
24369         argument.
24370
24371         * class.c (mono_class_setup_vtable): set the slot of overriding methods
24372         correctly.
24373         
24374         * reflection.c (ensure_runtime_vtable); add support for method 
24375         overrides.
24376         
24377 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24378
24379         * reflection.c (resolution_scope_from_image): Hack to work to work with
24380         dynamic assemblies.
24381
24382         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
24383         added a 'force_ref' argument to force this function to allways return 
24384         a TypeRef. This is needed by mono_image_get_memberref_token ().
24385         
24386 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24387
24388         * reflection.c (mono_image_get_type_info): interfaces really don't have
24389         a parent.
24390
24391         * reflection.c (mono_image_basic_init): fill out missing fields of
24392         image structure.
24393
24394         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
24395         dynamic assemblies. This is required so dynamic assemblies show up in
24396         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
24397         Type::GetType() etc. This is consistent with MS behaviour.
24398
24399         * image.c image.h reflection.c: add newly created classes to the name 
24400         cache so mono_class_get () will find them.      
24401
24402 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24403
24404         First part of changes to get IKVM.NET running under mono.
24405         
24406         * appdomain.h, appdomain.c: added new function 
24407         mono_domain_try_type_resolve() which will emit TypeResolve events. 
24408         This function will call AppDomain::DoTypeResolve to do the actual work.
24409
24410         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
24411         moved existing code dealing with dynamic tokens to a new function 
24412         called mono_reflection_lookup_dynamic_token (). This function will 
24413         raise TypeResolve events when appropriate. Since reflection.c is not 
24414         part of libmetadata, a new hook function called 
24415         mono_lookup_dynamic_token() is added to class.c which will call this.
24416
24417         * assembly.h assembly.c: make the invoke_load_hook function public,
24418         so it can be called for dynamic assemblies.
24419
24420         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
24421
24422         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
24423         type isn't found.
24424
24425         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
24426         MonoGHashTable, since it contains pointers to objects which the GC 
24427         needs to track.
24428
24429         * assembly.c (search_loaded): remove unused variable.
24430         
24431 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
24432
24433         * object.c: fixed issue exposed by gcc-generated IL programs
24434         that use RVA data for pointers.
24435
24436 2003-01-25  Martin Baulig  <martin@ximian.com>
24437
24438         * threads.c (start_wrapper): Moved the initialization of
24439         `start_func' above the mono_new_thread_init() call to which we
24440         pass it as argument.
24441
24442 2003-01-24  Martin Baulig  <martin@ximian.com>
24443
24444         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
24445         the MonoThread pointer.
24446
24447 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
24448
24449         * icall.c: Rename `PowImpl' to Pow.
24450
24451 2003-01-23  Dick Porter  <dick@ximian.com>
24452
24453         * threads.c (start_wrapper): Create a Thread object if needed, so
24454         the Main() thread can do the class initialisation in a subthread
24455         that has been set up to allow managed code execution.
24456
24457         Pass the thread ID instead of the MonoThread pointer to the thread
24458         start and attach callbacks.  This change is required, because the
24459         jit thread start callback must be called _before_ the Thread
24460         object can be created.
24461         
24462         (mono_thread_init): Removed much object creation code that is no
24463         longer needed.  No managed code is called from here now.
24464
24465         * object.c (mono_runtime_exec_managed_code): Create a subthread
24466         for Main, and call back to the runtime to use it.
24467         Set the exit code when Main exits.
24468
24469         * gc.c: Make sure domain finalisation happens in a subthread.
24470         Re-enable threaded GC, fixing bug 31333 (again).
24471
24472         * environment.c: System.Environment internall calls (so far just
24473         ExitCode is here, the others are still in icall.c)
24474
24475         * appdomain.c (mono_runtime_cleanup): All threads running managed
24476         code should have finished before mono_runtime_cleanup() is
24477         reached, so no need to clean up threads.
24478
24479 2003-01-22  Martin Baulig  <martin@ximian.com>
24480
24481         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
24482         `gpointer func' arguments.      
24483         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
24484         but added `MonoThread *thread' argument.
24485         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
24486
24487         * threads.c (mono_new_thread_init): Added `gpointer func' argument
24488         and pass it to the mono_thread_start_cb callback.
24489         (mono_install_thread_callbacks): New public function to install a
24490         set of callbacks which are set by the debugger.
24491         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
24492
24493 2003-01-22  Martin Baulig  <martin@ximian.com>
24494
24495         * Makefile.am: Install debug-mono-symfile.h.
24496
24497 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
24498
24499         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
24500
24501 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
24502
24503         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
24504         * class.c (mono_ptr_class_get): correctly set access levels of pointers
24505         (mono_array_class_get): correctly set access levels of arrays
24506
24507 2003-01-20      Patrik Torstensson
24508         * image.h (MonoAssemblyName): changed major, minor, build, revision
24509         from signed to unsigned.
24510
24511 2003-01-20  sean kasun <skasun@azstarnet.com>
24512
24513         * reflection.c (load_cattr_value): Now this handles
24514         MONO_TYPE_SZARRAY.  Fixes bug #35629
24515
24516 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
24517
24518         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
24519         integer value
24520
24521 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24522
24523         * decimal.c: fixed bug #26056.
24524
24525 2003-01-17  Martin Baulig  <martin@ximian.com>
24526
24527         * gc.c: Raise an ExecutionEngineException instead of using g_error().
24528
24529 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24530
24531         * exception.[ch]:
24532         (mono_get_exception_type_initialization): new function.
24533
24534         * object.c: throw a TypeInitializationException when an exception is
24535         thrown invoking the class constructor.
24536
24537 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24538
24539         * reflection.c: fixed attribute reading.
24540
24541 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24542
24543         * icall.c:
24544         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
24545         provided, look for the type in the calling assembly and then in
24546         mscorlib; if the assembly name is provided, only try that one.
24547
24548 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
24549
24550         * object.c: register the vtable before there is a chance it's
24551         queried again recursively.
24552
24553 2003-01-13  Duncan Mak  <duncan@ximian.com>
24554
24555         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
24556         gc-internal.h. 
24557         
24558 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
24559
24560         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
24561
24562 2003-01-11  Martin Baulig  <martin@ximian.com>
24563
24564         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
24565         this to 20 for the release.
24566
24567 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
24568
24569         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
24570
24571         * loader.c (mono_method_get_marshal_info): bug fix
24572
24573         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
24574         structures with explicit layout
24575
24576 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
24577
24578         * profiler.c: made the output more readable (and sorted). 
24579         Added caller information for the allocation profiler.
24580
24581 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
24582
24583         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
24584
24585 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24586
24587         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
24588         to get value types.
24589         
24590 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
24591
24592         * object.c, profiler.h, profiler.c, profiler-private.h:
24593         Added object allocation profiler.
24594
24595 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
24596
24597         * reflection.h, reflection.c: handle global methods.
24598         Compress blob entries.
24599
24600 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
24601
24602         * marshal.c: fix compilation.
24603
24604 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
24605
24606         * loader.c (mono_method_get_marshal_info): impl.
24607
24608         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
24609
24610 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24611
24612         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
24613         for reference types.
24614
24615 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
24616
24617         * loader.c: fixed off by one error in loaded parameter names.
24618
24619 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
24620
24621         * marshal.c (mono_marshal_get_icall_wrapper): like
24622         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
24623         instead of a MonoMethod.
24624
24625 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24626
24627         * decimal.c: fixed bug #36537.
24628
24629 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
24630
24631         * marshal.c: throw a missing method exception if a
24632         P/Invoke method is not found.
24633
24634 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
24635
24636         * icall.c: allow a null this for constructors.
24637
24638 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
24639
24640         * icall.c: raise the proper exceptions if the arguments to the
24641         internal Invoke are incorrect.
24642
24643 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
24644
24645         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
24646
24647 2003-01-03  Martin Baulig  <martin@ximian.com>
24648
24649         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
24650
24651 2002-12-31  Martin Baulig  <martin@ximian.com>
24652
24653         * debug-mono-symfile.c: Completely rewrote the type section.
24654         Instead of using individual malloc()ed fields, we use one big
24655         continuous memory area and offsets into this area.
24656         See the comments in the source code for details.
24657
24658 2002-12-30  Martin Baulig  <martin@ximian.com>
24659
24660         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
24661
24662 2002-12-30  Martin Baulig  <martin@ximian.com>
24663
24664         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
24665         line number table in this data blob instead of using an external
24666         pointer.
24667
24668 2002-12-28  Martin Baulig  <martin@ximian.com>
24669
24670         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
24671
24672 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
24673
24674         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
24675         as a boxed return type.
24676
24677 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
24678
24679         * appdomain.c
24680         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
24681         g_build_filename to properly get separators on the filename created.
24682
24683         * object.h: Small change, introduce MonoMarshalByRefObject to
24684         track the layout of that structure in the C# universe as we make
24685         changes there.
24686
24687 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
24688
24689         * object.c: removed assert to allow static fields on interfaces.
24690         * loader.c: a TypeSpec may be used for any type, not just arrays.
24691
24692 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
24693
24694         * class.c, class.h: added mono_class_array_element_size ().
24695         Ignore static methods in interfaces.
24696
24697 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24698
24699         * threads.c: fixed the build under cygwin.
24700
24701 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
24702
24703         * reflection.c: handle nullref constants. Allocate keys for
24704         reflection handles with the GC.
24705
24706 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
24707
24708         * threads.c, threads.h: added mono_thread_get_abort_signal()
24709         to get a suitable signal for thread abort.
24710
24711 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
24712
24713         * metadata.c: fix handling of ExportedType table.
24714
24715 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24716
24717         * icall.c: added WriteWindowsDebugString internal call.
24718
24719 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24720
24721         * reflection.h: added fields to match C# implementation.
24722
24723 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24724
24725         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
24726
24727 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
24728
24729         * gc.h, gc-internal.h: Rename header for GC internal calls to
24730         gc-internal.h from gc.h as to not clash with Boehm GC having its
24731         header installed as <gc.h> in outside include paths.
24732         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
24733         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
24734
24735 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24736
24737         * icall.c: assign minor, build and revision in FillName.
24738
24739 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
24740
24741         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
24742         Added support for running code generated by Reflection.Emit.
24743
24744 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24745
24746         * appdomain.c: check for NULL argument in LoadFrom.
24747
24748 2002-12-10  Dick Porter  <dick@ximian.com>
24749
24750         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
24751
24752 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24753
24754         * appdomain.c: fix buglet when building exe file name.  Handle full
24755         assembly name (needed after latest changes to AssemblyName).
24756         * image.c:
24757         (mono_image_close): free some hashtables.
24758
24759 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
24760
24761         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
24762         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
24763         on some systems (redhat 7.3) 
24764
24765 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
24766
24767         * threads.c: delete the critical section of a sync block,
24768         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
24769
24770 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
24771
24772         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
24773
24774 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24775
24776         * appdomain.[ch]: handle the assembly preload event to try loading the
24777         assemblies using the paths we have in the current domain.
24778
24779         * assembly.[ch]: created an assembly preload hook that is called to try
24780         loading the assembly by other means that the ones provided here.
24781
24782         * domain.c: initialize the domain search path.
24783
24784         From now on, assemblies (TODO: except corlib and System) are loaded
24785         according to these rules when using mono_assembly_load ():
24786
24787                 1. It tries to load the assembly from the ApplicationBase
24788                 of the current domain appending .dll and .exe (TODO: have to
24789                 try loading from name/name.dll and name/name.exe).
24790
24791                 2. It tries the search path specified in PrivateBinPath for the
24792                 current domain (if any).
24793
24794                 3. Previous behavior.
24795
24796 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
24797
24798         * icall.c: implemented GetInterfaceMap() related icall.
24799         * domain.c, loader.h: load MethodInfo in mono_defaults.
24800
24801 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
24802
24803         * gc.c: disable the finalizer thread for now, untill all the issues
24804         with it are resolved.
24805
24806 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
24807
24808         * string-icalls.c: handle embedded nulls in string ctor when the
24809         length is specified.
24810
24811 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
24812
24813         * class.c: look for explicit interface implementation in parent
24814         classes, too.
24815
24816 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
24817
24818         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
24819
24820 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
24821
24822         * gc.c: protect handles with a critical section.
24823
24824 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24825
24826         * icall.c:
24827         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
24828         parameters. If no assembly specified, try getting the type from all
24829         the assemblies in the current domain, else, load the assembly and get
24830         the type from it.
24831
24832 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24833
24834         * marshal.c: applied patch from Aleksey Demakov that fixes
24835         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
24836
24837 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24838
24839         * icall.c: fixed get_location.
24840
24841 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
24842
24843         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
24844         declarations to make it work with older gcc. 
24845
24846         * loader.c (mono_get_method): set signature->pinvoke for native calls
24847
24848 2002-11-20  Dick Porter  <dick@ximian.com>
24849
24850         * threads.c (mono_thread_init): Set the main thread's handle
24851
24852 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
24853
24854         * gc.c: allow compilation without GC support. Changed to match the
24855         mono coding style.
24856
24857 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
24858
24859         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
24860
24861 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
24862
24863         * reflection.c: set a public key token on the core assemblies.
24864
24865 2002-11-18  Dick Porter  <dick@ximian.com>
24866
24867         * threads.c: Split out some thread initialisation so that other
24868         files can set the start callback function.
24869
24870         * gc.c: Run finalisers in a separate thread, to avoid stack
24871         overflow.  Fixes bug 31333.
24872
24873         * appdomain.c: Set up GC finalisation thread.
24874
24875         * reflection.c: 
24876         * object.c: 
24877         * domain.c: Use gc.h macros for GC_malloc
24878         
24879 2002-11-15  Dick Porter  <dick@ximian.com>
24880
24881         * threadpool.c: 
24882         * threads.c:
24883         * appdomain.c: Removed mono_runtime_init_with_attach(),
24884         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
24885         merging the extra parameter with the existing function.  Removed
24886         unneeded code in mono_thread_attach().
24887
24888 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
24889
24890         * image.c (mono_image_loaded_by_guid): a method to get loaded
24891         images by guid. 
24892         (load_metadata_ptrs): we store the guid as string.
24893
24894 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
24895
24896         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
24897
24898         * metadata.c (mono_guid_to_string): imported method form Zoltan
24899         Varga (slightly modified)
24900
24901         * assembly.c (mono_assembly_open): load precompiled code
24902
24903         * loader.h (MonoMethod): we store the method token for use in the
24904         aot compiler. 
24905
24906 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24907
24908         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
24909         the hook function called when an assembly is loaded.
24910         
24911         * domain.c: Modified file.
24912         (mono_domain_assembly_load): removed hash table insertion of assemblies.
24913
24914         Fixes bug #33196.
24915
24916 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
24917
24918         * reflection.c: Map PEFileKind to the value expected by the WinNT
24919         image loader. 
24920
24921 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24922
24923         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
24924         Read until the buffer is filled completely.
24925
24926 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24927
24928         * icall.c: implemented MonoType.InternalGetEvent ().
24929
24930 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24931
24932         * appdomain.c: implemented InitAppDomainSetup. Delayed
24933         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
24934         the entry_assembly.
24935
24936         * assembly.c: base_dir is now an absolute path ending with
24937         G_DIR_SEPARATOR.
24938
24939         * icall.c: modified get_location according to the above changes.
24940
24941         * object.c: init AppDomain.SetupInformation for the default domain after
24942         we have the entry assembly.
24943
24944         * domain.c: when unloading a domain, setup = NULL.
24945
24946 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
24947
24948         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
24949
24950 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
24951
24952         * object.h, object.c: introduced mono_object_get_virtual_method ()
24953         to lookup the method invoked on an object when a callvirt is done on
24954         a method.
24955         * icall.c: make MethodInfo::Invoke() always do a virtual call.
24956
24957 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24958
24959         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
24960         current domain when loaded an assembly and failed to load it.
24961
24962         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
24963
24964 2002-10-31  Dick Porter  <dick@ximian.com>
24965
24966         * icall.c: 
24967         * file-io.h: 
24968         * file-io.c: Return the error status in a parameter, as the
24969         GetLastError() value has long since been blown away if we try and
24970         look it up in a subsequent internal call invocation.  Delete the
24971         GetLastError() internal call, because it's useless.
24972
24973 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
24974
24975         * class.[ch]: added cast_class to fix bug 29517
24976
24977 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
24978
24979         * marshal.c: create valid IL code in the filter clause:
24980         the new JIT is less forgiving:-)
24981
24982 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24983
24984         * icall.c: removed get_property internal call.
24985
24986 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
24987
24988         * appdomain.h domain.c: Added an ID to appdomains.
24989         
24990         * threads.c threads.h icall.c: Implement icall
24991         Thread:GetDomainID(), and remove unused icall 
24992         CurrentThreadDomain_internal.
24993
24994 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24995
24996         * icall.c: Don't recurse through the base types in GetConstructor.
24997         Fixes bug #32063. 
24998
24999 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
25000
25001         * mempool.h, mempool.c: added mono_mempool_empty() and
25002         mono_mempool_stats().
25003
25004 2002-10-23  Dick Porter  <dick@ximian.com>
25005
25006         * file-io.c: 
25007         * file-io.h: 
25008         * icall.c: Added MonoIO.GetFileType internal call
25009
25010 2002-10-17  Dick Porter  <dick@ximian.com>
25011
25012         * appdomain.c (mono_runtime_cleanup): Don't signal the async
25013         delegate semaphore before waiting for all threads to finish,
25014         because new threads can also call async delegates.  Fixes bug
25015         32004.
25016
25017         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
25018         of 3 seconds, in case another async job is queued.  (This part is
25019         needed because the bug fix reintroduced the 3s exit lag.)  This
25020         makes the mono_runtime_shutdown flag superfluous.
25021
25022 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
25023
25024         * reflection.c: include ehader size in method section headers.
25025         Really check for suplicated modules entries.
25026
25027 2002-10-17  Martin Baulig  <martin@gnome.org>
25028
25029         * debug-mono-symfile.c: Added back support for locals.
25030
25031 2002-10-14  Martin Baulig  <martin@gnome.org>
25032
25033         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
25034         MONO_TYPE_VOID.
25035
25036 2002-10-14  Martin Baulig  <martin@gnome.org>
25037
25038         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
25039         mono_class_get() instead of looking in the class cache. 
25040
25041 2002-10-13  Martin Baulig  <martin@gnome.org>
25042
25043         * debug-mono-symfile.c: Set version number to 28, include the
25044         signature in method names.
25045
25046 2002-10-13  Martin Baulig  <martin@gnome.org>
25047
25048         * debug-mono-symfile.h: Set version number to 27.
25049
25050 2002-10-11  Martin Baulig  <martin@gnome.org>
25051
25052         * gc.c: Don't register/unregister NULL pointers as disappearing links.
25053
25054 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
25055
25056         * metadata.c, metadata.h: added helper function to allocate signatures.
25057
25058 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25059
25060         * icall.c: added internal call to get the location of machine.config.
25061
25062 2002-10-08  Martin Baulig  <martin@gnome.org>
25063
25064         * debug-mono-symfile.c: Ignore classes with a pending init for the
25065         moment.
25066
25067 2002-10-03  Dick Porter  <dick@ximian.com>
25068
25069         * threads.c: Freebsd pthread_t is a pointer
25070
25071 2002-10-03  Dick Porter  <dick@ximian.com>
25072
25073         * socket-io.c: Implemented GetHostName_internal
25074
25075 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25076
25077         * mono-config.c:
25078         (mono_config_parse_file): don't leak the text.
25079
25080 2002-10-02  Martin Baulig  <martin@gnome.org>
25081
25082         * debug-mono-symfile.c: Added support for methods.
25083
25084 2002-10-01  Martin Baulig  <martin@gnome.org>
25085
25086         * debug-mono-symfile.c: Don't emit methods and line numbers for
25087         the dynamic symbol file, just write the type table.  We can easily
25088         have an external helper program which creates a symbol file for an
25089         IL file.        
25090
25091 2002-10-01  Dick Porter  <dick@ximian.com>
25092
25093         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
25094         Only add the handle to the cleanup array when we're about to
25095         launch the thread.  Bug 31425 deadlocked when the test was run on
25096         mono under w32.
25097
25098 2002-10-01  Martin Baulig  <martin@gnome.org>
25099
25100         * debug-mono-symfile.c: Added support for properties.
25101
25102 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
25103
25104         * reflection.c: unaligned store fix from Mark Crichton
25105         <crichton@gimp.org>.
25106
25107 2002-09-27  Martin Baulig  <martin@gnome.org>
25108
25109         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
25110         New interncall.
25111
25112 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
25113
25114         * assembly.h, assembly.c: use a sane API to hook into the assembly
25115         loading process instead of a useless special-purpouse hack
25116         (ngen needs a hook, too, for example).
25117
25118 2002-09-27  Dick Porter  <dick@ximian.com>
25119
25120         * threads.c (mono_thread_init): Call GetCurrentProcess() so
25121         io-layer can set up some process handle info.  Not needed on w32,
25122         but doesn't hurt either.
25123
25124         * process.c: Pass the program name in the second parameter to
25125         CreateProcess, so the path is searched.  Include the working
25126         directory. Implemented process name, process enumeration, and some
25127         process detail internal calls.
25128         
25129         * icall.c: Added internal calls for process lookup, and some
25130         process details
25131
25132 2002-09-26  Martin Baulig  <martin@gnome.org>
25133
25134         * assembly.c (mono_install_open_assembly_hook): New global
25135         function to install a function to be invoked each time a new
25136         assembly is loaded.
25137         (mono_assembly_open): Run this callback function if set.
25138
25139         * debug-mono-symfile.c: Put back line numbers for the dynamic
25140         symbol file and also record the .il file as source file.  This
25141         allows us to install the temporary symbol file as `file.dbg' just
25142         like a compiler-generated one.
25143
25144 2002-09-26  Nick Zigarovich <nick@chemlab.org>
25145
25146         * Corrected typo in gc.c (BOHEM vs BOEHM).
25147
25148 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25149
25150         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
25151         GetProperties. Also avoid calling g_slist_length in GetProperties and
25152         GetMethods.
25153
25154 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
25155
25156         * reflection.c: avoid unaligned stores (bug spotted by
25157         Mark Crichton  <crichton@gimp.org>).
25158
25159 2002-09-25  Martin Baulig  <martin@gnome.org>
25160
25161         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
25162         instead of guint64 for addresses and added prologue/epilogue info.
25163
25164 2002-09-25  Martin Baulig  <martin@gnome.org>
25165
25166         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
25167         store line number info.  For the dynamic symbol file, we only need
25168         to provide the JIT generated dynamic line number info for the dynamic
25169         symbol file.
25170
25171 2002-09-25  Martin Baulig  <martin@gnome.org>
25172
25173         * debug-mono-symfile.h: Incremented version number.
25174
25175 2002-09-24  Martin Baulig  <martin@gnome.org>
25176
25177         * class.c (mono_debugger_class_init_func): New global function
25178         pointer variable.
25179         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
25180         call it.
25181
25182         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
25183         function.  This is called via the mono_debugger_class_init_func
25184         hook to add all types to the dynamic type table.
25185         (ves_icall_MonoDebugger_GetType): New interncall to get a class
25186         from its metadata token.
25187
25188         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
25189         New interncall for the debugger.
25190
25191 2002-09-24  Nick Drochak <ndrochak@gol.com>
25192
25193         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
25194         before using it in case it is null.
25195         
25196 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
25197
25198         * metadata.c: allow custom modifiers in local var signatures
25199         (bug spotted by Zoltan Varga).
25200
25201 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
25202
25203         * class.c: deal with the <Module> class that may have a NULL vtable.
25204         Eliminate warnings.
25205
25206 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
25207
25208         * image.c, image.h: more strong name helpers.
25209         * monosn.c: more work: convert pem keys to cryptoapi format.
25210
25211 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
25212
25213         * string-icalls.c: speedup IndexOf.
25214
25215 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25216
25217         * icall.c: updates from Zoltan.2.Varga@nokia.com.
25218
25219 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
25220
25221         * icall.c: cleanup: use mono_object_domain ().
25222
25223 2002-09-23  Martin Baulig  <martin@gnome.org>
25224
25225         * debug-mono-symfile.c: Improved type support.
25226
25227 2002-09-22  Martin Baulig  <martin@gnome.org>
25228
25229         * debug-mono-symfile.c: Added support for reference types and strings.
25230
25231 2002-09-22  Martin Baulig  <martin@gnome.org>
25232
25233         * debug-mono-symfile.c: Started to work on the type table.
25234
25235 2002-09-21  Martin Baulig  <martin@gnome.org>
25236
25237         * debug-mono-symfile.c: Largely reworked the symbol table format.
25238         The symbol table is now incrementally updated each time a new
25239         method is added.  We're now also using our own magic and version
25240         so that you don't need to recompile all your classes if the
25241         dynamic table changes.
25242         (mono_debug_update_mono_symbol_file): Removed.
25243         (mono_debug_symfile_add_method): New function to add a method.
25244
25245 2002-09-21  Martin Baulig  <martin@gnome.org>
25246
25247         * icall.c
25248         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
25249         New interncall.
25250
25251         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
25252         New interncall to get a method from its metadata token.
25253
25254 2002-09-21  Martin Baulig  <martin@gnome.org>
25255
25256         * debug-mono-symfile.c: Create type table.
25257
25258 2002-09-20  Martin Baulig  <martin@gnome.org>
25259
25260         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
25261
25262 2002-09-20  Martin Baulig  <martin@gnome.org>
25263
25264         * debug-mono-symfile.c: Provide information about params and locals.
25265
25266 2002-09-20  Martin Baulig  <martin@gnome.org>
25267
25268         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
25269         New interncall.
25270
25271         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
25272         interncall to get a method from its metadata token.
25273
25274 2002-09-20  Martin Baulig  <martin@gnome.org>
25275
25276         * debug-mono-symfile.c: Added a few checks for method->header
25277         being non-NULL.  This should never happen, but for the moment
25278         let's use a g_warning() rather than a g_assert().
25279
25280 2002-09-19  Mark Crichton  <crichton@gimp.org>
25281
25282         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
25283         even if support for it isn't present.  Added an #ifdef to fix this.
25284
25285         * socket-io.c: Added checks back for Solaris support.
25286
25287 2002-09-19  Martin Baulig  <martin@gnome.org>
25288
25289         * debug-mono-symfile.c (read_string, write_string): Reflect latest
25290         changes in the symbol file format.
25291
25292 2002-09-18  Martin Baulig  <martin@gnome.org>
25293
25294         * debug-mono-symfile.c: Set version number to 21.
25295
25296 2002-09-18  Dick Porter  <dick@ximian.com>
25297
25298         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
25299         on netbsd.  Fixes bug 30051.
25300
25301 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25302
25303         * reflection.c:
25304         (set_version_from_string): little fix.
25305
25306 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25307
25308         * monosn.c, Makefile.am: added strong name utility.
25309         * reflection.h, reflection.c: implemented delayed signing,
25310         locale, version and hash id assembly attributes.
25311
25312 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
25313
25314         * loader.c, metadata.c: load param attributes in signatures.
25315
25316 2002-09-16  Martin Baulig  <martin@gnome.org>
25317
25318         * debug-mono-symfile.c: Added string table with all method names.
25319
25320 2002-09-14  Martin Baulig  <martin@gnome.org>
25321
25322         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
25323         fast method lookup.
25324
25325 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
25326
25327         * reflection.c: record the public key token of referenced assemblies.
25328
25329 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
25330
25331         * image.c, image.h: added functions to get the strong name and the
25332         public key of an assembly.
25333         * pedump.c: use them.
25334
25335 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
25336
25337         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
25338
25339 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
25340
25341         * marshal.c (mono_marshal_get_managed_wrapper): Added
25342         MONO_TYPE_BOOLEAN 
25343
25344 2002-09-11  Martin Baulig  <martin@gnome.org>
25345
25346         * gc.c: Call GC_unregister_disappearing_link() on all links when
25347         finalizing them, this is necessary to aviod a crash in boehm's
25348         finalize handler.
25349
25350 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
25351
25352         * gc.c: handle GetTarget for finalized objects spotted and fixed by
25353         nick@chemlab.org.
25354
25355 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
25356
25357         * icall.c: implemented MonoType::Module.
25358         * reflection.c, reflection.h: mono_module_get_object () from
25359         Tomi Pakarinen <tomi.pakarinen@welho.com>.
25360
25361 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
25362
25363         * icall.c: ignore overridden methods in GetMethods ().
25364         Fix for FieldInfo::SetValue().
25365         * object.c: handle float/double in runtime invoke.
25366
25367 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
25368
25369         * object.c: allow a constructor to be called again on an object.
25370
25371 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
25372
25373         * class.h, class.c: move field layout code to it's own function and
25374         export it. Get an interface id earlier. Move fields in MonoClass
25375         so they are more cache friendly and align the bitfields.
25376         * loader.c: temporary handle get_param_names() for a runtime method.
25377         * reflection.c, reflection.h: more code to handle runtime creation of
25378         types.
25379
25380 2002-09-09  Martin Baulig  <martin@gnome.org>
25381
25382         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
25383         signature with the pinvoke field being set for the actual call.
25384
25385 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
25386
25387         * icall.c: removed some unused icalls. Start of map of glib charsets
25388         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
25389
25390 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
25391
25392         * debug-helpers.c: break infinite loop (found and fixed by
25393         Holger Arnold <harnold@gmx.de>).
25394
25395 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
25396
25397         * icall.c: target may be null in create_delegate.
25398
25399 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25400
25401         * marshal.c: handle a boolean return type.
25402
25403 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
25404
25405         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
25406
25407 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
25408
25409         * gc.c: fix weakreferences.
25410
25411 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
25412
25413         * icall.c: added icall to get default codepage.
25414
25415 2002-09-03  Dick Porter  <dick@ximian.com>
25416
25417         * threads.h: 
25418         * threads.c: Use MonoThread instead of MonoObject where
25419         apropriate.
25420
25421         Store running thread objects in a hash table, so that we have all
25422         the info to hand when waiting for them to finish
25423         (means we don't need OpenThread() any more, so mingw builds should
25424         be fully functional again.)
25425
25426         * verify.c:
25427         * object.h: Added thread ID to MonoThread
25428
25429 2002-09-03  Martin Baulig  <martin@gnome.org>
25430
25431         * icall.c (System.Reflection.Assembly::get_location): New interncall.
25432
25433 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25434
25435         * icall.c: fixed leak in get_temp_path. Thanks lupus.
25436
25437 2002-09-03  Martin Baulig  <martin@gnome.org>
25438
25439         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
25440         argument to store the end address of the disassembled instruction.
25441
25442         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
25443         here from debug-symfile.h.
25444         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
25445         JIT into this struct.
25446         (MonoSymbolFile): Added `char *image_file' field.
25447         (MonoDebugGetMethodFunc): Removed.
25448         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
25449         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
25450         (mono_debug_find_method): New method.
25451
25452         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
25453         create a full symbol file.
25454         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
25455         and static symbol files.
25456         (mono_debug_find_method): The symbol file keeps an internal method hash,
25457         call this to get a MonoDebugMethodInfo from a MonoMethod.
25458
25459         * debug-symfile.[ch]: Removed.
25460
25461 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
25462
25463         * image.c (do_mono_image_open): Remove linker version check.
25464
25465 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
25466
25467         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
25468         wrappers for instance methods.
25469         
25470 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25471
25472         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
25473
25474 2002-08-28  Dick Porter  <dick@ximian.com>
25475
25476         * Makefile.am: Export HOST_CC for w32 builds
25477
25478 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
25479
25480         * file-io.c process.c: MonoString are null terminated, no
25481         need for mono_string_to_utf16() anymore.
25482
25483 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
25484
25485         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
25486
25487 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
25488
25489         * icall.c, reflection.h: speedup System.MonoType.
25490
25491 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
25492
25493         * reflection.c: allow null as the value of a string argument in
25494         custom attributes constructors.
25495
25496 2002-08-27  Martin Baulig  <martin@gnome.org>
25497
25498         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
25499         `trampoline_address' field.
25500
25501 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
25502
25503         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
25504         check (fixes bug #29486) 
25505
25506 2002-08-27  Martin Baulig  <martin@gnome.org>
25507
25508         * debug-mono-symfile.c: Changed the file format in a way that allows us
25509         open it read-only and to use a specially malloced area for all the
25510         dynamic data.  We can now also generate a symbol file on-the-fly if we're
25511         debugging IL code and there is no MCS generated symbol file for it.
25512
25513 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
25514
25515         * object.c: added a define for a good string and array
25516         creation speedup (not enabled by default because we need to deal with
25517         the synch stuff).
25518
25519 2002-08-26  Martin Baulig  <martin@gnome.org>
25520
25521         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
25522         function to create a dynamic symbol file.  This is used by the
25523         debugger to create a symbol file for IL code on-the-fly.
25524
25525 2002-08-26  Martin Baulig  <martin@gnome.org>
25526
25527         * loader.c (mono_lookup_pinvoke_call): Include the error message
25528         from g_module_error() in the error message.
25529
25530 2002-08-24  Martin Baulig  <martin@gnome.org>
25531
25532         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
25533         function to update the symbol file.  The symbol file is mmap()ed
25534         writable, but private.  This allows us to install the symbol file
25535         together with the assembly.
25536
25537 2002-08-24  Martin Baulig  <martin@gnome.org>
25538
25539         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
25540         but they can read the new symbol file format which mcs is now creating.
25541
25542         * debug-symfile.c (mono_debug_find_source_location): Moved to
25543         debug-mono-symfile.c; this is now operating on the new symbol file.
25544
25545 2002-08-23  Martin Baulig  <martin@gnome.org>
25546
25547         * debug-helpers.c (mono_method_desc_from_method): New function to get
25548         a MonoMethodDesc from a MonoMethod.
25549
25550 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
25551
25552         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
25553         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
25554
25555 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
25556
25557         * string-icalls.[ch]: make helper methods static.
25558
25559 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25560
25561         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
25562         types to it and to SetValueInternal.
25563
25564         * object.c: Moved handle_enum label to its proper place. This was the
25565         f... bug! ;-)
25566
25567         This time i compiled mcs and gtk-sharp and they both work.
25568
25569 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25570
25571         * icall.c: reverted partially my previous patch until 
25572         object.c:set_value handles enums correcly.
25573
25574 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25575
25576         * icall.c:
25577         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
25578         (ves_icall_System_Environment_get_MachineName): removed warning when
25579         compiling under cygwin.
25580
25581 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
25582
25583         * object.c: fixed field_get_value() for reference types.
25584
25585 2002-08-22  Dick Porter  <dick@ximian.com>
25586
25587         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
25588         Don't free a buffer while it's still needed.  Patch from Jonathan
25589         Liger <Jonathan.liger@wanadoo.fr>
25590
25591 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
25592
25593         * icall.c (ves_icall_System_Environment_get_Platform): Add new
25594         internal call.
25595
25596 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
25597
25598         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
25599         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
25600
25601         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
25602         we call unmanaged code which throws exceptions.
25603
25604 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
25605
25606         * appdomain.h: added per-domain entry_assembly.
25607         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
25608         arguments.
25609         * icall.c: Assembly::GetEntryAssembly icall.
25610         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
25611         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
25612
25613 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
25614
25615         * appdomain.h, gc.c: added mono_domain_finalize ().
25616
25617 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25618
25619         * object.c:
25620         (mono_print_unhandled_exception): changed g_warning by g_printerr
25621         because g_log has a 1024 characters limit (yeah, i got a big stack
25622         trace). Don't print exception name, that should be in ToString 
25623         returned string.
25624
25625 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25626
25627         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
25628         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
25629
25630 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25631
25632         * object.c:
25633         (mono_print_unhandled_exception): after previous commit, i realized
25634         that MS calls ToString on the exception. I changed this function to
25635         do that. This way we get stack_trace for free.
25636
25637 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25638
25639         * object.c:
25640         (mono_print_unhandled_exception): invoke Message property instead of
25641         getting 'message' field from Exception. Don't allocate memory for
25642         'trace' and 'message' if not needed.
25643
25644 2002-08-18  Dick Porter  <dick@ximian.com>
25645
25646         * unicode.c: Fix asserts to match Encoder.cs checks
25647
25648 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25649
25650         * marshal.c: fix unaligned store issue and a few wrong
25651         opcode argument types.
25652
25653 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25654
25655         * icall.c: added GetUninitializedObjectInternal internal call.
25656
25657 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
25658
25659         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
25660         to the right domain.
25661
25662 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
25663
25664         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
25665
25666         * class.c (class_compute_field_layout): set blittable to false for Strings
25667
25668         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
25669
25670 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
25671
25672         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
25673         first chunk of code to create types at runtime. Code to
25674         handle ReflectedType/DeclaringType. Make reflection handles
25675         domain specific.
25676
25677 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
25678
25679         * class.c: set correct name in arrays.
25680
25681 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
25682
25683         * appdomain.c (mono_domain_transfer_object): make it work with
25684         valuetypes. bug fixes.
25685
25686 2002-08-12  Dick Porter  <dick@ximian.com>
25687
25688         * object.h: Rename some parameters to avoid c++ keywords (Patch
25689         from Joseph Wenninger <kde@jowenn.at>)
25690
25691 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
25692
25693         * icall.c: added icall to implement Assembly.GetFile*.
25694
25695 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
25696
25697         * reflection.h, reflection.c: code to embed managed resources.
25698
25699 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
25700
25701         * class.c: move all the type size stuff into
25702         class_compute_field_layout().
25703
25704 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
25705
25706         * class.c: ensure enums have always the correct instance size.
25707         * unicode.c: remove wrong assert.
25708
25709 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
25710
25711         * assembly.c: fix mem corruption issue.
25712         * image.h, image.c: added mono_image_get_resource () to access
25713         managed resources.
25714         * icall.c: implemented Assembly.EntryPoint property and some
25715         Managed Resources related internalcalls.
25716
25717
25718 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
25719
25720         * image.c, image.h: impemented mono_image_get_entry_point ().
25721         * appdomain.c: use mono_image_get_entry_point.
25722
25723 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
25724
25725         * reflection.c: support the object type argument when loading
25726         custom attributes.
25727
25728 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
25729
25730         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
25731         String as return type.
25732
25733 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
25734
25735         * reflection.c: fix encoding of named args for custom attrs to match
25736         the ms implementation. Read them back when instantiating custom
25737         attributes.
25738
25739 2002-08-02  Radek Doulik  <rodo@ximian.com>
25740
25741         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
25742         by Dietmar as quick fix
25743         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
25744         16 as stack size, used on more places as quick fix before Dietmar
25745         will fix it properly
25746
25747 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
25748
25749         * object.h, object.c: added accessors for fields and properties.
25750
25751 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
25752
25753         * class.c, class.h: made mono_class_get_field_from_name ()
25754         loop on parent types.
25755         Added mono_class_get_property_from_name ().
25756
25757 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
25758
25759         * class.c, class.h: move the code to setup the type vtable in its own
25760         function so that it can be reused also for types created at runtime.
25761         Eliminate the "class" identifier from the header file.
25762         * reflection.c: setup the vtable for enums so that we can create
25763         objects for use in SetConstant ().
25764
25765 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
25766
25767         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
25768         instead of the delegate itself as this pointer (bug #28383)
25769
25770 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
25771
25772         * marshal.c (mono_marshal_get_managed_wrapper): added return type
25773         conversions.
25774
25775 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
25776
25777         * loader.c: don't set the pinvoke bit on icalls.
25778
25779 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
25780
25781         * debug-helpers.c (mono_method_full_name): only print a number to
25782         indicate wrapper type (so that the output is more readable in traces).
25783
25784 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
25785
25786         * class.c (mono_class_init): include method override patch from Paolo
25787
25788 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
25789
25790         * icall.c: fixed GetTypeCode().
25791
25792 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
25793
25794         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
25795         use real delegate invoke function to make it work with multicast
25796         delegates (fix bug# 28291).
25797
25798 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
25799
25800         * object.c: load constant strings.
25801
25802 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
25803
25804         * reflection.c: no magic numbers.
25805         * tabledefs.h: security action enum.
25806
25807 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
25808
25809         * assembly.c: fix possible memory corruption.
25810
25811 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
25812
25813         * reflection.h, reflection.c: added support for linking resources.
25814         * verify.c: check we have an updated corlib.
25815
25816 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
25817
25818         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
25819         string arrays.
25820         (mono_marshal_string_array): null terminate unmanaged string arrays.
25821         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
25822
25823 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
25824
25825         * icall.c: Type.GetType () can now return also types from the
25826         calling assembly.
25827
25828 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
25829
25830         * loader.h, loader.c: stack walking support.
25831         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
25832         GetCallingAssembly.
25833
25834 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
25835
25836         * marshal.c: added optimisations for blittable types 
25837
25838         * class.c (mono_array_class_get): do not set blittable attribute on arrays
25839         (mono_class_setup_mono_type): set blittable attribute for single
25840         and double.
25841
25842         * marshal.c (mono_string_utf8_to_builder): impl.
25843         (mono_string_builder_to_utf8): impl.
25844         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
25845
25846 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
25847
25848         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
25849         (mono_marshal_get_managed_wrapper): impl. byref types
25850
25851 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25852
25853         * icall.c:
25854         (search_method): don't display debug message. 
25855
25856 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
25857
25858         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
25859
25860 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
25861
25862         * appdomain.c: set the missing filename when throwing exception.
25863
25864 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
25865
25866         * metadata.c (mono_type_size): code cleanup
25867         (mono_type_stack_size): removed some test code
25868
25869 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
25870
25871         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
25872         mono_get_exception_file_not_found now.
25873
25874         * exception.c (mono_exception_from_name_two_strings): New version
25875         that will call a constructor with two string arguments. 
25876         (mono_get_exception_file_not_found): New helper routine, used to
25877         report file-not-found errors.
25878
25879 2002-07-20  Dick Porter  <dick@ximian.com>
25880
25881         * process.h:
25882         * process.c: Pass file handles to CreateProcess
25883         
25884         * icall.c:
25885         * file-io.h:
25886         * file-io.c: Implemented CreatePipe
25887
25888 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
25889
25890         * metadata.c (mono_get_param_info): set alignment for value types
25891
25892 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
25893
25894         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
25895         Constify mono_domain_assembly_open().
25896         * loader.c: handle null namespace in icalls.
25897
25898 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
25899
25900         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
25901         (emit_str_to_ptr_conv): marshal object as structs
25902
25903         * metadata.c (mono_type_to_unmanaged): marshal object as structs
25904
25905         * marshal.c (mono_marshal_get_runtime_invoke): support value types
25906
25907 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
25908
25909         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
25910         (mono_marshal_get_native_wrapper): we an now return value types
25911
25912 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
25913
25914         * verify.c: more checks implemented.
25915
25916 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
25917
25918         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
25919         (fix bug #27695)
25920         (mono_marshal_get_native_wrapper): allow byref arguments
25921         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
25922         impl. PtrToStringXXX methods
25923         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
25924         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
25925         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
25926         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
25927         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
25928
25929 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25930
25931         * reflection.c: fix buglet in parsing an assembly name.
25932
25933 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
25934
25935         * marshal.c (emit_ptr_to_str_conv): first impl.
25936
25937 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
25938
25939         * object.c, class.h: cache the vtable in the class as suggested by
25940         vargaz@freemail.hu (Zoltan Varga).
25941
25942 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25943
25944         * class.h, loader.c: added mono_field_from_token().
25945         * verify.c: first cut of type checking code.
25946
25947 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
25948
25949         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
25950
25951 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
25952
25953         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
25954         (fix bug #27782)
25955         (mono_marshal_get_remoting_invoke): impl.
25956         (mono_delegate_begin_invoke): impl.
25957         (mono_mb_emit_save_args): impl.
25958         (mono_delegate_end_invoke): impl.
25959         (mono_marshal_get_delegate_begin_invoke):
25960         (mono_marshal_get_delegate_end_invoke):
25961         (mono_marshal_get_delegate_invoke): generate a special name for
25962         those methods (including the signature) and associate them whith
25963         the delegate class. 
25964
25965 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
25966
25967         * reflection.[ch]: 
25968         (mono_reflection_type_from_name): now it has a MonoImage parameter
25969         which is used as the default image to search the type in. If the image
25970         is NULL or getting the type from it fails, it defaults to corlib.
25971
25972         * icall.c: changed 1 call to mono_reflection_type_from_name to match
25973         new parameter.
25974
25975 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
25976
25977         * reflection.c: update the parameter table index.
25978
25979 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
25980
25981         * domain.c: don't include the mark byte in the string hash.
25982
25983 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
25984
25985         * icall.cs: icall for Type.GetTypeCode ().
25986         * verify: a couple of fixes and disabled local initialization checks.
25987
25988 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
25989
25990         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
25991
25992         * debug-helpers.c (mono_method_full_name): print the type of the
25993         runtime wrapper
25994
25995         * metadata.c (mono_signature_hash): a hash function for signatures
25996         (mono_signature_hash): better hash algorithm
25997
25998         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
25999
26000         * debug-helpers.c (mono_method_full_name): this can now generate
26001         method names with signatures
26002
26003         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
26004         method dont have this pointers.
26005
26006 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
26007
26008         * reflection.c: fixup typebuilder tokens.
26009         * image.c: fix buglet.
26010         * marshal.h: remove whitespace.
26011         * metadata.h, metadata.c: reinstate code that was removed.
26012         * verify.c: handle catch directives and fix another couple of bugs.
26013
26014 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
26015
26016         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
26017         (mono_marshal_get_native_wrapper): make it comp. with the old code
26018         (mono_marshal_get_native_wrapper): support boolean
26019         (mono_marshal_get_managed_wrapper): support more types
26020
26021 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
26022
26023         * class.c (class_compute_field_layout): compute class->blittable attribute.
26024
26025 2002-07-09  Dick Porter  <dick@ximian.com>
26026
26027         * threads.c: Make the thread cleaning up cope with threads that
26028         call ExitThread()
26029
26030 2002-07-08  Radek Doulik  <rodo@ximian.com>
26031
26032         * reflection.c (method_encode_code): use non-translated values to
26033         compute finally_start, this fixes exception handling on ppc, yay!
26034
26035         * decimal.h (struct signscale): fix endianess
26036
26037 2002-07-07  Radek Doulik  <rodo@ximian.com>
26038
26039         * reflection.c: swap box_val and not val
26040
26041 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
26042
26043         * reflection.c, reflection.h: handle full assembly info in type name.
26044         Handle Type arguments when loading custom attributes.
26045         * icall.c: updated to use new mono_reflection_type_from_name () method.
26046
26047 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26048
26049         * loader.c:
26050         (method_from_memberref): also print assembly name when method not found.
26051
26052 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26053
26054         * icall.c:
26055         (ves_icall_TypeGetProperties): fixed bug #27473. 
26056
26057 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26058
26059         * reflection.c: display image name and token when cannot find the
26060         .ctor for an attribute.
26061
26062 2002-07-05  Martin Baulig  <martin@gnome.org>
26063
26064         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
26065
26066 2002-07-04  Dick Porter  <dick@ximian.com>
26067
26068         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
26069         compile on mingw.  This will cause mingw builds to not wait for
26070         subthreads to terminate after the main thread does.  I've lodged a
26071         bug with the mingw developers for them to wrap OpenThread().
26072
26073 2002-07-03  Dick Porter  <dick@ximian.com>
26074
26075         * threads.c: Store thread IDs instead of handles, because
26076         GetCurrentThread() returns a pseudohandle and therefore stores
26077         useless values.  mono_thread_cleanup() continues checking the
26078         array of threads until it is empty, to cope with subthreads
26079         spawning new threads after the main thread has finished.
26080
26081         * profiler.h:
26082         * profiler.c:
26083         * profiler-private.h: Pass the thread ID to thread profiler
26084         functions, instead of a handle
26085
26086 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26087
26088         * verify.c: fixes to make it more usable.
26089         * pedump.c: added --verify code to verify IL code in an assembly.
26090
26091 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26092
26093         * reflection.c: turn errors into warnings to allow compiling corlib.
26094
26095 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
26096
26097         * reflection.c: add special cases to compile corlib.
26098
26099 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26100
26101         * reflection.c: handle properties with only a set method.
26102
26103 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26104
26105         * opcodes.h: add enum with opcodes in opval order.
26106
26107 2002-07-01  Dick Porter  <dick@ximian.com>
26108         
26109         * object.h:
26110         * object.c (mono_runtime_run_main): Removed unneeded argument
26111
26112 2002-06-28  Martin Baulig  <martin@gnome.org>
26113
26114         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
26115
26116 2002-06-27  Dick Porter  <dick@ximian.com>
26117
26118         * threads.c: Store the handle in both the parent thread and in the
26119         subthread, to minimise the time between starting a new thread and
26120         storing its ID.
26121
26122 2002-06-26  Dick Porter  <dick@ximian.com>
26123
26124         * appdomain.c (mono_runtime_cleanup): Close the socket library
26125         after all the threads have finished, not before
26126
26127 2002-06-26  Martin Baulig  <martin@gnome.org>
26128
26129         * debug-symfile.c (mono_debug_find_source_location): Added
26130         `guint32 *line_number' argument.  If it's not NULL, store the line number
26131         there and return the file name without the line number.
26132
26133 2002-06-25  Dick Porter  <dick@ximian.com>
26134
26135         * icall.c:
26136         * process.h:
26137         * process.c: Process forking and other support functions
26138
26139 2002-06-25  Dick Porter  <dick@ximian.com>
26140
26141         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
26142         things dont happen when the image is closed.
26143         (mono_image_lookup_resource): Walk the resource section looking
26144         for a particular entry
26145
26146         * cil-coff.h: PE resource section decoding
26147
26148 2002-06-25  Dick Porter  <dick@ximian.com>
26149         
26150         * assembly.h:
26151         * assembly.c: 
26152         (mono_assembly_foreach): Accessor functions to walk the list of
26153         loaded assemblies
26154         (mono_assembly_set_main):
26155         (mono_assembly_get_main): Process methods need to know which
26156         assembly is the "main" one
26157
26158         * object.c (mono_runtime_run_main): Record the main assembly
26159
26160         * debug-helpers.c: Fix typo
26161
26162 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
26163
26164         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
26165         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
26166
26167 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
26168
26169         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
26170
26171 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
26172
26173         * image.c (do_mono_image_open): Initialize reference count,
26174         otherwise we leak the MonoImage.
26175
26176 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
26177
26178         * reflection.c: small tweak to handle self-hosting.
26179
26180 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
26181
26182         * reflection.c: fix type name parse code.
26183
26184 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26185
26186         * reflection.c: break out of the loop.
26187         * image.c: special case corlib.
26188
26189 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26190
26191         * reflection.c: add all the custom attrs at the end to ensure the
26192         ctors have been properly initialized when the attributes are defined
26193         in the current assembly.
26194
26195 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26196
26197         * reflection.c: handle correctly multiple-nested types.
26198
26199 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
26200
26201         * row-indexes.h: fix typos.
26202         * reflection.c: adjust for typos and fix method_def_or_ref
26203         encoding in MethodImpl table.
26204
26205 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26206
26207         * reflection.c: fix entry point patching (thanks Serge!).
26208
26209 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
26210
26211         * verify.c: add check for System.Exception
26212
26213 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
26214
26215         * image.c, class.c: minifix for code just c&p'ed.
26216         * reflection.c: warning fix.
26217         * object.h, loader.h, domain.c: load also StringBuilder.
26218
26219 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26220
26221         * marshal.h, marshal.c: some support code to handle complex marshaling.
26222
26223 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26224
26225         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
26226         Better signatures with vtable error dump.
26227
26228 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
26229
26230         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
26231
26232 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
26233
26234         * icall.c (ves_icall_Type_GetField): impl.
26235
26236 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26237
26238         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
26239         to retrieve a marshal description blob for a field or param.
26240
26241 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
26242
26243         * reflection.h, reflection.c: change order of nested type emission
26244         to avoid table corruption. The NestedTypes table is sorted.
26245         * icall.c: change order of GetConstructor results to workaround mcs bug.
26246
26247 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26248
26249         * reflection.h, reflection.c: handle field and param marshal
26250         information.
26251
26252 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26253
26254         * icall.c, marshal.c marshal.h: more Marshal class implementation.
26255
26256 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26257
26258         * reflection.c: fix call convention.
26259
26260 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26261
26262         * reflection.h, reflection.c: mono_image_get_memberref_token()
26263         takes a type instead of a class, now. Added
26264         mono_image_get_array_token() to create tokens for the special
26265         multi-dim array methods.
26266
26267 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
26268
26269         * assembly.c: handle modules (no assembly table). Split
26270         loading references in its own function.
26271         * class.c: handle moduleref resolution scope.
26272         * image.c, image.h: cache module name in image.
26273
26274 2002-06-07  Martin Baulig  <martin@gnome.org>
26275
26276         * reflection.c (mono_image_get_type_info): Only add a class layout entry
26277         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
26278
26279 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
26280
26281         * icall.c: more signature fixes that used uint instead of int.
26282
26283 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26284
26285         * reflection.c: fixed signature of field refs.
26286
26287 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26288
26289         * class.c, reflection.c: handle typerefs of nested types
26290         (both on read and when writing files).
26291
26292 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
26293
26294         * icall.c: fix method signatures that tried to workaround the previous
26295         typo, d'oh!
26296
26297 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
26298
26299         * debug-helpers.c: fix typo.
26300
26301 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
26302
26303         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
26304         rewrote the PE/COFF writing code (our programs are understood by the
26305         ms runtime, now).
26306
26307 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
26308
26309         * gc.c, gc.h, icall.c: weakreference support.
26310
26311 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26312
26313         * Makefile.am, mono-config.c: use $(sysconfdir).
26314
26315 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26316
26317         * icall.c: changed default precision of Double.ToString() to 15.
26318         Fixed memory leak. Unified with Single.ToString.
26319
26320 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
26321
26322         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
26323
26324 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
26325
26326         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
26327         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
26328         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
26329         and myself.
26330
26331 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26332
26333         * debug-symfile.c, sysmath.c: yet more compilation fixes.
26334
26335 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26336
26337         * reflection.c, socket-io.c: more compilation fixes.
26338
26339 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
26340
26341         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
26342         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
26343         unicode.c: warning and compiler compatibility fixes.
26344
26345 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
26346
26347         * class.h, metadata.c: fixed warnings/compilation errors.
26348
26349 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
26350
26351         * Makefile.am, mono-config.c, mono-config.h: configuration file
26352         support routines.
26353         * loader.c, loader.h: make Dll mapping configurable at runtime in the
26354         config file. Export methods to insert and lookup mappings.
26355
26356 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
26357
26358         * reflection.c: handle types and boxed objects in custom attr
26359         constructors.
26360
26361 2002-05-30  Martin Baulig  <martin@gnome.org>
26362
26363         * debug-symfile.c
26364         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
26365
26366 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
26367
26368         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
26369         to lookup the implmap row for a P/Invoke method.
26370         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
26371         P/Invoke method from the runtime on an as needed basis.
26372
26373 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
26374
26375         * metadata.c (mono_metadata_parse_signature): impl.
26376
26377 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26378
26379         * class.c: handle .pack directive.
26380
26381 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
26382
26383         * object.c: initialize static fields with RVA data.
26384
26385 2002-05-25  Martin Baulig  <martin@gnome.org>
26386
26387         * debug-symfile.c
26388         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
26389
26390 2002-05-24  Martin Baulig  <martin@gnome.org>
26391
26392         * debug-symfile.c
26393         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
26394         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
26395         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
26396
26397 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
26398
26399         * object.c: special case string ctros in invoke.
26400         * gc.c: silly whitespace changes.
26401
26402 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
26403
26404         * threadpool.[ch]: impl. a threadpool that can
26405         be used by mint and mono.
26406
26407 2002-05-22  Martin Baulig  <martin@gnome.org>
26408
26409         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
26410         The first argument is now a `MonoReflectionModuleBuilder *', the return
26411         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
26412         `methods' field to get the method builder.  The `token' argument is the
26413         unfixed token.
26414
26415         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
26416         invalid characters instead of g_assert_not_reached()ing.  This seems
26417         to be the behaviour of mscorlib.
26418
26419 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
26420
26421         * object.c (mono_runtime_invoke_array): applied patch from Rachel
26422         Hestilow to fix bug #25104
26423
26424 2002-05-21  Martin Baulig  <martin@gnome.org>
26425
26426         * debug-symfile.c (mono_debug_find_source_location): New function.
26427         Looks up an IL offset in the line number table and returns the source
26428         location as a string.
26429
26430 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26431
26432         * icall.c:
26433         (mono_double_ToStringImpl): changed %f by %g until we have something
26434         better.
26435
26436 2002-05-21  Nick Drochak  <ndrochak@gol.com>
26437
26438         * icall.c : Use different name for Math.Pow's icall.  Needed to check
26439         parameters first in C#.
26440
26441 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26442
26443         * icall.c, reflection.h: added icall to get info about an event.
26444
26445 2002-05-20  Radek Doulik  <rodo@ximian.com>
26446
26447         * object.c (mono_value_box): don't use memcpy for boxing on BIG
26448         endian
26449         (mono_value_box): don't use memcpy for small sizes on
26450         architectures with unaligned access
26451
26452 2002-05-20  Martin Baulig  <martin@gnome.org>
26453
26454         * reflection.c (mono_reflection_setup_internal_class): Don't crash
26455         if `tb->parent == NULL'.
26456         (mono_reflection_create_internal_class): New function.  This is
26457         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
26458         for enum types.
26459
26460         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
26461         New interncall.
26462
26463 2002-05-19  Martin Baulig  <martin@gnome.org>
26464
26465         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
26466         argument to get the length, don't default to the array length.
26467
26468 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
26469
26470         * assembly.c (mono_assembly_setrootdir): New function used to
26471         override the MONO_ASSEMBLIES directory.
26472
26473 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
26474
26475         * icall.c: ValueType_GetHashCode() initialize local var.
26476
26477 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
26478
26479         * reflection.c: sort custom attributes table.
26480
26481 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
26482
26483         * reflection.c: support named args in custom attributes (write support).
26484
26485 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
26486
26487         * reflection.c: fix finally position calculation.
26488
26489 2002-05-15  Radek Doulik  <rodo@ximian.com>
26490
26491         * reflection.c: fixed endianess at many places
26492
26493         * icall.c (ves_icall_InitializeArray): comment out debug msg
26494
26495 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
26496
26497         * object.c (mono_unhandled_exception): new function to handle
26498         unhandled exceptions.
26499         (mono_unhandled_exception): call the UnhandledException event.
26500         (mono_runtime_delegate_invoke): impl.
26501
26502 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
26503
26504         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
26505         returns the RVA, not the direct pointer to the data. Handle the case
26506         when the class size is fixed.
26507
26508 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
26509
26510         * reflection.c: fix some endianess issues.
26511
26512 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
26513
26514         * object.c (mono_runtime_invoke): is now able to catch exceptions.
26515
26516         * threads.c (mono_thread_init): added a callback which is invoked
26517         at thread start.
26518
26519 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
26520         
26521         * icall.c: make GetHashCode return non-negative values.
26522
26523 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
26524
26525         * object.c, icall.c, gc.c: revert to address-based hashcode.
26526
26527 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
26528
26529         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
26530
26531 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26532
26533         * icall.c, class.c: special case <Module>.
26534
26535 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
26536
26537         * icall.c: fix bug in GetNow().
26538
26539 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
26540
26541         * object.c (mono_runtime_class_init): make sure that we call all
26542         static class constructors.
26543
26544 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
26545
26546         * reflection.c: sort methodsemantics table.
26547
26548 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
26549
26550         * reflection.h, reflection.c: honour init locals setting.
26551
26552 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
26553
26554         * icall.c: copied Double ToStringImpl for Single ToStringImpl
26555
26556 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
26557
26558         * reflection.c: support ContructorBuilders in attribute blob creation.
26559
26560 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26561
26562         * reflection.c: some changes to build a binary that can be run
26563         directly in windows.
26564
26565 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
26566
26567         * loader.c: print a big message when an icall can't be found.
26568
26569 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26570
26571         * string-icalls.c: fix bug 24248.
26572
26573 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
26574
26575         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
26576         icall.c, reflection.h: separate assembly loading by pathname and by
26577         assembly name. Use the MONO_PATH env var to search for assemblies.
26578
26579 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26580
26581         * assembly.c, image.h: add some support for assemblies
26582         with multiple modules.
26583         * class.c, class.h: export mono_class_from_typeref().
26584         * loader.c: remove duplicated code and use mono_class_from_typeref(),
26585         instead.
26586
26587 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26588
26589         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
26590         documentation says (the ECMA one is correct).
26591
26592 2002-05-02  Dick Porter  <dick@ximian.com>
26593
26594         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
26595         Don't name the synchronisation mutex.
26596
26597 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
26598
26599         * rand.c
26600         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
26601         Make the prototypes match.
26602         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
26603         Same.
26604
26605         * icall.c
26606         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
26607         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
26608         all systems have tm.tm_zone, so use strftime() with %Z to print
26609         the timezone abreviation into a temp string.
26610
26611         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
26612         rather than mono_array_addr() on a MonoString on Big Endian
26613         machines.
26614
26615 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
26616
26617         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
26618         fix bug 24041
26619
26620 2002-04-30  Dick Porter  <dick@ximian.com>
26621
26622         * socket-io.c: Cope with SOCKET being an integer rather than a
26623         pointer now.
26624
26625         * threads.c: Added Thread_free_internal, to deal with thread
26626         handle cleanup.  Moved calls to handle_store() and handle_remove()
26627         to start_wrapper(), so each can only be called once.  Allocate
26628         synchronisation blocks with GC_malloc(), and use GC finalisation
26629         to close the handles.
26630
26631         * icall.c: added System.Threading.Thread::Thread_free_internal
26632
26633 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26634
26635         * icall.c: support Environment.Exit, CommandLineArgs().
26636
26637 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26638
26639         * object.c, object.h: added mono_runtime_run_main () and
26640         mono_runtime_get_main_args () for use in System.Environment.
26641
26642 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26643
26644         * gc.c: fix thinko, enable actual finalization since the jit is now
26645         fixed.
26646
26647 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26648
26649         * gc.c, object.c: take into account that an object may be offset wrt the address
26650         returned by GC_malloc().
26651
26652 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
26653
26654         * image.c: handle files without entries in the assembly table (modules).
26655
26656 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
26657
26658         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
26659         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
26660         allowed to be null when it's System.Object class setup.
26661
26662 2002-04-27  Martin Baulig  <martin@gnome.org>
26663
26664         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
26665         if `tb->parent == NULL' rather than crashing.
26666
26667 2002-04-28  Nick Drochak  <ndrochak@gol.com>
26668
26669         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
26670         calling acos() where asin() should have been called.
26671
26672 2002-04-26  Martin Baulig  <martin@gnome.org>
26673
26674         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
26675         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
26676         there's a subdirectory called `System', but we don't want to read that
26677         subdirectory as an assembly.
26678
26679 2002-04-25  Martin Baulig  <martin@gnome.org>
26680
26681         * debug-symfile.c: Reflect latest MonoString changes.
26682
26683 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
26684
26685         * rand.c, rand.h: instance method icalls need to have an explicit
26686         this pointer as first argument in the C implementation.
26687
26688 2002-04-25  Nick Drochak <ndrochak@gol.com>
26689
26690         * icall.c: Fix typo in map for GetNonZeroBytes
26691
26692 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
26693
26694         * string-icalls.c : String does now passes unit tests without any 
26695         errors, the following changes has been made:
26696         
26697         Implemented replace methods.
26698         Renaming of methods to (try) follow the standard.
26699         Fixed compare ordinal
26700         Made all memory allocated directly to function instead of via icall function.
26701         Small performance fix in is_in_array function
26702                         
26703  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
26704
26705         c (mono_string_Internal_ctor_charp_int_int):
26706         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
26707         sindex < 0, throw ArgumentOutOfRangeException instead of
26708         ArgumentNullException.
26709
26710         Added new check for length == 0, however
26711         I need to make it return String.Empty from the C code.
26712         
26713         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
26714         that calculate the length for us here.
26715         
26716         (mono_string_Internal_ctor_sbytep_int_int): Replaced
26717         mono_string_new_utf16 with mono_string_new, since value is utf8.
26718
26719 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26720
26721         * object.c: register the object for finalization if needed.
26722         Allocate one more char in the string for the terminating 0 char.
26723
26724 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26725
26726         * class.c, class.h, image.c: check if a type implemenst a destructor.
26727         Use the proper key for array class lookups.
26728         * icall.c: register the icalls in the System.GC class.
26729         * gc.c, gc.h: GC-related functions and icalls.
26730
26731 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26732
26733         * icall.c:
26734         * socket-io.c:
26735         * unicode.c: free some strings gotten from mono_string_to_utf8 and
26736         changed a couple of free () by g_free ().
26737
26738         * decimal.c: one-liner in the comments for decimal2string ().
26739
26740 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
26741
26742         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
26743
26744 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
26745
26746         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
26747         * object.c (mono_runtime_invoke_array) : handle null in params
26748
26749 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
26750
26751         * string-icalls.c: fixed bug in split (one off bug)
26752
26753 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
26754
26755         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
26756         * icalls.c: added String::Equals as internal method
26757
26758 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
26759
26760         * threads.c: fixed bug in the double interlocked functions
26761
26762 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
26763
26764         * threads.c: implemented all of the new interlocked icalls.
26765         * string-icalls.c: fix a bug in insert.
26766         * icalls.c: added the icalls for interlocked, removed old string functions.
26767         
26768 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
26769
26770         * loader.c: fix off-by-one error when reading argument names.
26771
26772 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26773
26774         * profiler.c: win32 counter implementation (untested).
26775         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
26776         (the latter needs testing and more complete impl. from win32 folks).
26777
26778 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
26779
26780         * object.c: mono_array_new_full workaround mono_array_class_get
26781         problem.
26782
26783 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26784
26785         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
26786         * object.h (mono_string_chars): Changed casting type.
26787
26788 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26789
26790         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
26791                            method signatures to use gunichar2 instead of gint16.
26792
26793 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
26794
26795         * object.h, object.c: domain-specific versions of mono_object_new and
26796         mono_array_new.
26797
26798 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
26799
26800         * object.c: changed String layout
26801
26802         * string-icalls.c (mono_string_Internal_ctor_chara): added
26803         internal string constructors.
26804
26805 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
26806
26807         * threads.c: pass 'this' to the thread start routine.
26808
26809 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26810
26811         * string-icalls.c: fix IndexOf and LastIndexOf. Now
26812         InternalCompareStr don't call twice mono_string_cmp_char for the last
26813         character. Improved performance in mono_string_cmp_char.
26814
26815 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
26816
26817         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
26818         code into its own library: libmonoruntime.
26819
26820 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
26821
26822         * object.h, object.c: changed array format so that szarrays do not
26823         require a bounds structure.
26824         * icall.c, appdomain.c: support for new szarray format.
26825
26826 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
26827
26828         * metadata.c: compare also the retuns type when comparing signatures:
26829         we didn't do this as an optimization since really overloaded methods
26830         must differ also in the arguments, but this doesn't work with
26831         low-level IL code (or when using explicit conversion operators: see
26832         bug#23498 for an example).
26833
26834 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26835
26836         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
26837
26838 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
26839
26840         * icall.c: make MonoType::GetElementType its own icall.
26841
26842 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26843
26844         * icall.c: remove MonoMethod_get_Name().
26845         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
26846         object.
26847
26848 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26849
26850         * string-icalls.c: optimized a few methods.
26851
26852 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26853
26854         * icall.c: added all new string internal calls
26855         * string-icalls.c: added, new string internal call implementation.
26856         * object.c: added mono_string_new_size for allocating a string a size
26857
26858 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
26859
26860         * object.c (mono_object_isinst): use the same code as in the
26861         optimized x86 version.
26862
26863 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26864
26865         * profiler.c: TSC-based timer code (faster and more accurate).
26866         Not hooked up in configure, yet (set USE_X86TSC to 1).
26867
26868 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
26869
26870         * profiler.c, profiler.h: track time spent compiling methods.
26871         * threads.c: track thread creation/destruction.
26872
26873 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
26874
26875         * profiler.c, profiler.h, profiler-private.h: profiling interface
26876         and sample implementation. Moved here so that it can be used also by
26877         the jit.
26878
26879 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
26880
26881         * reflection.c, reflection.h: keep types and other handles separate in
26882         the hash tables for referred tokens. Add guid for modules.
26883
26884 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
26885
26886         * assembly.c: fix bugs found with valgrind.
26887         * metadata.h, metadata.c: added mono_metadata_guid_heap().
26888
26889 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
26890
26891         * threads: added icall support for getting current domain for
26892                    the thread.
26893  
26894 2002-04-13  Martin Baulig  <martin@gnome.org>
26895
26896         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
26897         (MonoDebugVarInfo): Added `index' field for register based addresses.
26898         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
26899         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
26900         `MonoDebugVarInfo *params' and `guint32 this_offset' with
26901         `MonoDebugVarInfo *this_var'.
26902
26903         * debug-symfile.c (relocate_variable): New static function to write
26904         a location description for a local variable or method parameter.
26905
26906 2002-04-12  Martin Baulig  <martin@gnome.org>
26907
26908         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
26909         stack offset and begin/end scope address of a local variable.
26910         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
26911         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
26912         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
26913
26914         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
26915         Added new relocation types for start/end scope of a local variable.
26916
26917 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26918
26919         * object.h: add mono_object_domain() macro.
26920         * reflection.c: handle typespecs.
26921         * icall.c: MonoMethod::get_Name() implementation.
26922
26923 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26924
26925         * icall.c: String::GetHashCode() icall implementation.
26926
26927 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26928
26929         * icall.c: String::IndexOfAny icall.
26930         * object.c, object.h: make array->max_length more useful.
26931         Intrduced mono_object_class() and mono_string_length() macros.
26932
26933 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26934
26935         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
26936         instead of g_unichar_isdigit.
26937
26938 2002-04-11  Nick Drochak  <ndrochak@gol.com>
26939
26940         * icall.c: Implement a simple Double.ToString().
26941
26942 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
26943
26944         * appdomain.h: only io-layer.h is supposed to be included.
26945         * icall.c: explicitly import environ. Fix warning.
26946
26947 2002-04-10  Nick Drochak  <ndrochak@gol.com>
26948
26949         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
26950                 return true even if it's not Daylight Savings time.
26951                 Only return false for the case where the function isn't
26952                 implemented for a plaform (read Windows).
26953
26954 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26955
26956         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
26957         data with a mutex.
26958
26959 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
26960
26961         * mempool.c (mono_mempool_alloc): only use g_malloc when
26962         absolutely necessary.
26963
26964 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
26965
26966         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
26967
26968         * class.c (mono_class_vtable): use domain mempool to allocate vtable
26969         (mono_class_proxy_vtable): use domain mempool
26970
26971 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
26972
26973         * appdomain.h, appdomain.c: split initialization that requires the
26974         execution engine support into mono_runtime_init().
26975
26976 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
26977
26978         * class.c (mono_class_init): don't include vtable inside MonoClass
26979         to save some memory, gather some statistics.
26980         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
26981
26982 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
26983
26984         * icall.c: internalcall implementation for ValueType.Equals().
26985
26986 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
26987
26988         * object.c (mono_message_init): moved 
26989         (mono_runtime_exec_main): new arch. independent impl.
26990         (mono_runtime_invoke_array): new method - like
26991         mono_runtime_invoke, but you can pass an array of objects.
26992         (mono_remoting_invoke): new arch. independent impl.
26993         (mono_message_invoke): new arch. independent impl.
26994         (mono_runtime_class_init): new arch. independent impl.
26995         (mono_runtime_object_init): new arch. independent impl.
26996
26997 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26998
26999         * metadata.c, object.c, reflection.c: documented the exported
27000         functions.
27001
27002 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
27003
27004         * icall.c: simpler code to pass the assembly builder data to corlib.
27005         Implement GetNestedTypes() internalcall.
27006
27007 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
27008
27009         * class.c: warn if a type can't be loaded.
27010
27011 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
27012
27013         * image.h: typedef MonoImageOpenStatus
27014         * types.h: removed unused file
27015         
27016 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
27017
27018         * icall.c: Enum_ToObject accepts enum value arguments.
27019
27020 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
27021
27022         * class.c: move initialization of properties, events and nested
27023         classes, so that they happen for interfaces, too.
27024
27025 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
27026
27027         * icall.c: cleanup some ugly casts in Array_SetValue*.
27028
27029 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
27030
27031         * icall.c: the values array fro enums is of the correct type, now.
27032         Implement (correctly) getFullName instead of assQualifiedName for
27033         MonoType.
27034         * reflection.h, reflection.c: added mono_type_get_name ().
27035
27036 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
27037
27038         * assembly.c, image.h: for each MonoImage, record from wich assembly
27039         it was loaded.
27040         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
27041         Make Type.Assembly work.
27042
27043 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
27044
27045         * debug-symfile.h: use char* instead of gpointer to avoid
27046         unnecessary casts.
27047
27048         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
27049
27050         * icall.c (ves_icall_InternalExecute): impl. FielSetter
27051         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
27052
27053 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
27054
27055         * icall.c (mono_message_init): impl. (code cleanup)
27056         (ves_icall_InternalExecute): impl. FieldGetter
27057
27058         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
27059         defined we call all (non-static)methods through the vtable. 
27060
27061 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
27062
27063         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
27064         finalizer even though the memory is still referenced (and the chunk of
27065         memory is not freed).
27066
27067 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
27068
27069         * assembly.c: fix brokeness.
27070
27071 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
27072
27073         * class.c: kill some warnings. Check explicit interface method
27074         implementation also without considering the namespace.
27075         Load also literal strings in static class data.
27076
27077 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
27078
27079         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
27080         (default_assembly_name_resolver): Make the resolver take the
27081         "base" directory where the assembly was originally defined, so we
27082         can load DLLs that are in the same directory as the assembly that
27083         is being referenced.
27084
27085 2002-03-28  Dick Porter  <dick@ximian.com>
27086
27087         * file-io.h: 
27088         * file-io.c:
27089         * socket-io.c: 
27090         * unicode.h: 
27091         * unicode.c: Warning cleanups
27092
27093 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
27094
27095         * object.h, reflection.h: use the correct type instead of MonoObject.
27096
27097 2002-03-28  Martin Baulig  <martin@gnome.org>
27098
27099         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
27100         (mono_debug_update_symbol_file): Initialize classes if necessary.
27101
27102 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
27103
27104         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
27105         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
27106
27107 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
27108
27109         * assembly.h: fix function prototype.
27110         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
27111         * mono-endian.h: use const cast.
27112
27113 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
27114
27115         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
27116
27117 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
27118
27119         * loader.c: don't assert when a typeref can't be loaded, give
27120         a chance to the runtime to trow an exception instead.
27121         * loader.h: fix warning.
27122
27123 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
27124
27125         * class.c (mono_class_proxy_vtable): added proxy support
27126
27127 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
27128
27129         * icall.c: removed last of PAL calls, added System.Environment
27130         * file-io.h, file-io.c: MonoIO implementation
27131         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
27132
27133 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
27134
27135         * appdomain.c: do not use the byte marker in ldstr table lookup.
27136         * debug-helpers.c: allow two ':' to separate class and method name.
27137         * object.c: allocate arrays bounds with the GC, too.
27138         * verify: add a few more checks.
27139
27140 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
27141
27142         * reflection.c: output also literal strings. Allocate parameter data
27143         with GC_malloc() (thanks, Martin, for catching this!).
27144
27145 2002-03-26  Martin Baulig  <martin@gnome.org>
27146
27147         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
27148         include the `this' offset in the `param_offsets'.
27149
27150 2002-03-25  Martin Baulig  <martin@gnome.org>
27151
27152         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
27153         mono_debug_get_class() function to get the classes. Added new
27154         relocation types for arrays and strings.
27155         (mono_debug_get_class): New static function to search in all
27156         referenced assemblies for a metadata token.
27157
27158         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
27159
27160 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
27161
27162         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
27163         hold gc-allocated objects. Make the string heap a stream like the
27164         others. Removed duplicated code when writing stream info.
27165         Added asserts to catch possible buffer overflows. Set the sorted map
27166         for tables that need sorting. Added some documentation.
27167
27168 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
27169
27170         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
27171         for interned strings and vtables.
27172
27173 2002-03-24  Martin Baulig  <martin@gnome.org>
27174
27175         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
27176         it in the array since it was created with g_slist_prepend().
27177
27178 2002-03-24  Martin Baulig  <martin@gnome.org>
27179
27180         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
27181         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
27182         (mono_debug_method_from_token): Renamed to
27183         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
27184         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
27185
27186         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
27187         relocation types.
27188
27189         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
27190
27191 2002-03-24  Martin Baulig  <martin@gnome.org>
27192
27193         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
27194         (mono_debug_method_from_token): New func.
27195
27196         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
27197         New interncall, calls mono_debug_local_type_from_signature().
27198         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
27199         calls mono_debug_method_from_token().
27200
27201 2002-03-23  Martin Baulig  <martin@gnome.org>
27202
27203         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
27204         specifies the number of bytes to be converted, not the array size.
27205         Return the number of chars, not the number of bytes.
27206         (ves_icall_iconv_get_chars): The `byteCount' argument
27207         specifies the number of bytes to be converted, not the array size.
27208
27209 2002-03-23  Martin Baulig  <martin@gnome.org>
27210
27211         * reflection.h (MonoReflectionSigHelper): New type.
27212
27213         * reflection.c (mono_reflection_sighelper_get_signature_local),
27214         (mono_reflection_sighelper_get_signature_local): New functions.
27215
27216         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
27217         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
27218         interncalls.
27219
27220 2002-03-23  Martin Baulig  <martin@gnome.org>
27221
27222         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
27223         is_writeable is set.
27224         (mono_raw_buffer_update): New function to write the modified map
27225         back to disk.
27226
27227         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
27228
27229         * debug-symfile.c (mono_debug_update_symbol_file): Call
27230         mono_raw_buffer_update() when done writing.
27231
27232 2002-03-23  Martin Baulig  <martin@gnome.org>
27233
27234         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
27235
27236         * debug-symfile.c: Added support for arguments and local variables.
27237
27238 2002-03-23  Dick Porter  <dick@ximian.com>
27239
27240         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
27241         protected by ifdefs, hence breaking the w32 build.
27242
27243 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27244
27245         * object.c: implement is_interned() the right way.
27246
27247 2002-03-21  Martin Baulig  <martin@gnome.org>
27248
27249         * debug-symfile.[ch]: New files to handle debugging information
27250         files. There's also support to dynamically update these symbol
27251         files to include machine dependent information.
27252
27253 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
27254
27255         * threads.c (mono_thread_create): new function to create thread
27256         from C
27257
27258 2002-03-20  Martin Baulig  <martin@gnome.org>
27259
27260         * icall.c (ves_icall_InternalInvoke): Create a new object if the
27261         method is a constructor.
27262         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
27263         points to ves_icall_InternalInvoke().
27264
27265 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
27266
27267         * file-io.c: Flush shouldn't throw exceptions.
27268
27269 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
27270
27271         * file-io.c: FileStream flush support; FileSetLength now
27272         restores file pointer.
27273
27274 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
27275
27276         * class.c: set image for pointer classes.
27277
27278 2002/03/19  Nick Drochak <ndrochak@gol.com>
27279
27280         * sysmath.c: Forgot one.
27281
27282 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
27283
27284         * sysmath.c: Avoid redefining existing names.
27285
27286 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
27287
27288         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
27289         handled by runtime as icall rather than dllimport from libm.so
27290         * file-io.c, file-io.h: fixed handle argument type.
27291
27292 2002-03-18  Dick Porter  <dick@ximian.com>
27293
27294         * reflection.c (mono_image_get_type_info): rename interface to
27295         iface, because of "#define interface struct" on windows.
27296
27297 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
27298
27299         * class.c, class.h: rename and export mono_ptr_class_get().
27300         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
27301         * reflection.c, reflection.h, icall.c: better/saner type name
27302         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
27303         method signatures.
27304
27305 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
27306
27307         * class.c (mono_class_init): removed hardcoded GHC_SLOT
27308
27309         * icall.c (ves_icall_InternalInvoke): impl.
27310
27311 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
27312
27313         * reflection.c: output the interface map table, too.
27314
27315 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
27316
27317         * class.c (class_compute_field_layout): separate computation of 
27318         static field layout
27319
27320 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
27321
27322         * icall.c: added System.Buffer support.
27323         * file-io.c: moved file icalls from PAL to FileStream.
27324
27325 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
27326
27327         * icall.c (ves_icall_System_Object_GetHashCode): impl.
27328
27329 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
27330
27331         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
27332
27333 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27334
27335         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
27336
27337 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
27338
27339         * debug-helpers.{c,h}: moved here from monograph some useful functions
27340         to locate a method by name/signature in a class or image. Included
27341         also a small and flexible IL disassembler.
27342
27343 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
27344
27345         * reflection.c: fixup tokens in methods with small header size, too.
27346
27347 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
27348
27349         * object.c (mono_string_to_utf8): remove assert(!error), instead
27350         print a warning. 
27351
27352 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
27353
27354         * icall.c: update to the new mono_Array_class_get interface.
27355
27356 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
27357
27358         * appdomain.c, object.c: Boehm-GC enable.
27359         * icall.c: make get_data_chunk() support split data requests.
27360         Ensure a class is initialized in more cases. Return only the first
27361         property found in GetProperties() or the compiler gets confused. 
27362         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
27363         * reflection.h, reflection.c: add fixup mechanism for field and method
27364         tokens. Initialize assembly->typeref in a single place. Output
27365         properties after events. Support custom attributes for events, too.
27366         Typo fix for paramter custom attrs.
27367
27368 2002-03-07  Martin Baulig  <martin@gnome.org>
27369
27370         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
27371
27372 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
27373
27374         * class.c (mono_array_class_get): fix. for multi. dim. arrays
27375
27376 2002-03-06  Martin Baulig  <martin@gnome.org>
27377
27378         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
27379         non-zero lower bounds. See testcases #F10-#F13.
27380
27381 2002-03-05  Martin Baulig  <martin@gnome.org>
27382
27383         * exception.c (mono_get_exception_argument_out_of_range): New exception.
27384
27385         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
27386         ves_icall_System_Array_GetValue(), only calculate the absolute array position
27387         here.
27388         (ves_icall_System_Array_SetValue): Likewise.
27389         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
27390         as argument and does the actual work. This function is used when copying a
27391         multi-dimensional array.
27392         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
27393         now do all the widening conversions of value types.
27394         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
27395
27396 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27397
27398         * class.c: remove some magic numbers and use the smbolic names,
27399         instead. Added init_events() to load event info at class init time.
27400         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
27401         and mono_metadata_methods_from_event().
27402         * reflection.h, reflection.c: added support for writing out the evnets
27403         related information.
27404
27405 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
27406
27407         * reflection.h, icall.c: use a different method (GetInterfaces)
27408         to gather interface info and add isbyref, isprimitive and
27409         ispointer to the ves_icall_get_type_info() return value.
27410
27411 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
27412
27413         * class.h: stared adding support for events.
27414         * icall.c: split find_members implementation. Added debug icall to get
27415         the address of an object.
27416         * reflection.c: handle TypeBuilders in mono_type_get_object().
27417
27418 2002-03-01  Martin Baulig  <martin@gnome.org>
27419
27420         * icall.c (ves_icall_System_Array_GetLength): This must throw an
27421         ArgumentOutOfRangeException(), not an ArgumentException().
27422         (ves_icall_System_Array_GetLowerBound): Likewise.
27423         (ves_icall_System_Array_GetValue): Improved argument checking.
27424         (ves_icall_System_Array_SetValue): Improved argument checking.
27425
27426 2002-03-01  Martin Baulig  <martin@gnome.org>
27427
27428         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
27429         called with invalid arguments rather than just dying with g_assert().
27430         (ves_icall_System_Array_SetValue): Likewise.
27431         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
27432         raise a NotImplementedException instead.
27433         (ves_icall_System_Array_GetLength): Added argument checking.
27434         (ves_icall_System_Array_GetLowerBound): Added argument checking.
27435
27436 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
27437
27438         * object.h (mono_assert): new macros mono_assert and
27439         mono_assert_not_reached
27440
27441 2002-02-28  Martin Baulig  <martin@gnome.org>
27442
27443         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
27444         and "System::String::IsInterned" to "System::String::_IsInterned".
27445
27446 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
27447
27448         * icall.c: remove hacks for typebuilder. Added icall to create a
27449         modified type from a tybebuilder.
27450         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
27451         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
27452         to create a backing MonoClass for a TypeBuilder.
27453
27454 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
27455
27456         * class.c, class.h: more refactoring of class init.
27457         Export mono_class_setup_mono_type() and mono_class_setup_parent().
27458
27459 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
27460
27461         * marshal.c, marshal.h: start of marshaling interface.
27462
27463 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
27464
27465         * icall.c: fix order in assembly qualified name icall.
27466
27467 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
27468
27469         * class.c: do not free str, since we store it in the hash table.
27470         * reflection.h: add label field to MonoILExceptionInfo.
27471         * reflection.c: handle references to more than one assembly. Handle
27472         case when there isn't a module created in the assembly.
27473
27474 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
27475
27476         * class.c: Fix typo. Start refactoring of class init code.
27477
27478 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
27479
27480         * appdomain.c: exit with 1 on error.
27481         * class.c: we already have the name in MonoClassField.
27482         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
27483         MonoStreamHeader instead of an offset of image->raw_metadata.
27484
27485 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
27486
27487         * appdomain.c (mono_init): Be even more descriptive about the error.
27488
27489 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
27490
27491         * appdomain.c: give the user an informative message when corlib can't
27492         be loaded.
27493
27494 2002-02-26  Martin Baulig  <martin@gnome.org>
27495
27496         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
27497         New icall to get the time zone data.
27498
27499 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
27500
27501         * reflection.c: set virtual and raw size of section correctly.
27502         * threads.c: transfer domain information to newly created threads.
27503
27504 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
27505
27506         * class.c: when instancing a class in a domain, load the default
27507         vaules for static fields from the constant table. Fix System.Enum to
27508         not be an enum.
27509         * icall.c: implement Object::GetType() internalcall. Implemented
27510         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
27511         Fixed checking of binding flags in find_members().
27512         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
27513         * reflection.c: handle enumerations when writing to the constant
27514         table. Use a different object cache for types.
27515
27516
27517 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
27518
27519         * object.c (mono_object_isinst): fix for arrays
27520
27521         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
27522
27523 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
27524
27525         * object.c: don't use mprotect ()  and fix intern pool hash table
27526         lookup for big endian systems.
27527
27528 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
27529
27530         * icall.c: change type_is_subtype_of () signature.
27531
27532 2002-02-21  Mark Crichton  <crichton@gimp.org>
27533
27534         * rand.c, rand.h: Added random number generator for
27535         System.Security.Cryptography classes.
27536
27537         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
27538
27539         * icall.c: Added System.Security.Cryptography calls.
27540
27541 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
27542
27543         * class.c, icall.c, metadata.c: better support for pointer types.
27544         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
27545         * reflection.c: Add support for getting custom attrs for properties
27546         and simplify some code.
27547
27548 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
27549
27550         * icall.c: change getToken () and add custom attribute GetBlob()helper
27551         method.
27552         * reflection.h: add custom attrs array to the reflection builder structures.
27553         * reflection.c: encode and emit custom attributes for all the relevant
27554         reflection objects. Cache fieldref and methodref tokens. Change
27555         mono_image_create_token() interface to take a MonoDynamicAssembly.
27556         More complete custom attributes decoder. Load custom attributes for
27557         Assembly, Field, Method and Constructor objects, too. Make the
27558         returned array an Attribute[] one, not object[]. Added
27559         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
27560         custom attribute constructor.
27561
27562 2002-02-20  Dick Porter  <dick@ximian.com>
27563
27564         * icall.c:
27565         * rawbuffer.c:
27566         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
27567         problem code out for now).
27568
27569 2002-02-19  Radek Doulik  <rodo@ximian.com>
27570
27571         * object.c (mono_ldstr): use hash table to avoid multiple swapping
27572
27573 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
27574
27575         * icall.c: register the GetCustomAttributes method.
27576         * object.c, object.h: add mono_string_new_len ().
27577         * reflection.h, reflection.c: added mono_runtime_invoke(),
27578         mono_install_runtime_invoke(). Added
27579         mono_reflection_get_custom_attrs () to load custom attributes and
27580         create the attribute objects.
27581
27582 2002-02-19  Dick Porter  <dick@ximian.com>
27583         * threads-dummy-types.c:
27584         * threads-dummy-types.h:
27585         * threads-dummy.c:
27586         * threads-dummy.h:
27587         * threads-pthread-types.c:
27588         * threads-pthread-types.h:
27589         * threads-pthread.c:
27590         * threads-pthread.h:  Deleted obsolete files
27591
27592 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
27593
27594         * class.c (mono_class_vtable): runtime init the class when we
27595         allocate static class data.
27596
27597         * icall.c (ves_icall_System_Array_SetValue): check for null values.
27598
27599         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
27600         and String - but we will need generic marshalling support in the
27601         future. 
27602         (mono_init): set the domain name in a ms compatible way
27603
27604         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
27605         String[].
27606
27607 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
27608
27609         * object.c (mono_array_clone): use alloca() instead of g_malloc  
27610         for sizes
27611
27612         * appdomain.c (mono_domain_unload): impl.
27613
27614 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
27615
27616         * appdomain.c, object.c: fix intern pool implementation.
27617         * class.c: fix alignment code.
27618
27619 2002-02-16  Radek Doulik  <rodo@ximian.com>
27620
27621         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
27622         and s2 > s1, just copy lower bytes to be compatible with little
27623         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
27624         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
27625
27626         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
27627         force big_endian to be 1 for big endian machines 
27628         (ves_icall_iconv_new_decoder): ditto
27629
27630 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
27631
27632         * socket-io.c (convert_sockopt_level_and_name): If the system
27633         doesn't define SOL_IP or SOL_TCP, get them by hand using
27634         getprotobyname() and caching the values (because this could be a
27635         slow operation).
27636         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
27637         Use the appropriate struct when the system does support it. Ie,
27638         not all systems have struct ip_mreqn so use struct ip_mreq when
27639         appropriate.
27640
27641 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
27642
27643         * reflection.c: handle finally clauses.
27644
27645 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
27646
27647         * socket-io.c: use g_snprintf() instead of snprintf.
27648
27649 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
27650
27651         * reflection.c (mono_param_get_objects): Cast second argument to
27652         mono_method_get_param_names to a const char** to silence the
27653         compiler warning.
27654
27655         * appdomain.c (mono_domain_assembly_open): Put parens around the
27656         truth statement in the for-loop.
27657
27658         * unicode.c (iconv_convert): Got rid of a compiler warning about
27659         int i being unused when the system has a new iconv.
27660         (iconv_get_length): Same.
27661
27662         * image.c (load_class_names): Cast the second argument to
27663         g_hash_table_insert() to char* to hush compiler warnings about the
27664         arg being a const.
27665         (mono_image_open): Same here.
27666
27667         * socket-io.c: Don't conditionally include sys/filio.h or
27668         sys/sockio.h here anymore since we now get them from
27669         io-layer/io-layer.h
27670         (inet_pton): If the system doesn't support inet_aton, implement
27671         using inet_addr and also #define INADDR_NONE if it isn't defined
27672         by the system.
27673
27674 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
27675
27676         * metadata.c, metadata.h: added function to get packing and size info
27677         of a typedef.
27678         * reflection.h, reflection.c: handle field RVA data. Save info about
27679         the table layout if needed. Assign typedef indexes to all the types
27680         before dumping the info about them to avoid forward reference problems.
27681
27682 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
27683
27684         * socket-io.c (convert_sockopt_level_and_name): ifdef
27685         SO_ACCEPTCONN because it is not defined on my system (old debian)
27686
27687 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
27688
27689         * opcode.c: use stddef.h to get NULL.
27690
27691 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
27692
27693         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
27694         for FIONBIO, FIONREAD and SIOCATMARK.
27695         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
27696         define INADDR_NONE and besides, inet_addr() is deprecated and
27697         should not be used. Use inet_pton() instead - it also has the
27698         added bonus that it can easily handle IPv6 addresses as well.
27699         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
27700
27701 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
27702
27703         * decimal.c: remove _MSC_VER conditional.
27704
27705 2002-02-13  Dick Porter  <dick@ximian.com>
27706
27707         * socket-io.c: 
27708         * icall.c: Internal calls for Blocking, Select, Shutdown,
27709         GetSocketOption and SetSocketOption
27710
27711 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27712
27713         * assembly.cs: better resolver: use it instead of some kludgy
27714         code.
27715
27716 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
27717
27718         * reflection.c: the best way to speed-up the compiler is to avoid
27719         infinite loops.
27720
27721 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
27722
27723         * class.c (mono_class_vtable): changed the object layout
27724         (obj->vtable->class). 
27725         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
27726
27727 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27728
27729         * assembly.c: look for assemblies in the assembly dir, too.
27730
27731 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27732
27733         * class.c: fix thinko in mono_class_from_type().
27734
27735 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
27736
27737         * exception.h, exception.c: added TypeLoadException.
27738         * object.h, object.c: added mono_array_clone ().
27739         * icall.c: handle throwOnError in AssemblyGetType().
27740         Added Array.Clone().
27741         * opcode.h, opcode.c: use a single value for the opcode val.
27742         Compile fix for non-gcc compilers.
27743
27744 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
27745
27746         * opcodes.c, opcodes.h: export interesting info about opcodes.
27747
27748 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
27749
27750         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
27751         icalls. 
27752
27753         * class.c (class_compute_field_layout): set element_class for enums
27754         (mono_class_create_from_typedef): set element_class for normal classes
27755
27756         * icall.c (ves_icall_System_Enum_get_value): impl.
27757
27758         * class.c (mono_class_create_from_typedef): do not set valuetype
27759         flag for System.ValueType and System.Enum
27760
27761 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
27762
27763         * unicode.c (iconv_convert): fix big endian problem.
27764
27765 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
27766
27767         * class.c: add asserts if we are ever going to scribble over memory.
27768         * socket-io.c: not all systems have AF_IRDA defined.
27769
27770 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
27771
27772         * class.c (class_compute_field_layout): do not consider static
27773         fields to compute alignment
27774
27775 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
27776
27777         * appdomain.c (mono_appdomain_get): impl.
27778         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
27779
27780 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
27781
27782         * icall.c: ignore "file://" prefix when loading an assembly.
27783
27784 2002-01-23  Dick Porter  <dick@ximian.com>
27785
27786         * socket-io.c:
27787         * icall.c:
27788         * Makefile.am: Added socket support
27789
27790 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
27791
27792         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
27793         code back.  This should return the assemblies that are loaded by
27794         the runtime on behalf of an application domain. 
27795
27796         The current implementation is still broken, it just returns every
27797         assembly loaded, but until we get real applications domain this
27798         will do.
27799
27800 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
27801
27802         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
27803         AppDomain object.
27804
27805 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
27806
27807         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
27808         the mono_class_from_name lookup.
27809         (ves_icall_get_parameter_info): ditto.
27810         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
27811         method.
27812         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
27813
27814 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
27815
27816         * class.c: load also nested classes on class init.
27817         System.ValueType instance methods gets passed boxed
27818         values, unless methods in derived classed that get a pointer to the
27819         data.
27820         * icall.c: use better name parsing code in GetType().
27821         * image.c, image.h: add mono_image_loaded ().
27822         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
27823         * reflection.c, reflection.h: added mono_reflection_parse_type().
27824
27825 2002-01-22  Veronica De Santis <veron78@interfree.it>
27826
27827         * icall.c : Added mapping of internal calls for Manual and Auto reset events
27828         * threads.c : Added the implementation of internal calls for events
27829         * threads.h : Added prototypes of internal calls for events
27830         
27831 2002-01-21  Radek Doulik  <rodo@ximian.com>
27832
27833         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
27834
27835 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
27836
27837         * class.c (mono_class_init): set min_align to 1 (instead of 0)
27838         (mono_class_value_size): use min_align
27839
27840 2002-01-20  Dick Porter  <dick@ximian.com>
27841
27842         * threads.h:
27843         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
27844         so it compiles on w32.
27845
27846 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
27847
27848         * metadata.c (mono_type_stack_size): impl.
27849
27850         * class.c (mono_class_get_field): impl. memberref token
27851
27852 2002-01-16 Veronica De Santis <veron78@@interfree.it>
27853
27854         * icall.h : Added the internal calls mapping for CreateMutex_internal
27855                     and ReleaseMutex_internal.
27856         * threads.h : Added the prototype of mutexes internal calls.
27857         * threads.c : Added the implementations of mutexes internal calls.
27858
27859 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
27860
27861         * metaparse.h: removed unused file.
27862         * reflection.c, reflection.h: added stream_data_align () function 
27863         to align data in streams and keep stream aligned. Add support for
27864         exception support in method headers.
27865
27866 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
27867
27868         * unicode.c: make iconv_convert () return the number of bytess written
27869         in the output buffer.
27870
27871 2002-01-15  Dick Porter  <dick@ximian.com>
27872         * threads.c: Make the runtime's idea of infinite timeouts coincide
27873         with the class library's
27874
27875         Fix a particularly egregious bug in mono_thread_cleanup(). That
27876         code was so utterly bogus it must have been written on a Monday.
27877
27878 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
27879
27880         * reflection.h: add subtypes field to TypeBuilder.
27881         * reflection.c: encode constants for literal fields.
27882         Handle subtypes. Fix user string token (and add a zero byte)
27883         at the end.
27884         
27885 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
27886
27887         * class.c (mono_class_init): bug fix: assign slot numbers for
27888         abstract methods.
27889
27890 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27891
27892         * reflection.c: don't try to output a code RVA for abstract methods.
27893         Small fixes for method header format. Output parameter info to the
27894         ParamDef table. Save method overriding info to MethodImpl table.
27895         Fix property support. Allow typedef.extends to be a type in the
27896         building assembly.
27897         * verify.c: fix off-by-one error.
27898
27899 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
27900
27901         * class.c: fix mono_class_from_mono_type () for szarray types.
27902         Remove unused cache check in mono_class_from_type_spec().
27903         * icall.c: *type_from_name () functions handle simple arrays and byref.
27904         * reflection.c: handle byref and szarray types. Handle methods without
27905         body (gets P/Invoke compilation working). Handle types and fields in
27906         get_token ().
27907         * reflection.h: add rank to MonoTypeInfo.
27908
27909 2002-01-10  Dick Porter  <dick@ximian.com>
27910
27911         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
27912         internal calls
27913
27914 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
27915
27916         * icall.c: initialize class in type_from_handle ().
27917         Loop also in parent classes for get_method ().
27918         * reflection.c: properly encode class and valuetype types.
27919         Start on encoding TypeBuilder types. Handle fieldrefs.
27920         Use correct length when registering a user string.
27921         Handle ConstructorBuilder and MonoMethod in get_token ().
27922         Make mono_type_get_object () aware of cached types.
27923         * object.c: back out change to mono_string_new ().
27924
27925 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
27926         * object.c: mono_string_new should return a NULL when the string 
27927         passed in is NULL -- not try to deference it.
27928         
27929 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
27930
27931         * icall.c: hack to make IsSubType work for TypeBuilders.
27932         * reflection.c: emit constructors before methods.
27933         Retrieve param names in mono_param_get_objects().
27934
27935 2002/01/05  Nick Drochak  <ndrochak@gol.com>
27936
27937         * Makefile.am: fix list of headers and sources so automake 1.5
27938         doesn't complain. Removed \# at end of list.
27939
27940 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
27941
27942         * reflection.c: get token for a method ref. Set return type of
27943         constructor to void.
27944         * loader.c: debug message.
27945         * class.c: typo fix.
27946
27947 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
27948
27949         * icall.c: fix array init with rank > 1. FindMembers
27950         loops in parent class as well.
27951         * image.c: do not insert nested types in name cache.
27952         * reflection.c: warning fix.
27953         * reflection.h: add override method (for interface impl).
27954
27955 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
27956
27957         * metadata.c: fix customattr decoding.
27958
27959 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
27960
27961         * rawbuffer.cs: Added native Win32 implementation, avoids using
27962         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
27963
27964 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
27965
27966         * class.c: make the low-level routines handle the cache.
27967
27968 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
27969
27970         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
27971
27972 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
27973
27974         * class.c: fix mono_array_element_size() for objects.
27975         * class.h, class.c: add properties to MonoClass and load them
27976         at init time.
27977         * icall.c: check with isinst() when assigning a value to an array
27978         instead of requiring the classes to match exactly.
27979         Implemented icall for System.Type::GetType().
27980         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
27981         enums. Handle bindingflags when looking for methods and fields.
27982         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
27983         and mono_metadata_methods_from_property().
27984         * reflection.h, reflection.c: added structures for propreties,
27985         parameters and enums. Implemented mono_property_get_object() and
27986         mono_param_get_objects().
27987
27988 2001-12-18  Dick Porter  <dick@ximian.com>
27989
27990         * file-io.c: Use mono_string_to_utf16() instead of
27991         mono_string_chars()
27992
27993         * object.c: Added mono_string_to_utf16(), which copies the non
27994         NULL-terminated MonoString into a new double-null-terminated
27995         buffer.
27996
27997 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
27998
27999         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
28000
28001 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
28002
28003         * file-io.c: raise exceptions if handle is invalid.
28004
28005 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
28006
28007         * assembly.c: yet another check for mscorlib.
28008         * class.c, class.h: load nesting info for classes.
28009         * icall.c: many new functions to support the Reflection classes.
28010         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
28011         * reflection.h, reflection.c: mono_image_create_token(),
28012         mono_assembly_get_object(), mono_type_get_object(),
28013         mono_method_get_object(), mono_field_get_object(): methods to return
28014         objects that parallel the C representation of assemblies, types,
28015         methods, fields.
28016
28017 2001-12-11  Dick Porter  <dick@ximian.com>
28018
28019         * icall.c:
28020         * file-io.c: Internal calls for file IO.
28021
28022 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
28023
28024         * tabledefs.h: missing FileAttributes.
28025         * verify.h, verify.c: use is_valid_string () to simplify and check for
28026         valid strings more correctly. Fix warnings and speeling.
28027         Check more tables: Filed, File, ModuleRef, StandAloneSig.
28028         Check code: branches, maxstack, method calls.
28029
28030 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
28031
28032         * object.c (mono_object_allocate): removed static, so that the jit
28033         can allocate value types.
28034
28035         * icall.c (ves_icall_System_DateTime_GetNow): impl.
28036
28037 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28038
28039         * class.c: init enum types right away and register the
28040         token->MonoClass map in mono_class_create_from_typedef ().
28041         * verify.h, verify.c: first cut of the verifier.
28042         * pedump.c: add --verify switch to verify metadata tables.
28043         * tabledefs.h: add some missing enums.
28044
28045 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
28046
28047         * class.c (mono_install_runtime_class_init): impl.
28048         (mono_class_init): renamed mono_class_metadata_init to
28049         mono_class_init, also removed the metadata_inited flag
28050
28051         * object.c (mono_object_isinst): use faster algorithm
28052
28053 2001-11-30  Radek Doulik  <rodo@ximian.com>
28054
28055         * mono-endian.h: reverted last change
28056         added function prototypes
28057
28058         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
28059         add mono-endian.c back
28060
28061         * mono-endian.c: returned back, as Paolo pointed out, it's needed
28062         for unaligned access, I've mistaked it with endianess. I am
28063         sorry.
28064         (mono_read16): fix reverted endianess
28065         (mono_read64): ditto
28066         (mono_read32): ditto
28067
28068 2001-11-30  Dick Porter  <dick@ximian.com>
28069
28070         * exception.c: Implement mono_exception_from_name()
28071
28072 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
28073
28074         * metadata.h, metadata.c: remove params_size and locals_size and their
28075         calculation from the metadata code: they are only usefult to the
28076         interp.
28077
28078 2001-11-29  Radek Doulik  <rodo@ximian.com>
28079
28080         * object.c (mono_ldstr): swap bytes here, it's probably not the
28081         best place, but works for me now, I'll redo it once I know mono
28082         better, also note that I add PROT_WRITE and don't reset back, also
28083         note that it's only affects big endians, so x86 should be OK
28084
28085         * mono-endian.h (read16): use just glib macros for both endians
28086
28087         * mono-endian.c: removed as glib macros are used in in
28088         mono-endian.h so we don't need to care about endianess for read
28089         macros as glib does that for us already
28090
28091 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
28092
28093         * class.h, class.h: take minimum alignment into consideration so
28094         that the fields of a class remain aligned also when in an array.
28095
28096 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28097
28098         * loader.h, loader.c: add mono_method_get_param_names().
28099         * class.c: 0-init class fields.
28100
28101 2001-11-26  Dick Porter  <dick@ximian.com>
28102
28103         * icall.c:
28104         * threads-types.h:
28105         * threads.c: New file that handles System.Threading on all platforms
28106
28107         * object.c: 
28108         * object.h: Remove the synchronisation struct from MonoObject,
28109         replace it with a pointer that gets initialised on demand
28110
28111         * Makefile.am: Replace all the system-specific threading code with
28112         a single file that uses the new wrapper library
28113
28114 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
28115
28116         * class.c, class.h: add mono_install_trampoline() so that the runtime
28117         can register a function to create a trampoline: removes the ugly
28118         requirement that a runtime needed to export arch_create_jit_trampoline.
28119         * object.h, object.c: added mono_install_handler() so that the runtime
28120         can install an handler for exceptions generated in C code (with
28121         mono_raise_exception()). Added C struct for System.Delegate.
28122         * pedump.c: removed arch_create_jit_trampoline.
28123         * reflection.c: some cleanups to allow registering user strings and
28124         later getting a token for methodrefs and fieldrefs before the assembly
28125         is built.
28126         * row-indexes.h: updates and fixes from the new ECMA specs.
28127
28128 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
28129
28130         * class.h, class.c: add enum_basetype field to MonoClass.
28131         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
28132         to get index in the constant table reated to a field, param or
28133         property.
28134         * reflection.h, reflection.c: handle constructors. Set public-key and
28135         version number of the built assembly to 0.
28136         * row-indexes.h: update from new ECMA spec.
28137
28138 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
28139
28140         * class.h, class.c: add a max_interface_id to MonoClass.
28141         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
28142         since it's used to do that. Added mono_type_type_from_obj().
28143         Make GetType() return NULL instead of segfaulting if the type was not
28144         found. Handle simple arrays in assQualifiedName.
28145         * object.h: add a struct to represent an Exception.
28146         * reflection.c: output call convention in method signature.
28147         Add code to support P/Invoke methods and fixed offsets for fields.
28148
28149 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
28150
28151         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
28152         the value.
28153         * icall.c: use mono_array_addr instead of array->vector: fixes the
28154         reflection image writing.
28155         * reflection.c: init call convention byte to 0 in method signature.
28156         Encode the property signature. Don't output property-related methods
28157         twice. Really process the properties for a type (don't cast a field to
28158         a property, my mom always told me that).
28159         Fix 64 bit issues in pointer alignment in a different and more
28160         readable way.
28161
28162 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
28163
28164         * loader.h: Removed type class from MonoDefaults, added monotype
28165
28166         * loader.c: Loaded MonoType, removed loading of Type
28167
28168         * icall.c (my_mono_new_object): Now returns a System.MonoType,
28169         and fills in System.Type._impl with a RuntimeTypeHandle rather
28170         than the actual MonoClass *
28171
28172         (ves_icall_type_from_handle): change from type_class to
28173         monotype_class
28174
28175         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
28176         implemented
28177
28178         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
28179         implemented
28180
28181         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
28182
28183         (ves_icall_System_Reflection_Assembly_GetType): implemented
28184
28185         (ves_icall_System_MonoType_assQualifiedName): implemented
28186
28187         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
28188
28189 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
28190
28191         * assembly.c (mono_assembly_open): Implement a cache for the
28192         assemblies. 
28193
28194         (mono_assembly_close): only destroy the assembly when the last
28195         reference is gone.
28196         
28197 2001-11-09  Dick Porter  <dick@ximian.com>
28198
28199         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
28200
28201 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
28202
28203         * class.c (mono_class_metadata_init): bug fix: compute the right slot
28204
28205 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
28206
28207         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
28208         from Martin Weindel.
28209         * object.h: add mono_string_chars ().
28210
28211 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
28212
28213         * reflection.c (build_compressed_metadata): Eliminates warnings
28214         and uses 64-bit clean code.
28215
28216         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
28217         (mono_type_equal): Change signature to eliminate warnings.
28218
28219 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28220
28221         * icall.c, loader.c: remove the internalcall array constructors.
28222         Changes to match the new MonoArray structure.
28223         * object.h, object.c: an array object doesn't allocate an extra
28224         vector. Add mono_array_new_full () to create jagged arrays easily.
28225
28226 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
28227
28228         * metadata.h, metadata.c: add mono_metadata_field_info () to
28229         retreive all the info about a field from vairous tables.
28230         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
28231         * class.h, class.c: augment MonoClassField with more info.
28232         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
28233         policy and load a field's RVA if needed.
28234
28235 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
28236
28237         * class.c (mono_class_metadata_init): create a trampoline for all
28238         virtual functions instead of actually compiling them.
28239
28240 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
28241
28242         * class.h, class.c: include name in MonoClassField.
28243         * class.c: fix fundamental type of System.Object and System.String.
28244         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
28245         tokens in ldtoken.
28246         * icall.c: remove internalcalls for the Reflection stuff that is now
28247         done in C# code.
28248         * loader.c: mono_field_from_memberref () implementation.
28249         * mono-endian.c: thinko (s/struct/union/g).
28250         * object.c, object.h: make the mono_string_* prototypes actually use
28251         MonoString instead of MonoObject.
28252         * reflection.c, reflection.h: updates for changes in the reflection
28253         code in corlib: we use C structures that map to the actual C# classes.
28254         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
28255         fat method header if needed and use the info from the ILGenerator for
28256         methods. Handle fields in types. Misc fixes.
28257
28258 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
28259
28260         * class.c (mono_class_metadata_init): bug fix: always allocate
28261         space for static class data
28262
28263 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
28264
28265         * class.c (mono_compute_relative_numbering): use relative
28266         numbering to support fast runtime type checks.
28267
28268 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
28269
28270         * class.c (mono_class_create_from_typeref): added debugging output
28271         to print class name when MonoDummy is returned instead of real class
28272
28273 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
28274
28275         * class.c (mono_class_metadata_init): interface offset table now
28276         contains pointers into the vtable - this is more efficient for the jit
28277
28278 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
28279
28280         * class.c (mono_class_metadata_init): use a temporary vtable (the
28281         old algorithm only worked for the interpreter, but not for the jit)
28282
28283 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
28284
28285         * loader.c (method_from_memberref): use mono_class_get to get the
28286         class of an array instead of using System.Array directly.
28287         (mono_get_method): also add MEMBERREF methods to the method cache
28288         which usefull for arrays.
28289
28290 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
28291
28292         * pedump.c (arch_compile_method): added to compute vtable entry
28293
28294         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
28295         number of interfaces.
28296         
28297         * class.h: merged MonoArrayClass into MonoClass
28298
28299         * class.c (mono_class_create_from_typedef): compute the vtable size and
28300         allocate space to include the vtable inside MonoClass
28301         (mono_class_metadata_init): initialize the vtable
28302
28303 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
28304
28305         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
28306         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
28307         * image.c: endian fixes by Laurent Rioux.
28308         * object.h, object.c: rename MonoStringObject to MonoString and
28309         MonoArrayObject to MonoArray. Change some function names to conform to
28310         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
28311         guint16* as first argument, so don't use char*.
28312         Provide macros to do the interesting things on arrays in a portable way.
28313         * threads-pthread.c: updates for the API changes and #include <sched.h>
28314         (required for sched_yield()).
28315         * icall.c: updates for the API changes above.
28316         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
28317         platforms that need them.
28318
28319 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
28320
28321         * class.c: set the correct type for all the fundamental
28322         type when loading the class.
28323
28324 2001-10-05  Dick Porter  <dick@ximian.com>
28325
28326         * threads-pthread.c (pthread_mutex_timedlock): Simple
28327         compatibility version for C libraries that lack this call.
28328
28329 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
28330
28331         * class.c: MonoTypes stored in MonoClass are stored as
28332         fundamental MonoTypes when the class represents a
28333         fundamental type (System.Int32, ...).
28334         The TypeHandle return by ldtoken is a MonoType*.
28335         * icall.c: ves_icall_get_data_chunk () write out all the
28336         PE/COFF stuff. Implement ves_icall_define_method (),
28337         ves_icall_set_method_body (), ves_icall_type_from_handle ().
28338         * image.c: properly skip unknown streams.
28339         * loader.h, loader.c: add type_class to mono_defaults.
28340         * metadata.c, metadata.h: export compute_size () as
28341         mono_metadata_compute_size () with a better interface.
28342         Typo and C&P fixes.
28343         * pedump.c: don't try to print the entry point RVA if there is no entry point.
28344         * reflection.c, reflection.h: many cleanups, fixes, output method
28345         signatures and headers, typedef and typeref info, compress the metadata
28346         tables, output all the heap streams, cli header etc.
28347         * row-indexes.h: typo fixes.
28348
28349 2001-10-04  Dick Porter  <dick@ximian.com>
28350
28351         * object.h: Add a synchronisation mutex struct to MonoObject
28352
28353         * object.c (mono_new_object): Initialise the object
28354         synchronisation mutexes
28355
28356         * icall.c: System.Threading.Monitor internal calls
28357         
28358         * threads-pthread.h:
28359         * threads-pthread.c: System.Threading.Monitor internal calls
28360
28361         * threads-types.h: New file, includes the system-specific thread
28362         structures
28363         
28364         * threads-pthread-types.h:
28365         * threads-pthread-types.c: New files, handle pthread-specific
28366         synchronisation types
28367
28368         * threads-dummy-types.h: 
28369         * threads-dummy-types.c: New files of dummy support for
28370         thread-specific types
28371
28372         * metadata.c:
28373         * image.c:
28374         * pedump.c: include mono-endian.h not endian.h
28375         
28376         * Makefile.am: More threads files.
28377         Name mono-endian.h not endian.h
28378
28379 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
28380
28381         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
28382         stuff and implement a few more bits.
28383         * icall.c: a field needs to be dereferenced twice. Do not use the same
28384         name for two variables in the same scope.
28385         * image.c, image.h: cleanups.
28386
28387 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
28388
28389         * class.c (mono_class_metadata_init): bug fix: compute the right size
28390
28391 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
28392
28393         * icall.c: implemented some of the Reflection internalcalls.
28394         * image.c, image.h: start writing out the PE/COFF image.
28395         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
28396         that does the reverse than decode_blob_size ().
28397         * object.c: use mono_metadata_encode_value (). Move here
28398         temporary implementation of mono_string_to_utf8 ().
28399         * rawbuffer.c: make malloc_map static.
28400
28401 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
28402
28403         * metadata.c: fix type comparison for arrays.
28404         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
28405         Added a couple of new classes to monodefaults.
28406         * icall.c: added a couple of Reflection-related internalcalls.
28407         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
28408         Added a byval_arg MonoType to MonoClass.
28409
28410 2001-09-28  Dick Porter  <dick@ximian.com>
28411
28412         * icall.c:
28413         * threads-pthread.h: 
28414         * threads-pthread.c: Implemented internal calls for
28415         LocalDataStoreSlot operations.  Applied mutexes around all shared
28416         data.  Reworked the thread creation and Start() operations to
28417         avoid a race condition.
28418         
28419         * threads-dummy.h:
28420         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
28421
28422 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
28423
28424         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
28425
28426 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
28427
28428         * class.c, loader.c: warn and return NULL instead of erroring out.
28429         * icall.c: added System.AppDomain::getCurDomain().
28430         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
28431
28432 2001-09-25  Dick Porter  <dick@ximian.com>
28433
28434         * threads-pthread.h:
28435         * threads-pthread.c: Implemented timed thread joining and added
28436         System.Threading.Thread::Join_internal internal call
28437
28438         * icall.c: Added System.Threading.Thread::Join_internal internal call
28439
28440         * threads-dummy.h:
28441         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
28442
28443 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
28444
28445         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
28446         mono_string_intern () to implement the semantics of the ldstr opcode
28447         and the interning of System.Strings.
28448         * icall.c: provide hooks to make String::IsIntern and String::Intern
28449         internalcalls.
28450
28451 2001-09-23  Dick Porter  <dick@ximian.com>
28452
28453         * threads-dummy.c: 
28454         * threads-dummy.h: New files of dummy threading routines
28455
28456         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
28457         support code based on system specifics
28458
28459         Rename PTHREAD_LIBS to THREAD_LIBS
28460         
28461 2001-09-23  Dick Porter  <dick@ximian.com>
28462
28463         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
28464         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
28465         internal calls.
28466         (mono_thread_init): Set up a Thread object instance to return when
28467         the main thread calls Thread.CurrentThread
28468         (mono_thread_cleanup): Wait for all subthreads to exit
28469
28470         * icall.c: New internal calls for System.Threading.Thread::Sleep
28471         (including Schedule) and CurrentThread
28472
28473         * threads.h: New file, to insulate thread-specific stuff from the
28474         rest of the code
28475
28476 2001-09-21  Dick Porter  <dick@ximian.com>
28477
28478         * threads-pthread.h: 
28479         * threads-pthread.c: New file, for handling pthreads-style
28480         threading support.  Start() now starts a new thread and executes
28481         the ThreadStart delegate instance.
28482
28483         * icall.c: Added the internalcall for
28484         System.Threading.Thread::Start_internal
28485
28486         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
28487
28488 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
28489
28490         * loader.c: work around the different signatures for delegates
28491         constructors csc generates in compiled code vs the ones compiled in mscorlib.
28492
28493 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
28494
28495         * class.h, class.c: add mono_class_get_field_from_name ().
28496         * *: Fix C comments and other ANSI C issues.
28497
28498 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
28499
28500         * endian.h, assembly.c: fix some endianness issues.
28501
28502 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
28503
28504         * loader.h, load.c: add delegate_class to mono_defaults.
28505         Handle runtime provided methods in mono_get_method ().
28506
28507 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
28508
28509         * loader.c (mono_get_method): use pinvoke for internal call
28510
28511         * icall.c: use pinvoke for internal call
28512
28513         * loader.c (method_from_memberref): set the method name
28514
28515 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
28516
28517         * metadata.c: help the compiler generate better code for
28518         mono_class_from_mono_type ().
28519
28520 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
28521
28522         * class.c (mono_class_metadata_init): delayed computing of the
28523         class size to mono_class_metadata_init ()
28524
28525 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
28526
28527         * class.c, class.h: add an interfaces member to MonoClass.
28528         * image.c, image.h: add assembly_name field to MonoImage
28529         from the assembly table.
28530         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
28531
28532 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
28533
28534         * class.c: Handle Array in mono_class_from_mono_type ().
28535         * metadata.c, pedump.c: some endian fixes.
28536
28537 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
28538
28539         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
28540         * metadata.c: fix small problem introduced with the latest commit.
28541
28542 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
28543
28544         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
28545         We don't need a MonoMetadata pointer anymore to compare signatures in
28546         mono_metadata_signature_equal (), update callers.
28547         Reduced memory usage an number of allocations for MonoMethodHeader and
28548         MonoMethodSignature.
28549
28550 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
28551
28552         * metadata.c: added compare for szarray.
28553
28554 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
28555
28556         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
28557         and add a couple more types to it and mono_defaults. Give an hint on
28558         classes that need implementing in our corlib and are referenced
28559         in mscorlib.
28560
28561 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
28562
28563         * class.h, class.c: keep track if a class is also an Enum.
28564         * loader.c: Implement a couple more types for use in libffi
28565         marshalling. Gives better diagnostics when failing to dlopen
28566         a library. Set method->klass for P/Invoke methods, too.
28567
28568 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
28569
28570         * class.c, class.h: add a MonoType this_arg to MonoClass that
28571         represents a pointer to an object of the class' type that
28572         can be used by the interpreter and later the type cache.
28573         Add best guess alignment info for valuetype objects.
28574
28575 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
28576
28577         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
28578         into MonoType: one less level of indirection and allocation and
28579         simplifies quite a bit of code. Added cache for MonoTypes that are
28580         used frequently, so that we don't need to allocate them all the time.
28581
28582 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
28583
28584         * class.c (mono_class_create_from_typedef): System.Enum is also a
28585         value type, although it does not derive from System.ValueType
28586         (maybe a bug in the ms compiler?)
28587
28588         * metadata.c (mono_type_size): return the right size for value types
28589
28590         * loader.c (mono_get_method): only initialize method header if not abstract
28591
28592         * class.c (mono_class_from_mono_type): use mono_default values. 
28593
28594 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
28595
28596         * *: use MonoClass pointers instead of <type_tokens>
28597         
28598         * class.h: new flag: metadata_inited.
28599
28600         * class.c (mono_class_metadata_init): impl.
28601         (mono_class_instance_size): impl.
28602         (mono_class_data_size): impl.
28603
28604 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
28605
28606         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
28607         MonoClass now has the name and name_space fields. 
28608         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
28609         mono_get_method () takes and optional MonoClass as argument.
28610         Removed mono_typedef_from_name() and added mono_class_token_from_name()
28611         instead that takes advantage of a map from class names to typedef
28612         tokens in MonoImage.
28613
28614 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
28615
28616         * metadata.c: zero is not a valid alignment boundary.
28617         Merge MONO_TYPE_VOID in default decoding code.
28618
28619 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
28620
28621         * image.h: merged MonoMetadata into MonoImage
28622
28623         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
28624         identify the type of elements.
28625
28626 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
28627
28628         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
28629         * cil-coff.h: split MonoMSDOSHeader and add size info.
28630         * image.c: add some consistency checks.
28631         * metadata.c: fix row size computation: one programmer
28632         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
28633         add explanation for the locator routine.
28634         Fix decoding of size in method header.
28635         
28636 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
28637
28638         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
28639         (g_concat_dir_and_file): Bring g_concat_dir_and_file
28640         function from gnome-libs.  This uses the right path separator
28641         based on the OS, and also works around a bug in some systems where
28642         a double slash is not allowed. 
28643         (default_assembly_name_resolver): Use g_concat_dir_and_file
28644         (mono_assembly_open): ditto.
28645
28646 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
28647
28648         * metadata.c (mono_metadata_signature_equal): impl.
28649
28650         * *: void is now a realy MonoType (instead of using NULL)
28651         
28652         * metadata.c (do_mono_metadata_parse_type): use
28653         mono_metadata_parse_type to parse void value.
28654
28655 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
28656
28657         * metadata.c, metadata.h: in the signature and method header store
28658         only the space required for holding the loca vars and incoming arguments.
28659
28660 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
28661
28662         * metadata.c (do_mono_metadata_parse_type): treat void like any
28663         other type (instead of assigning NULL);
28664
28665 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
28666
28667         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
28668
28669 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
28670
28671         * image.c (do_mono_image_open): added a cache for arrays.
28672
28673 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
28674
28675         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
28676         decode a single column from a row in a metadata table and changes
28677         to take advantage of it in the typedef locator (gives a nice speed up).
28678         Store offset info for function params.
28679
28680 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
28681
28682         * image.h (MONO_IMAGE_IS_CORLIB): removed 
28683
28684 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
28685
28686         * assembly.c: how could mono_assembly_close () had ever worked?
28687         * metadata.c, metadata.h: provide offset info for local vars.
28688         Implement mono_type_size () to take care of alignment as well
28689         as size (it was mono_field_type_size in cli/class.c before).
28690
28691 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
28692
28693         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
28694
28695         * assembly.h (CORLIB_NAME): set to corlib.dll
28696
28697         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
28698
28699 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
28700
28701         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
28702         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
28703         tokentype.h: massive namespace cleanup.
28704
28705 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
28706
28707         * metadata.h, metadata.c: decode exception clauses when parsing method header.
28708
28709 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
28710
28711         * metadata.c (mono_metadata_free_type): added check for type !=
28712         NULL (void) before calling mono_metadata_free_type()
28713
28714 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
28715
28716         * metadata.h, row_indexes.h: added header with enumerations to use
28717         to index in the columns from tables in metadata and to decode coded
28718         tokens: we should start using this instead of embedding magic numbers
28719         all over the code.
28720
28721 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
28722
28723         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
28724         Move metadata_t info from cli_image_info_t to MonoImage, where
28725         it's easily accessible. Changed all the uses accordingly.
28726         Added the method and class caches to MonoImage.
28727         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
28728         and mono_metadata_decode_value () signature to be more consistent
28729         with the other parse functions (and simplify code). Taken advantage
28730         of zero-length array allocation with GCC. Removed reduntant (and
28731         wrong) MonoFieldType struct and use MonoParam instead. Changed
28732         mono_metadata_parse_field_type () to use common code for parsing.
28733         Added mono_metadata_typedef_from_field () and
28734         mono_metadata_typedef_from_method () to lookup a typedef index from a
28735         field or method token.
28736         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
28737
28738 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
28739
28740         * metadata.c (mono_metadata_parse_field_type): Implement. 
28741         (do_mono_metadata_parse_type): Split engine from
28742         mono_metadata_parse_type, so that we can create smaller structures
28743         for things that just have one pointer to the MonoType (look at
28744         the MonoFieldType)
28745
28746 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
28747
28748         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
28749         as Jan Gray found out, it is incorrect. 
28750
28751 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
28752
28753         * assembly.c: Implement asssembly loading.  This loads an image
28754         and loads all the referenced assemblies.  Come to think of it, we
28755         could always do lazy loading of the assemblies. 
28756
28757         * image.c (mono_image_open): Keep loaded images in a hashtable.
28758
28759         * image.h (MonoImage): Add reference count.
28760
28761 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
28762
28763         * assembly.c (mono_assembly_open): Keep track of the file name in
28764         case the assembly has no ASSEMBLY table.
28765
28766         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
28767         from get.c here.
28768
28769 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
28770
28771         * metadata.c, metadata.h: decode local vars in method header
28772         parse function. Change callers accordingly.
28773
28774 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
28775
28776         * metadata.h, cil-coff.h: protect against multiple inclusion.
28777         Added some new structures to hold information decoded from metadata:
28778         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
28779         and relevant decoding/free functions.
28780         * metadata.c: implement decoding functions. Add warning for out of bounds
28781         index in mono_metadata_locate(). Implement mono_get_method () to retreive
28782         all the info about a method signature and invocation. Remove check on
28783         uninitialized local var in parse_mh() and fix memory leak.
28784
28785 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
28786
28787         * metadata.h: More macros.
28788
28789         * tokentype.h: New file.
28790
28791 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
28792
28793         * assembly.c: added a consistency check and initialize
28794         some structures with g_new0().
28795         * metadata.c: fixed a couple more bugs in table size computation
28796         and add other checks for out-of bound access to metadata.
28797
28798 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
28799
28800         * metatada.c: fix bugs computing table sizes. Spew a
28801         warning when index in string heap is out of bounds.
28802
28803 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
28804
28805         * metadata.h: Add a couple of macros to manipulate tokens. 
28806
28807 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
28808
28809         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
28810         cli_section_tables).
28811
28812 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
28813
28814         * metadata.c (mono_metadata_user_string): New function, provides
28815         access to the UserString heap. 
28816
28817 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
28818
28819         * metadata.c: Add inline documentation.
28820
28821 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
28822
28823         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
28824         files. 
28825
28826 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
28827
28828         * typeattr.h: New file, TypeAttribute flags. 
28829
28830 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
28831
28832         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
28833         mono_assembly_ensure_section): Section loading code.
28834         (load_section_tables): Load the sections.
28835
28836         * mono/metadata/metadata.c (mono_metadata_locate_token,
28837         mono_metadata_locate): Functions to locate the information
28838         definition given a token or a table and an index.
28839         (mono_metadata_compute_table_bases): New.
28840         (compute_size): New function to compute the sizes of the various
28841         tables.
28842
28843         * mono/metadata/metadata.h: Finish listing the different index
28844         types. 
28845
28846         * mono/metadata/pedump.c: Improve to dump new information.
28847
28848 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
28849
28850         * mono/metadata/metadata.c: Entered all the tables matching
28851         Beta2. 
28852
28853         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
28854
28855
28856