2008-12-08 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mono / metadata / ChangeLog
1 2008-12-05  Marek Habersack  <mhabersack@novell.com>
2
3         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
4         (3) functions are present in the C library use them to do the
5         job. If they are absent, make sure that the sum of int_part and
6         dec_part is rounded before returning. This is necessary due to the
7         division of dec_part by the power of 10 before the final addition
8         is performed - if the result is not rounded in some cases it will
9         yield invalid results.
10
11 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
12
13         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
14         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
15         instruction instead of a pointer constant.
16
17 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
18
19         * loader.c (mono_method_get_header): Do most of the work outside the
20         loader lock, to avoid assembly load hook deadlocks.
21
22         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
23         (mono_metadata_parse_type_full): Ditto.
24
25 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
26
27         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
28         Make the stack depth fixed. Ensure proper argument passing to the backtrace
29         funtions. Finally, use a lock to produce well ordered output.
30
31         The lock looks silly, as all calls to the corlib mempool should be guarded
32         with the loader lock, but for some reason this fact doesn't help. 
33
34         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
35
36 2008-12-02  Mark Probst  <mark.probst@gmail.com>
37
38         * socket-io.c: 64 bit big-endian fixes.
39
40 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
41
42         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
43         targets that require strict compatibility between the types.
44
45         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
46         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
47         Kill the strict argument and create a new one valuetype_must_be_boxed.
48
49         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
50         state that all valuetypes must be boxed.
51
52         Fixes #448560.
53
54 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
55
56         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
57         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
58
59         Contributed under MIT/X11 license.
60
61 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
62
63         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
64         the inflate_generic_type machinery should handle it.
65
66         This avoids a crash when the field's flags is zero and it's type is
67         a primitive.
68         What happens is that mono_metadata_parse_type_full will see that opt_attrs
69         is zero and will return one of the cached built-in primitive types. Since
70         those types live in read-only memory, the code that copies it crashes.  
71
72 2008-11-28  Mark Probst  <mark.probst@gmail.com>
73
74         * object.c: Don't put function descriptors into generalized IMT
75         thunks.
76
77 2008-11-28  Mark Probst  <mark.probst@gmail.com>
78
79         * class.c: Enable generic code sharing on PPC64.
80
81 2008-11-27  Mark Probst  <mark.probst@gmail.com>
82
83         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
84         from mini/mini.c.
85
86         * generic-sharing.c: Allocate the method template slists from the
87         image mempool so it doesn't leak.
88
89 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
90
91         * class.c (generic_array_methods): Release the linked list.
92
93 2008-11-27  Mark Probst  <mark.probst@gmail.com>
94
95         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
96         invocation to g_utf16_to_utf8().
97
98 2008-11-26  Mark Probst  <mark.probst@gmail.com>
99
100         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
101         arguments on big endian archs.
102
103 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
104
105         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
106         the type name (test added in corlib).
107
108 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
109
110         * pedump.c: initialize perf. counters. Fixes a segv.
111
112 2008-11-25  Martin Baulig  <martin@ximian.com>
113
114         * mono-debug-debugger.c
115         (mono_debugger_runtime_invoke): Return the exception object if an
116         exception was thrown.  Visual Studio displays the exception object
117         in the locals window.
118
119 2008-11-24  Mark Probst  <mark.probst@gmail.com>
120
121         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
122         ftnptr.
123
124 2008-11-24  Mark Probst  <mark.probst@gmail.com>
125
126         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
127         MONO_TYPE_U are sizeof (gpointer), too.
128
129 2008-11-24  Mark Probst  <mark.probst@gmail.com>
130
131         * marshal.c (mono_type_native_stack_size): Fixed size and
132         alignment for reference types.
133
134 2008-11-23  Mark Probst  <mark.probst@gmail.com>
135
136         * class.c (mono_class_generic_sharing_enabled): Disable generic
137         code sharing for PPC64.
138
139 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
140
141         * icall.c (mono_method_get_equivalent_method): Make sure
142         method->klass->methods is inited before looping over it.
143
144 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
145
146         * object.c: when calling ExecuteAssembly in a newly created domain,
147         the configuration file and application base are already set up.
148         Bug #446353 take 2 fixed.
149
150 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
151
152         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
153         Fixes #444715. Fix a warning.
154
155 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
156
157         * appdomain.c: write the full path of the assembly to the .ini file
158         created when "shadow-copying"
159         Bug #446353 fixed.
160
161 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
162
163         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
164         if signature==FALSE.
165
166 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
167
168         * marshal.h : Fix the cygwin build.
169            marshal.c:12442: undefined reference to `_IID_IMarshal'
170           
171         Code is contributed under MIT/X11 license.
172
173 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
174
175         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
176           free threaded marshaler when QueryInterface is called on a COM callable
177           wrapper requesting the IMarshal interface.
178           
179         Code is contributed under MIT/X11 license.
180
181 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
182
183         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
184
185         * reflection.c (mono_type_get_object): Special case the very common
186         void type.
187
188         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
189         hold typeof(void).
190
191 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
192
193         * process.h : Adding method declaration for
194           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
195           
196         * process.c : Adding implementation for
197           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
198           
199         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
200           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
201
202         Code is contributed under MIT/X11 license.
203
204 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
205
206         * appdomain.c (unload_thread_main): Clean up threadpool by
207         calling mono_thread_pool_remove_domain_jobs.
208
209         * domain-internals.h (struct _MonoDomain): Add new fields to
210         help coordinate the cleanup of the threadpool.
211
212         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
213         that cleans up the threadpool of all jobs associated with an appdomain.
214         It does that by cleaning up the queues and making sure all active
215         threads are accounted.
216
217         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
218         unloaded or in the process of. Take this is such way that there is
219         no race condition between another thread starting the unload and the
220         current thread acknowledging it.
221
222         * threadpool.c (async_invoke_thread): Same.
223
224         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
225         firing the new thread.
226
227         * threadpool.c (start_tpthread): Same.
228
229         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
230
231         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
232
233 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
234
235         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
236         Add support for DuplicateHandle.
237         
238         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
239         Add support for DuplicateHandle.
240         
241         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
242         Add support for DuplicateHandle.
243
244         Code is contributed under MIT/X11 license.
245
246 2008-11-06  Mark Probst  <mark.probst@gmail.com>
247
248         * class-internals.h: Make min_align into a whole byte.
249
250         * class.c: Set min_align for SIMD types to 16.
251
252 2008-11-05  Geoff Norton  <gnorton@novell.com>
253
254         * attach.c: Default the attacher to enabled for all cases including
255         embedded.
256
257 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
258
259         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
260         change r117650.
261
262 2008-11-04  Mark Probst  <mark.probst@gmail.com>
263
264         * monitor.c, monitor.h: New function for querying offsets of
265         members of MonoThreadsSync.
266
267 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
268
269         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
270         to speed up this function and to avoid the boundless memory growth caused by
271         the signature_dup () calls.
272
273 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
274
275         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
276         wrapper.
277
278         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
279         by 1 bit.
280
281         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
282
283 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
284
285         * appdomain.c:
286         * domain-internals.h: made mono_set_private_bin_path_from_config()
287         "internal".
288         * object.c: call the above function after setting the configuration
289         file path for the root domain.
290         Fixes bug #314478.
291
292 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
293
294         * assembly.c: when the assembly is loaded from an absolute path, end
295         basedir with a directory separator.
296         Bug #440781 fixed.
297
298 2008-10-30  Mark Probst  <mark.probst@gmail.com>
299
300         * monitor.c (mono_monitor_get_fast_enter_method): If
301         CompareExchange is not available, don't create the fastpath
302         instead of asserting.  (The method is missing in the 1.1 profile.)
303
304 2008-10-30  Mark Probst  <mark.probst@gmail.com>
305
306         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
307
308         * monitor.c, monitor.h: Code for generating Monitor.Enter and
309         Monitor.Exit IL fastpaths.
310
311 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
312
313         * class.c (mono_class_create_from_typedef): Added Vector2ul.
314
315 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
316
317         * class.c (mono_class_create_from_typedef): Added Vector2l.
318
319 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
320
321         * class.c (mono_class_create_from_typedef): Added Vector2d.
322
323 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
324
325         * appdomain.c: translate \ into / for cache_path.
326         * domain-internals.h: new mono_is_shadow_copy_enabled().
327         * icall.c: (fill_reflection_assembly_name) do the same path
328         manipulations that get_code_base does.
329         (get_code_base) use mono_is_shadow_copy_enabled.
330
331 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
332
333         * appdomain.c: shadow-copied assemblies go to CachePath +
334         ApplicationName when both are set. DynamicBase has nothing to do with
335         shadow copies.
336         Bug #406877 fixed.
337
338 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
339
340         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
341         STANDALONESIG table.
342
343         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
344         standalone signatures.
345
346         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
347         comparison code: instead of comparing the signatures using a custom
348         equals function, transform them to a common signature and compare that. This
349         works better with AOT.
350
351 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
352
353         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
354
355         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
356         call for generic instances.
357         (mono_class_setup_properties): Call setup_properties () before accessing
358         gklass->properties.
359
360         * class.c (mono_class_get_virtual_methods): New helper function to iterate
361         over the virtual methods of a class using metadata if possible, avoiding the
362         creation of MonoMethod's for non-virtual methods.
363         
364         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
365         get_virtual_methods () to iterate over the virtual methods of classes.
366
367 2008-10-25  Martin Baulig  <martin@ximian.com>
368
369         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
370
371 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
372
373         * class.c (mono_class_create_from_typedef): Added Vector4i.
374
375 2008-10-24  Mark Probst  <mark.probst@gmail.com>
376
377         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
378         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
379         special-casing applies to eliminate the call completely.
380
381 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
382
383         * class.c (mono_class_create_from_typedef): Added Vector8s.
384
385 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
386
387         * class.c (mono_class_create_from_typedef): Added Vector16sb.
388
389 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
390
391         * icall.c: get rid of annoying warning.
392
393 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
394
395         * threadpool.c: in 1.x, if you change the background status of the
396         threadpool thread, it's not reset.
397         Remove unnecessary calls to SetState.
398
399 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
400
401         * threadpool.c: asynchronously create a set of idle threads upon first
402         use of the threadpool. SetMinThreads will now start the appropriate
403         number of idle threads if they are not already running. The default is
404         1 threadpool thread per CPU. Increased the maximum number of threads
405         per CPU to 10.
406
407 2008-10-22  Martin Baulig  <martin@ximian.com>
408
409         Revert r116521 from Zoltan, it breaks the debugger:
410
411         * class.c (mono_class_get_virtual_methods): New helper function to iterate
412         over the virtual methods of a class using metadata if possible, avoiding the
413         creation of MonoMethod's for non-virtual methods.
414         
415         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
416         get_virtual_methods () to iterate over the virtual methods of classes.
417
418 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
419
420         * threads.c: when creating a threadpool thread, set its state to
421         'background'.
422         * threadpool.c: reset the background state of a threadpool thread
423         after finishing each work item
424         Bug #437888 fixed.
425
426 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
427
428         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
429         
430         * class.c (mono_class_setup_vtable_general): Add an optimized version for
431         generic instances which works by inflating the methods in the container
432         class's vtable.
433
434         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
435         variant which doesn't make a copy if no inflation was done.
436         (mono_class_setup_fields): Use it.
437
438         * metadata.c (mono_metadata_get_shared_type): New helper function to
439         return a shared instance of a given MonoType.
440
441         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
442         a copy of most non-generic types.
443
444 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
445
446         * threadpool.c: remove one more GetSystemInfo () call.
447
448 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
449
450         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
451         use the code in mono-proclib.h to get processor information.
452
453 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
454
455         * appdomain.c: fixed the logic that determines whether assemblies in a
456         directory are "shadow-copied" or not. Bug #433483 fixed.
457
458 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
459
460         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
461         warning.
462
463 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
464
465         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
466         returning a vtype.
467
468         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
469         reflection.c: Use mono_field_get_name () for accessing a field's name.
470
471         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
472         class.c
473
474         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
475         field.
476
477         * loader.c (find_method_in_class): Reenable the metadata optimization by
478         not using it for generic instances.
479
480         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
481         data/def_type fields from MonoClassField into a separate structure.
482         (struct MonoClassField): Remove data/def_type fields.
483         (struct _MonoClass): Add a 'field_def_values' array to store the default
484         values/RVA for fields.
485
486         * class.c reflection.c: Update after the changes.
487         
488         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
489         for accessing field->data.
490
491         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
492
493         * loader.c (find_method_in_class): Revert the last change for now as
494         it breaks Mono.C5 unit tests.
495
496         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
497         'field_generic_types' and 'field_objects' which contain the information
498         previously stored in MonoInflatedField.
499         (MonoInflatedField): Delete.
500         (struct _MonoClassField): Delete 'generic_info' field.
501
502         * reflection.c: Store the information which was previously in 
503         field->generic_info in MonoDynamicGenericClass instead.
504
505         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
506         MonoClassField changes.
507
508 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
509
510         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
511         store the value inside the data array of the MonoMethodWrapper.
512         This saves memory, is faster and fixes the lifetime issues (methods
513         were never removed from the hash previously). May also fix bug#436996.
514
515 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
516
517         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
518         generic instances, compute the type from the generic definition instead of
519         looking in field->generic_info.
520
521         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
522         for inflated fields, the only user was get_fieldref_token () which no
523         longer needs it.
524
525         * class.c (mono_class_init): Revert the last change as it seems to cause
526         crashes.
527
528         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
529         bytes on 64 bit platforms.
530
531         * object.c (mono_class_create_runtime_vtable): Fix a warning.
532         
533         * object.c (mono_class_create_runtime_vtable): Don't initalize
534         field->data/field->def_type here, it is done lazily by 
535         mono_class_get_field_default_value ().
536
537         * icall.c (ves_icall_get_enum_info): Call 
538         mono_class_get_field_default_value () instead of directly accessing
539         field->data and field->def_type.
540
541         * object.c (get_default_field_value): Ditto.
542
543         * class.c (mono_field_get_data): Ditto.
544         
545         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
546         call for generic instances.
547
548         * loader.c (find_method_in_class): If klass != from_class, then inflate
549         the method with the context of from_class, since the caller assumes this.
550
551 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
552
553         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
554         for accessing method->slot.
555
556 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
557
558         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
559
560 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
561
562         * class.c (mono_method_get_vtable_index): Use
563         mono_method_get_vtable_slot () for accessing method->slot.
564
565         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
566         accessing klass->methods.
567
568         * class.c (mono_method_get_vtable_slot): New helper function.
569         (mono_class_get_vtable_entry): Ditto.
570         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
571         accessing method->slot.
572
573         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
574         method to get_inflated_method ().
575
576         * class.c (mono_class_get_inflated_method): New helper method to obtain
577         a method of an inflated class without calling setup_methods ().
578         (mono_class_get_cctor): Use get_inflated_method.
579
580         * generic-sharing.c (mono_class_get_method_generic): Ditto.
581         
582         * marshal.c image.c: Lazily create all the marshal caches.
583
584         * image.c (mono_image_init): Move initialization of runtime_invoke
585         caches to marshal.c.
586
587         * marshal.c (get_cache): New helper function to lazily initialize a 
588         wrapper cache.
589         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
590
591         * debug-helpers.c (mono_method_full_name): Include generic arguments.
592
593 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
594
595         * loader.c: fixed check for interface type.
596
597 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
598
599         * appdomain.c: check for NULL setup before it's referenced.
600
601 p
602 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
603
604         * class.c: remove the unused old vtable setup code.
605
606 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
607
608         * class.c: don't depend on interface order in
609         setup_interface_offsets (bug #435777).
610         * reflection.c: sort the InterfaceImpl table (patch from
611         Jb Evain  <jbevain@novell.com>).
612
613 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
614
615         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
616         the low level assemblies lock.
617
618 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
619
620         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
621         object.c, reflection.c, socket-io.c, threads.c: introduced
622         mono_framework_version () to return the major framewrok version,
623         changed the code that was using more complex patterns to use it.
624         Return the correct value for PlatformID for OSX.
625
626 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
627
628         * icall-def.h, process.h, process.c: added an icall to get info about
629         processes using mono-proclib.
630
631 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
632
633         * mono-perfcounters.c: use the mono-proclib functions to
634         access process information.
635
636 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
637
638         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
639         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
640         reflection.c: remove rawbuffer usage: mmap support is more sanely
641         provided by utils/mono-mmap.
642
643 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
644
645         * gc.c: use posix semaphores when possible so that
646         mono_gc_finalize_notify() is signal safe.
647
648 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
649
650         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
651         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
652         be #ifdef-ed out, the linker will remove the rest.
653
654         * marshal.c: Implement DISABLE_COM.
655
656         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
657
658 2008-10-11  Miguel de Icaza  <miguel@novell.com>
659
660         * locales.c (string_invariant_compare_char): Optimization: do not
661         call g_unichar_type unless we actually need the information.
662
663 2008-10-10  Mark Probst  <mark.probst@gmail.com>
664
665         * object.c, class-internals.h: Also create remoting trampolines
666         for generic methods.  Pass the domain to the remoting trampoline
667         creation function, too.
668
669 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
670
671         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
672
673 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
674
675         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
676         Vector4ui.
677
678 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
679
680         * assembly.c:
681         * locales.c: remove the use of g_strdown. Fixes bug #322313.
682
683 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
684
685         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
686         for the least possible amount of time (extending the fix in r113458).
687
688 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
689
690         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
691
692 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
693
694         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
695         as possible simd intrinsic types.
696         Optimized the test to check for the common prefix first.
697
698 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
699
700         * class.c: back out part of a broken optimization committed on
701         May 23th (bug #433908).
702
703 2008-10-09  Mark Probst  <mark.probst@gmail.com>
704
705         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
706         Win32.  Should fix #432388 for most cases until we have the new
707         profiler on Win32.
708
709 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
710
711         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
712         instead of using inst->id so the hash is stable for AOT.
713
714 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
715
716         * appdomain.c:
717         * icall.c: create a .ini file for shadow-copied assemblies that
718         contains the location of the original assembly. Use this to return the
719         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
720         Also fix the number of '/' for windows when returning the CodeBase.
721         Fixes bug #430920.
722
723 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
724
725         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
726
727         Code is contributed under MIT/X11 license.
728
729 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
730
731         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
732           if if the class vtable needs initialized.
733
734         Code is contributed under MIT/X11 license.
735
736 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
737
738         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
739           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
740           STRING->BSTR, and CLASS->INTERFACE.
741
742         Code is contributed under MIT/X11 license.
743
744 2008-10-07  Marek Habersack  <mhabersack@novell.com>
745
746         * sysmath.h: changed the declaration of the
747         ves_icall_System_Math_Round2 icall by adding an extra
748         away_from_zero parameter.
749
750         * sysmath.c (ves_icall_System_Math_Round2): added support for
751         away from zero rounding. The icall now takes an extra boolean
752         parameter to signal that away from zero operation is requested.
753
754 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
755
756         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
757         the delegate klass so it can work with full-aot.
758         (mono_marshal_get_delegate_end_invoke): Ditto.
759         (mono_marshal_get_delegate_invoke): Ditto.
760
761 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
762
763         * gc.c, attach.h, attach.c: remove a bad pattern:
764         add_finalizer_callback () is not implemented correctly, it can't
765         without adding more overhead to the finalizer loop and it's not
766         even needed, since we know exactly what we need to call, so there is
767         no need to do so through an expensive function pointer.
768
769 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
770
771         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
772         for the no-gc case.
773         * attach.c (mono_attach_init): Remove the #ifdef.
774
775 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
776
777         * attach.c (mono_attach_init): Don't use
778         mono_gc_add_finalizer_thread_callback when compiling without GC.
779         Fixes #432306.
780         
781         Code is contributed under MIT/X11 license.
782
783 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
784
785         * class.c (mono_class_create_from_typedef): Remove the 
786         #ifndef DISABLE_SIMD stuff.
787
788 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
789
790         * class-internals.h (MonoClass): Added simd_type bit field.
791
792         * class.c (mono_class_create_from_typedef): Check if type is a simd
793         intrinsic.
794
795 2008-10-03  Mark Probst  <mark.probst@gmail.com>
796
797         * object.c (mono_method_add_generic_virtual_invocation): Only add
798         instantiations to the thunk whose count is at least as large as
799         the threshold.
800
801 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
802
803         * icall.c: changed the Type of the exception thrown when trying to
804         invoke a constructor on an abstract class. Part of the fix for bug
805         #324185.
806
807 2008-10-02  Mark Probst  <mark.probst@gmail.com>
808
809         * class.c, class-internals.h (mono_method_get_vtable_index): New
810         function which returns the index into the vtable and properly
811         handles inflated virtual generic methods.
812
813 2008-10-01  Mark Probst  <mark.probst@gmail.com>
814
815         * object.c, domain.c, object-internals.h, domain-internals.h:
816         Generalize IMT thunk machinery to also handle thunks for virtual
817         generic method invokes.  When a virtual generic method is invoked
818         more than a number of times we insert it into the thunk so that it
819         can be called without lookup in unmanaged code.
820
821         * generic-sharing.c, class-internals.h: Fetching a
822         MonoGenericInst* for a method from an (M)RGCTX.
823
824 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
825
826         * marshal.c (emit_marshal_string): Applied a variant of a patch by
827         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
828         marshalling. Fixes #431304.
829
830 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
831
832         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
833           handle when ref is specified without In or Out.
834
835         Code is contributed under MIT/X11 license.
836
837 2008-09-30  Mark Probst  <mark.probst@gmail.com>
838
839         * loader.c (mono_get_method_constrained): Don't expand method with
840         the class's context, because it's already a method of that class.
841
842 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
843
844         * attach.c : should be correct build fix.
845
846 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
847
848         * attach.c: Fix the previous change.
849
850 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
851
852         * attach.c : quick w32 build fix.
853
854 2008-09-27  Miguel de Icaza  <miguel@novell.com>
855
856         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
857         crashes MonoDevelop: #430455.
858
859 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
860
861         * domain-internals.h (struct _MonoDomain): Move most fields used only by
862         the JIT do MonoJitDomainInfo in ../mini/mini.h.
863
864         * domain.c: Remove initialization/cleanup of the removed fields.
865
866 2008-09-27  Mark Probst  <mark.probst@gmail.com>
867
868         * class.c (mono_class_generic_sharing_enabled): Enable generic
869         code sharing for PPC.
870
871 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
872
873         * attach.c : Fixing the Windows builds.
874
875         Code is contributed under MIT/X11 license.
876
877 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
878
879         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
880         the default generic sharing mode to 'all'.
881
882 2008-09-25  Mark Probst  <mark.probst@gmail.com>
883
884         * generic-sharing.c, class-internals.h: New function for checking
885         whether a method needs a static RGCTX invoke wrapper.  A few
886         funtions moved from mini/generic-sharing.c.
887
888         * icall.c: New function used.
889
890 2008-09-25  Mark Probst  <mark.probst@gmail.com>
891
892         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
893         Static RGCTX invoke wrapping applies to value type methods, too.
894
895         * class.c (mono_class_setup_vtable_general): In generic-shared
896         value types, wrap methods with a static RGCTX invoke wrapper.
897
898 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
899
900         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
901         osx build.
902
903 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
904
905         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
906         register a callback which is called when the finalizer thread is woken
907         up.
908         (finalizer_thread): Call the callback if it exists.
909
910         * attach.h attach.c: New files, implementing the attach mechanism.
911
912         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
913         
914         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
915         by the previous change.
916
917 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
918
919         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
920         loader.c, marshal.c, metadata-internals.h, metadata.c,
921         method-builder.c, object.c, reflection.c: introduced specific functions
922         to allocate from the domain and image mempools and cleaned up most of
923         the code to use them (still missing a few in reflection.c).
924         Keep the loader bytes counter updated.
925
926 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
927
928         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
929         loader-related counters.
930
931 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
932
933         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
934         added more MS-compatible counters.
935
936 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
937
938         * class.c (mono_class_setup_fields): Call setup_fields before accessing
939         class->blittable. Fixes #428217.
940
941 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
942
943         * reflection.c (mono_image_get_field_on_inst_token): Call 
944         field_encode_signature () since that handles custom modifiers too.
945         Fixes #424663.
946
947 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
948
949         * reflection.c (add_custom_modifiers): New helper function to merge custom
950         modifiers stored in objects to a MonoType.
951         (fieldref_encode_signature): Encode custom modifiers.
952         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
953         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
954
955 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
956
957         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
958         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
959         64-bit IL only images because imports are not resolved for IL only images.
960         Special thanks to Bill Holmes for finding this bug and testing the patch.
961         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
962
963         Contributed under MIT/X11 license.
964
965 2008-09-19  Miguel de Icaza  <miguel@novell.com>
966
967         * mono-config.c (dllmap_start): Add support for the bits keyword
968         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
969
970 2008-09-19  Mark Probst  <mark.probst@gmail.com>
971
972         * reflection.c (inflate_mono_method): When the class the method is
973         to be inflated for is itself not inflated, just return the method.
974
975 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
976
977         * mono-perfcounters.c: use more user friendly process instance names.
978
979 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
980
981         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
982           handle "[in] ref" and "[in][out] ref" cases.
983
984         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
985           to mono_mb_create_method.  This was causing problems calling native to
986           managed passing Variants by value.
987
988         Code is contributed under MIT/X11 license.
989
990 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
991
992         * class.c (can_access_internals): Call mono_assembly_load_friends ()
993         before accessing the friend_assembly_names field.
994
995         * assembly.c (mono_assembly_load_friends): Make this callable multiple
996         times.
997         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
998         called lazily when it is needed.
999
1000         * metadata-internals.h (struct _MonoAssembly): Add 
1001         'friend_assembly_names_inited' flag.
1002
1003 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
1004
1005         * mono-perfcounters-def.h: fix the types of a few counters.
1006         * mono-perfcounters.c: implemented the instance names getter
1007         and a few bugfixes.
1008
1009 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
1010
1011         * culture-info-table.h : regenerated.
1012
1013 2008-09-17  Robert Jordan  <robertj@gmx.net>
1014
1015         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
1016         context bound objects. Fixes #415577.
1017
1018         Code is contributed under MIT/X11 license.
1019
1020 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
1021
1022         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
1023         implementation (bug #423582).
1024
1025 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
1026
1027         * object.c (mono_object_get_virtual_method): Handle the case method->slot
1028         is not set. Fixes #426309.
1029
1030 2008-09-16  Jb Evain  <jbevain@novell.com>
1031
1032         * class.c (mono_class_from_name): fix the exported type look up
1033         when the type is defined in a referenced assembly.
1034
1035 2008-09-16  Jb Evain  <jbevain@novell.com>
1036
1037         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
1038         increment the next index counter on each iteration to make that work
1039         for more than one type forwarder. Unmanaged part to fix #422929.
1040
1041 2008-09-15  Mark Probst  <mark.probst@gmail.com>
1042
1043         * object-internals.h: enum ComInterfaceType in
1044         MonoInterfaceTypeAttribute is guint32, not guint16.
1045
1046 2008-09-12  Mark Probst  <mark.probst@gmail.com>
1047
1048         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
1049         writing code.
1050
1051 2008-09-11  Mark Probst  <mark.probst@gmail.com>
1052
1053         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
1054         not gboolean.
1055
1056 2008-09-11  Mark Probst  <mark.probst@gmail.com>
1057
1058         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
1059         Endianness fixes for MonoSymbolFileOffsetTable.
1060
1061 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
1062
1063         * process.c (complete_path) : Removing quotes from the 
1064           input path.  The glib file routines do not handle file paths
1065           that have quotes around them.
1066
1067         Code is contributed under MIT/X11 license.
1068
1069 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
1070
1071         * socket-io.h : Adding a comment to provide locations where 
1072           changes to MonoSocketAsyncResult need to be synced.
1073
1074         Code is contributed under MIT/X11 license.
1075
1076 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
1077
1078         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
1079         parameters as well. Fixes #425001.
1080
1081 2008-09-08  Miguel de Icaza  <miguel@novell.com>
1082
1083         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
1084         windows build.
1085
1086 2008-09-07  Miguel de Icaza  <miguel@novell.com>
1087
1088         * console-io.c: Add support for tracking the window size if it
1089         changes.
1090
1091         The setup is very simple: the TtySetup function will now return a
1092         pointer to a location in memory that tracks the current console
1093         size.  The managed code checks its current value every time its
1094         queried against the last value set, and updates accordingly.
1095
1096         With this setup we can work with multiple consoles, and we do not
1097         require to poke into managed code from a signal handler.
1098
1099         Additionally, the environment for COLUMNS and LINES is now handled
1100         in unmanaged code.
1101
1102         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
1103
1104 2008-09-07  Mark Probst  <mark.probst@gmail.com>
1105
1106         * marshal.c (mono_type_native_stack_size): Treat
1107         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
1108
1109 2008-09-04  Jb Evain  <jbevain@novell.com>
1110
1111         * class.c (mono_class_is_assignable_from): fix assignability of nullables
1112         to nullables.
1113
1114 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
1115
1116         * verify.c (verify_type_compatibility_full): Revert change
1117         to allow converting a native int to unmanaged pointer be verifiable
1118         under non-strict mode.
1119         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
1120
1121         * verify.c: Added some TODOs.
1122
1123 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
1124
1125         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
1126           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
1127           Changed to use GlobalAlloc for the memory returned on Windows platforms.
1128
1129         Code is contributed under MIT/X11 license.
1130
1131 2008-09-02  Jb Evain  <jbevain@novell.com>
1132
1133         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
1134
1135 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
1136
1137         reflection.c (typebuilder_setup_fields): Handle classes with
1138         explicit size.
1139
1140 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
1141
1142         class.c (mono_class_setup_events): Add memory barrier due to
1143         double checked locking.
1144         
1145         class.c (mono_class_setup_properties): Same.
1146
1147 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
1148
1149         * class.c (mono_class_is_assignable_from): Fix the build.
1150         
1151         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
1152         before accessing klass->interface_bitmap. Fixes #421744.
1153
1154 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
1155
1156         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
1157         the runtime into no-exec mode, useful when running the AOT compiler.
1158
1159         * appdomain.c gc.c object.c: Avoid executing managed code when running
1160         in no-exec mode.
1161         
1162         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
1163
1164         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
1165         special case when the mono_assembly_loaded () returns NULL because the 
1166         search hook is not installed.
1167
1168 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
1169
1170         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
1171         crashes in bstr marshalling on linux.
1172
1173 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
1174
1175         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
1176         with more than one parameter.
1177
1178 2008-08-24  Miguel de Icaza  <miguel@novell.com>
1179
1180         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
1181         start/stop flow control as well when turning off ICANON (allows
1182         C-s and C-q to be read by Console.ReadKey).
1183
1184 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
1185
1186         * class.c (mono_class_init): Move the initialization of nested classes
1187         into mono_class_get_nested_types (). Fixes #418433.
1188
1189         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
1190         flag.
1191
1192         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
1193         iterating tough the nested classes of a class.
1194
1195 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
1196
1197         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
1198         on arm.
1199
1200 2008-08-22  Miguel de Icaza  <miguel@novell.com>
1201
1202         * console-io.c (sigcont_handler): Support signal chaining for
1203         SIGCONT.
1204
1205         (console_set_signal_handlers): Use best practices with sigaction,
1206         clear the structure before using it. 
1207
1208 2008-08-22  Robert Jordan  <robertj@gmx.net>
1209
1210         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
1211         Fix the Windows build.
1212
1213 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
1214
1215         * class.c (mono_class_generic_sharing_enabled): Make the default
1216         sharing mode 'corlib'.
1217
1218 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
1219
1220         * console-io.c (console_set_signal_handlers): Fix a warning.
1221
1222         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
1223         method normally, the JIT will take care of avoiding recursion.
1224
1225 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
1226
1227         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
1228
1229         Code is contributed under MIT/X11 license.
1230
1231 2008-08-20  Miguel de Icaza  <miguel@novell.com>
1232
1233         * console-io.c (sigcont_handler): We need to restore the entire
1234         termios state, not only the original settings, as things like echo
1235         can be controlled after this (Booish exposes this issue with its
1236         own ReadLine implementation).
1237
1238         Additionally, we need to set the terminal back into keypad_xmit
1239         mode.
1240         
1241         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
1242         string as a paramter as well.   Otherwise we get different
1243         keyboard sequences.
1244
1245 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
1246
1247         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
1248         delegates with byref out parameter passing. Fixes #351520.
1249
1250         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
1251         a generic context.
1252         (mono_type_get_desc): Add the type arguments for GENERICINST.
1253         (mono_method_full_name): Stringify the class name using mono_type_full_name
1254         so it picks up generic arguments.
1255
1256 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
1257
1258         * console-io.c: Removed debug output.
1259
1260 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
1261
1262         reflection.c (mono_reflection_create_runtime_class): Alloc
1263         the nested classes linked list using the dynamic image mempool.
1264         Fixes leak in corlib compilation.
1265
1266 2008-08-19  Miguel de Icaza  <miguel@novell.com>
1267
1268         * console-io.c: Fix incredibly annoying behavior on the console
1269         after resuming execution after control-z.   This affected every
1270         console application.
1271
1272 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
1273
1274         * mempool-internals.h: Header for mono private mempool functions. The first
1275         two function are for allocating glib linked lists using pools.
1276
1277         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
1278
1279         * Makefile.am: Added mempool-internals.h.
1280
1281 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
1282
1283         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
1284         (mono_domain_free): Ditto.
1285
1286         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
1287         be used by the JIT to store its domain-specific information, instead of putting
1288         it directly into MonoDomain.
1289
1290         * domain.c (mono_install_create_domain_hook): New helper function to install
1291         a hook which initializes domain->runtime_info.
1292
1293         * domain.c (mono_install_free_domain_hook): Ditto.
1294         
1295 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
1296
1297         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
1298         asserting if the ares parameter is null.
1299
1300         * mono-perfcounters.c: Fix warnings.
1301
1302         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
1303         is not needed, don't check for interruptions either.
1304         (mono_marshal_get_delegate_end_invoke): Ditto.
1305
1306 2008-08-15  Marek Habersack  <mhabersack@novell.com>
1307
1308         * mono-perfcounters.c (predef_readonly_counter): added support for
1309         reading the ASP.NET Requests Queued counter from another process.
1310
1311 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
1312
1313         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
1314         MonoImage to simplify the AOT code.
1315
1316 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
1317
1318         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
1319         marshalling. Fixes #416078.
1320
1321 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
1322         
1323         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
1324         it is set, looking up the icall address is deferred to the JIT, since 
1325         in embedded scenarios, the icall might not be registered in the runtime
1326         doing the AOT compilation. Backported from the 2.0 branch.
1327
1328 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
1329
1330         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
1331         Fixes #415621.
1332
1333 2008-08-05  Marek Habersack  <mhabersack@novell.com>
1334
1335         * Makefile.am: added support for cross-compilation.
1336
1337 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
1338
1339         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
1340
1341 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
1342
1343         * mono-perfcounters.c: jitted methods and jitted bytes counters.
1344
1345 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
1346
1347         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
1348         mono-perfcounters.c: performance counters implementation.
1349
1350 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
1351
1352         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
1353         to gpointer, letting the AOT code decide what to store in it.
1354
1355 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
1356
1357         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
1358           mono_class_setup_methods if the methods are not initialized.
1359
1360         Code is contributed under MIT/X11 license.
1361
1362 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
1363
1364         * verify.c: Remove some debug code I commited by accident.
1365
1366         * verify.c (mono_method_is_valid_in_context): Change the return value
1367         to make possible to distinguish between invalid and unverifiable.
1368
1369         * verify.c (verifier_load_method): Don't return NULL for unverifiable
1370         methods.
1371
1372 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
1373
1374         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
1375         constraints. Fixes regression in gtest-253.
1376
1377 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
1378
1379         * verify.c (mono_verifier_verify_class): Don't allow generic types
1380         with explicit layout.
1381
1382         * verify.c (mono_method_verify): Check locals and argument types.
1383
1384 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
1385
1386         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
1387         wait if the thread is in StopRequested state.
1388
1389         * class.c (mono_class_from_name): Refactor the module searching code into
1390         a separate function so it can be reused in the AOT case too.
1391
1392 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
1393
1394         * verify.c (mono_type_is_valid_in_context): Improve the error message.
1395         Check both the type and it's generic type definition for loader errors.
1396         
1397         * verify.c (mono_method_is_valid_in_context): Don't generate another
1398         error when a type errors occur, this leads to the wrong exception been
1399         thrown.
1400
1401 2008-07-28  Dick Porter  <dick@ximian.com>
1402
1403         * icall-def.h
1404         * process.c
1405         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
1406         New internal calls to duplicate and close a process handle.
1407
1408 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
1409
1410         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
1411
1412 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
1413
1414         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
1415
1416 2008-07-27  Robert Jordan  <robertj@gmx.net>
1417
1418         * class.c (mono_class_init): Don't compute class.has_finalize for
1419         valuetypes. Fixes #412477.
1420
1421 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
1422
1423         * verify.c: Implement constraint equivalence checking.
1424         This is required when a generic parameter is used as
1425         argument to a constrained one.
1426
1427         Fixes #410637.
1428
1429 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
1430
1431         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1432
1433         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
1434
1435         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
1436         synch with managed object layout.
1437
1438 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
1439
1440         * verify.c (do_branch_op): Handle valuetypes and generic
1441         arguments properly.
1442
1443         * verify.c (do_cmp_op): Same.
1444
1445         Fixes #410383.
1446
1447 2008-07-24  Mark Probst  <mark.probst@gmail.com>
1448
1449         * generic-sharing.c: Fix memory leaks.
1450
1451         * class.c, class-internals.h: Make
1452         mono_class_inflate_generic_type_with_mempool() non-static.
1453
1454 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
1455
1456         * pedump.c (dump_verify_info): Dump full class name.
1457
1458 2008-07-24  Mark Probst  <mark.probst@gmail.com>
1459
1460         * generic-sharing.c: Removed some old code that didn't do anything.
1461
1462 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
1463         * profiler.c: Added runtime_initialized_event,
1464         mono_profiler_install_runtime_initialized and
1465         mono_profiler_runtime_initialized. This new hook tells the profiler
1466         when the runtime is sufficiently initialized to be able to call
1467         mono_thread_attach on the root appdomain.
1468         * profiler.h, profiler-private.h: Likewise.
1469
1470 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
1471
1472         * verify.c (do_cast): Do boxing for generic arguments as well.
1473
1474         * class.c (is_nesting_type): Drop generic instantiations before
1475         checking for nesting.
1476
1477         * class.c (can_access_instantiation): Allow access to generic
1478         arguments.
1479
1480 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
1481
1482         * verify.c (verify_class_for_overlapping_reference_fields):
1483         On some cases, the field size might be zero, guard against that.
1484         Fix the explicit layout check to work as expected.
1485
1486 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
1487
1488         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
1489         mono_thread_resume () during shutdown, since the thread we want to abort
1490         might be suspended.
1491
1492 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
1493
1494         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
1495         warning.
1496
1497         * debug-mono-symfile.c: Fix a warning.
1498
1499         * mono-perfcounters.c (get_cpu_times): Fix a warning.
1500
1501         * object.c (mono_class_vtable): Check if exception_type is set, and return
1502         NULL as defined by the function comments.
1503
1504 2008-07-22  Mark Probst  <mark.probst@gmail.com>
1505
1506         * mempool.c: Use malloc for every single mempool allocation if the
1507         configure option is set.  This makes it easier to track mempool
1508         allocations with tools like Valgrind.
1509
1510 2008-07-22  Jb Evain  <jbevain@novell.com>
1511
1512         * reflection.c (create_dynamic_mono_image): emit the same
1513         metadata version that SL2 does when creating a SL2 image.
1514
1515 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
1516
1517         * icall-def.h:
1518         * icall.c: New icall System.Enum:get_hashcode. This function
1519         avoids the overhead of boxing the enum to the underlying type.
1520
1521 2008-07-21  Mark Probst  <mark.probst@gmail.com>
1522
1523         * reflection.c (mono_method_get_object): Don't let static RGCTX
1524         invoke wrappers get into MonoReflectionMethods.
1525
1526 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
1527
1528         * object-internals.h:
1529         * object.c: New mono_runtime_class_init_full function
1530         that makes throwing the exception optinal.
1531
1532         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
1533         for the case where the exception object is supplied.
1534
1535 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
1536
1537         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
1538         old ld versions.
1539
1540         Contributed under MIT/X11 license.
1541
1542 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
1543
1544         * string-icalls.c (ves_icall_System_String_InternalSplit):
1545         Optimize array allocation by caching the MonoClass of the
1546         array type.
1547
1548         * icall.c (ves_icall_Type_GetMethodsByName): Same.
1549
1550         * reflection.c (mono_param_get_objects): Same.
1551
1552 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
1553
1554         * icall-def.h:
1555         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
1556         It inflates the given type using the class context.
1557
1558 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
1559
1560         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
1561         the vtable if it already exists.
1562
1563         * object-internals.h: Add mono_class_try_get_vtable as part of the
1564         internal API.
1565
1566         * reflection.c (mono_type_get_object): Use the MonoObject from the
1567         vtable when possible. Reduces locking contention on reflection heavy
1568         code.
1569
1570 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
1571
1572         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
1573         g_bit_nth_msf () since that macro is not implemented in eglib.
1574
1575 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
1576
1577         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
1578         on platforms which do not support it.
1579
1580 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
1581
1582         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
1583
1584 2008-07-11  Martin Baulig  <martin@ximian.com>
1585
1586         * mono-debug-debugger.h
1587         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
1588
1589         * mono-debug-debugger.c
1590         (_mono_debugger_interruption_request): New global volatile variable.
1591         (mono_debugger_check_interruption): New public function.
1592
1593         * threads.c
1594         (mono_thread_current_check_pending_interrupt): Call
1595         mono_debugger_check_interruption().
1596         (mono_thread_interruption_checkpoint_request): Likewise.
1597
1598 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1599
1600         * verify.c: Add more type checks for loaded types. Verify the result
1601         handle from ldtoken.
1602
1603 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1604
1605         * loader.c (field_from_memberref): Don't crash if the field
1606         wasn't found.
1607
1608 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1609
1610         * verify.c: Verify if type and method instantiations
1611         don't have invalid VAR or MVAR arguments.
1612
1613 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1614
1615         * verify.c: Fix double free of function pointer list.
1616
1617 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1618
1619         * object.c (mono_string_to_utf8): Comment the new code as it
1620         breaks under eglib.
1621
1622 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
1623
1624         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
1625
1626 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
1627
1628         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
1629           is not throw too many times.
1630
1631         Code is contributed under MIT/X11 license.
1632
1633 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
1634
1635         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
1636         debugging is turned off.
1637
1638 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
1639
1640         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
1641
1642 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1643
1644         * class-internals.h, class.c: Added new generic sharing option:
1645         Share only stuff in System.Collections.Generic, which is now the
1646         default.
1647
1648 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1649
1650         * generic-sharing.c, class-internals.h: New function for getting a
1651         generic method in a generic class given the corresponding method
1652         for a different instantiation of the class.  Partly refactored
1653         from mini-trampolines.c.
1654
1655         * class.c: Make sure generic methods have a class_inst if they are
1656         part of a generic class.
1657
1658         * metadata.c (mono_type_stack_size_internal): Handle type
1659         variables.
1660
1661 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1662
1663         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
1664         Signifies whether information on the this/vtable/mrgctx variable
1665         is available.
1666
1667 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1668
1669         * object.c, object-internals.h, icall.c: New function
1670         mono_delegate_ctor_with_method(), which does the same as
1671         mono_delegate_ctor(), but takes an explicit method argument
1672         instead of taking the method from the jit info.
1673
1674         * marshal.c: When creating a delegate with an inflated method take
1675         the "this" argument as the target class for the castclass.
1676
1677 2008-07-03  Mark Probst  <mark.probst@gmail.com>
1678
1679         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
1680         mono_jit_info_table_find() to perform very badly in some cases.
1681
1682 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
1683
1684         * icall.c (type_from_typename): Handle 'string'.
1685
1686         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
1687         wrappers into the wrapper_hash, since the key is not a MonoMethod.
1688
1689 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
1690
1691         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
1692
1693         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
1694         number of available managed allocator types.
1695
1696         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
1697         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
1698
1699 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
1700
1701         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
1702         which is a low level lock protecting just the 'jit_code_hash' hash table.
1703
1704         * domain.c: Initialize+cleanup jit_code_hash_lock.
1705         
1706 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
1707
1708         * coree.c (mono_load_coree): Set coree_module_handle global variable only
1709         after initialization.
1710
1711         * coree.h: Make MonoFixupExe internal.
1712
1713         Contributed under MIT/X11 license.
1714
1715 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
1716
1717         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
1718         because that is platform independent. Check NumberOfRvaAndSizes in PE32
1719         as well.
1720         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
1721         image being loaded is a CLI image and _CorValidateImage gets called.
1722
1723         * coree.h: Add MonoLoadImage.
1724
1725         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
1726         instead of LoadLibrary.
1727
1728         Contributed under MIT/X11 license.
1729
1730 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
1731
1732         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
1733         for any primitive type.
1734
1735 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
1736
1737         * object.c (mono_array_new_specific): Optimize this and the other allocation
1738         functions a bit.
1739         
1740         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
1741         domains too if mono_dont_free_domains is set.
1742
1743         * domain-internals.h (mono_dont_free_domains): New internal option controlling
1744         whenever to free appdomain data after it has been unloaded.
1745
1746         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
1747         
1748 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
1749
1750         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
1751         (mono_method_get_equivalent_method): Fix a warning.
1752
1753         * object.c (mono_message_init): Avoid looking up array types for each call.
1754
1755 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
1756
1757         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
1758         call.
1759
1760         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
1761         even more.
1762
1763         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
1764         each iteration.
1765
1766         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
1767         fields of an enum.
1768
1769 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
1770
1771         * object.c (mono_value_box): Fix boxing of nullables.
1772
1773 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
1774
1775         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
1776         mono_module_handle that is defined by the linker; no initialization required.
1777         * coree.h: Remove mono_module_handle, add __ImageBase, update
1778         mono_image_open_from_module_handle.
1779         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
1780         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
1781         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
1782         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
1783         to 4 GB away from image base address. IA64 version is not tested but was very
1784         easy to implement and should work if we ever need it.
1785         * domain.c (mono_init_internal): Avoid system error message boxes.
1786         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
1787         with has_entry_point. Handle do_mono_image_load fauilre correctly.
1788         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
1789         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
1790         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
1791
1792         Contributed under MIT/X11 license.
1793
1794 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1795
1796         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
1797         as part of the private mono API.
1798         
1799         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
1800         Do proper argument checking for methods that belong to generic classes.
1801         Do proper type resolution for GMFH/2.
1802         Fixes #377324.
1803         
1804 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1805
1806         * verify.c (do_switch): Fix a memory corruption bug with
1807         the jump index is out of bound.
1808
1809 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1810
1811         * verify.c: Disable debug code.
1812
1813 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1814
1815         * reflection.c (mono_image_get_methodbuilder_token): Use
1816         mono_image_get_methodspec_token_for_generic_method_definition
1817         instead of mono_image_get_memberref_token. We cache more memberef
1818         entries now.
1819
1820 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1821
1822         * verify.c: Inflate exception clause types.
1823         Fixes #402606.
1824         
1825 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1826
1827         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
1828         name.
1829
1830         * reflection.c (mono_image_get_ctorbuilder_token): Same.
1831
1832         * reflection.c (mono_image_create_method_token): Same.
1833
1834 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1835
1836         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
1837         It does the same as mono_image_get_methodref_token but works on
1838         MethodBuilder.
1839
1840         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
1841         and always generate a methodspec. This follows the old behavior and fixes
1842         the regressions in System.Core. 
1843
1844 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
1845
1846         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
1847         don't event mono_class_get () succeeds. Fixes #402182.
1848
1849 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
1850
1851         * metadata-internals.h: Added MonoDynamicImage::methodspec
1852         hashtable to store methodspec tokens created for MethodBuilders.
1853
1854         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
1855         MethodBuilders as open instantiations if a methodspec was requested.
1856
1857         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
1858
1859         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
1860
1861         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
1862
1863         Fixes bug #349190.
1864
1865 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
1866
1867         * loader.c (method_from_methodspec): Avoid crashing if the
1868         method lookup fails.
1869
1870 2008-06-20  Dick Porter  <dick@ximian.com>
1871
1872         * socket-io.c (get_socket_assembly): Cope with Moonlight network
1873         classes being in a different assembly.  Fixes bug 399184.
1874
1875 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
1876
1877         * loader.c (mono_loader_init): Make this callable multiple times.
1878         (mono_dllmap_insert): Call mono_loader_init () so this works even before
1879         the runtime is initialized. Fixes #401755.
1880
1881 2008-06-19  Dick Porter  <dick@ximian.com>
1882
1883         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
1884         Fixes bug 349688.
1885
1886 2008-06-19  Dick Porter  <dick@ximian.com>
1887
1888         * socket-io.c:
1889         * icall-def.h: Implement Socket generic Send() and Receive()
1890         methods.  Fixes bug 395168.
1891
1892 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
1893
1894         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
1895
1896         Contributed under MIT/X11 license.
1897
1898 2008-06-18  Martin Baulig  <martin@ximian.com>
1899
1900         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
1901         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
1902         set to 80.0.  The debugger <-> runtime interface is now frozen as
1903         well.   
1904
1905         * mono-debug.c
1906         (mono_debug_debugger_version): Bump to 4.
1907
1908 2008-06-18  Martin Baulig  <martin@ximian.com>
1909
1910         * debug-mono-symfile.c
1911         (load_symfile): Don't check the minor version.
1912
1913         * debug-mono-symfile.h: Bump the version number to 50.0.
1914
1915 2008-06-18  Martin Baulig  <martin@ximian.com>
1916
1917         * debug-mono-symfile.c
1918         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
1919         minimum required version.
1920
1921 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
1922
1923         * reflection.c (mono_custom_attrs_from_property): Fix support for
1924         retriveving cattrs of dynamic inflated generic types.
1925
1926         * reflection.c (mono_custom_attrs_from_event): Same.
1927
1928         * reflection.c (mono_custom_attrs_from_field): Same;
1929
1930         * reflection.c (typebuilder_setup_events): Same cattrs of events.
1931
1932         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
1933         Moved to metadata.c.
1934
1935         * metadata.c: New functions to retrive the equivalent field, event
1936         of property from the generic type definition.
1937
1938         * metadata-internals.h: Added new functions from metadata.c.
1939
1940 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
1941
1942         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
1943         to cached in a mempool is used.
1944
1945         * metadata.c (free_generic_class): In some situations field generic_info type
1946         is not properly dup'ed and leads to double free'ing.
1947
1948         Fixes #400643.
1949
1950 2008-06-17  Mark Probst  <mark.probst@gmail.com>
1951
1952         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
1953         this arguments (will be needed later for generic methods).
1954         Collect stats.
1955
1956 2008-06-17  Mark Probst  <mark.probst@gmail.com>
1957
1958         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
1959         Create a static RGCTX invoke wrapper for methods which require it.
1960
1961 2008-06-17  Mark Probst  <mark.probst@gmail.com>
1962
1963         * object.c, class-internals.h: New function for checking whether
1964         an individual field is special static.
1965
1966 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
1967
1968         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
1969         linear search since the table is sorted.
1970
1971         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
1972         Fixes #324180.
1973
1974 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
1975
1976         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
1977         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
1978
1979         * gc.c (mono_domain_finalize): Allow an infinite timeout.
1980
1981         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
1982         
1983         * threads.c (mono_thread_request_interruption): Get rid of locking, use
1984         InterlockedCompareExchange to query and modify 
1985         thread->interruption_requested.
1986
1987         * object-internals.h (struct _MonoThread): Change interruption_requested
1988         to a gint32 so it can be modified by atomic operations. Add 
1989         'critical_region_level' from the managed side, change small_id to a guint32,
1990         add new set of 'unused' fields.
1991
1992         * appdomain.c: Bump corlib version.
1993
1994 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
1995
1996         * class.c (mono_class_from_name): Search modules as well. Fixes
1997         #322332.
1998
1999 2008-06-13  Mark Probst  <mark.probst@gmail.com>
2000
2001         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
2002         templates.  Templates are generalized with an additional type_argc
2003         argument.  RGCTX templates have type_argc==0, MRGCTX templates
2004         have type_argc>0.
2005
2006         * domain-internals.h, domain.c: New hash table for looking up
2007         MRGCTXs.
2008
2009         * metadata.c, metadata-internals.h: Rename hash and equal
2010         functions for MonoGenericInst's and make them public.
2011
2012         * class-internals.h: New data structures for the MRGCTX.  Macros
2013         for distinguishing slots in the RGCTX and the MRGCTX.
2014
2015 2008-06-13  Mark Probst  <mark.probst@gmail.com>
2016
2017         * object.c (mono_method_get_imt_slot): Put the same methods of
2018         different instantiations of the same generic interface in the same
2019         IMT slots, to make generic sharing simpler.
2020
2021 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2022
2023         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
2024
2025         * metadata.c (mono_metadata_field_info_with_mempool): Added.
2026         This function works just like mono_metadata_field_info, but
2027         accept a mempool as argument to be used allocating memory.
2028
2029         * marshal.c (mono_marshal_load_type_info): Use new function
2030         to load marshal data into image mempool.
2031
2032 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2033
2034         * class.c (mono_class_inflate_generic_type_with_mempool):
2035         This function allows to inflate a generic type using
2036         a mempool.
2037
2038         * class.c (inflate_generic_type): Take a mempool as argument
2039         and use it to do type dup'ing.
2040
2041         * class.c (mono_class_setup_fields): Field type for generic
2042         generic classes are allocated from the image mempool.
2043
2044         * metadata.c (free_generic_class): Inflated field type is
2045         now allocated in the image mempool.
2046
2047 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2048
2049         * threads.c (thread_cleanup): Free MonoThread::name.
2050
2051 2008-06-12  Marek Habersack  <mhabersack@novell.com>
2052
2053         * appdomain.c (ensure_directory_exists): avoid unnecessary
2054         mkdir(2) calls when the shadow directory already exists.
2055         (mono_make_shadow_copy): copy also satellite assemblies from the
2056         private bin directories.
2057
2058 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
2059
2060         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
2061         
2062         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
2063         a page boundary. Fixes #396219.
2064
2065 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2066
2067         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
2068         due to double-checked locking.
2069
2070 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2071
2072         * assembly.c (build_assembly_name): Release memory on failure.
2073
2074         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
2075
2076 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2077
2078         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
2079         memory on failure.
2080
2081 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2082
2083         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
2084         memory on failure.
2085
2086 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2087
2088         * loader.c (field_from_memberref): Check if field signature type is equal
2089         to the non-inflated type of the field. Fixes #398980.
2090
2091 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
2092
2093         * assembly.c (mono_assembly_load_from_full): Call 
2094         mono_assembly_load_friends () outside the assemblies lock, since it can
2095         acquire the loader lock. Fixes #323696.
2096
2097         * reflection.c (resolve_object): Inflate the inst with the context for
2098         FieldOnTypeBuilderInst. Fixes #399010.
2099
2100 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2101
2102         * reflection.c (mono_image_get_field_on_inst_token): Don't
2103         inflate the field to encode it's signature. If it's a
2104         VAR or MVAR it should stay that way in the signature.
2105         Fixes #399047.
2106
2107 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2108
2109         * reflection.c (resolve_object): Release memory of inflated types.
2110
2111 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2112
2113         * loader.c (mono_method_get_signature_full): Remove assert about
2114         loading a methodspec to a generic method. We have such methods, such as
2115         System.Threading.Interlocked::CompareExchange<T>.
2116         This assert was removed since it crashes the verifier when it checks
2117         methods calling CompareExchange<T>.
2118
2119 2008-06-10  Marek Safar  <marek.safar@gmail.com>
2120
2121         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
2122         of Type array and not MonoType.
2123
2124 2008-06-10  Marek Habersack  <mhabersack@novell.com>
2125
2126         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
2127         <lupus@ximian.com>
2128
2129 2008-06-10  Martin Baulig  <martin@ximian.com>
2130
2131         * debug-mono-symfile.h
2132         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
2133         changes to the file format, but we were generating incorrect
2134         source file indices in the line number table due to a bug, which
2135         made backtraces report an incorrect source file.
2136
2137 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2138
2139         * mono-debug.c: Moved mono_debug_free_method_jit_info from
2140         mini/debug-mini.c to here.
2141
2142         * mono-debug.c (il_offset_from_address): Free memory from find_method.
2143
2144         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
2145         use it to release structs returned by mono_debug_find_method.
2146
2147 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
2148
2149         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
2150         since it needs to set method->slot for all interface methods.
2151
2152 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2153
2154         * class-internals.h: Forgot to add.
2155
2156 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2157
2158         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
2159
2160         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
2161         Lookup the custom attributes from property_hash.
2162
2163         * reflection.c (mono_save_custom_attrs): Save the custom attributes
2164         in property_hash. Allocate all data using the image mempool.
2165
2166         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
2167         for dynamic_custom_attrs to checks if the image is dynamic.
2168
2169 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
2170
2171         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
2172         assemblies array.
2173         
2174         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
2175         runtime functions while holding the domain assemblies lock.
2176
2177 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2178
2179         * verify.c: Reapplied the last bit of the reverted changes.
2180
2181 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2182
2183         * verify.c: Reapplied more of the reverted changes.
2184
2185 2008-06-09  Martin Baulig  <martin@ximian.com>
2186
2187         * debug-mono-symfile.c (load_symfile): Check the major version
2188         first; if it's wrong, don't print the minor version in the error message.
2189
2190 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
2191
2192         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
2193         lock instead of the domain lock to avoid deadlocks, since the thread might
2194         already hold the loader lock.
2195
2196         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
2197         (mono_thread_attach): Ditto.
2198
2199         * monitor.c: Use a TLS variable for holding the current thread id instead
2200         of calling pthread_self ().
2201         (mono_monitor_init_tls): New internal function to initialize the TLS
2202         variable.
2203         (mono_monitor_try_enter_internal): Put the owner == id check after the
2204         owner == 0 check.
2205
2206         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
2207         missed optimizations when using gcc-4.3.
2208
2209 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
2210
2211         * reflection.c (mono_dynamic_image_free): Free the memory
2212         used by MonoGenericParam in MonoDynamicImage::gen_param.
2213
2214         * reflection.c (mono_reflection_setup_generic_class): Allocate
2215         container from mempool.
2216
2217         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
2218         container from mempool.
2219
2220 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
2221
2222         * threads.c (mono_set_pending_exception): New internal function to set the
2223         pending exception of the current thread.
2224         (mono_thread_get_and_clear_pending_exception): Check for 
2225         thread->pending_exception as well.
2226
2227         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
2228
2229         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
2230         it can trigger a collection.
2231
2232 2008-06-06  Martin Baulig  <martin@ximian.com>
2233
2234         Merged the `debugger-kahalo' branch.
2235
2236         * mono-debug.h
2237         (MONO_DEBUGGER_VERSION): Bumped to 72.
2238
2239         * debug-mono-symfile.h
2240         (MonoSymbolFileMethodIndexEntry): Removed.
2241         (MonoSymbolFileMethodEntry): New public typedef.
2242         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
2243         (MonoSymbolFileSourceEntry): Remove everything except `index' and
2244         `data_offset'.
2245         (MonoSymbolFileMethodEntry): Removed.
2246         (MonoSymbolFileLexicalBlockEntry): Removed.
2247         (MonoSymbolFileLineNumberEntry): Removed.
2248         (MonoDebugLexicalBlockEntry): Removed.
2249         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
2250         removed `num_il_offsets' and `il_offsets'.
2251         (MonoSymbolFile): Replace `version' with `major_version' and
2252         `minor_version'.
2253         (MONO_SYMBOL_FILE_VERSION): Replace with
2254         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
2255         `MONO_SYMBOL_FILE_MINOR_VERSION'.
2256
2257         * debug-mono-symfile.c
2258         (mono_debug_symfile_lookup_location): Add support for the new line
2259         number table format.
2260
2261 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2262
2263         * metadata.c (free_generic_class): Release the inflated
2264         MonoClass of dynamic generic classes if it's not a generic
2265         type definition.
2266
2267 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2268
2269         * verify.c: Reapplied more of the reverted changes.
2270
2271 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2272
2273         * reflection.c (lookup_custom_attr): Clean the cached flag or
2274         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
2275         for SRE types.
2276
2277 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2278
2279         * verify.c: Reapplied a small part of the reverted changes.
2280
2281 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
2282
2283         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2284
2285         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
2286         previously in managed code.
2287         (mono_monitor_exit): Ditto.
2288         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
2289
2290         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
2291         the managed definition.
2292
2293 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
2294
2295         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
2296
2297 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
2298
2299         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
2300         
2301         * monitor.c: Add some micro optimizations.
2302
2303         * icall.c (type_from_typename): Handle 'bool'.
2304
2305 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
2306
2307         * verify.c: Implement constructor verification per P III 1.8.1.4.
2308         Fixes #396716.
2309
2310 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
2311
2312         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
2313         holding the assemblies lock here too.
2314
2315 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2316
2317         * verify.c: Kill stack_top function.
2318
2319 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2320
2321         * verify.c: Kill stack_get function.
2322
2323 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2324
2325         * verify.c (mono_method_verify): Last change broke the build. Fixed.
2326
2327 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2328
2329         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
2330         more reliable.
2331
2332         * verify.c (mono_method_verify): Inflate params and locals to avoid
2333         mismatch when checking for compatibility.
2334
2335 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
2336
2337         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
2338         Length prefix should be size in bytes. Fix bug #339530.
2339         
2340         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
2341         Length prefix should be size in bytes. Fix bug #339530.
2342
2343         Code is contributed under MIT/X11 license.
2344
2345 2008-06-05  Bill Holmes <billholmes54@gmail.com>
2346
2347         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
2348
2349         Contributed under MIT/X11 license.
2350
2351 2008-06-05  Martin Baulig  <martin@ximian.com>
2352
2353         * mono-debug-debugger.c
2354         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
2355
2356 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
2357
2358         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
2359         while holding the assemblies lock to prevent deadlocks. Handle the case
2360         where the search hook returns NULL but the assembly was still loaded.
2361         Fixes #323696.
2362
2363         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
2364         modify domain state.
2365
2366 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
2367
2368         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
2369         * Makefile.am (pedump_LDADD): Post-process object files and
2370         add dtrace-generated object file, if necessary.
2371
2372         Code is contributed under MIT/X11 license.
2373
2374 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2375
2376         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
2377
2378 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2379
2380         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
2381
2382 2008-06-04  Mark Probst  <mark.probst@gmail.com>
2383
2384         * threads.c: Try to free everything from the delayed free table
2385         when shutting down threads, and set the variable to NULL after the
2386         table is freed so that calling
2387         mono_thread_hazardous_try_free_all() when shutting down the root
2388         domain doesn't crash.
2389
2390 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2391
2392         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
2393         the caller if resulting type was inflated.
2394
2395         * class.c (mono_class_create_from_typespec): Free the MonoType if it
2396         was inflated.
2397
2398         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
2399
2400
2401 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
2402
2403         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
2404         class library tests.
2405
2406         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
2407         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
2408         #396989.
2409
2410 2008-06-04  Mark Probst  <mark.probst@gmail.com>
2411
2412         * domain.c, domain-internals.h: The JIT infos are now freed by the
2413         JIT info table code.  They are freed immediately if there only a
2414         single JIT info table in circulation.  If there is more, the free
2415         is delayed via a queue.
2416
2417         * threads.c, threads-types.h: New hazard pointer function for
2418         freeing all freeable delayed items in one sitting.
2419
2420 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2421
2422         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
2423
2424         * reflection.c (typebuilder_setup_properties): Same.
2425
2426         * reflection.c (typebuilder_setup_events): Same.
2427
2428 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2429
2430         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
2431         and use it for allocating memory.
2432
2433         * reflection.c (mono_marshal_spec_from_builder): Same.
2434
2435         * reflection.c: Change code to use new signatures.
2436
2437         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
2438
2439 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
2440
2441         * decimal.c (rescale128): Put back one line which was accidently commented
2442         out.
2443         
2444         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
2445         to cause crashes.
2446
2447 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2448
2449         * reflection.c (mono_reflection_generic_class_initialize): Name must
2450         be always malloc'ed so we can free it later on. Do this for field, property
2451         and event.
2452
2453         * metadata.c (free_generic_class): Free field, property and event names.
2454
2455 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2456
2457         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
2458         instead of g_memdup.
2459
2460         * reflection.c (typebuilder_setup_fields): Same.
2461
2462 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
2463
2464         * decimal.c (rescale128): Optimize this function a bit more.
2465
2466 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2467
2468         * metadata.c (free_generic_class): Release some memory from
2469         SRE generic classes.
2470
2471 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2472
2473         * reflection.c (mono_image_get_generic_field_token): No reference
2474         to name is kept, free it.
2475
2476         * reflection.c (mono_reflection_generic_class_initialize): Free
2477         more memory of the inflated field.
2478
2479 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
2480
2481         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
2482         code.
2483
2484 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
2485
2486         * reflection.c (mono_dynamic_image_free): Release memory used by
2487         MonoDynamicImage::array_methods elements.
2488
2489         * reflection.c (assembly_add_win32_resources): Release memory after
2490         encoding.
2491
2492 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
2493
2494         * decimal.c (log2_32): Use an optimized version for this function too.
2495         
2496         * decimal.c (log2_64): Fix this on 32 bit machines.
2497
2498 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
2499
2500         * class.c (mono_dup_array_type): Implement allocation using a mempool.
2501
2502         * class.c (mono_metadata_signature_deep_dup): Same.
2503
2504         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
2505         a mempool.
2506
2507         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
2508
2509         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
2510
2511         * metadata-internals.h: Added mono_metadata_signature_dup_full.
2512
2513         * class-internals.h: Update signatures to take a MonoMemPool.
2514
2515 2008-06-02  Dick Porter  <dick@ximian.com>
2516
2517         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
2518         * icall-def.h: Add
2519         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
2520         FormatMessage API to get the error text.  Fixes bug 321827.
2521
2522 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
2523
2524         * decimal.c: Add some micro optimizations to make decimal operations faster.
2525
2526 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2527
2528         * reflection.c (method_encode_clauses): Take a mempool
2529         as parameter and use it to allocate the clause array.
2530
2531         * reflection.c (mono_image_get_field_on_inst_token): Free
2532         the inflated type after encoding it.
2533
2534         * reflection.c (mono_dynamic_image_free): Free each element
2535         of MonoDynamicImage::gen_params.
2536
2537         * reflection.c (reflection_methodbuilder_to_mono_method):
2538         Allocate the generic param array from the mempool.
2539         Allocate signature params from the mempool.
2540
2541         * reflection.c (mono_reflection_generic_class_initialize):
2542         Free inflated fields after been used.
2543
2544 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
2545
2546         * icall.c: Reapply the memory leak fixes as they no
2547         longer make mono crash.
2548
2549 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
2550
2551         * reflection.c (mono_type_get_object): Don't store the suplied
2552         MonoType with type_hash. A caller which pass a type that
2553         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
2554         might end with a pointer to freed memory.
2555         The solution is to use byval_arg or this_arg from the associated
2556         MonoClass of the supplied type.
2557
2558 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
2559
2560         * icall.c: Revert the rest of the last change as it breaks the build too.
2561
2562 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2563
2564         * icall.c: Revert a leak fix as it's breaking the build.
2565
2566 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2567
2568         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
2569
2570 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2571
2572         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
2573
2574 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2575
2576         * icall.c: Fix some memory leaks.
2577
2578 2008-05-29  Dick Porter  <dick@ximian.com>
2579
2580         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
2581         async socket operations from the pending list when a socket
2582         closes.  Leaving it until the threadpool services the event
2583         exposes a race condition when a socket descriptor is reused.
2584         Fixes bug 377589.
2585
2586 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2587
2588         * object.c: Fix negative index check for array alocation.
2589
2590 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2591
2592         * icall.c, marshal.c: Delegate wrappers should skip visibility.
2593         This check is performed by the verifier for IL created delegates
2594         and by Delegate::CreateDelegate for programatically created ones.
2595         Fixes #372406.
2596
2597 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2598
2599         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
2600         Fix code to use mono_array_size_t instead of int.
2601
2602         Based on patch by Luis F. Ortiz.
2603         Contributed under X11 license.
2604         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2605
2606 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2607
2608         * icall.c: Added ves_icall_System_Array_GetLongLength and
2609         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
2610         arrays.
2611
2612         * icall.h: Export both new functions.
2613
2614         Based on patch by Luis F. Ortiz.
2615         Contributed under X11 license.
2616         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2617
2618 2008-05-28  Martin Baulig  <martin@ximian.com>
2619
2620         The debugger now requires exactly r103463.
2621
2622         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
2623         This version is not supported by the debugger, wait for 72.
2624
2625 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2626
2627         * object.h: Changed array related functions to use
2628         mono_array_size_t instead of guint32. Forgot to commit this file.
2629
2630         Patch by Luis F. Ortiz.
2631         Contributed under X11 license.
2632         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2633
2634
2635 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2636
2637         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
2638         don't define it. Use the number literal instead.
2639
2640 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2641
2642         * icall.c: Changed array related functions to use
2643         mono_array_size_t instead of guint32.
2644
2645         * icall.c (ves_icall_System_Array_GetLength): Check for length
2646         overflow under MONO_BIG_ARRAYS.
2647
2648         Based on patch by Luis F. Ortiz.
2649         Contributed under X11 license.
2650         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2651
2652 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2653
2654         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
2655
2656         Based on patch by Luis F. Ortiz.
2657         Contributed under X11 license.
2658         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2659
2660 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2661
2662         * object.c, object.h: Changed array related functions to use
2663         mono_array_size_t instead of guint32.
2664
2665         Patch by Luis F. Ortiz.
2666         Contributed under X11 license.
2667         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2668
2669 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2670
2671         * object.h: Introduced mono_array_size_t typedef. This must be used
2672         in all places an array length is expected. This is 64bits wide if
2673         MONO_BIG_ARRAYS is enabled.
2674
2675         Patch by Luis F. Ortiz.
2676         Contributed under X11 license.
2677         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2678
2679 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
2680
2681         * security-manager.c class.c: Set the class exception info by calling
2682         mono_class_set_failure ().
2683
2684         * class.c (mono_class_get_exception_data): New accessor function.
2685         (mono_class_set_failure): Store exception_data in the property hash.
2686
2687         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
2688         the struct as a property.
2689
2690         * loader.c (mono_get_method_full): Store the lookup result for method
2691         tokens in method_cache, the others in methodref_cache to decrease the memory
2692         usage of hash tables.
2693
2694         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
2695         (mono_image_init): method_cache is lazy inited now.
2696
2697         * metadata-internals.h (struct _MonoImage): Change method_cache to
2698         a MonoValueHashTable, add a separate methodref_cache.
2699
2700 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
2701
2702         * number-formatter.h: Fix tables to avoid arithemtic overflow in
2703           Double.ToString as exposed by Bug #383531.
2704
2705 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
2706
2707         * number-formatter.h: Make some tables static.
2708
2709         * class.c (mono_method_set_generic_container): New accessor function.
2710         (mono_method_get_generic_container): Ditto.
2711
2712         * class-internals.h (struct _MonoMethod): Remove rarely used 
2713         'generic_container' field, store it in the property hash instead. Add 
2714         'is_generic' boolean field instead.
2715
2716         * image.c (mono_image_init): Initialize property_hash.
2717         (mono_image_close): Destroy property_hash.
2718
2719         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
2720         hold rarely used fields of runtime structures belonging to this image.
2721
2722         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
2723         to get/set method->generic_container.
2724
2725         * loader.c (mono_get_method_from_token): Avoid loading the method header for
2726         generic methods.
2727
2728 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
2729
2730         * class.c (mono_class_inflate_generic_method_full): Don't increase
2731         mono_stats.inflated_method_count for methods found in the cache.
2732
2733         * threads.c (mono_thread_request_interruption): Add a comment about 
2734         QueueUserAPC ().
2735
2736 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
2737
2738         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
2739         interface_offsets_packed table.
2740         
2741         * class.c (mono_class_init): Remove some dead code.
2742
2743         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
2744         mono_class_setup_vtable () when CAS is active to detect security problems.
2745
2746 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
2747
2748         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
2749
2750         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
2751         parameters as it's irrelevant for delegate checking.
2752
2753 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
2754
2755         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
2756
2757         * class.c (mono_class_init): Control the creation of a generic vtable using
2758         a global which is true by default, but set to false by the runtime startup code.
2759         
2760         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
2761         Disabled for now since it breaks the embedding API.
2762         Move the setup of class->methods for arrays to mono_class_setup_methods ().
2763         (mono_class_setup_methods): Add a memory barrier.
2764
2765         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
2766         when mono_class_init () doesn't compute the generic vtable.
2767         
2768 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
2769         * profiler.c: Added mono_profiler_install_statistical_call_chain,
2770         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
2771         to support call chains (backtrace) in the stat profiler.
2772         * profiler.c, profiler-private.h: Likewise.
2773
2774 2008-05-22  Mark Probst  <mark.probst@gmail.com>
2775
2776         * generic-sharing.c: Init generic class when a method of it is
2777         requested via a runtime generic context.
2778
2779 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
2780
2781         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
2782
2783         * reflection.c (mono_type_get_object): Add a FIXME.
2784
2785         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
2786
2787         * class.c (mono_class_get_method_by_index): New helper function, returning an
2788         entry in the class->methods array.
2789
2790 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
2791
2792         * class.c (mono_class_init): Only do the array optimization for szarrays. 
2793         Avoid creating a generic vtable for generic instances as well.
2794         (mono_class_get_method_from_name_flags): Don't search in the metadata for
2795         generic instances.
2796
2797 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
2798
2799         * loader.c (mono_get_method_constrained): Inflate the signature
2800         with class context. Fix #325283.
2801
2802 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
2803
2804         * object.c (mono_class_create_runtime_vtable): Add a comment.
2805
2806         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
2807         where needed.
2808         (setup_interface_offsets): Handle the case when this is called twice for arrays.
2809         (mono_class_setup_vtable_general): Add an assert.
2810         (mono_class_init): Avoid creating a generic vtable for arrays.
2811
2812         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
2813         here, let mono_class_init () do that.
2814
2815         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
2816         interfaces in mscorlib.
2817
2818         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
2819         interfaces. Add some comments.
2820         (mono_class_init): Call mono_class_setup_methods () here since it is no
2821         longer called by mono_class_setup_vtable ().
2822
2823         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
2824         not set in class->vtable.
2825         (mono_class_create_runtime_vtable): Reenable the disabled code.
2826
2827         * object.c (mono_class_create_runtime_vtable): Disable the last change for
2828         now as it causes some test failures.
2829
2830         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
2831         if using the vtable trampoline. Also remove some strange code which put the
2832         generic methods themselves into the vtable slots. Remove the AOT init_vtable
2833         stuff as it is no longer needed.
2834
2835 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2836
2837         * pedump.c: Give make --verify all option check code as well.
2838         Using --verify code won't check for metadata now.
2839
2840 2008-05-19  Martin Baulig  <martin@ximian.com>
2841
2842         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
2843
2844         * mono-debug.c
2845         (_mono_debug_using_mono_debugger): New global variable; it's set
2846         directly by the debugger, so mono_debug_using_mono_debugger() also
2847         works after attaching.
2848
2849 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
2850
2851         * object.c (mono_class_create_runtime_vtable): Use memory barriers
2852         as we do double checked locking on MonoClass::runtime_info and
2853         MonoClassRuntimeInfo::domain_vtables.
2854
2855 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
2856
2857         * debug-helpers.c (print_field_value): Fix a warning.
2858
2859 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
2860
2861         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
2862         set in the AOT case.
2863
2864 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
2865
2866         * class.c (mono_class_setup_vtable_general): Use memory barriers
2867         as we do double checked locking on MonoClass::vtable.
2868
2869 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
2870
2871         * reflection.c (resolve_object): Inflate only if the generic context
2872         is not null. Fixes #389886.
2873
2874 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
2875
2876         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
2877         instead of g_free.
2878
2879         Code is contributed under MIT/X11 license.
2880
2881 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
2882
2883         * class.c: Revert unrelated change.
2884
2885 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
2886
2887         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
2888         a generic instantiation, use mono_class_from_mono_type instead of playing
2889         with MonoType directly.
2890
2891 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
2892
2893         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
2894         checks must ignore generic instantiations, so mono_class_has_parent is not
2895         suitable. Fixes #390128.
2896
2897 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
2898
2899         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
2900         it to avoid registering tokens during metadata generation. Fixes #390023.
2901
2902 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
2903
2904         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
2905         consistent.
2906
2907         Contributed under MIT/X11 license.
2908
2909 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
2910
2911         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
2912         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
2913         to fixup the EXE image.
2914         (mono_cleanup): Use mono_close_exe_image.
2915         (mono_close_exe_image): New function.
2916         * image.c: Include "marshal.h".
2917         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
2918         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
2919         counting when the image is loaded outside of mono_image_open_full. Set status
2920         based on GetLastError.
2921         * coree.c: Include required headers. Add init_from_coree.
2922         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
2923         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
2924         (_CorExeMain): Set init_from_coree.
2925         (CorExitProcess): Only call ExitProcess for now.
2926         (CorBindToRuntimeEx): New stub implementation.
2927         (CorBindToRuntime): New function.
2928         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
2929         (MonoFixupExe): ILONLY executables require no fixups.
2930         (mono_set_act_ctx): New function to set activation context.
2931         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
2932         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
2933         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
2934         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
2935         as MONO_INTERNAL.
2936         * domain-internals.h: Add mono_close_exe_image.
2937
2938         Contributed under MIT/X11 license.
2939
2940 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
2941
2942         * metadata.c (mono_metadata_compute_size): Correctly calculate field
2943         size for generic param and event tables. Fixes #388977.
2944
2945 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
2946
2947         * loader.c (mono_method_signature): Use memory barriers because of the double
2948         checked locking pattern.
2949
2950         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
2951         aborting or aborted as well. Fixes #376391.
2952         
2953         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
2954         existing runtime state in the Suspend handler during shutdown.
2955
2956 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
2957
2958         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
2959
2960         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
2961         which are starting up or shutting down.
2962
2963         * threads.c (mono_threads_set_shutting_down): Don't return a value since
2964         this function never returns if the runtime is already shutting down.
2965
2966         * icall.c (ves_icall_System_Environment_Exit): Update after 
2967         mono_threads_set_shutting_down () signature change.
2968         
2969 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
2970
2971         * class.c: Added can_access_instantiation to verify if the instantiation
2972         is visible. Fix access check for nested types as they returned TRUE
2973         before doing type and generic instantiation visibility checks.
2974
2975 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
2976
2977         * reflection.c (mono_reflection_create_generic_class): The created type
2978         must have a different container from its TypeBuilder. Otherwise they
2979         will end sharing generic arguments, which is wrong.
2980
2981         Due to the sharing, making a generic instance of the created type using
2982         the TypeBuider generic arguments resulted in the generic type definition
2983         been returned, which is wrong as well.
2984
2985         As a bonus the code was leaking the type_params array. This memory should
2986         be allocated from the image mempool.
2987
2988         This fixes bug #354047.
2989
2990 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
2991
2992         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
2993         to here         as they are now used in assembly.c new code.
2994         Added a skipverification flag to MonoAssembly.
2995         New internal function mono_assembly_has_skip_verification.
2996
2997         * assembly.c: New function mono_assembly_has_skip_verification. It checks
2998         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
2999         part of #387274.
3000
3001 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
3002
3003         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
3004         needed. Fixes #387034.
3005
3006         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
3007
3008 2008-05-06  Miguel de Icaza  <miguel@novell.com>
3009
3010         * assembly.c (mono_assembly_load_reference): Prevent crash while
3011         disassembling Silverlight 2.0 executables while we still do not
3012         have GACed libraries.
3013
3014 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
3015
3016         * reflection.c: Special case generic type definitions as well. Fixes #383444.
3017
3018 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
3019
3020         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
3021         of the dynamic case. Fixes #387404.
3022
3023 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3024
3025         *verify.c (mono_verifier_is_class_full_trust): If under
3026         verify_all and the verifier mode was not set, only
3027         gac and corlib types are fulltrust. This makes --verify-all
3028         usable to detect unverifiable code, which is the expected
3029         use case.
3030
3031 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3032
3033         * verify.h: Ops, commited the header with debug
3034         enabled.
3035
3036 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3037
3038         * verify.c (merge_stack): Use the new value on unverifiable
3039         stack merges.
3040
3041         * verify.c (verify_type_compatibility_full): Comparison
3042         of nullable types can't use mono_class_is_assignable_from.
3043
3044         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
3045         that makes all verification errors be reported.
3046
3047         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
3048         mono_method_verify.
3049
3050 2008-05-05  Robert Jordan  <robertj@gmx.net>
3051
3052         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
3053         support for value types. See #386415.
3054
3055         * object.c: comments.
3056
3057         Code is contributed under MIT/X11 license.
3058
3059 2008-05-05  Martin Baulig  <martin@ximian.com>
3060
3061         * debug-mono-symfile.h
3062         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
3063         for old pre-terrania symbol files.
3064
3065 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
3066
3067         * mono-config.c: Add ppc64 architecture.
3068
3069         Code is contributed under MIT/X11 license.
3070
3071 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
3072
3073         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
3074           PPC64 uses function descriptors as well.
3075
3076         Code is contributed under MIT/X11 license.
3077
3078 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
3079
3080         * object.c (compute_class_bitmap): Ignore literal static fields.
3081
3082         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
3083         var has an invalid format.
3084         (describe_ptr): Add some sanity checks for the vtable.
3085         (add_nursery_frag): Clear unused nursery fragments.
3086         (major_collection): Clear all remaining nursery fragments.
3087
3088 2008-05-03  Robert Jordan  <robertj@gmx.net>
3089
3090         * image.c, metadata-internals.h: add thunk_invoke_cache.
3091
3092         * marshal.c, marshal.h: implement
3093         mono_marshal_get_thunk_invoke_wrapper ().
3094
3095         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
3096
3097         Code is contributed under MIT/X11 license.
3098
3099 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
3100
3101         * verify.c (do_leave): Empty the stack.
3102
3103 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
3104
3105         * class.c (mono_class_is_assignable_from): Variance
3106         doesn't work between reference and value types. For example,
3107         given type C<T+>, C<int32> is not assignable to C<object>.
3108         Break the argument checking loop on first error. 
3109
3110 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
3111
3112         * icall.c : base64_to_byte_array() needs some more strict
3113           check for sequence of '=' characters. Patch by Santa
3114           Marta (http://deee.g.hatena.ne.jp/santamarta).
3115
3116           Contributed under MIT/X11 license.
3117           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
3118
3119 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
3120
3121         * domain.c: Disable LoadLibrary support to fix Win32 build.
3122
3123         Code is contributed under MIT/X11 license.
3124
3125 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
3126
3127         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
3128         to help with cache behaviour.
3129
3130 2008-05-01  Miguel de Icaza  <miguel@novell.com>
3131
3132         * appdomain.c (mono_domain_from_appdomain): Add new accessor
3133         method. 
3134
3135 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
3136
3137         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
3138
3139 2008-05-01  Dick Porter  <dick@ximian.com>
3140
3141         * process.c (process_get_fileversion): Only pass 16 bits of
3142         language ID to VerLanguageName.  Fixes bug 381204.
3143
3144 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3145
3146         * verify.c (mono_method_verify): Fix the comparison
3147         operator for code bounds check.
3148
3149 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3150
3151         * verify.c (mono_method_verify): Check the bounds of
3152         all access of the code array.
3153
3154 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
3155
3156         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
3157
3158 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
3159
3160         * image.c (mono_image_strong_name_position): Fix return value when the rva is
3161         not valid.
3162
3163 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
3164
3165         * loader.c (mono_get_method_from_token, mono_method_signature): Add
3166         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
3167         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
3168         fixup main EXE images when using mono.exe for mixed-mode assembly support.
3169         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
3170         mono_runtime_load.
3171         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
3172         runtime initialization from metadata.
3173         * assembly.c: Remove obsolete ceGetModuleFileNameA.
3174         (mono_set_rootdir): Use mono_get_module_file_name.
3175         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
3176         handles.
3177         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
3178         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
3179         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
3180         MonoCLIImageInfo. Add support for module handles.
3181         (load_cli_header): Update mono_cli_rva_image_map signature.
3182         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
3183         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
3184         (mono_image_rva_map): Add support for module handles.
3185         (mono_image_ensure_section_idx): Add support for module handles.
3186         (mono_image_close): Add support for module handles.
3187         (do_load_header): Add support for module handles.
3188         (mono_image_open_from_module_handle): New function for internal use.
3189         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
3190         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
3191         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
3192         handles.
3193         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
3194         * image.h: Add mono_image_fixup_vtable.
3195         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
3196         support.
3197         * coree.h: New file.
3198         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
3199         unsupported native code.
3200         (mono_marshal_set_callconv_from_modopt): New function splitted from
3201         mono_marshal_get_managed_wrapper.
3202         (mono_marshal_get_managed_wrapper): Use
3203         mono_marshal_set_callconv_from_modopt.
3204         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
3205         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
3206         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
3207         that results in a deadlock when the runtime is loaded in _CorDllMain.
3208         * Makefile.am: Add coree.c and coree.h.
3209
3210         Contributed under MIT/X11 license.
3211
3212 2008-04-28  Mark Probst  <mark.probst@gmail.com>
3213
3214         * generic-sharing.c: Search for type arguments in array element
3215         types as well.
3216
3217 2008-04-28  Mark Probst  <mark.probst@gmail.com>
3218
3219         * class-internals.h, generic-sharing.c: New, small runtime generic context.
3220
3221         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
3222
3223         * object.c: Don't setup the RGCTX when the vtable is created,
3224         because we're setting it up lazily now.
3225
3226 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
3227
3228         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
3229         64 bit support.
3230
3231 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3232
3233         * verify.c (verify_class_for_overlapping_reference_fields): 
3234         If class is under fulltrust allow reference types to overllap
3235         if they have the same RVA.
3236
3237 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3238
3239         * pedump.c: Added new flag valid-only, that makes the verifier
3240         behaves just like --security=validil. It won't fail type load
3241         due to unverifiable restrictions.
3242
3243 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3244
3245         * class-internals.h (struct MonoMethod): Added a verification_success
3246         field to cache verifier executions. Reduced MonoMethod:slot size by
3247         one bit.
3248
3249 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
3250
3251         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
3252         instead of a 'vt' argument to save an indirection and to allow these to be used
3253         for valuetypes.
3254         (scan_vtype): New helper function to scan an area using a gc descriptor.
3255         (mono_gc_wbarrier_value_copy): Implement this.
3256         (handle_remset): Add support for REMSET_VTYPE.
3257         (find_in_remset_loc): Ditto.
3258         (mono_gc_base_init): Allow some debugging options to be controlled through the
3259         use of the MONO_GC_DEBUG env variable.
3260         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
3261         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
3262
3263 2008-04-23  Martin Baulig  <martin@ximian.com>
3264
3265         * domain.c (mono_domain_create): Move the call to
3266         mono_debug_domain_create() down, after allocating the domain id.
3267
3268 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3269
3270         verify.c (verify_class_for_overlapping_reference_fields): Skip
3271         static fields while verifying for overlapping fields as they
3272         don't matter at all.
3273
3274 2008-04-23  Marek Habersack  <mhabersack@novell.com>
3275
3276         * domain-internals.h: added a declaration of
3277         mono_make_shadow_copy.
3278
3279         * assembly.c (mono_assembly_open_full): shadow copying of
3280         assemblies moved to here, so that all the assemblies within the
3281         application domain's private binary directories can be
3282         processed. Fixes bug #380546
3283
3284         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
3285         mono_make_shadow_copy and made non-static. The decision whether
3286         to shadow-copy an assembly is made based on its location - it's
3287         copied if it's in one of the private application domain binary
3288         directories and its different to the target file in the shadow
3289         directory. Fixes bug #380546
3290
3291 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
3292
3293         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
3294
3295         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
3296         types.
3297
3298         * reflection.c (mono_image_create_token): Handle 
3299         Method/ConstructorOnTypeBuilderInst.
3300         (resolve_object): Ditto.
3301         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
3302         so it can be called from resolve_object. Also handle the case when the inflated
3303         class already has its methods setup.
3304
3305 2008-04-21  Martin Baulig  <martin@ximian.com>
3306
3307         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
3308
3309 2008-04-20  Geoff Norton  <gnorton@novell.com>
3310
3311         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
3312         pointer dereference.
3313
3314 2008-04-15  Marek Habersack  <mhabersack@novell.com>
3315
3316         * appdomain.c (try_load_from): if IOMAP is in effect, call the
3317         portability API to look up the assembly file. Fixes behavior in
3318         situations when the application has a bin/ directory, but the
3319         assembly search patch refers to Bin/ (and thus the requested file
3320         name is Bin/SomeLibrary.dll). Fixes bug #379888
3321
3322 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3323
3324         verify.c (mono_type_is_generic_argument): Extracted this check
3325         from a dozen places to here.
3326
3327         verify.c: Fixed all issues related to boxing generic arguments
3328         and their constraints.
3329
3330 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3331
3332         verify.c (mono_class_interface_implements_interface): Fix win32 build.
3333
3334 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
3335
3336         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
3337         isn't finished yet. Fixes #363447.
3338
3339 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
3340
3341         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
3342         Fixes #346419.
3343
3344 2008-04-13  Jb Evain  <jbevain@novell.com>
3345
3346         * domain.c: update the 2.1 profile versions.
3347         Merged from the Moonlight 2 branch.
3348
3349 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
3350
3351         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
3352         mscorlibs for the non-refonly case as well.
3353
3354         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
3355         in mono_assembly_load_from_full (). Fixes #378924.
3356
3357 2008-04-11  Geoff Norton  <gnorton@novell.com>
3358
3359         * icall.c: The global extern environ doesn't exist on Mac.  We
3360         need to call NSGetEnviron instead.
3361
3362 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3363
3364         verify.c: Add generic method constraint verification.
3365
3366 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3367
3368         class.c (mono_class_inflate_generic_method_full): Add a long
3369         explanation to the is_mb_open hack. Remove the FIXME.
3370
3371 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3372
3373         * verify.c (mono_method_verify): Mark all unknown opcodes
3374         as invalid. Mark jmp as unverifiable.
3375
3376 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3377
3378         * verify.c: Add code to do type constraint verification on class instances.
3379
3380         * verify.c (mono_verifier_verify_class): Use the type constraint 
3381         verification code.
3382
3383 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3384
3385         * class.c (mono_class_get_field_default_value): Don't pass cindex
3386         as hint to mono_metadata_get_constant_index. The local is not initialized
3387         and should contain garbage most of the time. This could only work
3388         with a lot of luck.
3389
3390 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
3391
3392         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
3393
3394 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
3395
3396         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
3397
3398         * class.c (mono_class_from_generic_parameter): Save the token of the
3399         generic param in MonoClass::sizes.generic_param_token.
3400
3401         * reflection.c (mono_custom_attrs_from_class): If the class type is
3402         VAR or MVAR retrieve the attributes of the generic param.
3403
3404 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3405
3406         * class.c (mono_class_init): Do class verification if the verifier
3407         is enabled.
3408
3409 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3410
3411         * verify-internal.h: Added mono_verifier_verify_class.
3412
3413         * verify.c: Added mono_verifier_verify_class. It checks for
3414         classes with explicit layout that have overlapping reference fields.
3415
3416         * pedump.c: Init the verifier state prior to verification. Fixed
3417         command line arguments.
3418
3419 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3420
3421         * Makefile.am: Added verify-internals.h, hopefully fix the build.
3422
3423 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
3424
3425         * verify-internals.h: Fix a warning.
3426
3427 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
3428
3429         * verify-internals.h: New header with the verifier configuration
3430         extracted from mini.c.
3431
3432         * verify.c: Implemented the new functions exported by verify-internals.h.
3433
3434 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
3435
3436         * verify.c: Add proper verification of ckfinite.
3437
3438 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
3439
3440         * verify.c (do_conversion): Improved error message to something
3441         more meanfull.
3442
3443         * verify.c (check_is_valid_type_for_field_ops): Fix to work
3444         with primitive types.
3445
3446 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
3447
3448         * verify.c: Added tail prefix checking. Marked icall
3449         as unverifible.
3450
3451 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
3452
3453         * verify.c: Fix the detection of branches to the middle
3454         of an instruction.
3455
3456 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
3457
3458         * verify.c: Implemented verification of volatile. and
3459         unaligned. prefix. Check if a type is valid after retrieving it.
3460
3461 2008-04-01  Dick Porter  <dick@ximian.com>
3462
3463         * process.c (process_get_fileversion): If there's no string block,
3464         set the file language to en_US.  Fixes the other new part of bug
3465         374600.
3466
3467 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
3468
3469         * class.c: New functions mono_method_can_access_field_full and
3470         mono_method_can_access_method_full. They perform type visibility
3471         and type site check.
3472
3473         * class-internal.h: Added exported functions.
3474
3475         * verify.c: Use new functions to implement proper visibility checks.
3476
3477 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
3478
3479         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
3480
3481 2008-03-28  Dick Porter  <dick@ximian.com>
3482
3483         * process.c (process_get_fileversion): Use the first language ID
3484         we see, rather than insisting on an invariant language.  Fixes bug
3485         374600.
3486
3487 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
3488
3489         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
3490         the streams to fix reading of invalid memory later.
3491
3492         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
3493         to ease debugging.
3494
3495 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
3496
3497         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
3498         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
3499
3500 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
3501         * threads.h: Added MonoThreadManageCallback type and
3502         mono_thread_set_manage_callback prototype
3503         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
3504         (used to store the mono_thread_manage callback).
3505         * threads.c: Added mono_thread_set_manage_callback, and handle
3506         "MonoThread->manage_callback" in build_wait_tids.
3507
3508 2008-03-26  Dick Porter  <dick@ximian.com>
3509
3510         * process.c (process_get_fileversion): Set FileVersionInfo strings
3511         to Empty when the resource doesn't have the particular info.
3512         Fixes bug 355717.
3513
3514 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
3515
3516         * verify.c (mono_method_verify): Proper prefix validation.
3517
3518 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
3519
3520         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
3521         itself in a separate argument instead of throwing them. Fixes #373448.
3522
3523         * appdomain.c: Bump corlib version.
3524
3525 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
3526
3527         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
3528
3529 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
3530
3531         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
3532         version macros.
3533
3534 2008-03-20  Mark Probst  <mark.probst@gmail.com>
3535
3536         * generic-sharing.c, class-internals.h: Code for putting
3537         reflection types into the runtime generic context.
3538
3539 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
3540
3541         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
3542         Fixes #340662. 
3543
3544
3545 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
3546
3547         * verify.c (VerifyContext): Added instruction prefix data to the struct.
3548
3549         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
3550
3551         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
3552
3553         * verify.c (do_cast): Let the result value keep the boxed status.
3554
3555         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
3556
3557 2008-03-17  Jb Evain  <jbevain@novell.com>
3558
3559         * reflection.c: when running on a 2.0 runtime, emit
3560         unconditionally the #~ header version as 2.0, and the
3561         CLI header version as 2.5, for symmetry's sake with csc.
3562
3563 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
3564
3565         * class.c: Remove the unused cache_interface_offsets stuff.
3566
3567         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
3568         profiler.c: Fix warnings.
3569
3570 2008-03-16  Mark Probst  <mark.probst@gmail.com>
3571
3572         * generic-sharing.c, class-internals.h: Support for putting
3573         methods into the runtime generic context.
3574
3575 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
3576
3577         * class.c (mono_class_setup_fields): Ignore calls made to this function for
3578         classes which are generic instances of not-yet finished typebuilders. Fixes
3579         #351172.
3580
3581         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
3582
3583 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
3584
3585         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
3586
3587         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
3588         field, replace it with a hash table in MonoDynamicImage.
3589
3590         * reflection.c (inflate_mono_method): Access the generic definition object from
3591         image->generic_def_objects instead of imethod->reflection_info.
3592
3593         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
3594
3595         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
3596         
3597         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
3598         function in reflection.c so it is easier to keep in sync with the dynamic image
3599         creation code.
3600
3601         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
3602         mono_image_close ().
3603
3604 2008-03-15  Mark Probst  <mark.probst@gmail.com>
3605
3606         * class.c (mono_class_generic_sharing_enabled): Disable generic
3607         sharing for all architectures except AMD64 and x86 to fix build.
3608
3609 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
3610
3611         * verify.c: Use the generic definition MonoGenericContext when available.
3612         Remove code for checking generics instance compatibility in favor of
3613         mono_class_is_assignable_from.
3614
3615 2008-03-14  Mark Probst  <mark.probst@gmail.com>
3616
3617         * marshal.c, marshal.h, metadata-internals.h, image.c,
3618         wrapper-types.h: New wrapper for invoking a shared static method
3619         without having to pass the runtime generic context argument.
3620
3621 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
3622
3623         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
3624
3625 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
3626
3627         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
3628         
3629         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
3630         create a token from a FieldOnTypeBuilderInst.
3631         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
3632         (resolve_object): Ditto.
3633
3634         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
3635         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
3636
3637 2008-03-14  Martin Baulig  <martin@ximian.com>
3638
3639         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
3640
3641         * debug-mono-symfile.h
3642         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
3643         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
3644
3645 2008-03-10  Martin Baulig  <martin@ximian.com>
3646
3647         * debug-mono-symfile.h
3648         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
3649         `lexical_block_table_offset'.
3650         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
3651         `lexical_blocks'.
3652         (MonoSymbolFile): Added `version'.
3653
3654         * mono-debug.h
3655         (MonoDebugLexicalBlockEntry): Removed.
3656         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
3657         `lexical_blocks'.
3658
3659         * mono-debug.c (mono_debug_add_method): Don't compute lexical
3660         blocks here; the debugger now does this internally.
3661
3662 2008-02-27  Martin Baulig  <martin@ximian.com>
3663
3664         * object.c (mono_runtime_exec_main): Call
3665         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
3666         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
3667
3668 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
3669
3670         * verify.c (verify_type_compatibility_full): Allow native int to be converted
3671         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
3672
3673 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
3674
3675         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
3676         ldftn with a virtual method.
3677
3678 2008-03-13  Geoff Norton  <gnorton@novell.com>
3679
3680         * decimal.c:  Only include memory.h if the platform has it.
3681
3682 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
3683
3684         * assembly.c, class.c, metadata-internals.h: make sure public key
3685         tokesns are compared in a case-insensitive way. Also, all
3686         the lookups in the GAC use a lowercase public key token
3687         (gaacutil already does the lowercasing on install). Fixes
3688         bug #369541.
3689
3690 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
3691
3692         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
3693         and return value.
3694
3695 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
3696
3697         * image.c: when someone loads a mscorlib from a file, return the
3698         currently loaded mscorlib (fixes bug #369253).
3699
3700 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
3701
3702         * class.c: handle types with no parents by forcing them to have
3703         System.Object as a parent and marking them as broken (this currently
3704         allows the first part of bug #369173 to work as well, likely because
3705         we don't check for typeload exceptions everywhere yet).
3706
3707 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
3708
3709         * class.c: more complete check that types belong to corlib
3710         (fixes second part of bug #369173).
3711
3712 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
3713
3714         * generic-sharing.c:  Including glib.h for the MSVC builds to define
3715           "inline" to "__inline" before including mono-membar.h.
3716           
3717         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
3718           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
3719           MSVC builds.
3720
3721         Contributed under MIT/X11 license.
3722
3723 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
3724
3725         * verify.c (do_invoke_method): Remove return type validation.
3726
3727         * verify.c (do_ret): Do return type validation at return site instead of
3728         call site.
3729
3730 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
3731
3732         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
3733
3734         * verify.c: Some todos cleaned and improved a few error messages.
3735
3736 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
3737
3738         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
3739
3740 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
3741
3742         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
3743         system types correctly.
3744
3745         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
3746         function.
3747
3748 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
3749
3750         * assembly.c (build_assembly_name): Fix a warning.
3751
3752 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
3753
3754         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
3755         the called function takes an object type argument. Fixes storing or
3756         valuetypes across remoting as well as reducing memory usage.
3757         * image.c, metadata-internals.h: remove now unused ldfld_remote and
3758         stfld_remote wrapper caches.
3759
3760 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
3761
3762         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
3763         is not found.
3764
3765         * reflection.c (mono_image_register_token): New helper function to save
3766         a token->object mapping.        
3767
3768         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
3769         managed code.
3770
3771         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
3772         one dimension arrays. Fixes #367670.
3773         (mono_reflection_get_type_internal): Ditto.
3774
3775 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
3776
3777         * marshal.c: mono_load_remote_field_new() always returns object.
3778         so use the proper signature (fixes bug #366445).
3779
3780 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
3781         
3782         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
3783         add an 'inline_failure' flag instead.
3784
3785 2008-03-04  Mark Probst  <mark.probst@gmail.com>
3786
3787         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
3788         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
3789         contains the location of "this", used for exception handling.
3790
3791 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
3792
3793         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
3794         their size on all platforms for perf reasons.
3795
3796 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3797
3798         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
3799         object-internal.h
3800
3801         * object-internal.h: Same.
3802
3803 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3804
3805         * reflection.h: Fix the build I just broke.
3806
3807 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3808
3809         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
3810         Test if a token is valid, this remove explicit usage of 
3811         MonoDynamicImage::tokens from the verifier code.
3812
3813         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
3814
3815         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
3816         instead of direct access to MonoDynamicImage::tokens.
3817
3818 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3819
3820         * verify.c (token_bounds_check): Fix the build I just broke.
3821
3822 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3823
3824         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
3825
3826         * verify.c (verifier_load_method): Fixed the errors message.
3827
3828         * verify.c (mono_method_verify): Fixed a debug message.
3829
3830 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
3831
3832         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
3833         mono-perfcounters.h, class-internals.h: support for predefined
3834         writable counters, query of categories and counters, bugfixes.
3835
3836 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
3837
3838         * verify.c (do_refanytype): Verify the refanytype opcode.
3839
3840         * verify.c (mono_method_verify): Use do_refanytype.
3841
3842 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
3843
3844         * verify.c (do_mkrefany): Verify the mkrefany opcode.
3845
3846         * verify.c (mono_method_verify): Use do_mkrefany.
3847
3848 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
3849
3850         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
3851         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
3852         implementation.
3853
3854 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
3855
3856         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
3857         the type load exception.
3858
3859 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
3860
3861         * verify.c: Added a few FIXME for method signatures
3862
3863         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
3864         of mono_method_get_signature and get vararg call working. Removed unused
3865         checks for return value.
3866
3867         * verify.c (do_refanyval): Verify the refanyval opcode.
3868
3869         * verify.c (mono_method_verify): Implemented verification of arglist and
3870         use do_refanyval.
3871
3872 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
3873
3874         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
3875         vtypes to marshal.c.
3876
3877         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
3878         it works for AOT as well.
3879
3880 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
3881
3882         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
3883         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
3884         the system time is adjusted.
3885
3886 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
3887
3888         * icall.c, icall-def.h: use the new time functions (fixes the
3889         non-monotonic behaviour of TickCount).
3890
3891 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
3892
3893         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
3894         it breaks the build.
3895         
3896         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
3897         cattr is not finished yet.
3898
3899 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
3900
3901         * verify.c: Proper token validation for field, method and type.
3902
3903 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
3904
3905         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
3906
3907         * loader.c (method_from_memberref): Generate type load error instead of method missing
3908         if the type is not found.
3909
3910 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
3911
3912         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
3913         some of the conversions caused the generation of a marshal directive exception.
3914
3915 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
3916
3917         verify.c: Report which exception should be thrown by the JIT.
3918         Added a lot of FIXME notes.
3919
3920 2008-02-22  Mark Probst  <mark.probst@gmail.com>
3921
3922         * generic-sharing.c: Runtime generic context slots are not
3923         instantiated on init anymore.  Instead, provide function to do the
3924         instantiating on demand.
3925
3926         * class-internals.h: Added vtable to runtime generic context.
3927         Macros for encoding direct and indirect slot offsets in one
3928         guint32.
3929
3930 2008-02-21  Mark Probst  <mark.probst@gmail.com>
3931
3932         * object.c, generic-sharing.c: Moved some generic sharing code
3933         from object.c to generic-sharing.c.
3934
3935         * generic-sharing.c: Added support for extensible runtime generic
3936         context.
3937
3938         * metadata-internals.h: Two new hash tables in MonoImage for
3939         extensible runtime generic context support.
3940
3941         * domain.c: Unregister generic vtables upon domain unloading.
3942
3943         * image.c: Destroy new hash tables upon image unloading.
3944
3945         * metadata.c: Unregister generic subclasses upon image unloading.
3946
3947         * class-internals.h: New data structure for runtime generic
3948         context template.  New fields in the runtime generic context for
3949         extensible part.
3950
3951         * Makefile.am: Added generic-sharing.c.
3952
3953 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
3954
3955         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
3956         there is a pending loader exception, raise it.
3957
3958         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
3959         same.
3960
3961         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
3962         same.
3963
3964         Fixes #363450.
3965
3966 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
3967
3968         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
3969
3970         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
3971         
3972         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
3973         ref-only requests for compatibility with MS.
3974
3975 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
3976
3977         * reflection.c (mono_custom_attrs_from_method): Don't silently
3978         return an empty list for generic method instances.
3979         (mono_custom_attrs_from_param): Likewise.
3980
3981 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
3982             Raja R Harinath  <harinath@hurrynot.org>
3983
3984         Fix #354757
3985         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
3986         * class.c (mono_class_inflate_generic_method_full): Initialize it
3987         when a fully-open method is instantiated.
3988         * metadata.c (inflated_method_equal, inflated_method_hash): Update
3989         to new field.
3990         * reflection.c (inflate_mono_method): Don't create a temporary context.
3991
3992 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
3993
3994         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
3995         Compute correct value, to prepare for imethod->reflection_info going away.
3996
3997 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
3998
3999         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
4000
4001 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4002
4003         * verify.c: Implement skip visibility flag.
4004
4005 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4006
4007         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
4008         which contains an extra field to tell the kind of exception that should be thrown.
4009
4010         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
4011
4012 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
4013
4014         * loader.c (mono_method_get_param_names): Initialize 'klass' after
4015         'method' is updated.
4016
4017 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
4018
4019         * class.c (mono_class_layout_fields): Set class->min_align for classes using
4020         explicit layout as well. Fixes #360375.
4021
4022 2008-02-11  Geoff Norton  <gnorton@novell.com>
4023
4024         * loader.c: Guard and dereference against inflated generic methods
4025
4026 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
4027
4028         * class.c: Include Retargetable spec in assembly name.
4029         * assembly.c: Always include PublicKeyToken spec in assembly name
4030         (with value "null" if assembly is not signed), and include
4031         Retargetable spec.
4032         * icall-def.h: Added icall for Assembly.get_fullname.
4033         * icall.c: Added icall returning the fullname of an assembly.
4034
4035 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
4036
4037         * class.c (mono_class_setup_vtable_general): Add a missing call to
4038         mono_class_setup_methods () which is needed in the AOT case.
4039
4040 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
4041
4042         * verify.c (mono_type_get_stack_name): Added. Return the name for the
4043         stack type of the given MonoType.
4044
4045         * verify.c (verify_type_compatibility_full): Handle the void type.
4046
4047         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
4048         way stack merging works.
4049
4050         * verify.c (store_local): Improved verification message.
4051
4052         * verify.c (do_branch_op): If the merging is invalid, the method
4053         is unverifiable and not invalid. Improved error message.
4054
4055         * verify.c (merge_stacks): Properly merge a boxed valuetype and
4056         a reference type diferent than System.Object. Improved error
4057         message.
4058
4059 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
4060
4061         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
4062
4063         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
4064         type of an enum even if the argument is byref.
4065
4066         * verify.c: Replace all explicit uses of enumtype and enum_basetype
4067         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
4068
4069         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
4070
4071         *verify.c (verify_type_compatibility_full): Make enum types
4072         compatible with their base types.
4073
4074         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
4075         types are compatible for the special case of a boxed valuetype and
4076         System.Object.
4077
4078         * verify.c (verify_stack_type_compatibility): The function
4079         is_compatible_boxed_valuetype was extracted from here.
4080
4081         * verify.c (push_arg): Only set ctx->has_this_store if the method
4082         is not static.
4083
4084         * verify.c (do_ldelem): Fixed a typo in an error message and added
4085         strict check for mixing int32 and native int as the array type
4086         and ldelem type.
4087
4088         * verify.c (merge_stacks): Consider boxed valuetypes in the
4089         compatibility checks.
4090
4091 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
4092         * profiler.h: (MonoGCEvent): Added start-stop the world events.
4093
4094 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
4095         *class.c: use_new_interface_vtable_code: renamed the env var to have
4096         a "MONO_" prefix, and fix the logic to enable it by default.
4097
4098 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
4099         *class.c:
4100         mono_class_setup_vtable_general: rewrote the way in which interface
4101         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
4102         makes the code more maintainable.
4103         For now the old code is still there, and can be activated setting
4104         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
4105
4106 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
4107
4108         * verify.c: guarded some debug functions around and #ifdef.
4109
4110         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
4111
4112 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
4113
4114         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
4115         changes for now since they seem to break too many things.
4116
4117 2008-02-05  Mark Probst  <mark.probst@gmail.com>
4118
4119         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
4120         mono_marshal_find_nonzero_bit_offset): Added macro and function
4121         for finding the byte- and bit-offset of a bitfield within a
4122         struct.
4123
4124 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
4125
4126         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
4127         (mono_marshal_get_struct_to_ptr): Ditto.
4128
4129         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
4130         cctor_signature.
4131
4132 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
4133
4134         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
4135         between methods for non-corlib types.
4136
4137 2008-02-02  Geoff Norton  <gnorton@novell.com>
4138
4139         * loader.c (mono_method_get_param_names): Populate the parameter name for 
4140         generic parameters as well. (Fixes #342536)
4141
4142 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
4143
4144         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
4145
4146         * verify.c (do_invoke_method): Fix for calling with byref structs.
4147
4148         * verify.c (do_cast): push a boxed value type based on the type token and not
4149         the type of stack.
4150
4151 2008-01-31  William Holmes  <billholmes54@gmail.com>
4152
4153         * process.c (process_module_string_read): Check the size returned form 
4154           VerQueryValue to avoid out of memory exception. 
4155
4156 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
4157
4158         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
4159         Handle properly modules which are not in the moduleref table. Fixes
4160         #356938.
4161
4162 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
4163
4164         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
4165         the dynamic case which is now in managed code.
4166         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
4167
4168         * marshal.c (mono_string_to_bstr): Fix a warning.
4169         (init_com_provider_ms): Ditto.
4170
4171         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
4172
4173         * exception.c (mono_get_exception_out_of_memory): New helper function.
4174
4175 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
4176
4177         * marshal.c: Add support for BSTR marshalling
4178         using other COM systems.
4179
4180         Code is contributed under MIT/X11 license.
4181
4182 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
4183
4184         * object.c (mono_runtime_invoke_array): reverted previous
4185         commit as it breaks the build.
4186
4187 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
4188
4189         * object.c (mono_runtime_invoke_array): Verify arguments for
4190         invalid types. Fixes #348522.
4191
4192 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
4193
4194         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
4195         non-final virtual calls using call. 
4196
4197         * verify.c (do_invoke): fixed some TODOs.
4198
4199         * verify.c (push_arg): set has_this_store for "ldarga 0".
4200
4201 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
4202
4203         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
4204         which belong to an inflated class. Fixes #356531.
4205
4206 2008-01-26  Robert Jordan  <robertj@gmx.net>
4207
4208         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
4209         which resort to FindFirstFile when a certain error condition
4210         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
4211         Code is contributed under MIT/X11 license.
4212
4213 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
4214
4215         * marshal.c (emit_marshal_string): Fix out string marshalling
4216         to use specified encoding. Fixes #323900.
4217
4218         Code is contributed under MIT/X11 license.
4219
4220 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
4221
4222         * class.c (mono_class_inflate_generic_method_full): Don't modify
4223         iresult->context after cache check.
4224
4225 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
4226
4227         * class.c (mono_class_inflate_generic_method_full): Change the
4228         struct assignments to memcpy for better visibility and add some comments.
4229
4230 2008-01-23  Dick Porter  <dick@ximian.com>
4231
4232         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
4233         procedure, and make it work on windows.
4234
4235 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
4236
4237         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
4238         a MonoReflectionTypeBuilder since it is always of that type.
4239
4240         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
4241
4242         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
4243
4244         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
4245         
4246         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
4247
4248         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
4249
4250         * reflection.c (mono_reflection_create_runtime_class): Remove already created
4251         instantiations from the type cache.
4252
4253 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4254
4255         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
4256
4257         * verify.c (do_unbox_value): push a controled mutability managed pointer.
4258
4259 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4260
4261         * verify.c (do_ldstr): added, verifies if the #US token is valid.
4262
4263         * verify.c (mono_method_verify): removed old TODO
4264
4265 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4266
4267         * verify.c (do_newobj): add visibility check.
4268
4269 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4270
4271         * verify.c (do_load_function_ptr): add visibility check.
4272
4273 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
4274         *class.c:
4275         mono_generic_class_get_class: hook profiler events.
4276         mono_field_get_offset: added to support heap-shot in the new profiler.
4277         *class.h: exported mono_field_get_offset.
4278         * reflection.c:
4279         mono_reflection_setup_internal_class: hook profiler events.
4280
4281 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
4282
4283         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
4284         argument here too and use it to avoid checking for pending exceptions if 
4285         possible.
4286
4287 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
4288
4289         * assembly.c (build_assembly_name): add arg for passing the assembly
4290         flags. Do not consider a PublicKey with value "null" valid.
4291         (mono_assembly_name_parse_full): added boolean argument that will be
4292         set if the assembly name contains a PublicKeyToken spec. Added support
4293         for the Retargetable spec for which only Yes or No are allowed as valid
4294         value. Consider assembly name invalid if Retargetable spec is set, but
4295         either version, culture or public key (token) are not specified.
4296         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
4297         with implementation in assembly.c.
4298         * icall.c (fill_reflection_assembly_name): also copy assembly flags
4299         from MonoAssemblyName.
4300         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
4301         introduced argument for mono_assembly_name_parse_full to know if the
4302         assembly name has a PublicKeyToken spec, and if it has instruct
4303         fill_reflection_assembly_name to use default value for keyToken (if
4304         PublicKeyToken is null).
4305
4306 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
4307
4308         * verify.c (mono_method_verify): fixed ovf ops with
4309         float values. They are unverifiable now.
4310
4311 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
4312
4313         * class.c (set_failure_from_loader_error): add BadImageException to the
4314         list of exceptions that can cause a type to fail to load.
4315
4316         * class.c (mono_class_get_exception_for_failure): same.
4317
4318 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
4319
4320         * verify.c (in_any_exception_block): added, check if offset
4321         is part of any exception handling clause.
4322
4323         * verify.c (get_stack_type): added VAR and MVAR types.
4324
4325         * verify.c (do_stobj): better error messages.
4326
4327         * verify.c (do_cpobj): added, check cpobj.
4328
4329         * verify.c (do_initobj): added, check initobj.
4330
4331         * verify.c (do_sizeof): added, check sizeof.
4332
4333         * verify.c (do_localloc): added, check localloc.
4334
4335         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
4336
4337 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
4338
4339         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
4340         save_lmf/restore_lmf opcodes.
4341
4342         * threads.c (mono_threads_install_notify_pending_exc): New function to
4343         install a callback notifying the JIT there is a pending exception on a thread.
4344         (mono_thread_request_interruption): Call the new callback.
4345         (mono_thread_get_and_clear_pending_exception): New function to return the
4346         exception pending on a thread.
4347
4348         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
4349         to turn off checking for pending exceptions.
4350         (mono_marshal_get_native_wrapper): Ditto.
4351
4352 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
4353
4354         * threads-types.h: Get rid of the unnecessary extern declarations.
4355
4356 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
4357
4358         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
4359         return field from parent class if not private.
4360         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
4361         returns fields from parent class if they are not private.
4362         (method_nonpublic): added function to determine if a given method
4363         should be considered non-public. Returns false for private methods
4364         on parent class, and internal methods from parent on the 1.0 profile.
4365         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
4366         use method_nonpublic function to determine whether method should be
4367         returned.
4368         (property_accessor_public): use newly introduced method_nonpublic
4369         function to determine whether accessor is non-public. 
4370         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
4371         event from parent class if not private. Only return static event if
4372         Static flag is set, and only return static event from parent class if
4373         FlattenHierarchy flag is set.
4374         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
4375         include non-private events from parent class.
4376
4377 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
4378
4379         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
4380         warning.
4381
4382 2008-01-16  Wade Berrier <wberrier@novell.com>
4383
4384         * security.c: Add assembly.h header to appease some warnings
4385
4386 2008-01-16  Dick Porter  <dick@ximian.com>
4387
4388         * process.c (process_module_string_read): Remove trailing null
4389         when saving string.
4390
4391 2008-01-16  Mark Probst  <mark.probst@gmail.com>
4392
4393         * class-internals.h: A new data structure describing the layout of
4394         a runtime generic context (MonoRuntimeGenericContextTemplate).
4395
4396         * metadata-internals.h: Added a hash table to MonoDomain that maps
4397         from open generic classes to their runtime generic context
4398         templates.
4399
4400         * object.c: Building of the runtime generic context, including
4401         proper handling of generic type arguments of superclasses.
4402         Building of the runtime generic context according to the template.
4403
4404 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
4405
4406         * class.c (mono_class_setup_fields): Set field.count for generic instances.
4407         Fixes #350856.
4408
4409         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
4410         mono_portability_find_file (). Fixes #325466.
4411         (mono_image_get_public_key): Fix a warning.
4412
4413 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
4414
4415         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
4416         Fixes #353550.
4417         (mono_class_from_name_case): Ditto.
4418
4419 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
4420
4421         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
4422           common storage for the tables used in the System/NumberFormatter class.
4423
4424 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
4425
4426         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
4427
4428 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
4429
4430         * verify.c (get_boxable_mono_type): check if the token is valid.
4431
4432         * verify.c (set_stack_value): changed to add an error if an
4433         invalid type is set on stack. Changed all callers due to signature change.
4434
4435         * verify.c (do_stobj): implement stobj validation.
4436
4437 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
4438
4439         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
4440         set container->is_method, it was set earlier.
4441
4442         * metadata.c (type_in_image): Handle MVARs which belong to not finished
4443         generic methods.
4444
4445         * reflection.c (mono_reflection_initialize_generic_parameter): Set
4446         is_method of the generic container to TRUE for methods.
4447
4448 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
4449
4450         * metadata.c (type_in_image): Handle type parameters properly.
4451
4452         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
4453         memory ownership of this structure.
4454
4455 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
4456
4457         * verify.c (get_boxable_mono_type): make typedref types been just
4458         unverifiable. check for void type.
4459
4460         * verify.c (do_unbox_any): added, verify opcode unbox.any.
4461
4462         * verify.c (do_load_function_ptr): accept method spec tokens.
4463
4464 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
4465
4466         * marshal.c (mono_class_native_size): Always set *align even if this is called
4467         recursively.
4468
4469 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
4470
4471         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
4472         out-of-date.
4473
4474 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
4475
4476         * verify.c: removed some old unused tables. A huge bunch of small fixes
4477         to things found while testing the verifier with mono basic.
4478
4479         * verify.c (dump_stack_value): dump null literal flag to.
4480
4481         * verify.c (verify_type_compatibility_full): fix comparison
4482         for types that have a generic super type.
4483
4484         * verify.c (verify_stack_type_compatibility): fix compatibility
4485         between null literals and reference types. fix compatibility between
4486         boxed valuetypes and object. fix corner case test for enums.
4487
4488         * verify.c (do_cmp_op): proper verification of cgt.un in case
4489         of reference types.
4490
4491         * verify.c (do_invoke_method): fix error message.
4492
4493         * verify.c (do_store_indirect
4494
4495         * verify.c (check_is_valid_type_for_field_ops): proper verification
4496         of managed pointers to valuetypes and boxed valuetypes. proper verification
4497         of null literals.
4498
4499         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
4500         allow token to be a reference type.
4501
4502         * verify.c (do_cast): proper handling of boxes valuetypes.
4503
4504         * verify.c (do_stelem): proper handling of storing a boxed valuetype
4505         in object[].
4506
4507         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
4508         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
4509         fixed the decoding of unbox_any
4510
4511 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
4512
4513         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
4514
4515 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
4516
4517         * verify.c (do_newobj): do delegate verification.
4518
4519         * verify.c (verify_delegate_compatibility): perform delegate
4520         verification.
4521
4522         * verify.c (verify_ldftn_delegate): perform tests related to
4523         ldftn delegates.
4524
4525         * verify.c (mono_delegate_signature_equal): perform the
4526         slightly diferent signature comparison required by delegates.
4527
4528         * metadata.c (mono_metadata_type_equal_full): added and exported
4529         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
4530         allows signature only comparison.
4531
4532         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
4533         as MONO_INTERNAL.
4534
4535 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
4536
4537         * verify.c: added a bunch of stack_slot_* functions to
4538         make access to stack slot type easier. This is required to
4539         allow optional flags, like null literal, boxed value and
4540         this pointer.
4541         All access paths to IlStackDesc::stype have been changed 
4542         to use these new funcions.
4543         Removed a bunch of unused functions and cleared all warnings.
4544         This patch introduces the usage of the this pointer and 
4545         boxed value flags.
4546
4547 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
4548
4549         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
4550
4551 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
4552
4553         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
4554         match managed version.
4555
4556         * appdomain.c: Bump corlib version.
4557         
4558         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
4559         argument.
4560
4561 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
4562
4563         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
4564         Set public key token to zero-length byte array if assembly is not
4565         strongnamed.
4566
4567 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
4568
4569         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
4570         writing a vtype array elem.
4571
4572 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
4573
4574         * assembly.c (build_assembly_name): return FALSE if length of token is
4575         not 16 (if not "null").
4576         (mono_assembly_name_parse_full): return FALSE if value of version,
4577         culture, token or key is 0.
4578         * icall.c (fill_reflection_assembly_name): add boolean arguments to
4579         specify whether public key and public key token must be set to default
4580         value (zero-length byte array) if not available. Set versioncompat to
4581         SameMachine. If public key is available or the default is set, then
4582         set PublicKey flag.
4583         (ves_icall_System_Reflection_Assembly_FillName): if no public key
4584         is available, use empty byte array as default value. On the 2.0
4585         profile, use default value for public key token if not set.
4586         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
4587         profile, use default value for public key if not set. On the 2.0
4588         profile, use default value for public key token if not set.
4589         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
4590         default values for public key and public key token.
4591
4592 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
4593
4594         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
4595         field to keep it in synch with the managed object.
4596
4597         * marshal.c (emit_marshal_object): Add support for byref marshalling of
4598         delegates. Fixes #351520.
4599
4600         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
4601         contains defined memory.
4602         
4603         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
4604
4605         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
4606         
4607         * sgen-gc.c (check_consistency): New helper function to do a consistency check
4608         of the GC data structures.
4609
4610         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
4611
4612         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
4613         
4614         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
4615         barrier.
4616         (mono_array_clone_in_domain): Ditto.
4617         (mono_array_clone_in_domain): Ditto.
4618
4619         * threads.c (start_wrapper): Register the thread start argument as a GC root.
4620         (cache_culture): Use a write barrier.
4621
4622         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
4623         (ves_icall_get_property_info): Ditto.
4624
4625         * object.h (MONO_STRUCT_SETREF): New macro.
4626
4627         * class-internals.h (MonoStats): Add some GC statistics.
4628
4629         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
4630
4631 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
4632
4633         * exception.c (mono_exception_from_name_two_strings):
4634         Break from loop after method is found.
4635
4636 2008-01-04  Dick Porter  <dick@ximian.com>
4637
4638         * process.c (process_module_string_read): Rename variable to
4639         reflect correct usage, after fixing bug 345972.
4640
4641 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
4642
4643         * verify.c (mono_type_create_fnptr_from_mono_method): 
4644         created a MonoType function pointer instance to be used during
4645         verification. The verifier releases this memory at end.
4646
4647         * verify.c (mono_method_is_constructor): extracted repeated
4648         checks for constructor into a single class.
4649
4650         * verify.c (do_push_field): use new extracted method
4651         for constructor check.
4652
4653         * verify.c (do_newobj): same.
4654
4655         * verify.c (do_ldftn): renamed to do_load_function_ptr
4656         and make it verify ldvirtftn too.
4657
4658         * verify.c (mono_method_verify: proper verification
4659         of ldvirtftn. release created MonoMethod instances.
4660
4661 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
4662
4663         * verify.c (token_bounds_check): added.
4664
4665         * verify.c (do_ldftn): added.
4666
4667         * verify.c (mono_method_verify): proper verificartion of ldftn.
4668
4669 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
4670
4671         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
4672         than the table row count. It's the resposibility of the caller to
4673         make the bounds check and raise the correct error.
4674
4675         * metadata.c (mono_metadata_decode_row_col): Same.
4676
4677         * loader.c (mono_get_method_from_token): perform bounds check
4678         on token for methoddef table.
4679
4680 2007-12-29  Miguel de Icaza  <miguel@novell.com>
4681
4682         * icall.c
4683         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
4684         assert into a negative result, the managed code already coped with
4685         that.
4686
4687         Some folks on Windows reported this error. 
4688
4689 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
4690
4691         * appdomain.c: Bump corlib version.
4692         * icall.c:
4693         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
4694         CultureInfo.CreateCulture to create CultureInfo for name.
4695         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
4696         create CultureInfo for name. Fixes bug #347174.
4697
4698 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
4699
4700         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
4701         flags.
4702
4703         * verify.c (is_valid_branch_instruction): allow branching to the
4704         first instruction of the protected block.
4705
4706         * verify.c (is_valid_cmp_branch_instruction): same.
4707
4708         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
4709         avoid double initialization.
4710
4711         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
4712         detect which cases the eval stack should just be copied.
4713
4714         * verify.c (mono_method_verify): check if the eval stack
4715         is empty when entering a protected block.
4716
4717 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
4718
4719         * verify.c: added is_clause_in_range, is_clause_inside_range,
4720         is_clause_nested and verify_clause_relationship. They perform
4721         the verifications stated in P1 12.4.2.7.
4722
4723         * verify.c (mono_method_verify): remove some unused variables,
4724         add the new exception clause checks, add instruction border
4725         checks for protected block start/end, improved some error 
4726         messages and fixed a bug in the way invalid instruction access
4727         is detected.
4728
4729 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
4730
4731         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
4732         from GC 7.0 if available.
4733
4734         * object.c: Remove an unused define.
4735         
4736         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
4737
4738         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
4739
4740         * null-gc.c (mono_gc_make_descr_for_array): Implement.
4741
4742         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
4743
4744         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
4745         to take the same arguments as the other make_descr functions.
4746
4747         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
4748
4749         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
4750         directly.
4751
4752         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
4753         mini.c.
4754
4755         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
4756         call to boehm-gc.c.
4757
4758         * boehm-gc.c (mono_gc_register_root): Fix a warning.
4759
4760         * null-gc.c (mono_gc_register_root): Fix a warning.
4761
4762         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
4763
4764         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
4765         (mono_gc_base_init): Call GC_init ().
4766
4767         * null-gc.c: Define mono_gc_register_root () as a no-op.
4768
4769         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
4770
4771 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
4772
4773         * verify.c: add prototype for merge_stacks at top
4774
4775         * verify.c (do_switch): added.
4776
4777         * verify.c (merge_stacks): on some cases the stack merging
4778         was not happening properly. Unequal stack sizes at merge
4779         points should be invalid.
4780
4781         * verify.c (mono_method_verify): added more debug info on stack state.
4782         verify switch properly.
4783
4784 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
4785
4786         * method-builder.h: New file, moved the mono_mb_ declarations here from 
4787         marshal.h.
4788
4789         * boehm-gc.c marshal.c: Include method-builder.h.
4790
4791         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
4792
4793         * marshal.c: Remove some code which is now in method-builder.c.
4794
4795 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
4796
4797         * method-builder.c: New file, extraction of the method builder functionality 
4798         from marshal.c.
4799
4800         * marshal.c: Move the mb functions into method-builder.c.
4801
4802         * marshal.h marshal.c: Export some mono_mb_... functions.
4803
4804         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
4805
4806         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
4807         the caller.
4808
4809         * class.c (mono_class_get_full): Check the token type in the dynamic case.
4810
4811         * loader.c (mono_field_from_token): Ditto.      
4812
4813         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
4814         type as well.
4815         
4816         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
4817         Fixes #342565.
4818
4819         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
4820         a helper function for setting it.
4821
4822         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
4823
4824         
4825         * assembly.c: Significally simplify code now that referenced assemblies are 
4826         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
4827
4828         * threads.h: Don't include  the internal threads-types.h header file. Fixes
4829         #349952.
4830
4831 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
4832
4833         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
4834         instructions that were target of branches or are at protected block boundaries.
4835
4836         * verify.c (in_same_block): handle filter clauses.
4837
4838         * verify.c (is_valid_branch_instruction): added. checks the target of
4839         instructions br or brtrue/false.
4840
4841         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
4842         binary branch instructions such as beq and bge.
4843
4844         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
4845         and made it pin the instruction as been part of the exception block.
4846
4847         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
4848         of in_same_block.
4849
4850         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
4851         of in_same_block.
4852
4853         * verify.c (do_ret): ret from a protected block is unverifiable and
4854         not invalid.
4855
4856         * verify.c (do_static_branch): verify br and br.s instructions.
4857
4858         * verify.c (merge_stacks): add extra param to support detection
4859         of branches in the middle of instructions.
4860         
4861         * verify.c (mono_method_verify): verify branches and exception blocks
4862         that target the middle of instructions. Proper verification of br and br.s.
4863
4864 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
4865
4866         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
4867         skip_visibility field.
4868         (reflection_methodbuilder_from_dynamic_method): Ditto.
4869
4870         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
4871         registrations. Fixes #348193.
4872
4873         * threads.h: Move the internal mono_thread_get_pending_exception () to
4874         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
4875
4876 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
4877
4878         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
4879         icall registration. Fixes #348193.
4880
4881         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
4882         for corlib classes into object. Fixes #349621.
4883
4884 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
4885
4886         * icall.c (property_accessor_nonpublic): new function to determine
4887         whether an accessor allows a property to be considered non-public.
4888         Returns false for private accessor(s) from parent class, and internal
4889         accessor(s) from parent on 2.0 profile (and higher).
4890         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
4891         to determine whether property should be included if NonPublic flag
4892         is set. Fixes bug #349078.
4893
4894 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
4895
4896         * verify.c (init_stack_with_value): added.
4897
4898         * verify.c (mono_method_verify): extracted common
4899         code for exception initialization into init_stack_with_value.
4900
4901         * verify.c (mono_method_verify): initialize the exception
4902         for handler clauses as well.
4903
4904         * verify.c (mono_method_verify): fix the exception clause
4905         ordering rules, it should use handler end offset and not
4906         start offset.
4907
4908 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
4909
4910         * rawbuffer.c: remove useless warning.
4911
4912 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
4913
4914         * threads.h, threads-types.h: move functions to the correct header
4915         (fixes bug#349952).
4916
4917 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
4918
4919         * verify.c (mono_method_verify): proper verification
4920         of exception handling clauses ranges and fallthru in
4921         and out of protected blocks.
4922
4923 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
4924
4925         * verify.c (mono_method_verify): fixed compilation issue.
4926
4927 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
4928
4929         * verify.c (mono_method_verify): a printf slipped in, changed
4930         to use verifier debug macro.
4931
4932 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
4933
4934         * verify.c (is_correct_leave): check for filter clauses.
4935
4936         * verify.c (do_filter): added.
4937
4938         * verify.c (mono_method_verify): property verification of leave.
4939
4940
4941 2007-12-18  Mark Probst  <mark.probst@gmail.com>
4942
4943         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
4944         Win32 build, until we figure out how to do the proper thing on
4945         Win32.
4946
4947 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
4948
4949         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
4950         by the previous patch.
4951         
4952         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
4953         the assembly resolve handler for refonly assemblies.
4954
4955 2007-12-17  Mark Probst  <mark.probst@gmail.com>
4956
4957         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
4958         Make sure only one thread is allowed to commence shutdown, and
4959         don't allow new threads to be started once shutdown is in
4960         progress.
4961
4962 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
4963
4964         * verify.c (is_correct_endfilter): added.
4965
4966         * verify.c (is_unverifiable_endfilter): added.
4967
4968         * verify.c (do_endfilter): added.
4969
4970         * verify.c (mono_method_verify): property verification of endfilter
4971         and fixed a corner case or endfinally.
4972
4973 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
4974
4975         * verify.h: new flags to support fail fast of unverifiable code and
4976         do non-strict verification. Non-strict verification is required to
4977         have MS runtime compatibility. There are a huge amount of unverifiable
4978         code that it accepts as verifiable. The strict mode verifies the code
4979         as the specs says.
4980         Non-strict mode will be required in cases where code needs to be
4981         accepted as verifiable but fails under strict mode.
4982
4983         * pedump.c: added support to fail fast and non-strict verification.
4984
4985         * verify.c: added support for both fail fast and non-strict verification.
4986
4987 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
4988
4989         * verify.c (is_correct_endfinally): added.
4990
4991         * verify.c (mono_method_verify): property verification of endfinally.
4992
4993 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
4994
4995         * verify.c (in_any_block): check for filter clauses.
4996
4997         * verify.c (is_correct_rethrow): added.
4998
4999         * verify.c (mono_method_verify): property verification of rethrow.
5000
5001         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
5002
5003 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
5004
5005         * verify.c (do_throw): added.
5006
5007         * verify.c (mono_method_verify): property verification of throw
5008
5009 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
5010
5011         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
5012         assemblies. Fixes #346425.
5013
5014 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
5015
5016         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
5017         FieldBuilders.
5018
5019         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
5020
5021         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
5022         prevent asserts when this is called with a token which might not be valid.
5023
5024         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
5025         lookup_dynamic_token_class with valid_token == FALSE.
5026
5027         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
5028
5029         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
5030
5031         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
5032         
5033 2007-12-10  Mark Probst  <mark.probst@gmail.com>
5034
5035         * gc.c: Don't delay threadpool thread finalization unless Mono is
5036         shutting down.
5037
5038 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
5039
5040         * threads.c: turn an assert into a non-fatal warning.
5041
5042 2007-12-09  Robert Jordan  <robertj@gmx.net>
5043
5044         * icall.c (GetVirtualMethod): Add missing argument validation.
5045
5046 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5047
5048         * verify.c (do_cast): added.
5049
5050         * verify.c (mono_method_verify): property verification of castclass and isinst.
5051
5052
5053 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5054
5055         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
5056
5057         * verify.c (do_stelem): added.
5058
5059         * verify.c (mono_method_verify): property verification of stelem.X.
5060
5061 2007-12-07  Mark Probst  <mark.probst@gmail.com>
5062
5063         * class.c, class-internals.h: Introduce an environment variable
5064         (MONO_GENERIC_SHARING) through which the extent of generic code
5065         sharing can be controlled (share all classes, share only corlib
5066         classes, or share nothing).
5067
5068         * object.c: Only create runtime generic context for classes for
5069         which sharing is enabled.
5070
5071 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5072
5073         * verify.c (do_ldelem): refactor it to work with ldelem.any.
5074
5075         * verify.c (mono_method_verify): property verification of ldelem.any.
5076
5077 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5078
5079         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
5080         added ldelem.X opcodes.
5081
5082         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
5083
5084         * verify.c: proper verification of ldelem.X 
5085
5086 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
5087
5088         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
5089
5090 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5091
5092         * verify.c (mono_method_verify): null literal requires special handling,
5093         the value pushed on stack need to be flagged as so.
5094
5095         * verify.c (do_ldelema): Verify ldelema properly.
5096
5097 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5098
5099         * verify.c: Verify ldlen properly.
5100
5101 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
5102
5103         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
5104         to the target object's type. Fixes #346160.
5105
5106 2007-12-05  Dick Porter  <dick@ximian.com>
5107
5108         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
5109         Solaris needs the same workaround as BSD-derived systems.  Fixes
5110         bug 323524, patch by Burkhard Linke
5111         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
5112
5113 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
5114
5115         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
5116         handle to use when error dialog is shown; otherwise, update mask
5117         to show no error dialog when an error occurs.
5118
5119 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
5120
5121         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
5122
5123         * class.c (mono_class_get_field_default_value): New helper function to initialize
5124         field->def_type and field->data.
5125
5126 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
5127
5128         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
5129         the general one.
5130
5131         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
5132
5133         * marshal.c: Avoid depending on delegate->method_info being set.
5134
5135         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
5136         
5137         * object.c (mono_delegate_ctor): Set delegate->method.
5138
5139         * object-internals.h (struct _MonoDelegate): Add 'method' field.
5140
5141         * appdomain.c: Bump corlib version.
5142
5143 2007-11-27  Raja R Harinath  <harinath@gmail.com>
5144
5145         * metadata.c (mono_generic_inst_equal_full): Short-circuit
5146         equality check if we're comparing canonicalized MonoGenericInsts.
5147
5148 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
5149
5150         * class.c (generic_array_methods): Call mono_class_setup_methods () before
5151         accessing class->methods.
5152
5153 2007-11-22  Dick Porter  <dick@ximian.com>
5154
5155         * threads.c: Ensure that the synch_cs is set before trying to use
5156         it.
5157
5158 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
5159
5160         * profiler.c: r89126 broke the statistial profiler, unbreak.
5161
5162 2007-11-22  Martin Baulig  <martin@ximian.com>
5163
5164         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
5165
5166         * mono-debug.c
5167         (mono_debug_debugger_version): Bump to 3.
5168         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
5169         -> mono_debugger_class_initialized().
5170
5171         * mono-debug-debugger.c
5172         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
5173
5174         * class.c
5175         (mono_debugger_start_class_init_func): Removed.
5176         (mono_debugger_class_loaded_methods_func): Added.
5177         (mono_class_setup_methods): Call it here.
5178
5179 2007-11-22  Martin Baulig  <martin@ximian.com>
5180
5181         * mono-debug.c
5182         (mono_debug_add_delegate_trampoline): New public method.
5183         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
5184
5185         * mono-debug.h
5186         (MonoSymbolTable): Added `global_data_table'.
5187         (MonoDebuggerTypeKind): Removed.
5188
5189 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
5190
5191         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
5192         these methods.
5193
5194         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5195         
5196 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
5197
5198         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
5199
5200 2007-11-20  Martin Baulig  <martin@ximian.com>
5201
5202         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
5203
5204         * mono-debug-debugger.c
5205         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
5206         (mono_debugger_remove_breakpoint): Likewise.
5207         (mono_debugger_check_breakpoints): Likewise.
5208         (mono_debugger_register_class_init_callback): New public method.
5209         (mono_debugger_remove_class_init_callback): Likewise.
5210         (mono_debugger_add_type): Likewise.
5211
5212         * mono-debug-debugger.h
5213         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
5214
5215 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
5216
5217         * class.c: more interface implementations needed for the
5218         array enumerator (fixes bug #341112).
5219
5220 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
5221
5222         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
5223         fix ParamName of ArgumentNullExceptions.
5224
5225 2007-11-17  Miguel de Icaza  <miguel@novell.com>
5226
5227         * reflection.c (mono_reflection_encode_sighelper): Generate the
5228         modopts and modreqs.   I have a useless test that crashes monodis,
5229         but that shows the code working.
5230
5231 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
5232
5233         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
5234         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
5235
5236 2007-11-15  Dick Porter  <dick@ximian.com>
5237
5238         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
5239         When joining a thread, it's the thread that's calling Join that
5240         gets WaitSleepJoin state not the target.  Fixes the standalone
5241         test case in bug 334740, and hopefully the whole bug too.
5242
5243 2007-11-15  Dick Porter  <dick@ximian.com>
5244
5245         * process.c: Read file version info from the files pointed at by
5246         process modules, not the current process.  Fixes bug 315969.
5247
5248         Use windows typedef names in some places to fix warnings on the
5249         windows build.
5250
5251 2007-11-15  Mark Probst  <mark.probst@gmail.com>
5252
5253         * image.c, metadata-internals.h: Added a generic_class_cache hash
5254         to MonoImage for looking up generic classes when sharing generics.
5255
5256 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
5257
5258         * sgen-gc.c: warning cleanups.
5259
5260 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
5261
5262         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
5263         inherited properties.
5264
5265 2007-11-14  Mark Probst  <mark.probst@gmail.com>
5266
5267         * object.c, class-internals.h: Added more information to the
5268         runtime generic context.
5269
5270 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
5271
5272         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
5273         instead of just the target method. Generalize the abstract method handling to
5274         handle any non-static method.
5275
5276         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
5277         mono_marshal_get_delegate_invoke () signature change.
5278
5279 2007-11-13  Mark Probst  <mark.probst@gmail.com>
5280
5281         * class.c, class-internals.h: Made
5282         mono_type_get_basic_type_from_generic () public.  Fixed member
5283         access check for shared generics.
5284
5285         * loader.c: Don't insert field into field cache if it's part of a
5286         non-inflated generic class.
5287
5288         * domain.c, domain-internals.h: The generic sharing context is now
5289         part of the jit info data structure.  Added two accessor
5290         functions.
5291
5292 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
5293
5294         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
5295         the array Get/Set/Address methods, since the JIT inlines them.
5296
5297         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
5298
5299         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
5300         (mono_image_init): Initialize runtime_invoke_direct_cache.      
5301
5302         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
5303         mono_marshal_get_delegate_invoke signature change.
5304
5305         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
5306         an additional argument. Add support for invoking abstract methods.
5307
5308         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
5309
5310         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
5311
5312 2007-11-09  Mark Probst  <mark.probst@gmail.com>
5313
5314         * class.c: Do field layout for open generic classes as well.
5315
5316 2007-11-09  Mark Probst  <mark.probst@gmail.com>
5317
5318         * gc.c, gc-internal.h: Don't finalize threadpool threads with
5319         other objects, because the threadpool is still around.  Put them
5320         in a list instead and after finalizing all other objects in the
5321         root domain shut down the thread pool and then finalize the
5322         threads.  Fixes bug #337383.
5323
5324         * threads.c, thread-types.h: New mono_thread_create_internal()
5325         function for marking a thread with the threadpool flag before it
5326         started.  Set synch_cs to NULL after freeing it.
5327
5328         * threadpool.c: Mark threadpool threads before they start.
5329
5330 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
5331
5332         * reflection.h, reflection.c: don't export random functions
5333         and lazy load dbnull and missing objects.
5334
5335 2007-11-07  Jonathan Chambers <joncham@gmail.com>
5336
5337         * class.c: Initialize COM types if COM interfaces
5338         are present (not just COM classes).
5339         
5340         Code is contributed under MIT/X11 license.
5341
5342 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
5343         * reflection.c:
5344         create_dynamic_mono_image: hook module profiler events (dynamic case).
5345         mono_image_basic_init: hook assembly profiler events (dynamic case).
5346
5347 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
5348         * profiler.c:
5349         simple_appdomain_unload: completely terminate the profiler
5350         instead of only processing the statistical samples.
5351         simple_shutdown: make sure this is really called exactly once,
5352         even in multithreaded applications, and always listen to
5353         appdomain events.
5354         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
5355         here, the "[un]load" functions will do it.
5356         Fixes bugs #333791 and #325261.
5357
5358 2007-11-07  Geoff Norton  <gnorton@novell.com>
5359
5360         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
5361         rather than depend on __APPLE__.
5362
5363 2007-11-07  Mark Probst  <mark.probst@gmail.com>
5364
5365         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
5366
5367 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
5368
5369         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
5370         UTF16 MonoString. Fix the crash from bug #335488
5371
5372 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
5373
5374         * marshal.c: Correct (for non-Win32 OS) length != size in 
5375         mono_string_from_bstr. Fix #339530.
5376
5377 2007-11-06  Geoff Norton  <gnorton@novell.com>
5378
5379         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
5380         to succeed
5381
5382 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
5383
5384         * process.c: Added run-time GetProcessId API detection for Windows.
5385
5386 2007-11-04  Miguel de Icaza  <miguel@novell.com>
5387
5388         * reflection.c  (mono_param_get_objects): If a parameter has the
5389         attribute [System.Runtime.InteropServices.Optional] we should
5390         set the DefaultValue of the ParameterInfo to be
5391         System.Reflection.Missing instead of DBNull.
5392
5393         See bug #339013.
5394
5395         (mono_get_reflection_missing_object): New method,
5396         returns the System.Reflection.Missing.Value singleton instance.
5397
5398 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
5399
5400         * culture-info-table.h : regenerated.
5401
5402 2007-11-02  Jonathan Chambers <joncham@gmail.com>
5403
5404         * icall.c: Use GetEnvironmentStrings on windows
5405         so we are using the same environment block as 
5406         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
5407         #333740.
5408         
5409         Code is contributed under MIT/X11 license.
5410
5411 2007-10-31  Martin Baulig  <martin@ximian.com>
5412
5413         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
5414
5415         * mono-debug-debugger.h
5416         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
5417
5418 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
5419
5420         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
5421         classes.
5422
5423 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
5424
5425         * culture-info-table.h : regenerated.
5426
5427 2007-10-30  Robert Jordan  <robertj@gmx.net>
5428
5429         * icall-def.h, icall.c:
5430         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
5431
5432         Code is contributed under MIT/X11 license.
5433
5434 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
5435
5436         * class.c (mono_class_setup_vtable): Find the inflated methods in the
5437         inflated class instead of inflating them again.
5438         
5439         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
5440         dynamic case.
5441
5442         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
5443         Call setup_supertypes () after klass->parent is set.
5444         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
5445
5446         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
5447         for inflated instances of not yet created dynamic generic classes.
5448         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
5449         times from inflated_method.
5450         (methodbuilder_to_mono_method): Ditto.
5451
5452 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
5453
5454         * gc.c: code cleanup and removed old untested option of not creating the
5455         finalizer thread.
5456
5457 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
5458
5459         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
5460         creating a jump trampoline for dynamic methods.
5461
5462 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
5463
5464         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
5465         generic TypeBuilders when called from another method of the same type (bug #335131).
5466
5467
5468 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
5469
5470         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
5471         doesn't seem to work perfectly.
5472         
5473         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
5474         called multiple times.
5475         (methodbuilder_to_mono_method): Ditto.
5476         (resolve_object): Inflate FieldBuilder's.
5477
5478 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
5479
5480         * string-icalls.c, string-icalls.h, appdomain.c: patch from
5481         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
5482         RemoveEmptyEntries in the string.Split implementation (bug #322375).
5483
5484 2007-10-26  Dick Porter  <dick@ximian.com>
5485
5486         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
5487         Thread initialisation changes
5488
5489 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
5490
5491         * verify.c: fix compatibility check between arrays and System.Array
5492
5493 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
5494
5495         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
5496         too. Fixes #336999.
5497
5498 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
5499
5500         * object.c (mono_value_box): Use typed allocation here.
5501
5502 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
5503
5504         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
5505         trampoline instead of compiling the method right away.
5506
5507         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
5508
5509 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
5510
5511         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
5512         related fields for dynamic classes. Fixes #334493.
5513
5514 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
5515
5516         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
5517         
5518         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
5519
5520         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
5521         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
5522
5523         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
5524
5525         * reflection.c (create_generic_typespec): Initialize klass->generic_container
5526         if needed.
5527         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
5528
5529 2007-10-18  Jonathan Chambers <joncham@gmail.com>
5530
5531         * marshal.c: Use correct key when removing item
5532         from ccw_hash.
5533         
5534         Code is contributed under MIT/X11 license.
5535
5536 2007-10-17  William Holmes  <billholmes54@gmail.com>
5537
5538         *marshal.c: Adding a case to marshal booleans to U1
5539
5540         Code is contributed under MIT/X11 license.
5541
5542 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
5543
5544         * class.c (mono_class_from_name): Search the modules compromising dynamic
5545         assemblies. Fixes #331601.
5546
5547 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
5548
5549         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
5550         exception if the type name contains an assembly component. Fixes #334203.
5551
5552         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
5553         modules inside dynamic assemblies. Fixes #334200.
5554         
5555         * reflection.c: Set image->public_key and image->public_key_length;
5556
5557         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
5558         fields.
5559
5560         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
5561         
5562 2007-10-16  Mark Probst  <mark.probst@gmail.com>
5563
5564         * metadata.c: Implemented correct comparing of generic classes.
5565         An inflated generic class can be equal to a non-inflated one if it
5566         is inflated with generic type variables as type arguments.  Fixes
5567         bug #333798.
5568
5569 2007-10-15  Dick Porter  <dick@ximian.com>
5570
5571         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
5572         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
5573         81646.
5574
5575         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
5576         instead of a monitor lock.  This means that monitor_try_enter and
5577         co can set the thread state safely.
5578         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
5579         thread_interrupt_requested, so interrupt actually works.
5580
5581         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
5582         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
5583         state accessor function
5584
5585 2007-10-15  Martin Baulig  <martin@ximian.com>
5586
5587         * mono-debug.h
5588         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
5589         the debugger with the current runtime.
5590
5591 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
5592
5593         * object.c, object-internals.h: added the ability to set a single
5594         trampoline for all the slots in a vtable.
5595
5596 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
5597
5598         * marshal.c: deal with a possible race condition during multicast
5599         delegate invocation.
5600
5601 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
5602
5603         * class.c: ensure value type methods don't have the synchronized
5604         flag set.
5605
5606 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
5607
5608         * string-icalls.c, string-icalls.h: reverted unapproved patch that
5609         breaks the build.
5610
5611 2007-10-11  Joel Reed  <joelwreed@comcast.com>
5612
5613         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
5614         to take an options parameter so that empty entries can be removed during
5615         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
5616
5617 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
5618
5619         * marshal.c: make sure we don't store the signature from a dynamic
5620         method into the runtime invoke cache (bug #327189).
5621
5622 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
5623
5624         * marshal.c: make sure the wrapper methods are properly initialized.
5625
5626 2007-10-11  Mark Probst  <mark.probst@gmail.com>
5627
5628         * metadata.c, metadata-internals.h: Generalized
5629         mono_type_stack_size() to mono_type_stack_size_internal() which
5630         takes an additional argument specifying whether it allows open
5631         types.
5632
5633 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
5634
5635         * verify.c (do_invoke_method): handle typedbyref params
5636         correctly and check for unverifiable return values.
5637
5638         * verify.c (do_newobj): fix a warning.
5639
5640 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
5641
5642         * verify.c: don't tread typedbyref as allways unverifable,
5643         so uses, like (ld/st)loc.0 are valid. verify for the cases
5644         that it matters, like boxing related operations.
5645
5646 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
5647
5648         * verify.c: add verification of the newobj opcode. verification
5649         of delegate instantation still missing due ldftn and virldftn not
5650         pushing the function type on stack
5651
5652 2007-10-08  Mark Probst  <mark.probst@gmail.com>
5653
5654         * class-internals.h: Runtime generic context data structure
5655         definition.
5656
5657         * object.c: Initialization of runtime generic context at runtime
5658         vtable creation time.
5659
5660 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
5661         * class.c (mono_class_create_from_typedef,
5662         mono_class_from_generic_parameter, mono_ptr_class_get,
5663         mono_fnptr_class_get, mono_bounded_array_class_get)
5664         * domain.c (mono_domain_create, mono_domain_free)
5665         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
5666         * image.c (do_mono_image_load, mono_image_close):
5667         Hooked up load-unload profiler events.
5668
5669 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
5670
5671         * domain.c: track statistics about the actual amount of native code
5672         allocated.
5673
5674 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
5675
5676         * class.c: the valuetype enumerators don't have the additional
5677         supertypes interfaces.
5678
5679 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
5680
5681         * class.c: need more interfaces setup for the IEnumerator<T>
5682         object created for arrays (tests/ienumerator-interfaces.2.cs).
5683
5684 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
5685
5686         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
5687
5688 2007-10-05  Alp Toker  <alp@atoker.com>
5689
5690         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
5691         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
5692         #315863.
5693
5694 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
5695
5696         * verify.c (verify_type_compatibility_full): verification of
5697         compatibility improved, validates correctly non-strict checks between
5698         native int and I4 types different than (unsigned)int32.
5699
5700         * verify.c (do_store_indirect): added, do all verification of
5701         ldind.X opcodes. 
5702
5703         * verify.c (get_load_indirect_mono_type): renamed to
5704         get_indirect_op_mono_type, as it now returns the MonoType for 
5705         ldind.X and stind.X opcodes.
5706
5707 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
5708
5709         * reflection.c: Fix the encoding of generic type definition for
5710         TypeBuilders.
5711
5712         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
5713         mono_image_typedef_or_ref but allows to specify if typespec lookups should
5714         be made. Typespec check is done prior to typeref cache lookup.
5715
5716         * reflection.c (mono_image_typedef_or_ref): now just delegate to
5717         mono_image_typedef_or_ref_full.
5718
5719         * reflection.c (encode_generic_class): encode the generic class
5720         directly instead of calling encode_type.
5721
5722         * reflection.c (encode_type): encode the generic type definition
5723         MonoClass as a generic instantiation.
5724
5725         * reflection.c (create_typespec): cache typespec tokens in
5726         the assembly->typespec cache. Don't create typespec for a generic
5727         instance MonoClass. Create typespec for the generic type defintion.
5728
5729         * reflection.c (create_generic_typespec): encode the generic
5730         class directly instead of calling encode_type.
5731
5732         * reflection.c (mono_image_create_token): encode the generic
5733         type definition not using a typespec for MonoType instances.
5734
5735
5736 2007-10-04  Raja R Harinath  <rharinath@novell.com>
5737
5738         Fix #328812
5739         * class.c (mono_image_init_name_cache): Don't return nested
5740         'protected internal' classes.
5741         (mono_class_from_name_case): Likewise.
5742
5743 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
5744
5745         * icall-def.h, icall.c : get_bundled_machine_config() is now the
5746           common function used by both DefaultConfig in System.dll and
5747           InternalConfigurationHost in System.Configuration.dll.
5748
5749 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
5750
5751         * class.c: automatically add to vectors only a few essential explicit
5752         generic interfaces. The rest of the interfaces that arrays should
5753         provide are currently implicitly added (but still not lazily, see the
5754         design in the discussion of bug#325495 for the details of what is
5755         needed for that). Additionally, implicit interfaces are assigned the
5756         same vtable slot as the explicit interfaces (as they are compatible):
5757         this enables huge memory savings since we don't need to instantiate
5758         as many memthods and as large vtables anymore. Also, Since
5759         GetEnumerator<T> returns an instance of a type that is required to
5760         support a similarly large set of interfaces as arrays, we add
5761         implicit interfaces and interface offset sharing support to those
5762         types, too. This change adds all the required interfaces so that
5763         the anonarray.cs test case in the bug report works (we don't add
5764         all the interfaces to arrays of arrays 3-level deep and more because
5765         of the memory requirements explained in the bug and since they are much
5766         less common: the lazy-loading support will enabled them to work, too).
5767
5768 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
5769
5770         * verify.c (merge_stacks): major clean up, all type compatibility
5771         checks are done by verify_type_compatibility. This fix my earlier lack
5772         of understanding of the CLR type system and merge_stacks no longer looks
5773         scary.
5774
5775         * verify.c: fixed some bad spelling.
5776
5777 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
5778
5779         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
5780         a given stack slock.
5781         
5782         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
5783         verify_type_compatibility_full. This removed a near indentical function and fixed
5784         handling of Int32 and IntPtr across all opcodes.
5785
5786 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
5787
5788         * class.c: only vectors have the additional generic interfaces.
5789
5790 2007-10-01  Jonathan Chambers <joncham@gmail.com>
5791
5792         * mono-config.c: Use g_strcasecmp instead of
5793         strcasecmp like everywhere else to fix
5794         compilation with MSVC.
5795         
5796         Code is contributed under MIT/X11 license.
5797
5798 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
5799
5800         * object.c, object-internals.h: refactored the IMT code to enable
5801         building a single slot at a time and lazily creating the IMT trampolines
5802         and thunks.
5803
5804 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
5805
5806         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
5807
5808         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
5809         Fixes #328501.
5810         
5811 2007-09-29  Raja R Harinath  <harinath@gmail.com>
5812
5813         * loader.c (method_from_methodspec): Rearrange to avoid
5814         un-necessary exposition.  Don't assert out if the method's
5815         declaring type is a generic type definition.
5816
5817 2007-09-28  Martin Baulig  <martin@ximian.com>
5818
5819         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
5820
5821 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
5822
5823         * class-internals.h: optimize field layout of MonoClass to
5824         requires less cachelines at runtime and save a few bytes on 64 bit
5825         systems.
5826
5827 2007-09-28  Jb Evain  <jbevain@novell.com>
5828
5829         * reflection.c: when encoding type names in custom attributes,
5830         if the type is a closed generic type, its generic arguments
5831         have to be serialized as AssemblyQualifiedName, so that when
5832         they are deserialized, it's possible to re-create them properly.
5833         Fixes #329450.
5834
5835
5836 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
5837
5838         * object.c, class-internals.h: added delegate-creation counter.
5839
5840 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
5841
5842         * class.c: cleanup of the code that synthetizes interfaces for
5843         arrays in 2.0: saves quit a bit of corlib mempool memory.
5844         Code to fix bug #325495 ifdeffed out for now until the issues
5845         with memory usage and O(n^2) behaviour are fixed.
5846
5847 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
5848
5849         * marshal.c: when possible, do not duplicate the name of the methods
5850         in the method builder and in the generated MonoMethod.
5851
5852 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
5853         * verify.c: added support for type checking ldind_* opcodes.
5854
5855 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
5856
5857         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
5858         which is used to distinguish the fully open instantiation of a TypeBuilder
5859         with the rest. This temporary hack is required to restore the property that
5860         the fully open instantiation is the same type of the generic type definition.
5861
5862         * class-internals.h (mono_generic_class_is_generic_type_definition):
5863         new function as part of the internal API.
5864
5865         * class.c (inflate_generic_type): return NULL when the generic inst is
5866         fully open. The fully open generic type is now the same as the generic type
5867         definition for non TypeBuilder types.
5868
5869         * class.c (mono_generic_class_get_class): removed assert since it is
5870         no longer valid, gklass->cached_class can point to the generic type definition.
5871
5872         * class.c (mono_generic_class_is_generic_type_definition): new.
5873
5874         * metadata.c (mono_generic_class_hash): added is_tb_open field
5875         to the hash calculation.
5876
5877         * metadata.c (free_generic_class): if the generic class is associated
5878         with the generic type definition, its field will come from the mempool and
5879         must not be freed.
5880
5881         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
5882         new, this function identifies the corner case of a TypeBuilder fully open
5883         instantiation.
5884
5885         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
5886         for lookup. Set gclass->cached_class to be the container class in case of
5887         the fully open instantiation of non TypeBuilder types.
5888
5889         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
5890         to compare generic classes.
5891
5892         * reflection.c (method_encode_methodspec): remove assert that
5893         no longer is valid.
5894
5895         * reflection.c (mono_reflection_generic_class_initialize): add
5896         an aditional assert to ensure the proper type is used.
5897
5898 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
5899
5900         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
5901         to enjoy it.
5902
5903 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
5904
5905         * verify.c (push_arg): Fixed support for ldarga
5906         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
5907         MonoType used as first arg in case of instance calls.
5908
5909 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
5910
5911         * verify.c: Support for verifying VAR and MVAR types, 
5912
5913 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
5914
5915         * icall.c (ves_icall_get_property_info): Set the reflected type of the
5916         accessors correctly.
5917
5918 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
5919
5920         * threads.c: support OSX and other systems in
5921         mono_thread_get_stack_bounds (bug #328026).
5922
5923 2007-09-25  Martin Baulig  <martin@ximian.com>
5924
5925         * mono-debug.h
5926         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
5927
5928 2007-09-24  Martin Baulig  <martin@ximian.com>
5929
5930         * mono-debug.h
5931         (MonoDebugClassEntry): Moved the definition of this struct into
5932         mono-debug.c to make it private.
5933
5934         * mono-debug.c
5935         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
5936         type table per symbol file, we don't need to store the symfile id
5937         any longer.
5938
5939 2007-09-24  Martin Baulig  <martin@ximian.com>
5940
5941         Create one type table per symbol file, since a `MonoClass *' gets
5942         invalid when its image is unloaded.
5943
5944         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
5945         (MonoDebugHandle): Added `type_table'.
5946
5947 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
5948
5949         * mempool.c, mempool.h: added mono_mempool_new_size () API
5950         to be able to specify a smaller initial size for the pool.
5951         Adjusted the code to slowly increase pool size before using
5952         the previous default size.
5953         * image.c: use a small initial size for image mempools.
5954
5955 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
5956
5957         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
5958         Fixes ##320990.
5959
5960         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
5961         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
5962
5963 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
5964
5965         * metadata.c (mono_type_create_from_typespec): Remove an invalid
5966         free. Fixes #327438.
5967
5968 2007-09-21  Raja R Harinath  <harinath@gmail.com>
5969
5970         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
5971         generic instantiations, etc.
5972         <MONO_TYPE_ARRAY>: Likewise.
5973
5974 2007-09-21  Martin Baulig  <martin@ximian.com>
5975
5976         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
5977         these structs were never defined.
5978         (MonoDebugHandle): Removed the `_priv' field, it was never used.
5979
5980 2007-09-21  Martin Baulig  <martin@ximian.com>
5981
5982         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
5983
5984 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
5985
5986         * image.c: removed the guid hash tables: we can get the same info
5987         without the additional memory usage hit (partially fixes also bug #327052).
5988
5989 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
5990
5991         * profiler.h, profiler-private.h, profiler.c: add a new profiler
5992         event to handle unloading methods. After the event is called, the
5993         corresponding MonoMethod* must be considered invalid.
5994         * loader.c (mono_free_method): call the new mono_profiler_method_free
5995         event.
5996
5997 2007-09-20  Mark Probst  <mark.probst@gmail.com>
5998
5999         * domain-internals.h: New flag in MonoJitInfo which marks shared
6000         generic methods.  New hash table (shared_generics_hash) in
6001         MonoDomain to keep track of shared generic methods.  Prototypes
6002         for functions to register and lookup shared generic methods.
6003
6004         * domain.c: Support for registering and looking up shared generic
6005         methods via a hash table (shared_generics_hash) in MonoDomain.
6006
6007         * class-internals.h: New exception to signal failure of shared
6008         compilation of a generic method.  New counters for generics
6009         sharing in MonoStats.
6010
6011 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
6012
6013         * image.c, metadata-internals.h: don't keep a file descriptor open
6014         for loaded assemblies (bug#325988).
6015
6016 2007-09-19  Raja R Harinath  <rharinath@novell.com>
6017
6018         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
6019         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
6020         use the corresponding datatypes.
6021         (type_in_image): Update to changes.
6022         (CleanForImageUserData): Simplify.
6023         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
6024         Avoid quadratic behaviour in handling the "stolen" list by
6025         separating the filter predicate out, and by prepending the stolen
6026         items rather than appending them.
6027         (steal_ginst_in_image): Likewise.
6028         (mono_metadata_clean_for_image): Update to changes.
6029
6030 2007-09-19  Martin Baulig  <martin@ximian.com>
6031
6032         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
6033
6034 2007-09-19  Martin Baulig  <martin@ximian.com>
6035
6036         * mono-debug.c (mono_debug_cleanup): Don't call
6037         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
6038
6039 2007-09-19  Raja R Harinath  <harinath@gmail.com>
6040
6041         Fix crash on 'make run-test' in mcs/errors
6042         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
6043         Avoid more potential allocations in mono_class_from_mono_type.
6044         (ginst_in_image): Update to changes.
6045         (gclass_in_image): Rearrange slightly.
6046
6047 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
6048
6049         * class.c (mono_class_init): Move the code that sets up class->methods to 
6050         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
6051
6052         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
6053         canonical instance of an inflated generic signature.
6054         (mono_type_create_from_typespec): Remove an invalid free.
6055
6056         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
6057
6058 2007-09-18  Marek Habersack  <mhabersack@novell.com>
6059
6060         * domain-internals.h: added a declaration of the
6061         mono_assembly_load_full_nosearch internal function.
6062
6063         * assembly.c (mono_assembly_load_with_partial_name): use
6064         mono_try_assembly_resolve return value properly.
6065         (mono_assembly_load_full_nosearch): copied the function body from
6066         mono_assembly_load_full, without the code to invoke assembly
6067         search hooks.
6068         (mono_assembly_load_full): calls the above new function and if the
6069         assembly is not resolved, invokes the search hooks.
6070
6071         * appdomain.c (mono_runtime_init): restore the global postload
6072         assembly search handlers.
6073
6074 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
6075
6076         * class.c (mono_class_init): Make sure class->methods and class->properties
6077         are never NULL in the generics case.
6078
6079         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
6080
6081 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
6082
6083         * metadata.c (free_generic_class): Disable some code to fix the build.
6084
6085         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
6086
6087         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
6088         from the image mempool.
6089
6090         * metadata.c (free_generic_class): Free more data from the inflated class.
6091
6092         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
6093
6094         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
6095         mempool.
6096         (mono_type_create_from_typespec): Ditto.
6097
6098         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
6099         MonoImage to the caller.
6100         (mono_init_internal): Save the opened image in a global variable.
6101         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
6102
6103         * reflection.c (resolve_object): Fix a leak.
6104
6105         * metadata.c: Fix the freeing of data in the generics caches.
6106         
6107         * metadata.c (free_generic_inst): Comment this out to fix the build.
6108         (free_generic_class): Ditto.
6109
6110         * metadata.c: Free cached generic methods, instantinations and classes when
6111         they are removed from the caches.
6112         (mono_metadata_free_type): Free the type itself.
6113
6114         * class.c: Free the result of mono_class_inflate_generic_type () in a few
6115         places.
6116
6117 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
6118
6119         * boehm-gc.c: restrict managed allocs to __thread supporting
6120         architectures.
6121
6122 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
6123
6124         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
6125         (mono_generic_class_get_class): Fix a leak.
6126
6127         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
6128         mono_metadata_free_type ().
6129         (mono_metadata_inflate_generic_inst): Fix a leak.
6130
6131 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6132
6133         * mono-debug.c (free_header_data): Fix a leak missed earlier.
6134
6135         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
6136         mempool.
6137
6138         * mono-debug.c (mono_debug_close_image): Fix call to 
6139         g_hash_table_remove ().
6140
6141 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
6142
6143         * icall-def.h: redirect all the string ctor to the managed
6144         CreateString () methods.
6145         * string-icalls.c, string-icalls.h: removed dead code for string
6146         ctors and icalls.
6147
6148 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6149
6150         * mono-debug.c: Fix memory leaks.
6151
6152 2007-09-14  Jonathan Chambers <joncham@gmail.com>
6153
6154         * threads-types.h: Implement mono_hazard_pointer_set and 
6155         mono_hazard_pointer_clear macros using do/while(0) to fix
6156         compilation with MSVC.
6157         
6158         Code is contributed under MIT/X11 license.
6159
6160 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6161
6162         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
6163         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
6164
6165 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6166
6167         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
6168         icalls.
6169
6170 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6171
6172         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
6173         managed-code allocated as well.
6174
6175 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
6176
6177         * class.c (mono_class_is_assignable_from): Add support for generic variance.
6178
6179 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
6180
6181         * boehm-gc.c: fixed the build after the AOT changes.
6182
6183 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
6184
6185         * wrapper-types.h: Add an ALLOC wrapper type.
6186
6187         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
6188         reference managed allocator methods.
6189
6190 2007-09-12  Marek Safar  <marek.safar@gmail.com>
6191
6192         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
6193         of Type array and not MonoType, a fix suggested by Hari.
6194         
6195 2007-09-12  Jonathan Chambers <joncham@gmail.com>
6196
6197         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
6198         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
6199         
6200         Code is contributed under MIT/X11 license.
6201
6202 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
6203
6204         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
6205
6206 2007-09-12  Marek Habersack  <mhabersack@novell.com>
6207
6208         * image.c (do_mono_image_open): if assembly file fails to open and
6209         MONO_IOMAP is in effect, try to find the path in a
6210         case-insensitive way.
6211
6212         * appdomain.c (mono_runtime_init): do not install postload hooks -
6213         tests show that MS.NET doesn't use anything of that sort to
6214         trigger the AppDomain.AssemblyResolve event.
6215         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
6216         made non-static.
6217         (mono_runtime_init): init portability helpers here.
6218
6219         * assembly.c (mono_assembly_load_with_partial_name): if other   
6220         attempts fail, trigger the AppDomain.AssemblyResolve event handler
6221         to resolve the assembly.
6222
6223         * domain-internals.h: added mono_try_assembly_resolve and marked
6224         it as internal.
6225
6226 2007-09-11  Jb Evain  <jbevain@novell.com>
6227
6228         * object-internals.h (MonoReflectionDynamicMethod): add
6229         a `MonoReflectionType *owner` field. The owner is used
6230         * reflection.c:
6231         (mono_reflection_create_dynamic_method): use the owner of the dynamic
6232         method as the class declaring the dynamic method.
6233         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
6234         dynamic method to the declaring type of the methodbuilder.
6235
6236 2007-09-11  Mark Probst  <mark.probst@gmail.com>
6237
6238         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
6239         rules for calling methods via reflection.
6240
6241 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
6242
6243         * reflection.c (resolve_object): Add support for MonoGenericClass. 
6244         Inflate MonoType's.
6245
6246 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
6247
6248         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
6249         provide a managed method that does fast allocations without needing
6250         a managed->unmanaged transition. Boehm GC implementation currently
6251         enabled for ptrfree objects on sane architectures.
6252
6253 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
6254
6255         * marshal.c, marshal.h: exported a couple of useful functions and
6256         added mono_mb_get_label () to easily handle backward branches.
6257
6258 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
6259
6260         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
6261
6262 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
6263
6264         * loader.c (find_method): Fixed the regression introduced while
6265         fixing bug #81466.
6266
6267 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
6268
6269         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
6270         well.
6271         
6272         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
6273         icall.c reflection.c: Pass a MonoGenericContext argument to 
6274         mono_lookup_dynamic_token ().
6275
6276         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
6277         #82744.
6278         
6279 2007-09-09  Robert Jordan  <robertj@gmx.net>
6280
6281         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
6282         for generic methods.
6283
6284         * object.c (mono_object_get_virtual_method): Handle generic methods.
6285         Fixes bug #78882.
6286
6287         Code is contributed under MIT/X11 license.
6288
6289 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
6290
6291         * image.c: fix locking in mono_image_load_file_for_image ().
6292
6293 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
6294
6295         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
6296         used only as a cache: added an icall to fill it.
6297
6298 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
6299
6300         * reflection.h: exposed mono_reflection_free_type_info
6301         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
6302         since mono_reflection_bind_generic_parameters makes a copy of it.
6303         * reflection.c (free_type_info): subinfos should be freed.
6304         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
6305         made non static.
6306         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
6307         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
6308         this fixes #82695 and #81726.
6309    
6310
6311 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
6312
6313         * process.h, process.c:  added support for user profile/info in
6314           ProcessStartInfo. For now only Windows works.
6315
6316 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
6317
6318         * metadata.c: consider the generic arguments when comparing
6319         signatures (bug #82614).
6320
6321 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
6322
6323         * cil-coff.h, image.c: updated assembly loader to cope with the
6324         PE32+ 64 bit file format.
6325
6326 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
6327
6328         * assembly.c, class.c, domain.c, loader.c: remove useless
6329         inclusion of cil-coff.h.
6330
6331 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
6332
6333         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
6334         if interface is marked with CoClassAttribute. 
6335    
6336         Code is contributed under MIT/X11 license.
6337
6338 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
6339
6340         * sgen-gc.c: ensure no object from the to space is copied again or finalized
6341         if it's seen twice in major collections.
6342
6343 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
6344
6345         * sgen-gc.c: big objects are not copied to the gray area, but they
6346         need to be considered for scanning, too, if they are brought alive
6347         by an object ready for finalizations or a survived one.
6348
6349 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
6350
6351         * sgen-gc.c: properly account the number of disappearing links when
6352         they are nullified.
6353
6354 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
6355
6356         * sgen-gc.c: share the code to scan the registered roots between the
6357         different types of collections.
6358
6359 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
6360
6361         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
6362
6363 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
6364
6365         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
6366         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
6367
6368 2007-08-28  Mark Probst  <mark.probst@gmail.com>
6369
6370         * security-manager.c (mono_security_manager_get_methods):
6371         LinkDemandSecurityException now has 2 arguments instead of 3.
6372
6373 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
6374
6375         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
6376         platforms which need it.
6377
6378 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
6379
6380         * sgen-gc.c: unregister thread data structures with a pthread_key_t
6381         dtor.
6382
6383 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
6384
6385         * threads.c: free the thread static data on thread exit.
6386
6387 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
6388
6389         * class.c: walk the hierarchy to find the generic definition for
6390         a class (fixes runtime part of bug #82498).
6391
6392 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
6393
6394         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
6395         ...
6396
6397         * image.c (mono_image_close): Here. Hopefully fixes #82510.
6398
6399 2007-08-24  Mark Probst  <mark.probst@gmail.com>
6400
6401         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
6402
6403 2007-08-24  Robert Jordan  <robertj@gmx.net>
6404
6405         * appdomain.c: don't perform the ':'->';' substitution on Win32.
6406
6407 2007-08-24  Jb Evain  <jbevain@novell.com>
6408
6409         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
6410         for byref types.
6411
6412 2007-08-24  Mark Probst  <mark.probst@gmail.com>
6413
6414         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
6415         #82286.
6416
6417 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
6418
6419         * assembly.c: Fix a warning.
6420         
6421 2007-08-23  Marek Habersack  <mhabersack@novell.com>
6422
6423         * appdomain.c: parse the <runtime> section looking for the probing
6424         element with the 'privatePath' attribute, which sets additional
6425         directories in which the runtime should look for assemblies.
6426
6427 2007-08-23  Robert Jordan  <robertj@gmx.net>
6428
6429         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
6430         Fixes #82499.
6431
6432 2007-08-23  Martin Baulig  <martin@ximian.com>
6433
6434         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
6435         _mono_debug_init_corlib() and remove it from the header file.
6436
6437 2007-08-23  Martin Baulig  <martin@ximian.com>
6438
6439         * mono-debug-debugger.c
6440         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
6441         don't notify the debugger about it.
6442
6443         * mono-debug-debugger.h
6444         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
6445
6446 2007-08-23  Robert Jordan  <robertj@gmx.net>
6447
6448         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
6449         Code is contributed under MIT/X11 license.
6450
6451 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
6452
6453         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
6454
6455 2007-08-22  Martin Baulig  <martin@ximian.com>
6456
6457         * mono-debug.c: Store debugging info on a per-domain basis and
6458         free it on domain unload.  Add support for unloading symbol files.
6459
6460         * mono-debug.h
6461         (MonoDebugList): New typedef.
6462         (MonoSymbolTable):
6463         - add `data_tables and `type_table'.
6464         - replace 'symbol_files' and `num_symbol_files' with a
6465           `MonoDebugList *'.
6466         (mono_debug_data_table): Removed.
6467         (mono_debug_list_add): New public function.
6468         (mono_debug_list_remove): New public function.
6469         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
6470         (mono_debug_init_2_memory): Renamed into
6471         mono_debug_open_image_from_memory().
6472         (mono_debug_close_image): New public function.
6473         (mono_debug_domain_create): Likewise.
6474         (mono_debug_domain_unload): Likewise.
6475         (MONO_DEBUGGER_VERSION): Bump to 60.
6476
6477         * mono-debug-debugger.h
6478         (MonoDebuggerEvent):
6479         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
6480         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
6481         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
6482         - rename `THREAD_CREATED' and `THREAD_EXITED' into
6483           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
6484         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
6485           meaning.
6486         (mono_debugger_add_symbol_file): Removed.
6487         (mono_debugger_add_type): Removed.
6488         (mono_debugger_lookup_type): Removed.
6489         (mono_debugger_lookup_assembly): Removed.
6490
6491         * domain.c
6492         (mono_domain_create): Call mono_debug_domain_create().
6493         (mono_init_internal): Call mono_debug_init_corlib().
6494
6495         * assembly.c
6496         (mono_assembly_close): Call mono_debug_close_image().
6497
6498 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
6499
6500         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
6501         mmap call.
6502
6503 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
6504
6505         * sgen-gc.c: ensure section->pin_queue_end is initialized
6506         correctly when non pinning objects in the section have been found.
6507
6508 2007-08-22  Marek Habersack  <mhabersack@novell.com>
6509
6510         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
6511         containing a list of directories separated by ':'. MSDN docs say
6512         the directories should be separated with ';'. Part of a bugfix for
6513         bug #81446
6514
6515 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
6516
6517         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
6518         it should MonoType and not MonoClass.
6519
6520 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
6521
6522         * culture-info-table.h : regenerated.
6523
6524 2007-08-20  William Holmes  <billholmes54@gmail.com>
6525
6526         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
6527          to call ReplaceFile Kernel32 on windows or in io-layer.
6528         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
6529         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
6530          as an internal call.
6531
6532         Code is contributed under MIT/X11 license.
6533
6534 2007-08-20  Jb Evain  <jbevain@novell.com>
6535
6536         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
6537         and MONO_EXCEPTION_FIELD_ACCESS.
6538
6539         * debug-helpers.[c|h]: new mono_field_full_name function.
6540
6541 2007-08-20  Mark Probst  <mark.probst@gmail.com>
6542
6543         * class.c: Removed class_security_level() and moved it to
6544         security-core-clr.c.
6545
6546         * security-core-clr.c, security-core-clr.h: class_security_level()
6547         is now public and renamed to mono_security_core_clr_class_level().
6548         It also looks for security attributes in the classes a class is
6549         nested in.
6550
6551 2007-08-20  Mark Probst  <mark.probst@gmail.com>
6552
6553         * security-core-clr.c, security-core-clr.h: CoreCLR security
6554         utility functions.
6555
6556         * Makefile.am: Added security-core-clr.[ch].
6557
6558         * security-manager.c, security-manager.h: Functions and enum for
6559         setting and getting the security mode.
6560
6561         * class.c: CoreCLR security checks.
6562
6563 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
6564
6565         * icall-def.h, process.c, process.h: implemented icall to get
6566         user/system processor times.
6567
6568 2007-08-17  Mark Probst  <mark.probst@gmail.com>
6569
6570         * domain.c, threads.c, class-internals.h, domain-internals.h: New
6571         reader-lock-free jit_info_table.
6572
6573 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
6574
6575         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
6576
6577         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
6578
6579         * object-internals.h (MonoException): Add missing _data member.
6580
6581 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
6582
6583         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
6584         checking that only methods with matching qname or fqname are picked
6585         from implemented interfaces.
6586
6587 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
6588
6589         * verify.c (do_newarr):added, do type verification of
6590         newarr ops, push the right value on the eval stack.
6591         * verify.c (mono_method_verify): use do_newarr
6592
6593
6594 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
6595
6596         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
6597         factored the common code into get_boxable_mono_type, which
6598         is now using mono_type_get_full, this fixed byref related tests.
6599
6600 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
6601
6602         * class.c: added mono_type_get_full, this function has the same
6603         behavior of mono_class_get_full but the returned MonoType has
6604         all metadata of the associated token in case of a typespec token.
6605         * class.c: added mono_type_retrieve_from_typespec, used by 
6606         mono_type_get_full to retrieve the token type.
6607         * class.c (mono_class_create_from_typespec): changed to use
6608         mono_type_retrieve_from_typespec.
6609         * class.c (mono_ldtoken): changed to use mono_type_get_full
6610         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
6611         * class-internals.h: exported mono_type_get_full for internal use.
6612
6613 2007-08-16  Jb Evain  <jbevain@novell.com>
6614
6615         * domain.c (supported_runtimes): add entry for
6616         the 'moonlight' runtime version.
6617
6618 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
6619
6620         * verify.c (mono_method_verify): small typo sliped in.  
6621
6622 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
6623
6624         * verify.c (do_unbox_value): added, do type verification of
6625         unboxing ops
6626         * verify.c (mono_method_verify): use do_unbox_value
6627
6628
6629 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
6630
6631         * verify.c (dump_stack_value): fixed typo, was printing string
6632         instead of object on stack.
6633         * verify.c (do_box_value): moved the byref check up as it leads
6634         to invalid code and should be done earlier.
6635         * verify.c: improved error messages for and ldobj
6636
6637 2007-08-15  William Holmes  <billholmes54@gmail.com>
6638
6639         * marshal.c (emit_marshal_custom): Omit the call to 
6640           marshal_native_to_managed when calling native to managed 
6641           and the argument is specified as an out argument.
6642
6643         Code is contributed under MIT/X11 license.
6644
6645 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
6646
6647         * verify.c: fixed the type checks for generics, function pointers and vectors.
6648         Added type verification for ldobj and ldtoken. The verifier
6649         would segfault if header or signature of a method contained references
6650         to non-existant types.
6651
6652 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
6653
6654         * marshal.c (cominterop_get_ccw): Patch from
6655         Bill Holmes to no walk up interface hierarchy. 
6656         All parent methods should be present in the interface for COM.
6657    
6658         Code is contributed under MIT/X11 license.
6659
6660 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
6661
6662         * marshal.c (emit_marshal_com_interface): Patch from
6663         Bill Holmes to handle COM Interfaces as return values
6664         for native->managed calls.
6665    
6666         Code is contributed under MIT/X11 license.
6667
6668 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
6669
6670         * marshal.c (cominterop_get_idispatch_for_object): Implement
6671         for runtime callable wrappers.
6672    
6673         Code is contributed under MIT/X11 license.
6674
6675 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
6676
6677         * pedump.c (main): changed from mono_init to mono_init_from_assembly
6678         so 2.0 types are accessible
6679
6680
6681 2007-08-13  Miguel de Icaza  <miguel@novell.com>
6682
6683         * domain.c (mono_init_internal): Call mono_assembly_load_friends
6684         once we load mscorlib.   Due to the order in which we initialize,
6685         the mono_assembly_load_full routine that loads mscorlib did not
6686         load friends.   We now load it once we load the
6687         mono_defaults.internals_visible_class class. 
6688
6689         * assembly.c: Expose the mono_load_friend_assemblies method.
6690
6691 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
6692
6693         * verify.c: improved the handling of boxing, better
6694         type checking for unary ops and conversion. Fix bug
6695         regarding managed pointer compatibility checking
6696
6697 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
6698
6699         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
6700
6701         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
6702
6703 2007-08-09  Raja R Harinath  <rharinath@novell.com>
6704
6705         * reflection.c (dup_type): Remove.
6706         * class.c (dup_type): Remove.
6707         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
6708         instead of the dodgy 'dup_type'.
6709         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
6710         handle the case where 'dup_type' needed the second argument.
6711
6712 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
6713
6714         * domain.c: Fix a warning.
6715
6716 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
6717
6718         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
6719         checking that methods with the same fqname are not overridden
6720         with a method from an ancestor.
6721
6722 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
6723
6724         * threads.c (free_thread_static_data_helper): Avoid a crash if
6725         thread->static_data is not yet set.
6726
6727 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
6728
6729         * marshal.c: Use correct image when emitting
6730         native wrapper for COM calls.
6731    
6732         Code is contributed under MIT/X11 license.
6733
6734 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
6735
6736         * icall-def.h, security.c, security.h :
6737           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
6738
6739 2007-08-07  Martin Baulig  <martin@ximian.com>
6740
6741         * mono-debug-debugger.h
6742         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
6743
6744         * domain.c (mono_domain_free): Call
6745         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
6746
6747 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
6748
6749         * verify.c (check_underflow, check_overflow): error message now returns IL offset
6750         * verify.c (in_same_block): code should test if either offset is inside the clauses
6751         * verify.c (mono_method_verify): push the exception into the eval stack of exception
6752         and filter blocks
6753
6754 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
6755
6756         * image.c (mono_image_close): Fix a leak.
6757
6758         * object.c (mono_runtime_invoke_array): Avoid using alloca.
6759
6760         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
6761
6762 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
6763
6764         * domain.c, threads.c, threads-types.h: fix memory retention issue
6765         with thread static variables not being cleared on domain unload.
6766         Reuse thread static slots after domain unload.
6767
6768 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
6769
6770         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
6771         nullable type.
6772
6773         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
6774         now done in mono_runtime_invoke_array.
6775
6776         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
6777         receiver is a nullable type.
6778
6779         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
6780         generic parameter.
6781
6782 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
6783
6784         * marshal.c: Implement COM Objects as return type for 
6785         managed->unmanaged calls. Added Release calls for COM Object
6786         out/return values in managed->unmanaged calls.
6787
6788         Code is contributed under MIT/X11 license.
6789
6790 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
6791
6792         * threads.h, threads-type.h: move the hazard pointer declarations
6793         to the private header.
6794
6795 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
6796
6797         * file-io.c, appdomain.c: memory leak fixes.
6798
6799 2007-08-02  Dick Porter  <dick@ximian.com>
6800
6801         * socket-io.c
6802         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
6803         SO_REUSEADDR setting into io-layer/sockets.c.
6804
6805 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
6806
6807         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
6808         from Object when called on a generic parameter. Fixes #82211.
6809
6810 2007-08-01  Dick Porter  <dick@ximian.com>
6811
6812         * file-io.c (convert_share): Test FileShare values bit-by-bit.
6813         Fixes bug 79250 yet again.
6814
6815 2007-07-30  Martin Baulig  <martin@ximian.com>
6816
6817         Merged the `debugger-dublin' branch.
6818
6819         * mono-debug.h
6820         (MonoDebugDataTable): New typedef.
6821         (MonoDebugMethodAddressList): New typedef.
6822         (MonoDebugWrapperData): Removed.
6823         (MonoDebugSymbolTable): Removed `current_data_table',
6824         `current_data_table_size', `current_data_table_offset'.
6825         (MonoDebugDataItemType): Moved into mono-debug.c.
6826         (MonoDebugMethodJitInfo): Remove `address'.
6827         (mono_debug_data_table): New global variable.
6828         (mono_debug_lookup_method_addresses): New public function.
6829         (mono_debug_find_method): Take a `MonoMethod *', not a
6830         `MonoDebugMethodInfo *'.
6831
6832         * mono-debug.c: Drop support for the old symbol tables.
6833
6834 2007-06-28  Martin Baulig  <martin@ximian.com>
6835
6836         * mono-debug.c (mono_debug_debugger_version): New public variable.
6837
6838 2007-07-31  William Holmes  <billholmes54@gmail.com>
6839
6840         * metadata.c Changed mono_type_create_from_typespec to not insert
6841           the type into the hash map until after
6842           do_mono_metadata_parse_type has completed.
6843         Fixes Bug #82194
6844         Code is contributed under MIT/X11 license.
6845
6846 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
6847
6848         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
6849         generic parameter. Fixes #82211.
6850
6851 2007-07-27  Jb Evain  <jbevain@novell.com>
6852
6853         * pedump.c (dump_metadata, dump_metadata_header): dump
6854         versions contained in the metadata header.
6855
6856 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
6857
6858         * threads.c: register small_id_table with the GC.
6859
6860 2007-07-27  Mark Probst  <mark.probst@gmail.com>
6861
6862         * threads.c, threads.h, class-internals.h, object-internals.h:
6863         Hazard pointers, to be used by lock-free parallel algorithms.
6864
6865 2007-07-26  Dick Porter  <dick@ximian.com>
6866
6867         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
6868         routine on non-windows platforms, as I've not managed to think of
6869         a non-kludgy way of doing this.  Finishes off bug 78739.
6870
6871 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
6872
6873         * object.c: properly setup interface_bitmap in proxy vtables.
6874
6875 2007-07-25  Marek Habersack  <mhabersack@novell.com>
6876
6877         * appdomain.c (get_shadow_assembly_location): do not use TickCount
6878         to create unique shadow copy target directories, use the domain's
6879         serial number instead. Each domain gets a unique target directory
6880         that way.
6881
6882         * domain.c (mono_domain_create): added code to increment domain
6883         shadow copy serial number and cache the value in the current
6884         domain structure.
6885
6886         * domain-internals.h (struct _MonoDomain): added a new field -
6887         shadow_serial to hold the serial number used in generation of
6888         shadow-copy directories. This is to make sure that the directory
6889         name is unique for each and every domain created. We avoid a race
6890         condition with overriding assemblies already in use by other app
6891         domains.
6892
6893 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
6894
6895         * class.c (mono_bounded_array_class_get): fixed memory leak when 
6896         binding generic parameters.
6897
6898 2007-07-24  Raja R Harinath  <rharinath@novell.com>
6899
6900         * metadata.c (do_mono_metadata_parse_generic_class): Use
6901         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
6902         error.
6903
6904 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
6905
6906         * loader.c, class-internals.h, reflection.c: removed the per-method
6907         generics hashtable: we use the global one through the call of
6908         mono_class_inflate_generic_method ().
6909
6910 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
6911
6912         * class.c, metadata.c, class-internals.h: introduce yet another
6913         generics global cache for inflated methods (fixes 98% of the perf
6914         issue in bug #81806).
6915
6916 2007-07-23  Raja R Harinath  <rharinath@novell.com>
6917
6918         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
6919         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
6920         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
6921         return a MonoGenericInst containing (a copy) of those types.
6922         (mono_metadata_inflate_generic_inst): Update to changes.
6923         (mono_metadata_parse_generic_inst): Likewise.
6924         (mono_get_shared_generic_inst): Likewise.
6925         * reflection.c (mono_class_bind_generic_parameters): Likewise.
6926         (mono_reflection_bind_generic_method_parameters): Likewise.
6927         * metadata-internals.h: Likewise.
6928         * icall.c (free_generic_context): Kill.
6929         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
6930
6931         * reflection.c (reflection_methodbuilder_to_mono_method): Use
6932         mono_metadata_type_dup.
6933         * marshal.c (mono_mb_create_method): Likewise.
6934
6935         * metadata.c (mono_metadata_type_dup): Rename from
6936         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
6937         MonoImage.  Handle a few more cases, esp. when no mempool is given.
6938         * marshal.c, metadata-internals.h: Update to changes.
6939
6940 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6941
6942         * class.c: fixed a small leak for array classes and removed warning.
6943
6944 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
6945
6946         * loader.c (mono_method_get_param_token): Make this work on generic methods.
6947         Return 0x8000000 for return parameters. Fixes #82161.
6948
6949 2007-07-21  Marek Habersack  <grendello@gmail.com>
6950
6951         * appdomain.c (get_shadow_assembly_location): append the current
6952         ticks value to the path. Avoids overwriting the same assemblies by
6953         several threads at the same time.
6954
6955 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
6956         and Raja R Harinath  <rharinath@novell.com>
6957
6958         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
6959         Simplify slightly.
6960         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
6961         property for testing if a method is a generic method definition.
6962
6963 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
6964
6965         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
6966
6967 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6968
6969         * verify.c: used function from private branch, reverted to the one in class.h 
6970
6971 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6972
6973         * verify.c: a typo slipped in and the code wont compile
6974
6975 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6976
6977         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
6978         disabled box instruction as it is doing the wrong thing
6979         improved stack dump messages, now it is easier to debug type related issues
6980
6981
6982 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
6983
6984         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
6985
6986 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6987
6988         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
6989         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
6990         grouped with class and valuetype. This change will simply 
6991         the code as it should be handled just like unmanaged pointers.
6992
6993 2007-07-19  Mark Probst  <mark.probst@gmail.com>
6994
6995         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
6996
6997 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6998
6999         * verify.c: several stack merge issues fixed, reference comparisons now
7000         check the type size. strict type check now works correctly.
7001         added more uses of IS_MANAGED_POINTER macro.
7002         fixed issues pointed by running the test suite against .net.
7003         
7004
7005 2007-07-19  Mark Probst  <mark.probst@gmail.com>
7006
7007         * class.c, loader.c, class-internals.h: Removed the
7008         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
7009         defines.
7010
7011         * icall.c: Better error checking in some internal reflection
7012         methods.
7013
7014 2007-07-18  William Holmes  <billholmes54@gmail.com>
7015
7016         * filewatcher.c : removed unused variable 'filename' in 
7017           ves_icall_System_IO_FSW_SupportsFSW
7018
7019 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
7020
7021         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
7022         obsolete, removed.
7023
7024 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
7025
7026         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
7027         
7028         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
7029
7030 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
7031
7032         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
7033         Implement generics support.
7034         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
7035
7036         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
7037         type_args and method_args arguments.
7038         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
7039         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
7040         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
7041
7042 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
7043
7044         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
7045           It adds a rootimage parameter to mono_reflection_get_type_internal,
7046           adds new function mono_reflection_get_type_with_rootimage and use
7047           the rootimage to resolve the types instead of the current image
7048
7049 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7050
7051         * culture-info-table.h: Forgot to update after r78304.
7052
7053 2007-07-13  Raja R Harinath  <rharinath@novell.com>
7054
7055         * class.c (mono_class_is_open_constructed_type)
7056         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
7057
7058 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
7059
7060         * class.c (mono_bounded_array_class_get):  method fails if used with
7061         an incomplete TypeBuilder enum (no basetype field), fixed it by 
7062         avoiding calculating the size for such array as it cannot be instantiated.
7063         Fix bug #82015
7064
7065 2007-07-12  Raja R Harinath  <rharinath@novell.com>
7066
7067         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
7068         field.
7069         * metadata.c, reflection.c: Update to changes.
7070
7071 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
7072
7073         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
7074         mono_class_is_valid_enum, they are used to valide a enum when loading.
7075         * reflection.c: used new functions to throw TypeLoadException when and
7076         invalid enum is build with TypeBuilder. Fixes #82018
7077   
7078 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
7079
7080         * object.c: forgot commit of mono_class_setup_methods () to access
7081         iface->methods.
7082         * object-internals.h: added a few more handy fields to
7083         MonoIMTCheckItem.
7084
7085 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
7086
7087         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
7088         iface->methods.
7089
7090 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
7091
7092         * class-internals.h, object-internals.h, object.c: IMT-based
7093         interface invocation core from Massimiliano Mantione
7094         (massi@ximian.com) with a reworked arch-specific interface,
7095         bsearch implementation and a few bugfixes and memory savings by me.
7096
7097 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
7098
7099         * class.c (mono_class_create_from_typedef): mono would segfault if 
7100         an enum did not have a __value field. It now throws a TypeLoadException
7101         for such cases. Fix bug #82022
7102
7103 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
7104
7105         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
7106
7107 2007-07-09  Mark Probst  <mark.probst@gmail.com>
7108
7109         * class.c (mono_class_init): If a class is already inited but has
7110         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
7111
7112 2007-07-09  Mark Probst  <mark.probst@gmail.com>
7113
7114         * class.c: Properly handle the case of an unimplemented interface
7115         method.  Fixes: 81673.
7116
7117 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
7118
7119         * class-internals.h, object.c: cleanup patch from massi: use
7120         MonoVTable->interface_bitmap since the vtable interfaces offset array
7121         is going away.
7122
7123 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
7124
7125         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
7126         GetMDStreamVersion icall instead.
7127
7128 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
7129
7130         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
7131         not use mono_dl_build_path() with a full library name: makes
7132         fallbacks to libgaim and libfam work.
7133
7134 2007-07-06  William Holmes  <billholmes54@gmail.com>
7135
7136         * assembly.c: Added a continue statement in probe_for_partial_name when
7137          parse_assembly_directory_name fails.  Fixes : 82002
7138
7139 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
7140
7141         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
7142         and added a verification  for TYPEDBYREF.
7143         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
7144         make native int interchangeable with int32 and some small cleanup and formating.
7145         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
7146         handle byref of byref.
7147         * verify.c (push_local): handle byref of byref.
7148         * verify.c (do_binop): invalid mix of values is unverifiable
7149         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
7150         added visibility checks
7151         * verify.c (field related method): added visibility checks
7152         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
7153
7154 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
7155
7156         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
7157         string.
7158
7159 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
7160
7161         * profiler.c (mono_profiler_load): Fix an off-by-one error.
7162
7163         * marshal.c (emit_marshal_string): When returning a string from managed code,
7164         allways make a copy even for unicode strings. Fixes #81990.
7165
7166 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
7167
7168         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
7169         of byref generic inst types (bug #81997).
7170
7171 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
7172
7173         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
7174         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
7175
7176 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
7177
7178         * marshal.c (emit_marshal_string): Add support for unicode strings in
7179         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
7180
7181 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
7182
7183         * verify.c: field load/store are now verified, missing only access checks now
7184
7185 2007-06-28  Martin Baulig  <martin@ximian.com>
7186
7187         * mono-debug.c (mono_debug_debugger_version): New public variable.
7188
7189 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
7190
7191         * locales.c: When constructing DateTimeFormat or NumberFormat for
7192         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
7193         MonoCultureInfo contructed from the current locale is always
7194         read-only and has UseUserOverride set to true. All MonoCultureInfo
7195         instances returned for GetCultures have both IsReadOnly and
7196         UseUserOverride set to true. Fixes part of bug #81930.
7197
7198 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
7199
7200        * icall-def.h: Update System.__ComObject icalls
7201        * marshal.c: Avoid managed transition (and object creation)
7202        when looking up COM interface in RCW.
7203        * marshal.h: Ditto.
7204        
7205        Code is contributed under MIT/X11 license.
7206
7207 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
7208
7209         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
7210         to avoid crashes during assembly unloading.
7211
7212 2007-06-22  Raja R Harinath  <rharinath@novell.com>
7213
7214         Fix MethodInfo.IsGenericMethodDefinition
7215         * reflection.c (mono_reflection_bind_generic_method_parameters):
7216         Rearrange code to ensure we always uses a generic method definition.
7217         * class.c (mono_class_inflate_generic_method_full): Set
7218         'generic_container' field only for generic method definitions.
7219         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
7220         Use presense of 'generic_container' field as indication of being a
7221         generic method definition.
7222
7223 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
7224
7225         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7226
7227         * object-internals.h: Reflect changes in the layout of the managed Delegate
7228         class.
7229         
7230         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
7231         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
7232         runtime memory used by the dynamic method. Fixes #77146.
7233
7234 2007-06-21  Dick Porter  <dick@ximian.com>
7235
7236         * file-io.h: 
7237         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
7238         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
7239         81767.
7240
7241 2007-06-21  Raja R Harinath  <rharinath@novell.com>
7242
7243         * reflection.c (method_encode_methodspec): Add a tripwire.
7244         * class.c (inflate_generic_type): The fully open generic type is
7245         not the same as the generic type definition.
7246
7247 2007-06-21  Martin Baulig  <martin@ximian.com>
7248
7249         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
7250
7251         * mono-debug-debugger.h
7252         (MonoDebuggerBreakpointInfo): Removed.
7253         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
7254         (mono_debugger_remove_breakpoint): Likewise.
7255         (mono_debugger_breakpoint_callback): Likewise.
7256         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
7257
7258 2007-06-21  Raja R Harinath  <rharinath@novell.com>
7259
7260         * metadata.c (mono_metadata_lookup_generic_class): The fully open
7261         generic type is not the same as the generic type definition.
7262         * class.c (mono_generic_class_get_class): Likewise.
7263
7264 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
7265
7266         * icall.c: The second argument to 
7267         System.Reflection.MethodBase.GetMethodFromHandleInternalType
7268         is a MonoType not a MonoClass.
7269
7270 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
7271
7272         * verify.c: support for function pointers in the verifier
7273
7274 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
7275
7276         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
7277
7278 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
7279
7280         * assembly.c: removed Mono.Data.SqliteClient from the list of
7281         forward-compatible assemblies as it breaks the ABI (bug #81899).
7282
7283 2007-06-19  Raja R Harinath  <rharinath@novell.com>
7284
7285         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
7286         lookup/update with the loader lock.
7287         * reflection.c (mono_class_bind_generic_parameters): No need to
7288         protect mono_metadata_lookup_* with the loader lock.
7289         * class.c (inflate_generic_type): Likewise.
7290         
7291         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
7292         on a generic instantiated type.
7293
7294 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
7295
7296         *verify.c: produce meanfull error messages on verification error
7297         *verify.c: fixed some cases of verification errors reported as validation errors
7298         *pedump.c: fixed the error name array, now it shows validation errors properly
7299         *verify.h: fixed the contant that should be used for verification errors
7300
7301 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
7302
7303         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
7304         for bug #77596, 81858 and 80743 (generics data structures on domain
7305         unload).
7306
7307 2007-06-15  Raja R Harinath  <rharinath@novell.com>
7308
7309         Avoid allocating 'MonoGenericContext' on the heap.
7310         * class-internals (_MonoMethodInflated::context): Make field
7311         inline, not a pointer.
7312         * loader.c (method_from_methodspec): Allocate 'new_context' on the
7313         stack.  Use the context embedded within the inflated method as the
7314         hash key, rather than 'new_context'.
7315         * class.c (inflate_generic_context): Simplify.  Return a struct
7316         rather than allocating on the heap.
7317         (mono_class_inflate_generic_method_full): Update to changes.  Now,
7318         doesn't salt away a copy of the context -- simplifying the
7319         lifetime rules of a 'MonoGenericContext *'.
7320         (mono_method_get_context): Return pointer to embedded context.
7321         (setup_generic_array_ifaces): Allocate temporary context on stack.
7322         * reflection.c (inflate_mono_method): Likewise.
7323         (mono_reflection_bind_generic_method_parameters): Likewise.
7324         Use the context embedded within the inflated method as the hash key.
7325
7326         Avoid a source of allocation of 'MonoGenericContext'.
7327         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
7328         and 'cached_context' fields into embedded 'MonoGenericContext' field.
7329         * class.c: Update to changes.
7330         (mono_generic_class_get_context): Simplify drastically.  Now just
7331         returns a pointer to the field.
7332         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
7333         argument as a const pointer.
7334         (mono_metadata_generic_context_equal): Likewise.
7335         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
7336         Update to changes.
7337
7338 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
7339
7340         * verify.c improved the handling of brtrue/brfalse, factored out common code
7341
7342 2007-06-14  Raja R Harinath  <rharinath@novell.com>
7343
7344         Kill MonoGenericMethod.
7345         * class-internals.h (MonoGenericContext::method_inst): Rename from
7346         'gmethod' and convert to a MonoGenericInst.
7347         (MonoGenericMethod): Remove.
7348         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
7349         * loader.c (method_from_methodspec): Update to changes.  Use a
7350         MonoGenericContext as the key to the hashtable.
7351         * metadata.c (mono_metadata_generic_context_equal): Rename from 
7352         'mono_metadata_generic_method_equal' and take MonoGenericContext.
7353         (mono_metadata_generic_context_hash): Likewise from
7354         'mono_metadata_generic_method_hash'.  Change hash function.
7355         (mono_metadata_load_generic_params): Update to changes.
7356         (mono_get_shared_generic_method): Remove.
7357         * metadata-internals.h (mono_get_shared_generic_method): Remove.
7358         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
7359         (inflate_generic_context): Likewise.
7360         (mono_class_inflate_generic_method_full): Likewise.
7361         (setup_generic_array_ifaces): Likewise.
7362         (mono_class_create_from_typespec): Likewise.
7363         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
7364         (method_encode_methodspec): Update callsite.
7365         (reflection_methodbuilder_to_mono_method): Update to changes.
7366         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
7367         MonoGenericContext as the key to the hashtable.
7368         (inflate_mono_method): Update to changes.
7369
7370         * class-internals.h (MonoGenericMethod::container): Remove.
7371         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
7372
7373 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
7374
7375         * profiler-private.h, profiler.c, profiler.h: added API to profile
7376         exception events.
7377
7378 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
7379
7380         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
7381
7382 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
7383
7384         * verify.c: method invocation is now validated, now we verify parameter types on stack.
7385         Fixed overflow and underflow not aborting the verification process.
7386
7387 2007-06-13  Mark Probst  <mark.probst@gmail.com>
7388
7389         * class-internals.h (MonoStats): Added stats entries for dynamic
7390         code allocations.
7391
7392 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
7393
7394         * loader.c (mono_free_method): Free header->locals and header->clauses.
7395
7396         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
7397         dynamic case.
7398
7399         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
7400
7401         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
7402
7403 2007-06-12  Raja R Harinath  <rharinath@novell.com>
7404
7405         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
7406         the tables.
7407
7408 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
7409
7410         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
7411
7412 2007-06-11  Raja R Harinath  <harinath@gmail.com>
7413
7414         MonoGenericMethod on a diet
7415         * class-internals.h (_MonoMethodInflated::reflection_info): Move
7416         here ...
7417         (_MonoGenericMethod::reflection_info): ... from here.
7418         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
7419         Update to changes.
7420         * reflection.c (inflate_mono_method): Likewise.
7421         (mono_reflection_bind_generic_method_parameters): Likewise.
7422
7423 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
7424
7425         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
7426         *verify.c: factored long ldarg forms to share code with short forms
7427
7428 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
7429
7430         *verify.c: fixed code formating factored some duplicate code
7431         into a new function
7432
7433         *verify.h: fixed binary incompatibility introduced earlier
7434
7435         *pedump.c: fixed formating
7436
7437 2007-06-11  Raja R Harinath  <harinath@gmail.com>
7438
7439         Fix assertion when disassembling Mono.C5.dll
7440         * loader.c (method_from_methodspec): Avoid inflating a method
7441         twice with the same context.  If the methodref is inflated, use
7442         the declaring method instead.
7443
7444         * class.c (mono_class_from_generic_parameter): Fix case similar to
7445         bug #81830 handled below, but for method containers.
7446
7447 2007-06-10  Raja R Harinath  <harinath@gmail.com>
7448
7449         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
7450         get_shared_generic_class.  Directly inflate the instance.
7451         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
7452         (inflate_generic_class): Delete.
7453         (get_shared_generic_class): Delete.  Move setting of
7454         'cached_class' and 'cached_context' ...
7455         * metadata.c (mono_metadata_lookup_generic_class): ... here.
7456
7457         * metadata.c (mono_metadata_lookup_generic_class): Change
7458         signature to take the components of a MonoGenericClass rather than
7459         an allocated MonoGenericClass.  Change semantics to be intern-like.
7460         * reflection.c (mono_class_bind_generic_parameters): Update to
7461         changes.  Make locking region tighter.
7462         * class.c (inflate_generic_class): Update to changes.
7463         (get_shared_generic_class): Likewise.
7464         * metadata-internals.h: Likewise.
7465
7466         * reflection.c (mono_class_bind_generic_parameters): Take and
7467         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
7468         (mono_reflection_bind_generic_parameters): Use
7469         'mono_class_bind_generic_parameters' rather than duplicate the code.
7470         * class.c (mono_bounded_array_class_get): Update to changes.
7471         * object-internals.h: Likewise.
7472
7473         * reflection.c (mono_class_bind_generic_parameters): Only support
7474         parameterizing generic type definitions.  Remove support for other
7475         open types.
7476
7477 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
7478
7479         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
7480
7481         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
7482         in the dynamic case.
7483
7484 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
7485
7486         * threads.c: When cleaning up thread, reset the Background bit.
7487         Fixes bug #81720.
7488
7489 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
7490
7491        * metadata.c: Move variable declarations to top of scope.
7492        * verify.c: Move variable declarations to top of scope.
7493
7494        Code is contributed under MIT/X11 license.
7495
7496 2007-06-08  Raja R Harinath  <rharinath@novell.com>
7497
7498         * reflection.c (mono_class_bind_generic_parameters): Replace
7499         open-coded loop with mono_metadata_inflate_generic_inst.
7500
7501         * class.c (get_shared_generic_class): Don't call
7502         mono_get_shared_generic_inst.  Use the container's own
7503         'class_inst'.
7504
7505         * metadata.c (mono_metadata_load_generic_params): Move
7506         initialization of 'context' field here from ...
7507         * class.c (mono_class_create_from_typedef): ... here, and ...
7508         * loader.c (mono_get_method_from_token): ... here.
7509
7510         * class.c (get_shared_generic_class): Rename from
7511         mono_get_shared_generic_class and make static.
7512         (mono_get_shared_generic_inst): Move to metadata.c.
7513         * loader.c (mono_get_shared_generic_method): Likewise.
7514         * class-internals.h, metadata-internals.h: Update to changes.
7515
7516         Fix #81830
7517         * class.c (mono_class_from_generic_parameter): Don't assume a
7518         generic container owner exists.  Generic containers from monodis
7519         don't have any.
7520
7521 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
7522
7523         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
7524         * verify.h: new typedefs to returns the non-verifiable status
7525         * verify.c: initial implementation of generics, stack merging and object compatibility check
7526
7527 2007-06-06  Mark Probst  <mark.probst@gmail.com>
7528
7529         * class.c, image.c, class-internals.h (MonoImage): class_cache is
7530         a MonoInternalHashTable again (fixed bug in internal hash table
7531         code).
7532
7533 2007-06-06  Mark Probst  <mark.probst@gmail.com>
7534
7535         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
7536         MonoInternalHashTable again (fixed bug in internal hash table
7537         code).
7538
7539 2007-06-06  Mark Probst  <mark.probst@gmail.com>
7540
7541         * class.c, image.c, class-internals.h, domain.c,
7542         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
7543         changes.  Have to figure out what makes them break the SWF
7544         regression.
7545
7546 2007-06-04  Mark Probst  <mark.probst@gmail.com>
7547
7548         * class.c, image.c, class-internals.h (MonoImage): class_cache is
7549         a MonoInternalHashTable now.
7550
7551 2007-06-04  Mark Probst  <mark.probst@gmail.com>
7552
7553         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
7554         MonoInternalHashTable now.
7555
7556 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
7557
7558         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
7559         invoke_impl code.
7560
7561         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
7562
7563         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
7564         dependent trampoline.
7565
7566         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7567
7568         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
7569
7570 2007-05-29  Robert Jordan  <robertj@gmx.net>
7571
7572         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
7573
7574 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
7575
7576         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
7577
7578 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
7579
7580        * marshal.c: Fix interface lookup loops for
7581        cominterop_get_com_slot_for_method and 
7582        cominterop_get_method_interface. Only need to lookup
7583        if type is a class, else use interface type method is on.
7584
7585        Code is contributed under MIT/X11 license.
7586
7587 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
7588
7589         * reflection.c: HasSecurity can be present even if no specially 
7590         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
7591         SecurityAttribute). Fix CAS regression tests on buildbot.
7592
7593 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
7594
7595        * appdomain.c: Add configure checks for header files.
7596        * image.c: Add configure checks for header files.
7597        * file-io.c: Add configure checks for header files.
7598        * debug-mono-symfile.c: Add configure checks for header files.
7599        * threadpool.c: Add configure checks for header files.
7600        * console-io.c: Add configure checks for header files.
7601        * profiler.c: Add configure checks for header files.
7602        * rawbuffer.c: Add configure checks for header files.
7603        * icall.c: Add configure checks for header files.
7604        * rand.c: Add configure checks for header files.
7605        * socket-io.c: Add configure checks for header files.
7606
7607        Code is contributed under MIT/X11 license.
7608
7609 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
7610
7611         * reflection.c (mono_custom_attrs_from_builders): Remove the 
7612         assertion as it breaks the build.
7613         
7614         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
7615
7616         * reflection.c (lookup_custom_attr): Make a copy here too.
7617
7618         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
7619         dynamic images.
7620
7621         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
7622         images.
7623
7624         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
7625         info.
7626
7627 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
7628
7629         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
7630         (load_cattr_value): Ditto.
7631
7632 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
7633
7634         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
7635
7636 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
7637
7638         * threads.c: In "start_wrapper", set apartment_state to MTA if
7639         apartment_state is Unknown and we're running on 2.0 profile or
7640         higher.
7641         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
7642         to main method, then set apartment_state to Unknown on 1.0 profile,
7643         and MTA on 2.0 profile.
7644
7645 2007-05-16  Jb Evain  <jb@nurv.fr>
7646
7647         * class-internals.h (MonoDefaults): Add an attribute_class and
7648           customattribute_data_class.
7649         * domain.c (mono_init_internal): Populate them.
7650         * reflection.c: Use them to remove duplicates. Make a vew
7651         MonoClass variables `static'.
7652
7653 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
7654
7655         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
7656         step in implementing IMT, so that all isinst checks now can go
7657         through the bitmap.
7658         This was needed because vtables for TransparentProxy need to look
7659         like the vtable of the "target" class, so they need to point to
7660         its interface bitmap directly.
7661
7662         * object.c: inside "mono_class_create_runtime_vtable" and
7663         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
7664
7665 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7666
7667         * object-internals.h
7668           culture-info.h : added territory field in MonoCulture and
7669           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
7670         * locales.c : fill territory field above too.
7671         * culture-info-table.h : regenerated.
7672
7673 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
7674
7675         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
7676         Fixes #81599.
7677
7678 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
7679
7680         * object.c: Always initialize apartment, even if 
7681         there is no custom attributes on entry point.
7682         
7683         Code is contributed under MIT/X11 license.
7684
7685 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
7686
7687         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
7688         * metadata.c: If no encoding is set, check for unicode
7689         on class.
7690         
7691         Code is contributed under MIT/X11 license.
7692
7693 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
7694
7695         * threads.c: Handle if mono_thread_current returns NULL 
7696         
7697         Code is contributed under MIT/X11 license.
7698
7699 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
7700
7701         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
7702         in start_wrapper. Added mono_thread_init_apartment_state and
7703         mono_thread_cleanup_apartment_state.
7704         * object.c: Initialize thread apartment state on main thread
7705         by checking for STAThreadAttribute on entry point.
7706         * object-internals.h: Add apartment_state field to MonoThread.
7707         * threads-types.h: Add unmanaged definition of 
7708         System.Threading.ApartmentState, MonoThreadApartmentState.
7709         
7710         Code is contributed under MIT/X11 license.
7711         
7712 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
7713
7714         * class.c: Fix windows build.
7715         * class-internals.h: Fix windows build.
7716         
7717         Code is contributed under MIT/X11 license.
7718
7719 2007-05-08  Robert Jordan  <robertj@gmx.net>
7720
7721         * process.c (CreateProcess_internal):
7722         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
7723         .CreateNoWindow was specified. Fixes #81496.
7724
7725 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
7726
7727         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
7728         step in implementing IMT, replaced it with two compact arrays
7729         (interfaces_packed and interface_offsets_packed) and a bitmap that
7730         is used for isinst checks (interface_bitmap).
7731
7732         * class.c: (compare_interface_ids): compare function to pass to
7733         bsearch when looking for an interface with a given id.
7734         (mono_class_interface_offset): reimplemented using bsearch on
7735         interfaces_packed, getting the offset from interface_offsets_packed.
7736         (print_implemented_interfaces): utility debugging function.
7737         (setup_interface_offsets): reworked to initialize interfaces_packed,
7738         interface_offsets_packed and interface_bitmap.
7739
7740         * object.c: replaced all accesses to "MonoClass.interface_offsets"
7741         with uses of interfaces_packed and interface_offsets_packed.
7742
7743 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
7744
7745         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
7746         mono_class_interface_offset prototype to wrap all accesses to
7747         "MonoClass.interface_offsets".
7748
7749         * class.c: Implemented mono_class_interface_offset, and wrapped all
7750         accesses to "MonoClass.interface_offsets".
7751
7752         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
7753         "MonoClass.interface_offsets".
7754
7755 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
7756
7757         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
7758         GetMethodFromHandle overloads (bug #78637).
7759
7760 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
7761
7762         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
7763         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
7764
7765 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
7766
7767         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
7768         #81498.
7769
7770         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
7771         gracefully.
7772         (mono_custom_attrs_from_index): Ditto.
7773
7774         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
7775         Fixes #81501.
7776
7777 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
7778
7779         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
7780         is now allocated from a mempool.
7781
7782 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
7783
7784         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
7785         caller holds threads_lock, leading to deadlocks. Fixes #81476.
7786
7787 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
7788
7789         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
7790         mono_loader_clear_error () too late. Fixes #81463.
7791
7792 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
7793
7794         * culture-info-table.h : regenerated.
7795
7796 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
7797
7798         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
7799         is missing.
7800
7801 2007-04-25  Dick Porter  <dick@ximian.com>
7802
7803         * Makefile.am: Put the mingw enforced-optimisation back into the
7804         PLATFORM_WIN32 section.
7805
7806 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
7807
7808         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
7809         patch.
7810
7811         * image.c (mono_image_load_module): New API function to load a module reference.
7812
7813         * image.c (load_modules): Load modules lazily. Fixes #80812.
7814
7815         * class.c (mono_class_from_typeref): Use mono_image_load_module.
7816         
7817         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
7818
7819         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
7820         to mono_image_load_module_dynamic.
7821
7822 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
7823
7824         * marshal.c: Fix calling convention for CCW on non-windows
7825         platforms. STDCALL on windows, CDECL everywhere else to work 
7826         with XPCOM and MainWin COM.
7827         
7828         Code is contributed under MIT/X11 license.
7829
7830 2007-04-23  Martin Baulig  <martin@ximian.com>
7831
7832         Fix #80969.
7833
7834         * loader.c
7835         (method_from_memberref): Added `gboolean *used_context' argument.
7836         (mono_get_method_from_token): Likewise.
7837         (mono_get_method_full): Don't insert the method in the cache when
7838         `used_context' is true.
7839
7840 2007-04-23  Raja R Harinath  <rharinath@novell.com>
7841
7842         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
7843
7844         * reflection.c (mono_reflection_bind_generic_parameters): Don't
7845         create new MonoTypes for returned types.
7846         * class.c (mono_generic_class_get_class): Export mono-internal.
7847         * class-internals.h: Update to changes.
7848
7849 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
7850
7851         * threadpool.c, threadpool.h, icall-def.h: patch from
7852         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
7853
7854 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
7855
7856         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
7857         
7858         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
7859
7860         * threads.c (mono_thread_get_stack_bounds): New helper function.
7861
7862         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
7863         Correctly compute stack bounds when attaching. Fixes #81394.
7864
7865 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
7866
7867         * reflection.c: fix handling of doubles in custom attributes
7868         for the arm-fpa format (bug #81368).
7869
7870 2007-04-18  Raja R Harinath  <rharinath@novell.com>
7871
7872         * reflection.c (assembly_add_win32_resources): Mildly relax an
7873         bounds check to let the end pointer point just past the end of the
7874         allocated buffer.  (may fix #81384)
7875
7876 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
7877
7878         * culture-info-table.h : regenerated.
7879
7880 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
7881
7882         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
7883         the thread is aborted early.
7884
7885 2007-04-05  Dick Porter  <dick@ximian.com>
7886
7887         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
7888         FindFirstFile()/FindNextFile() to find entries.  This lets the
7889         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
7890         81038.
7891
7892         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
7893         the parameters of
7894         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
7895
7896 2007-04-04  Martin Baulig  <martin@ximian.com>
7897
7898         * debug-helpers.c
7899         (mono_method_desc_full_match): Add support for nested classes.
7900
7901 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
7902
7903         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
7904
7905 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
7906
7907         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
7908         waiting for too many threads.
7909
7910 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
7911
7912         * environment.c: Fix return value check on uname so we can get the 
7913         executing version on Solaris operating systems.
7914
7915 2007-03-28  Jb Evain  <jbevain@gmail.com>
7916
7917         * class.c (mono_type_get_name_recurse): Complete the
7918         fix for the creation of assembly qualified names for
7919         pointer types. Fixes #81208.
7920
7921 2007-03-27  Dick Porter  <dick@ximian.com>
7922
7923         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
7924         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
7925         changed.
7926
7927         * threads.c
7928         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
7929         the value of ReleaseMutex().
7930
7931 2007-03-27  Dick Porter  <dick@ximian.com>
7932
7933         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
7934         in little-endian order, not network endian, so must be converted
7935         to host endian here.  Fixes bug 80593.
7936
7937 2007-03-22  Jb Evain  <jbevain@gmail.com>
7938
7939         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
7940         qualified names for pointer types. Fixes #81208.
7941
7942 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
7943
7944         * marshal.c: Add support for PreserveSigAttribute. 
7945         
7946         Code is contributed under MIT/X11 license.
7947
7948 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
7949
7950         * process.c: Fix endianness issues. Fixes #81126.
7951
7952         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
7953         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
7954
7955         * image.c (mono_image_lookup_resource): Make this work on big-endian
7956         machines.Change API contract so the caller needs to free the return value.
7957         
7958         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
7959         API change.
7960         
7961 2007-03-14  Martin Baulig  <martin@ximian.com>
7962
7963         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
7964         mono_type_get_desc() as well.
7965
7966 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
7967
7968         * icall.c:  Fix environ access in VS.  
7969         
7970 2007-03-13  Alp Toker  <alp@atoker.com>
7971
7972         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
7973         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
7974         #63841.
7975
7976 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
7977
7978         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
7979         circular references among dynamic methods. Fixes #81091.
7980
7981         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
7982
7983 2007-03-09  Martin Baulig  <martin@ximian.com>
7984
7985         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
7986
7987 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
7988
7989         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
7990         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
7991         
7992         Code is contributed under MIT/X11 license.
7993         
7994 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
7995
7996         * loader.c: Reapply patch for bug #79424.
7997
7998 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
7999
8000         * metadata.c (mono_type_to_unmanaged): Only convert object to
8001         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
8002
8003 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
8004
8005         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
8006         (and incorrectly set) is_reference field from MonoGenericInst.
8007
8008 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
8009
8010         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
8011         a little earlier.
8012
8013         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
8014
8015         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
8016
8017 2007-03-05  Miguel de Icaza  <miguel@novell.com>
8018
8019         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
8020         FileOptions.1 value to mean "temporary", map that to
8021         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
8022
8023         Fixes 80688
8024
8025 2007-03-03  Marek Habersack  <mhabersack@novell.com>
8026
8027         * appdomain.c: implement MS .Net style shadow copying. Copies of
8028         the assemblies are made in a subdirectory of the dynamic base
8029         directory, the assembly names are preserved.
8030         Copy .mdb and .config files along with the assemblies being shadowed.
8031
8032 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
8033
8034         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
8035         (emit_marshal_handleref): Ditto.
8036
8037         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
8038         on Visual C++. Fixes #80671.
8039
8040 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
8041
8042         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
8043         for clone operations.
8044
8045 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
8046
8047         * marshal.c: Fix warnings.
8048
8049 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
8050
8051         * loader.c: allow case-insensitive matching of the dll name
8052         in dllmap handling when prefixed with "i:".
8053
8054 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
8055
8056         * threads.c: Fix #ifdef for dummy_apc function for VS.
8057
8058 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
8059
8060         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
8061
8062 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
8063         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
8064         giving precedence to the methods with a fully qualified name
8065         (InterfaceName.MethodName) when building the interface sections
8066         of the vtable.
8067
8068 2007-02-16  Dick Porter  <dick@ximian.com>
8069
8070         * threadpool.c (append_job): Fix fast-path array handling, so it's
8071         less likely the array will grow exponentially when the load is
8072         heavy.
8073
8074 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8075
8076         * metadata-internals.h, loader.c: fix dllmap lookup order
8077         for non-function maps, too, and prepare for fallback code.
8078
8079 2007-02-12  Robert Jordan  <robertj@gmx.net>
8080
8081         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
8082         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
8083         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
8084         GlobalFree. Fixes a part of bug #77075.
8085
8086 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
8087
8088         * loader.c: implemented typedef parent in field memberref.
8089
8090 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
8091
8092         * marshal.c: Fix warnings and remember to call Release on
8093         IUnknown of RCW.
8094         
8095         Code is contributed under MIT/X11 license.
8096
8097 2007-02-10  Miguel de Icaza  <miguel@novell.com>
8098
8099         * class-internals.h: Add MonoHandleRef definition, and
8100         handleref_class to mono_defaults. 
8101
8102         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
8103         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
8104
8105         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
8106         (do nothing on this stage)
8107         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
8108         (emit_marshal_handleref): New method, used for argument handling
8109         of HandleRefs. 
8110
8111 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
8112
8113         * class.c (mono_class_setup_parent): Lazily init com types.
8114         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
8115         init com types.
8116         * object.c (mono_remote_class_vtable): Lazily init com types.
8117         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
8118         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
8119         * domain-internals.h: Expose mono_init_com_types.
8120         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
8121         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
8122         Add support for COM Callable Wrapper marshalling.
8123         * marshal.h: Add icall definitions.
8124         * gc.c: Handle freeing of CCWs in finalizer code.
8125         
8126         Code is contributed under MIT/X11 license.
8127
8128 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
8129
8130         * reflection.c: changed all the signature encoding code to use
8131         a variable-sized buffer.
8132
8133 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
8134
8135         * marshal.c: locking fixes: never take the loader lock
8136         or other runtime locks when holding the marshal lock
8137         (fixes bug#80664).
8138
8139 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
8140
8141         * marshal.c: make the delegate function pointer mapping
8142         work for the moving GC.
8143
8144 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
8145
8146         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
8147         for bug #80618.
8148
8149 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
8150
8151         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
8152         gmodule.
8153
8154 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
8155
8156         * threadpool.c: made the code moving-GC safe.
8157
8158 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
8159
8160         * assembly.c, boehm-gc.c, class-internals.h, class.c,
8161         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
8162         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
8163         warning cleanup.
8164         * reflection.c: warning cleanup, some threading and moving GC fixes.
8165
8166 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
8167
8168         * class.c, loader.c: create the needed Set/Get/Address array methods
8169         as well as the .ctors in mono_class_init (), fixes bug #80567.
8170
8171 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
8172
8173         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
8174         we doesn't decrease its alignment. Should fix the sparc build.
8175
8176 2007-01-24  Dick Porter  <dick@ximian.com>
8177
8178         * socket-io.c
8179         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
8180         Create the returned object if we need to ignore an unsupported
8181         socket option.  Fixes a segfault reported by Atsushi.
8182
8183 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
8184
8185         * class.c, object.c: restrict GC-tracked fields to
8186         UIntPtr fields used inside corlib, so we provide better
8187         type info to the GC and also allow broken packing as in
8188         bug #80580.
8189
8190 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
8191
8192         * sgen-gc.c: removed duplicated function.
8193
8194 2007-01-19  Miguel de Icaza  <miguel@novell.com>
8195
8196         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
8197         value that means that the value is not supported, but that we
8198         should not return a failure, but instead report this as a
8199         successful operation.
8200
8201 2007-01-19  Raja R Harinath  <rharinath@novell.com>
8202
8203         Fix tests/bug79956.2.il
8204         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
8205         (mono_generic_class_get_class): If the generic definition in an
8206         enum, copy over other fields related to it.
8207
8208 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
8209
8210         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
8211         genericinst enums (bug #79215).
8212
8213 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
8214         * class.c: Fix bug 80307.
8215
8216 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
8217
8218         * image.c: if the file table is not present, try to load
8219         all the modules, since we don't have info about them
8220         having or not metadata (bug #80517).
8221         * assembly.c: allow mono_assembly_load_references () to
8222         work for netmodules.
8223
8224 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8225
8226         * image.c, metadata-internals.h, object.c: execute module
8227         cctors when running on the 2 runtime if present (bug #80487).
8228
8229 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
8230
8231         * icall.c: optimized InitializeArray() on bigendian.
8232
8233 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
8234
8235         * icall.c: fix for the broken ARM FPA double format.
8236
8237 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
8238
8239         * icall.c: handle endian issues for r4 and r8 types, too, in
8240         the InitializeArray() icall.
8241
8242 2007-01-15  Miguel de Icaza  <miguel@novell.com>
8243
8244         * loader.c (mono_loader_error_prepare_exception): Clear the error
8245         once we have extracted the information from it, do this before we
8246         call into the JIT's class loading mechanisms.
8247
8248         * object.c (mono_class_create_runtime_vtable): Do not clear the
8249         loader error before calling mono_class_get_exception_for_failure
8250         as the loader error is needed inside
8251         mono_class_get_exception_for_failure to throw the error (thinko).
8252
8253         Fixes #80521
8254         
8255 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
8256
8257         * reflection.c: align fields rva data so it's faster to load at
8258         runtime.
8259
8260 2007-01-12  Raja R Harinath  <rharinath@novell.com>
8261
8262         Prepare to simplify GenericMethod handling.
8263         * class-internals.h (mono_method_get_context): New accessor function.
8264         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
8265         rather than directly accessing '->context' field.
8266
8267         * class-internals.h (_MonoGenericParam.method): Move ...
8268         (_MonoGenericContainer): ... here.  Add into union with klass field.
8269         * class.c, icall.c, loader.c, metadata.c, reflection.c:
8270         Update to changes.
8271
8272 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
8273
8274         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
8275         the wrapper type enum and reduce relocations.
8276
8277 2007-01-12  Raja R Harinath  <rharinath@novell.com>
8278
8279         * reflection.c (inflate_mono_method): Reuse method instantiation
8280         from the generic method, if available.
8281
8282 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
8283
8284         * marshal.c (emit_marshal_variant): Fix conv_arg
8285         type in last commit, based on whether parameter is byref.
8286         
8287 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
8288
8289         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
8290         marshalling.
8291         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
8292         MONO_TYPE_OBJECT back for VARIANT support.
8293
8294 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
8295
8296         * marshal.c, marshal.h, icall-def.h: Implement 
8297         Marshal.ReAllocCoTaskMem.
8298
8299 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
8300
8301         * marshal.c: memory retention fixes: use the proper
8302         image cache for runtime_invoke method lookups.
8303
8304 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
8305
8306         * mempool.c: added code to help debug mempool allocations.
8307
8308 2007-01-11  Dick Porter  <dick@ximian.com>
8309
8310         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
8311         support (experimenting with faking it with IP_MTU_DISCOVER for
8312         systems that don't have IP_DONTFRAGMENT.)
8313         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
8314         icall.
8315
8316         * icall-def.h: new System.Net.Sockets.Disconnect icall.
8317
8318         * socket-io.h: Add new fields to MonoSocketAsyncResult
8319         corresponding to the new ones in Socket.cs.
8320
8321 2007-01-11  Raja R Harinath  <rharinath@novell.com>
8322
8323         Fix IronPython regression mentioned in #80249
8324         * metadata.c (do_mono_metadata_parse_generic_class): Clear
8325         'cached_context' field, since it may have been initialized as a
8326         side-effect of metadata parsing.
8327
8328         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
8329         (_MonoGenericClass.cached_class): Move here and rename from lone
8330         remaining field of ...
8331         (_MonoInflatedGenericClass): ... this.  Remove.
8332         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
8333         to changes.
8334
8335         Fix mcs/tests/test-128.cs regression.
8336         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
8337         2007-01-10 change below.
8338         [MONO_TYPE_OBJECT]: Recurse into array case.
8339
8340 2007-01-11  Raja R Harinath  <harinath@gmail.com>
8341
8342         * class-internals.h (mono_get_inflated_generic_class): Remove.
8343         * class.c (mono_get_inflated_generic_class): Remove.
8344         (mono_generic_class_get_class): Rename from
8345         mono_class_create_generic.
8346         (mono_class_from_mono_type) [GENERICINST]: Use it.
8347         * reflection.c, metadata.c: Update to changes.  Use
8348         'mono_class_from_mono_type'.
8349
8350 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
8351
8352         * reflection.c: use passed type when encoding an array element
8353         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
8354
8355 2007-01-09  Robert Jordan  <robertj@gmx.net>
8356
8357         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
8358         result arguments (someDelegate.EndInvoke (unrelatedAres)).
8359         Fixes bug #80392.
8360
8361 2007-01-09  Raja R Harinath  <rharinath@novell.com>
8362
8363         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
8364
8365         * object.c (set_value): Avoid aliasing between type->data.klass
8366         and type->data.generic_class.
8367
8368         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
8369
8370 2007-01-08  Raja R Harinath  <rharinath@novell.com>
8371
8372         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
8373         between type->data.klass and type->data.generic_class.
8374
8375 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
8376
8377         * marshal.c: In MS.NET, StringBuilder objects are not copied by
8378         value in out parameters.
8379
8380 2007-01-08  Raja R Harinath  <rharinath@novell.com>
8381
8382         Simplify invariant for MonoGenericClass::klass field.
8383         * class.c (mono_class_create_generic): Verify 'klass' is null.
8384         * metadata.c (do_mono_metadata_parse_generic_class): Don't
8385         initialize 'klass' field.
8386
8387 2007-01-05  Raja R Harinath  <rharinath@novell.com>
8388
8389         Ongoing work to avoid redundant data and simplify invariants.
8390         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
8391         'generic_class', and change type to a GenericInst.
8392         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
8393         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
8394
8395 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
8396
8397         * class.c : skip io-layer under PLATFORM_WIN32.
8398
8399 2007-01-03  Tor Lillqvist  <tml@novell.com>
8400
8401         Fix #80305: In a bundled executable, look in the bundled exe
8402         assembly to determine the runtime version. Add the possibility to
8403         bundle also the machine.config file.
8404         
8405         * assembly.c (mono_assembly_open_from_bundle): Make
8406         non-static. Allow being called even if we have no bundled
8407         assemblies, and return NULL right away in that case.
8408
8409         * domain-internals.h: Declare mono_assembly_open_from_bundle()
8410         here.
8411
8412         * domain.c (app_config_parse): Take an assembly exe file name as
8413         parameter instead of a config file name. Check for a bundled
8414         config file for that assembly by calling
8415         mono_config_string_for_assembly_file() (see below) before looking
8416         for one in the file system.
8417         (get_runtimes_from_exe): Corrsponding change to call of
8418         app_config_parse().
8419         (get_runtimes_from_exe): Check for bundled assembly exe file first
8420         by calling mono_assembly_open_from_bundle(). If no bundled
8421         assembly exe file is found, call mono_image_open() as before to
8422         look it up in the file system.
8423
8424         * mono-config.c: Add variable bundled_machinec_onfig.
8425         (mono_config_string_for_assembly_file): New function.
8426         (mono_config_for_assembly): Move code snippet that looks for a
8427         bundled assembly .config file into the above new function. Call
8428         it.
8429         (mono_register_machine_config, mono_get_machine_config): New
8430         functions to set and retrieve
8431
8432         * assembly.h: Declare mono_register_machine_config().
8433
8434         * mono-config.h: Declare mono_get_machine_config() and
8435         mono_config_string_for_assembly_file().
8436
8437         * icall.c: No declaration of environ necessary on Win32. It is
8438         declared (as a macro expanding to a function call) in stdlib.h.
8439         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
8440         New internal mono function. Returns the value of
8441         mono_get_machine_config() as a Mono string.
8442
8443         * icall-def.h: Add get_bundled_machine_config().
8444
8445 2007-01-04  Raja R Harinath  <rharinath@novell.com>
8446
8447         Remove redundant field
8448         * class-internals.h (_MonoGenericContext.container): Remove field.
8449         * loader.c (mono_method_get_signature_full): Don't parse a
8450         "container" for a signature parse when the signature is inflated
8451         immediately.
8452         (method_from_methodspec): Likewise, for a generic_inst.
8453         * class.c, metadata.c, reflection.c: Update to changes.
8454
8455 2006-01-04  Raja R Harinath  <rharinath@novell.com>
8456
8457         * class-internals.h (_MonoGenericClass): Rename 'context' field to
8458         'cached_context', and change semantics -- it starts off NULL, and
8459         is initialized on demand.
8460         * class.c (mono_generic_class_get_context): New accessor to
8461         replace 'context' field accesses.
8462         (mono_class_get_context): New helper.
8463         (*): Update to changes.
8464         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
8465
8466 2007-01-03  Miguel de Icaza  <miguel@novell.com>
8467
8468         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
8469         before the memcpy.   Fixes Marshal2 regression.
8470
8471 2007-01-02  Jb Evain  <jbevain@gmail.com>
8472
8473         * blob.h: add a MONO_TYPE_ENUM definition
8474         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
8475         fix the encoding of arrays of enums in custom attributes.
8476
8477         Fixes #79666.
8478
8479 2007-01-01  Miguel de Icaza  <miguel@novell.com>
8480
8481         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
8482         string is null terminated, but only cut the string short if it
8483         overflows the buffer.   
8484         
8485         (mono_string_to_byvalstr): Also fix this routine.   The code here
8486         was not properly terminating a string (it was only terminated
8487         because of the previous catch-all memset). 
8488
8489         I left the memset, because I do not know if applications expect
8490         the runtime to clear this region. 
8491
8492         Fixes #79944.
8493
8494         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
8495         Clear the error before returning to unmanaged code to prevent the
8496         runtime from being confused later on (fixes  80420).
8497         (ves_icall_type_from_name): Always call mono_loader_clear_error
8498         after parsing a type that could have failed.
8499         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
8500
8501         * loader.c (mono_loader_clear_error): Fix indentation.
8502
8503 2006-12-28  Martin Baulig  <martin@ximian.com>
8504
8505         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
8506
8507 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
8508
8509         * reflection.c: patch from Rolf Bjarne Kvinge to fix
8510         getting a token for an EnumBuilder.
8511
8512 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
8513
8514         * reflection.c: be more careful in case resource generation
8515         fails to create the data array.
8516
8517 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
8518
8519         * sgen-gc.c: write barrier for clone and fix unregister handles.
8520
8521 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
8522
8523         * reflection.c: some fixes needed in the generics code for the moving GC.
8524
8525 2006-12-22  Robert Jordan  <robertj@gmx.net>
8526
8527         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
8528         account. Fixes bug #80299.
8529
8530 2006-12-21  Raja R Harinath  <rharinath@novell.com>
8531
8532         Fix WaitHandle usage in delegates.
8533         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
8534         * object.c (mono_wait_handle_new): Use the property set method to
8535         initialize the handle.
8536         (mono_wait_handle_get_handle): New.
8537         * threadpool.c (mono_async_invoke): Use it.
8538         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
8539         Likewise.
8540         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
8541
8542 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
8543
8544         * marshal.c (emit_marshal): Call emit_marshal_variant and
8545         emit_marshal_com_interface when applicable.
8546         (emit_marshal_variant, emit_marshal_com_interface): Add
8547         methods for this case and remove if's from emit_marshal_object.
8548         
8549 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
8550
8551         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
8552
8553 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
8554
8555         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
8556         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
8557         and GlobalFree on Windows. Remove FIXME.
8558
8559 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
8560
8561         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
8562         implementation for managed objects.
8563
8564 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
8565
8566         * object.c: implemented code to be used for checking
8567         that no reference field overlaps with non-references.
8568
8569 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
8570
8571         * threadpool.c: fix queue code to be compatible with the
8572         moving GC.
8573
8574 2006-12-18  Miguel de Icaza  <miguel@novell.com>
8575
8576         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
8577         in structures by throwing ArgumentNullException.
8578
8579         (emit_marshal_safehandle): Also when they are null parameters.
8580
8581         (emit_marshal_safehandle): Add support for ref
8582         SafeHandles parameters
8583
8584 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
8585
8586         * profiler.c: updated to use the mono-dl API instead of
8587         gmodule.
8588
8589 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
8590
8591         * profiler.c: updated to use the mono-dl dynamic loading
8592         API instead of gmodule.
8593
8594 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
8595
8596         * profiler.c: use readlink, older versions of glib don't have
8597         g_file_read_link ().
8598
8599 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
8600
8601         * profiler.c: try to detect the path to mono if libc fails to provide
8602         a useful name (bug #80286).
8603
8604 2006-12-16  Raja R Harinath  <rharinath@novell.com>
8605
8606         Fix #80242
8607         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
8608         instance, use the generic type definition instead.
8609         (ves_icall_Type_GetNestedTypes): Likewise.
8610         * class.c (mono_class_create_generic): Always set the
8611         nested_classes of a generic instance to NULL, even if the generic
8612         type definition has nested types.
8613
8614 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
8615
8616         * marshal.c (mono_string_from_bstr): Revert previous Windows change
8617         and fix on Linux.
8618         
8619 2006-12-15  Miguel de Icaza  <miguel@novell.com>
8620
8621         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
8622         my arguments were in the wrong order.   I also fixed the Windows
8623         version which seems to have had the same issue.
8624
8625         (mono_free_bstr): On Unix, this is g_free.
8626         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
8627         conversions (for the tests in corlib to pass).
8628
8629 2006-12-14  Miguel de Icaza  <miguel@novell.com>
8630
8631         * marshal.c (emit_ptr_to_object_conv): For now, ignore
8632         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
8633         exception if a ref SafeHandle in a struct has changed).
8634         
8635         (emit_struct_conv): Do not perform layout checks for classes
8636         derived from SafeHandle, as those are specially handled. 
8637
8638         (emit_object_to_ptr_conv): Add support for
8639         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
8640
8641         (emit_marshal_safehandle): Implement conversion of return values
8642         of safehandles (MARSHAL_ACTION_CONV_RESULT).
8643         
8644         * threads.c: WaitHandle now is compiled with two different handles
8645         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
8646         for 2.0.
8647         
8648         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
8649         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
8650         these routines to cope with both kinds of fields.
8651
8652 2006-12-12  Miguel de Icaza  <miguel@novell.com>
8653
8654         * metadata.c (mono_type_to_unmanaged): Handle the case where
8655         type->data.klass is a SafeHandle, and in that case, return the
8656         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
8657         MONO_MARSHAL_CONV_SAFEHANDLE. 
8658
8659 2006-12-11  Miguel de Icaza  <miguel@novell.com>
8660
8661         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
8662         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
8663         calling emit_marshal_object.
8664
8665         (emit_marshal_safehandle): Implement marshalling of
8666         SafeHandle parameters (no ref support yet).
8667
8668         (MarshalAction): Document the defines as I implement
8669         them for SafeHandle.
8670
8671         (emit_marshal_object): indentation police.
8672
8673         * class-internals.h: Define MonoSafeHandle.
8674         Add safehandle_class to MonoDefaults type.
8675
8676         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
8677         list of classes to check for fields. 
8678
8679         * domain.c (mono_init_internal): Add SafeHandle to the list of
8680         mono_defaults loaded.
8681
8682 2006-12-15  Raja R Harinath  <rharinath@novell.com>
8683
8684         Fix #80253
8685         * reflection.c (mono_reflection_bind_generic_parameters): If the
8686         generic type definition is a type builder, ensure that it is fully
8687         initialized before instantiating it.  Kill some dead code.
8688
8689 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
8690
8691         * object.c: clear the loader_error () before loading
8692         more metadata stuff (bug #80258).
8693
8694 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
8695
8696         * icall.c, icall-defs.h: type modifiers icalls for
8697         parameters and properties.
8698
8699 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
8700
8701         * object.c, icall.c: fixed warnings.
8702
8703 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
8704
8705         * marshal.c: fixed a couple of leaks and coding style in a few places.
8706
8707 2006-12-08  Dick Porter  <dick@ximian.com>
8708
8709         * process.c: Cope with NULL ProcessStartInfo arguments on windows
8710         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
8711         80173.
8712
8713 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
8714
8715         * process.c: ProcessStartInfo may have only filename set and
8716         arguments can be NULL.
8717
8718 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
8719
8720         * icall.c: fix leak found by Robert Jordan.
8721
8722 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
8723
8724         * marshal.c, marshal.h: generate managed method to access an element
8725         of a multi-dimensional array.
8726
8727 2006-11-30  Paolo Molaro (lupus@ximian.com)
8728
8729         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
8730
8731 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
8732
8733         * icall.c: back out GetFields () fix until the serialization code is
8734         fixed to not depend on the incorrect behaviour.
8735
8736 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
8737
8738         * profiler.c: provide defaults if none are set.
8739
8740 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
8741
8742         * Makefile.am, attrdefs.h: new public header file with
8743         constants for attributes for use by embedders.
8744
8745 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
8746
8747         * icall.c: GetFields () fix for bug #80064.
8748
8749 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
8750
8751         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
8752         removed long unused icalls.
8753
8754 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
8755   
8756         * marshal.c: 
8757                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
8758                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
8759                 can be generated without a delegate class.
8760                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
8761         
8762         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
8763
8764 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8765
8766         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
8767         #80069.
8768
8769 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
8770
8771         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
8772         icall-def.h: added icalls needed by System.GC.
8773
8774 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
8775
8776         * loader.c: ensure the class in catch clauses is handled
8777         correctly for generics methods (fixes bug#79980).
8778
8779 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
8780
8781         * monitor.h, monitor.c: added mono_locks_dump () function
8782         to help debug deadlocks involving managed locks.
8783
8784 2006-11-13  Dick Porter  <dick@ximian.com>
8785
8786         * file-io.c (get_file_attributes): If the file is a symlink try
8787         and get the stat data for the target, but also add the
8788         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
8789         the specs for the windows symlink support, but will probably have
8790         to be reworked when I have test data from a vista machine.  Fixes
8791         bug 79887.
8792
8793 2006-11-13  Dick Porter  <dick@ximian.com>
8794
8795         * gc.c (mono_domain_finalize): 
8796         * marshal.c (mono_delegate_begin_invoke): 
8797         * threadpool.c (socket_io_init, mono_thread_pool_init)
8798         (mono_thread_pool_finish): 
8799         * monitor.c (mono_monitor_try_enter_internal): 
8800         * threads.c (mono_thread_resume, mono_thread_init)
8801         (mono_thread_suspend_all_other_threads)
8802         (mono_thread_execute_interruption): 
8803         * appdomain.c (mono_domain_unload): Check for NULL error returns
8804         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
8805         75733.
8806
8807 2006-11-11  Miguel de Icaza  <miguel@novell.com>
8808
8809         * process.c
8810         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
8811         Only close the handle if the value of the handle is not
8812         INVALID_HANDLE_VALUE.  This just makes the process a bit more
8813         robust.
8814
8815         Improvement for #75733, so that we do not run into this problem. 
8816
8817         
8818         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
8819         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
8820         internal variables.  Fixes #79462 
8821         
8822
8823 2006-11-09  Dick Porter  <dick@ximian.com>
8824
8825         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
8826         Use poll() not select().  Fixes bug 79397.
8827
8828 2006-11-09  Raja R Harinath  <rharinath@novell.com>
8829
8830         Fix #79872
8831         * assembly.c (mono_assembly_load_from_full): Check that the given
8832         image has an assembly manifest.
8833
8834 2006-11-09  Ankit Jain  <jankit@novell.com>
8835
8836         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
8837         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
8838         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
8839
8840 2006-11-07  Dick Porter  <dick@ximian.com>
8841
8842         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
8843         Put the old resolver behaviour back for pre-2.0 profiles.
8844
8845 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
8846
8847         * threadpool.c: precise GC and locking fixes.
8848
8849 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
8850
8851         * class.c: don't load types that have an explicit unaligned
8852         managed reference. Provide better info in the TypeLoad exception.
8853         Part of the fix for bug #79744.
8854         * object.c: use the correct check for class type load issues.
8855
8856 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
8857
8858         * class.c: enforce alignment of fields with managed references
8859         even when Pack=1 is forced by the user (bug #77788).
8860
8861 2006-11-03  Dick Porter  <dick@ximian.com>
8862
8863         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
8864         If the address reverse lookup fails, return it as the hostname
8865         anyway.  Fixes bug 79721.
8866
8867 2006-11-03  Dick Porter  <dick@ximian.com>
8868
8869         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
8870         Fix build on Windows.
8871
8872 2006-11-02  Dick Porter  <dick@ximian.com>
8873
8874         * icall-def.h: 
8875         * object-internals.h: 
8876         * exception.c (mono_get_exception_thread_interrupted): 
8877         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
8878         Fixes bug 74525.
8879
8880         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
8881         Check for pending Thread.Interrupt.
8882
8883 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
8884         * loader.c: Fixed bug 79684.
8885
8886 2006-10-27  Dick Porter  <dick@ximian.com>
8887
8888         * file-io.c (get_file_attributes): Force symlinks to directories
8889         to be returned as a regular file.  Fixes bug 79733.
8890 2006-10-26  Dick Porter  <dick@ximian.com>
8891
8892         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
8893         CreateFile to open a directory then we need to set the
8894         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
8895
8896 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
8897
8898         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
8899         friends.
8900
8901 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
8902
8903         * sgengc.c: small cleanup of timer code.
8904
8905 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
8906
8907         * sgen-gc.c: fix some warnings and start adding support for
8908         complete object removal on domain unload.
8909
8910 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
8911
8912         * assembly.c: build_assembly_name should not consider a version
8913         number without build or revision number invalid. Fixes bug #79715.
8914
8915 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
8916
8917         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
8918         call kernel32 function OutputDebugString directly.
8919         
8920         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
8921         
8922 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
8923
8924         * reflection.c: small cleanup, using a function to insert a MonoString
8925         in the string heap.
8926
8927 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
8928
8929         * reflection.c: moving GC fixes.
8930
8931 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
8932
8933         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
8934         all the objects with finalizers belonging to an unloading appdomain.
8935
8936 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
8937
8938         * sgen-gc.c: added ability to allocate even when the nursery is fully
8939         pinned and fixed a couple of bugs.
8940
8941 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
8942
8943         * threads.h: Revert the last change for now.
8944
8945         * threads.h (mono_thread_get_pending_exception): Rename this to
8946         mono_thread_get_undeniable_exception ().
8947
8948 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
8949
8950         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
8951         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
8952         when fname does not refer to valid assembly. This result in a more
8953         meaningful error message.
8954         * exception.c: added mono_get_exception_bad_image_format2 which 
8955         constructs a BadImageFormatException using the ctor taking a custom
8956         message and the file name. Passing in a NULL msg results in a default
8957         message.
8958         * exception.h: define mono_get_exception_bad_image_format2 function.
8959         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
8960         when file name pointed to an invalid IL image. Use 
8961         mono_get_exception_file_not_found2 to construct FileNotFoundException,
8962         as this results in a more meaningful error message.
8963
8964 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
8965
8966         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
8967         #79465.
8968
8969 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
8970
8971         * metadata.c (mono_type_size): Change the align parameter to guint32 for
8972         consistency with the other _size functions.
8973         (mono_type_stack_size): Ditto.
8974
8975         * class.c object.c icall.c: Fix warnings caused by the above change.
8976
8977         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
8978
8979         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
8980
8981         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
8982
8983 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
8984
8985         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
8986         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
8987         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
8988         threadpool.h, threads-types.h: mark more internal functions.
8989
8990 2006-10-11  Dick Porter  <dick@ximian.com>
8991
8992         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
8993         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
8994         reproduce the bug even before applying the fix.)
8995
8996 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
8997
8998         * reflection.c: allow retrieving attributes for arguments in generic
8999         methods (bug #79241).
9000
9001 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
9002
9003         * debug-mono-symfile.c: properly check fopen () result (found by
9004         coverity).
9005
9006 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
9007
9008         * reflection.c: make error message clearer and fixed two
9009         issuelets found by Coverity.
9010
9011 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
9012
9013         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
9014
9015 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
9016
9017         * object-internals.h, gc-internal.h, profiler-private.h:
9018         mark internal functions.
9019
9020 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
9021
9022         * reflection.c: put data in the text section.
9023         * icall.c: recognize more types in type_from_typename ().
9024         * process.c, marshal.c: added some GC FIXMEs.
9025
9026 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
9027
9028         * loader.c: check for NULL before initializing.
9029
9030 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
9031
9032         * gc.c (finalizer_thread): Use a non-alertable wait here.
9033
9034         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
9035         until the correct solution is found.
9036
9037 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
9038
9039         * reflection.c (mono_module_get_object): Avoid an assert when operating on
9040         modules with no metadata. Fixes #79596.
9041
9042         * image.c (load_metadata_ptrs): Put back the error message when
9043         the #- heap is encountered since the support is not complete yet.
9044
9045 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
9046
9047         * gc.c: do not allow the user to SuppressFinalize () a
9048         delegate because it would leak the trampoline if present.
9049
9050 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
9051
9052         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
9053         PropertyPtr table.
9054
9055 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
9056
9057         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
9058
9059         * metadata.c (mono_metadata_get_param_attrs): Ditto.
9060
9061         * row-indexes.h: Add definitions for *Ptr tables.
9062
9063         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
9064
9065         * metadata.c (mono_metadata_translate_token_index): New helper function to
9066         translate table indexes used in uncompressed metadata.
9067         (mono_metadata_decode_table_row): Ditto.
9068         (mono_metadata_decode_table_row_col): Ditto.
9069
9070         * metadata.c: Add table schema for *Ptr tables.
9071
9072         * class.c loader.c: Use the new helper function to access the affected metadata
9073         tables.
9074         
9075         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
9076         #38532.
9077         
9078 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
9079
9080         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
9081         sequences which can be unbounded in size. Fixes #79583.
9082
9083 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
9084
9085         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
9086         static initialization.
9087
9088         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
9089
9090         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
9091
9092         * domain.c (mono_domain_free): Free up type_init_exception_hash.
9093
9094         * object.c (mono_runtime_class_init): Implement correct semantics when a static
9095         ctor fails, i.e. throw the same exception on subsequent accesses.
9096         
9097 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
9098
9099         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
9100         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
9101         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
9102         Handle marshalling of interfaces and VARIANTs contained in structs.
9103         
9104         Code is contributed under MIT/X11 license.
9105         
9106 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
9107
9108         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
9109         
9110         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
9111         mempool.
9112
9113 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9114
9115         * console-io.c: ignore previous SIGINT handler.
9116
9117 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
9118
9119         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
9120         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
9121         #79460, #79461, #79485.
9122
9123         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
9124
9125         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
9126         #79217.
9127
9128 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
9129
9130         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
9131         could be generated from it.
9132
9133 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
9134
9135         * rand.c: fix read loop to correctly handle EINTR.
9136
9137 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
9138
9139         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
9140         internal calls are defined to keep methods closer to the declaring
9141         type and allow a significant reduction in runtime relocations and
9142         memory usage.
9143
9144 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
9145
9146         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
9147         exception message to have FileNotFoundException use the default
9148         assembly load error message. Fixes bug #79426.
9149         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
9150
9151 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9152
9153         * threadpool.c: (start_thread_or_queue) use the root domain when
9154         creating the thread instead of the async object one.
9155
9156 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
9157
9158         * class.c, object.c, class-internals.h, reflection.c:
9159         for arrays, store element_size inside MonoClass (speedup
9160         for array object creation).
9161
9162 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
9163
9164         * icall.c: fixed CodeBase to use the file name and not the module
9165         name (bug #79365).
9166
9167 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
9168
9169         * mono-debug.c, mono-debug.h: export find_method as
9170         mono_debug_find_method ().
9171
9172 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
9173
9174         * debug-helpers.c, class-internals.h: added a few functions useful
9175         when debugging under gdb.
9176
9177 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9178
9179         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
9180         characters that need special handling.
9181
9182 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
9183
9184         * mono-config.c: make the os/cpu specification more flexible,
9185         allowing lists and negation.
9186
9187 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
9188
9189         * marshal.c: COM Interop fixes. Handle case where method->klass.
9190         is interface. Handle BSTR/MonoString when null. Use CDECL as 
9191         calling convention on non-windows platforms. This is for
9192         compatibility with XPCOM and MainWin COM.
9193         
9194         Code is contributed under MIT/X11 license.
9195         
9196
9197 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
9198
9199         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
9200         correctly. Fixes #79217.
9201
9202         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
9203
9204 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
9205
9206         * mono-config.c: allow both an os and cpu attribute for dllmap
9207         and dllentry elemnets to enable a single config file to be used
9208         for multiple architectures.
9209
9210 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
9211
9212         * loader.c: MonoLoaderError was cleared too soon on load failure.
9213         Fixes bug #79424.
9214
9215 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
9216
9217         * icall.c: use the defining class vtable when accessing a
9218         static field, not a pobblibly derived class.
9219
9220 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
9221
9222         * icall.c string-icalls.c: Remove references to unicode.h.
9223
9224         * unicode.h unicode.c Makefile.am: Remove these unused source files.
9225
9226         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
9227
9228         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
9229         indicating the image where custom marshaller types should be looked up.
9230         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
9231         custom marshallers, instead of corlib. Fixes #79425.
9232
9233 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
9234
9235         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
9236
9237 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
9238
9239         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
9240         Implement Environment.ProcessorCount.
9241         
9242         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
9243         Implement Environment.ProcessorCount.
9244         
9245         * icall.c: 
9246         Add Environment.ProcessorCount icall.
9247         
9248         Patch by Jason McFall.
9249
9250 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9251
9252         * assembly.c: don't append .exe/.dll when the filename already contains
9253         one of those extensions.
9254
9255 2006-09-12  Martin Baulig  <martin@ximian.com>
9256
9257         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
9258         to array interfaces.
9259
9260 2006-09-11  Martin Baulig  <martin@ximian.com>
9261
9262         * reflection.c (mono_image_build_metadata): Create the
9263         MethodImpl's after emitting all types and methods, so we don't
9264         need another fixup pass for them.
9265
9266 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
9267
9268         * class.c (mono_class_from_name_case): Fix regression introduced by the last
9269         change.
9270
9271 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
9272
9273         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
9274         unload.
9275
9276 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
9277
9278         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
9279         args is not set. Fixes #78926.
9280
9281 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
9282
9283         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
9284
9285         * image.c (load_class_names): Move this to class.c, and rename it to 
9286         'mono_image_init_name_cache'.
9287         (load_modules): Fix a warning.
9288
9289         * class.c icall.c image.c: Initialize image->name_cache lazily.
9290
9291         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
9292         on its name using information in the AOT file.
9293
9294         * class.c (mono_class_from_name): Use the new hook function.
9295
9296 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
9297
9298         * reflection.c (mono_param_get_objects): Handle enum default parameter values
9299         correctly.
9300
9301         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
9302         Fixes #79289.
9303         
9304 2006-09-06  Martin Baulig  <martin@ximian.com>
9305
9306         * icall.c (mono_lookup_internal_call): Small fix.
9307
9308 2006-09-05  Raja R Harinath  <rharinath@novell.com>
9309
9310         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
9311         double g_free.
9312
9313 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
9314
9315         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
9316         when --debug is specified.
9317
9318 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
9319
9320         * class.c (setup_generic_array_ifaces): Fix a warning.
9321
9322 2006-09-04  Miguel de Icaza  <miguel@novell.com>
9323
9324         * Temporarily remove the patch to assemly.c that checks the
9325         assembly versions as it breaks our gacutil.
9326
9327 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
9328
9329         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
9330
9331         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
9332         a net 1.0 runtime.
9333
9334         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
9335         created using the default ctor. Fixes #79152.
9336         (mono_string_builder_to_utf16): Ditto.
9337
9338 2006-09-01  Martin Baulig  <martin@ximian.com>
9339
9340         Fix handling of the generic array interfaces.
9341
9342         * class-internals.h
9343         (MonoDefaults): Removed `generic_array_class' and added
9344         `generic_ilist' class.
9345
9346         * class.c
9347         (mono_bounded_array_class_get): Add the new generic array interfaces.
9348         (setup_generic_array_ifaces): New static method; create vtable
9349         entries for each method in the generic array interfaces.
9350
9351         * metadata.c
9352         (select_container): Allow "parent-less" generic methods.
9353
9354         * marshal.c
9355         (mono_marshal_get_generic_array_helper): New public method.
9356
9357         * icall.c
9358         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
9359         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
9360         moved the interncall into System.Array.
9361
9362 2006-09-01  Raja R Harinath  <rharinath@novell.com>
9363
9364         A few more cases of avoiding work on types with ->byref set.
9365         Has the real fix for #79238
9366         * icall.c (is_generic_parameter): New helper.
9367         (ves_icall_Type_GetGenericParameterPosition): Use it.
9368         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
9369         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
9370         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
9371         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
9372         reference types.
9373         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
9374         reference types.
9375         (ves_icall_Type_get_IsGenericInstance): Likewise.
9376         (ves_icall_Type_get_IsGenericType): Likewise.
9377
9378 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
9379
9380         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
9381         class if possible.
9382
9383         * mempool.h (mono_mempool_get_allocated): New helper function.
9384
9385         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
9386         change.
9387
9388         * mempool.c: Fix warnings and the calculation of stats.
9389
9390         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
9391
9392         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
9393
9394         * loader.c (mono_get_method_from_token): Update method_count stat.
9395
9396         * class-internals.h (MonoStats): Add some stats.
9397
9398 2006-08-31 Robert Jordan  <robertj@gmx.net>
9399
9400         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
9401         with managed variants.
9402         All code is contributed under the MIT/X11 license.
9403         
9404 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
9405
9406         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
9407         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
9408
9409         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
9410
9411         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
9412         with cycles in classes.
9413
9414         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
9415
9416         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
9417         missing a [MarshalAs] directive. Fixes #79203.
9418
9419         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
9420         klass->marshal_info. Fixes #79217.
9421
9422 2006-08-30  Martin Baulig  <martin@ximian.com>
9423
9424         Committing a patch from Joachim Ante <joe@otee.dk>:
9425         Add support for binary data symbol stores.
9426
9427         * debug-mono-symfile.c
9428         (mono_debug_open_mono_symbol_file): Renamed into
9429         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
9430         arguments.
9431
9432         * mono-debug.c
9433         (mono_debug_open_image): Added `raw_contents' and `size' args.
9434         (mono_debug_init_2_memory): New public function.
9435
9436 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
9437
9438         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
9439
9440 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9441
9442         * appdomain.c: implement support for ShadowCopyFiles.
9443
9444 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
9445
9446         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
9447         when value is NULL (and should remove CID #51).
9448
9449 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9450
9451         * image.c: moved 2 functions to ../utils.
9452
9453 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
9454
9455         * gc.c: cope with the target object of a GC handle being NULL
9456         (bug #78877).
9457
9458 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
9459
9460         * class.c: recursively check parent's explicit implementations
9461         of interface methods (fixes bug #79125).
9462
9463 2006-08-19  Miguel de Icaza  <miguel@novell.com>
9464
9465         * filewatcher.c: Avoid warnings when building, do not redefine
9466         constants that are defined.
9467
9468         Remove warnings.
9469
9470 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9471
9472         * image.c: don't fail when the link points to an absolute path.
9473
9474 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
9475
9476         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
9477         Fix CID #3.
9478
9479 2006-08-17  Miguel de Icaza  <miguel@novell.com>
9480
9481         * image.c (full_path): A new method used to obtain the actual path
9482         of an assembly even in the presence of symbolic links.  
9483
9484         This is necessary for the case where we are running a binary that
9485         has been GACed, but we are using the "published" path name
9486         ($prefix/mono/1.0/blah.exe) which happens to point to the real
9487         file in the GAC.
9488
9489         This was the source of the failure for the `xsp' command with the
9490         recent AppDomain changes, as far as the runtime was concerned,
9491         there were two different assemblies: $prefix/mono/1.0/blah.exe and
9492         $prefix/mono/gac/blah/version/blah.exe.
9493
9494         (do_mono_image_open): use full path
9495
9496 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
9497
9498         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
9499
9500 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
9501
9502         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
9503         domain_id is supplied. Fix CID #241 and corlib's unit tests.
9504
9505 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
9506
9507         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
9508         small structures. Fixes #78990.
9509
9510 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
9511
9512         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
9513
9514         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
9515
9516 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9517
9518         * appdomain.c:
9519         * marshal.c: don't load all the assemblies from a domain into newly
9520         created ones. The new domains might have different rules and load
9521         assemblies from different locations. Fixes bug #76757.
9522
9523         Patch by Lluis. Conflicts resolved by Brian Crowell.
9524
9525 2006-08-16  Alp Toker  <alp@atoker.com>
9526
9527         * socket-io.c: First half of the fix for #79084.
9528         Set sa_size to the length of the content, not that of the struct.
9529         Don't add NULL suffix to the content, this should be done in
9530         managed code if needed.
9531
9532 2006-08-14  Raja R Harinath  <rharinath@novell.com>
9533
9534         Fix part of #79012
9535         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
9536         mono_metadata_parse_type returns NULL.
9537
9538 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
9539
9540         * normalization-tables.h : new file for string normalization data.
9541         * locales.c, locales.h, icall.c :
9542           added load_normalization_resource() for string normalization,
9543           and icall as well.
9544         * Makefile.am : added normalization-tables.h to the sources.
9545
9546 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
9547
9548         * marshal.c: Add more helper functions to reduce code duplication and use them
9549         everywhere.
9550
9551 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
9552
9553         * marshal.c: Fix non-x86 stdcall warnings.
9554         
9555         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
9556         them everywhere.
9557
9558 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
9559
9560         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
9561         type check on multi-dimensional arrays. Fixes #79000.
9562
9563 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
9564
9565         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
9566         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
9567         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
9568         * class-internals.h: add is_com_object to class structure.
9569         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
9570         null checks to COM object marshalling. Fix .ctor call on RCW.
9571         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
9572         
9573         All code is contributed under the MIT/X11 license.
9574
9575 2006-08-09  Dick Porter  <dick@ximian.com>
9576
9577         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
9578         racing mono_monitor_allocator_lock() somewhere, so don't delete
9579         the critical section for now.  Found by running and exiting
9580         monodevelop.
9581
9582 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
9583
9584         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
9585         (ves_icall_System_ComObject_FindInterface): Ditto.
9586         (ves_icall_System_ComObject_CacheInterface): Ditto.
9587
9588         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
9589         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
9590
9591 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9592
9593         * threadpool.c: treat pipes from process asynchronous reads as sockets
9594         when reading from them, so we get select/poll or epoll to wait for
9595         data.
9596
9597 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
9598
9599         * loader.c: Fix a typo (CID #233) in the null check.
9600
9601 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
9602
9603         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
9604         Hopefully fixes #78949.
9605         
9606         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
9607         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
9608         bytes. Fixes #78972.
9609
9610 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9611
9612         * filewatcher.c: we need to set errno here.
9613
9614 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9615
9616         * filewatcher.c: let Win32Exception get the error value.
9617
9618 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9619
9620         * filewatcher.c: translate errno into win32 errors for Win32Exception
9621         to know what happened.
9622
9623 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
9624
9625         * threadpool.c: Fix more warnings.
9626
9627         * assembly.c (search_loaded): Fix warnings.
9628
9629         * threadpool.c (mono_thread_pool_finish): Fix warnings.
9630         (mono_async_invoke): Ditto.
9631
9632 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
9633
9634         * object.c (mono_remote_class_vtable): Need to create proxy vtable
9635         entries for __ComObject type in addition to ComImport types.
9636         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
9637         about hash table.
9638         
9639         All code is contributed under the MIT/X11 license.
9640
9641 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
9642
9643         * image.c: avoid tentative loading of modulerefs that contain
9644         no metadata (P/Invoke library names).
9645
9646 2006-07-28  Dick Porter  <dick@ximian.com>
9647
9648         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
9649         mono_loader_lock() somewhere, so don't delete the critical section
9650         for now.  Found by running and exiting monodevelop.
9651
9652 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9653
9654         * filewatcher.c: define the inotify syscalls when we're building on
9655         linux and have sys/syscall.h. The build system might not have support
9656         for inotify but the target system might have it.
9657
9658 2006-07-26  Miguel de Icaza  <miguel@novell.com>
9659
9660         * domain.c: Documentation updates.
9661
9662         * loader.c (mono_free_method): Do not release the method
9663         information if we are being profiled, as profilers will use this
9664         information at shut down to present some data to the user.
9665
9666         This is needed so that the profiler does not crash, as the
9667         profiler tends to keep MonoMethods around, and they might become
9668         invalid if we free these.
9669
9670         (mono_get_method_constrained): Return the original CIL stream
9671         method as well, so verification can be performed against it.
9672
9673 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9674
9675         * filewatcher.[ch]: support for inotify file system watcher.
9676         * icall.c: add new internal calls for the inotify file system watcher.
9677
9678 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9679
9680         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
9681         #78888.
9682
9683 2006-07-20  Dick Porter  <dick@ximian.com>
9684
9685         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
9686         warning.
9687
9688 2006-07-20  Dick Porter  <dick@ximian.com>
9689
9690         * threads.c (start_wrapper): Do the thread cleanup while we still
9691         hold a reference to its object.  Fixes bug 78123.
9692
9693 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
9694
9695         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
9696         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
9697           "managed-to-managed".
9698         * icall.c: Redirect string constructors that take sbyte* to
9699           ves_icall_System_String_ctor_RedirectToCreateString.
9700         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
9701           to CreateString () methods with matching signature.
9702         * reflection.c: Use original security informations for
9703           MONO_WRAPPER_MANAGED_TO_MANAGED.
9704         * security-manager.c: Use original security informations for
9705           MONO_WRAPPER_MANAGED_TO_MANAGED.
9706         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
9707           that is a placeholder and only its address should be used.
9708         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
9709           that is a placeholder and only its address should be used.
9710
9711 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
9712
9713         Begin implementing COM Interop.
9714         * appdomain.c: Increment corlib version.
9715         * class.c: Set ComImport classes' parent to __ComObject.
9716         * loader.c: Mark cominterop methods as such.
9717         * domain.c: Add __ComObject class to MonoDefaults structure.
9718         * image.c: Add 2 hashtables to the image for COM Interop related methods
9719         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
9720         using the mempool allocator
9721         
9722         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
9723         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
9724         declaration for mono_metadata_type_dup_mp.
9725         
9726         * debug-helpers.c: Added strings for two additional wrapper types
9727         * object.c: Create proxy objects for ComImport classes
9728         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
9729         and added __ComObject class to MonoDefaults structure.
9730         
9731         * object-internals.h: Finish MonoRealProxy definition, and add definition of
9732         MonoComInteropProxy and MonoComObject.
9733         
9734         * marshal.c: Added support for COM Interop
9735         (signature_cominterop): Converts managed signature to corresponding
9736         unmanaged COM signature.
9737         (cominterop_get_function_pointer): gets unmanaged function pointer via
9738         COM object vtable
9739         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
9740         (cominterop_get_method_interface): returns interface type that method is defined on
9741         (mono_mb_emit_cominterop_call): emits native call to function pointer
9742         gotten from vtable
9743         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
9744         that matches signature of unmanaged function.
9745         (cominterop_get_native_wrapper): wrapper around adjusted method call.
9746         (cominterop_get_invoke): forwards call from proxy to __ComObject
9747         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
9748         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
9749         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
9750         
9751         * marshal.h: Added Marshal icall declarations.
9752         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
9753         so we can access them in finalizer
9754         
9755 2006-07-14  Dick Porter  <dick@ximian.com>
9756
9757         * object.c (mono_type_initialization_cleanup): Fix a race
9758         condition by temporarily commenting out the critical section
9759         deletion.
9760
9761 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
9762
9763         * reflection.c (create_custom_attr): Fix some warnings.
9764         (create_custom_attr_data): Ditto.
9765         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
9766         types. Fixes #78855.
9767
9768 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
9769
9770         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
9771
9772         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
9773
9774 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
9775
9776         * reflection.c (resolve_object): Add support for DynamicMethod.
9777
9778         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
9779         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
9780
9781 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
9782
9783         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
9784         don't leak GPtrArray's pdata has we have no use (nor free) for it.
9785
9786 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
9787
9788         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
9789         Fixes #77888.
9790
9791 2006-06-30  Raja R Harinath  <rharinath@novell.com>
9792
9793         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
9794         slightly: remove a shadow local variable.
9795
9796 2006-06-29  Raja R Harinath  <rharinath@novell.com>
9797
9798         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
9799         definition that introduces the virtual function slot.
9800         Also fix Coverity #105.
9801
9802 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
9803
9804         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
9805         for dynamic assemblies. Fixes #78724.
9806
9807 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
9808
9809         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
9810         Fixes #78722.
9811
9812 2006-06-21  Martin Baulig  <martin@ximian.com>
9813
9814         * reflection.c
9815         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
9816         fixes #76484.
9817
9818 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
9819
9820         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
9821
9822 2006-06-20  Raja R Harinath  <rharinath@novell.com>
9823
9824         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
9825         nor TYPEREFs.
9826         * class.c (mono_class_create_from_typespec): Add 'context' argument.
9827         Inflate result if necessary.
9828         (mono_class_get_full): Remove old version.  Rename from
9829         'mono_class_get' and add 'context' argument.  Pass it to
9830         ..._create_from_typespec.
9831         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
9832         (mono_ldtoken): Revert change below.
9833
9834 2006-06-20  Martin Baulig  <martin@ximian.com>
9835
9836         * class.c (mono_ldtoken): Don't pass the generic context to
9837         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
9838
9839 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
9840
9841         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
9842         and later freeing it. Fixes #78638.
9843
9844 2006-06-15  Miguel de Icaza  <miguel@novell.com>
9845
9846         * icall.c (mono_class_get_throw): Revert over-zealous error
9847         throwing, the caller for mono_class_get_throw will cope with
9848         errors when classes are not properly initialized already.
9849
9850         The code still copes with loader exceptions though.
9851
9852         Fixes the regression in reftype1 and reftype3 from the CAS tests.
9853         
9854 2006-06-14  Miguel de Icaza  <miguel@novell.com>
9855
9856         Fixes the `make run1' version of RuntimeAbort (to be commited,
9857         source is in Bugzilla).
9858         
9859         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
9860         FALSE on class loading failure instead of returning true.
9861
9862         * class.c (mono_class_create_from_typedef): It is possible for
9863         mono_metadata_interfaces_from_typedef_full to fail if a class is
9864         not found, cope with this.
9865         
9866
9867 2006-06-14  Dick Porter  <dick@ximian.com>
9868
9869         * socket-io.c: 
9870         * process.c: Fix a bunch of signed/unsigned warnings from gcc
9871         4.1.1
9872
9873 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
9874
9875         * culture-info-table.h : oops, forgot to make it nsync with r61548.
9876
9877 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
9878
9879         * icall.c: Another fix for building mono in Visual Studio.
9880
9881 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
9882
9883         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
9884         
9885 2006-06-09  Martin Baulig  <martin@ximian.com>
9886
9887         * debug-mono-symfile.c: Put this back and really fix it this
9888         time. Sorry for all the trouble.
9889
9890 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
9891
9892         * icall.c (mono_class_get_throw): Fix a warning.
9893         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
9894         ReflectionTypeLoadException if needed. Fixes #78606.
9895
9896         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
9897         (mono_class_init): Ditto.
9898
9899         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
9900         ref_only exceptions.
9901         (mono_loader_clear_error): Make this work even if there is no error.
9902
9903 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
9904
9905         * object-internals.h marshal.c marshal.h icall.c: Implement method 
9906         Marshal.GetComSlotForMethodInfo using internal call.
9907
9908 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
9909
9910         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
9911         a function for signalling it.
9912
9913         * class.c (mono_class_from_typeref): Use the new kind of loader error when
9914         a referenced assembly is not found.
9915
9916         * loader.c (mono_loader_error_prepare_exception): Add support for 
9917         LOADER_ERROR_ASSEMBLY. Fix formatting.
9918
9919 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
9920
9921         * domain.c appdomain.c class-internals.h marshal.c: Add support 
9922         for VARIANT marshalling on windows and increment corlib version
9923         since Variant struct was added.
9924
9925 2006-06-03  Miguel de Icaza  <miguel@novell.com>
9926
9927         * debug-mono-symfile.c: Revert Martin's previous patch which broke
9928         stack trace line information:
9929
9930         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
9931         (Martin) when looking up B which is between A and C, return A not C.
9932
9933         Bug is #78573.
9934
9935         Thanks to Alexander Olk for tracking this down.
9936
9937 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
9938
9939         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
9940         
9941         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
9942         avoid clobbering its value.
9943         (mono_string_to_lpstr): Fix a warning on windows.
9944
9945 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
9946
9947         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
9948
9949         * reflection.c loader.c: Removed references to 'dummy' flag.
9950
9951         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
9952
9953         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
9954         it gets GC tracking.
9955
9956         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
9957         GC tracking.
9958         
9959         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
9960
9961         * marshal.c threadpool.c: Update callers of mono_async_result_new.
9962
9963         * appdomain.c: Bump corlib version.
9964
9965 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
9966
9967         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
9968         CEE_STIND_REF when working with object references.
9969
9970 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
9971
9972         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
9973         Fixes #78539.
9974
9975 2006-05-30  Miguel de Icaza  <miguel@novell.com>
9976
9977         * loader.c (method_from_memberref): Fix argument value for
9978         mono_loader_set_error_method_load (I was passing the MonoClass
9979         instead of the class name char *).
9980
9981 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
9982
9983         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
9984         CEE_STIND_REF when working with object references.
9985
9986 2006-05-30  Martin Baulig  <martin@ximian.com>
9987
9988         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
9989         mono_method_full_name() change and replace the ':' with a '.'
9990         here.
9991
9992 2006-05-30  Martin Baulig  <martin@ximian.com>
9993
9994         * debug-mono-symfile.c
9995         (mono_debug_symfile_lookup_location): Fix the algorithm:
9996         when looking up B which is between A and C, return A not C.
9997
9998 2006-05-29  Martin Baulig  <martin@ximian.com>
9999
10000         * mono-debug.h
10001         (MonoDebugMethodInfo): Make the typedef public.
10002         (MonoDebugSourceLocation): New public struct.
10003
10004         * mono-debug.c
10005         (mono_debug_source_location_from_address): Removed.
10006         (mono_debug_source_location_from_il_offset): Removed.
10007         (mono_debug_il_offset_from_address): Removed.
10008         (mono_debug_address_from_il_offset): Removed.
10009         (mono_debug_lookup_method): New public function.
10010         (mono_debug_lookup_source_location): New public function; replaces
10011         the old mono_debug_source_location_from_*() functions; see the
10012         inline documentation.
10013         (mono_debug_free_source_location): New public function.
10014         (mono_debug_print_stack_frame): New public function; see the
10015         inline documentation.
10016
10017         * debug-mono-symfile.c
10018         (mono_debug_find_source_location): Renamed into
10019         mono_debug_symfile_lookup_location(); only take a
10020         `MonoDebugMethodInfo *' and an `offset' argument; added inline
10021         documentation.
10022         (mono_debug_find_method): Renamed into
10023         mono_debug_symfile_lookup_method().
10024
10025 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
10026
10027         * assembly.c (mono_assembly_open_full): Dont overwrite the status
10028         returned by mono_image_open_full ().
10029
10030         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
10031         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
10032         #78517.
10033
10034         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
10035         #78518.
10036
10037 2006-05-27  Miguel de Icaza  <miguel@novell.com>
10038
10039         * class.c (mono_class_from_typeref): handle missing images
10040         earlier, deals with bug #78418.   Refactor code; 
10041
10042         Fix a warning introduced in my previous commit (some stale code
10043         from before I revisited my patch).
10044
10045         * class.c (mono_class_create_from_typedef): On failure, remove the
10046         class from the MonoImage->class_cache as the class is not
10047         initialized;   Fixes the leak pointed out by Paolo.
10048
10049 2006-05-25  Dick Porter  <dick@ximian.com>
10050
10051         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
10052         DeleteCriticalSections until I figure out which one may still be
10053         sometimes locked when mono_thread_cleanup is called.
10054
10055 2006-05-24  Dick Porter  <dick@ximian.com>
10056
10057         * threads.c (mono_thread_cleanup): Move the threading cleanup out
10058         of mono_thread_manage and back into its own function, so it can be
10059         called after the finalizer thread has finished.
10060
10061         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
10062
10063 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
10064
10065         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
10066         Fixes #78495.
10067
10068         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
10069         with non-blittable elements.
10070         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
10071
10072 2006-05-24  Martin Baulig  <martin@ximian.com>
10073
10074         * mono-debug-debugger.h (MonoDebuggerEvent): Added
10075         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
10076
10077         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
10078         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
10079         `mono_debugger_event_handler' to NULL.
10080
10081 2006-05-24  Martin Baulig  <martin@ximian.com>
10082
10083         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
10084
10085 2006-05-24  Martin Baulig  <martin@ximian.com>
10086
10087         * mono-debug-debugger.h
10088         (mono_debugger_create_notification_function): Added
10089         `MonoCodeManager *' argument.
10090
10091 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
10092
10093         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
10094
10095 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
10096
10097         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
10098         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
10099         implementation.
10100
10101 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
10102
10103         * icall.c: precise GC support: objects can't be stored in unmanaged
10104         memory anymore, even if they are kept alive by other references: since
10105         they can move the GC needs to be able to always find them.
10106
10107 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
10108
10109         * object.c: precise GC support for static fields. Support
10110         for moving GCs: write barriers and pinned allocation for interned
10111         strings.
10112
10113 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
10114
10115         * domain.c, domain-internals.h: precise GC support for the MonoDomain
10116         structure.
10117
10118 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
10119
10120         * class.c, gc.c: sgen and precise GC updates.
10121
10122 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
10123
10124         * marshal.h, marshal.c: added write barrier wrapper and precise type
10125         fixes.
10126
10127 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
10128
10129         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
10130         support.
10131
10132 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
10133
10134         * reflection.c: precise and sgen GC updates.
10135
10136 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
10137
10138         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
10139
10140 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
10141
10142         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
10143
10144 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
10145
10146         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
10147         MONO_TYPE_OBJECT. Fixes #78462.
10148
10149 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
10150
10151         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
10152         and blittable types.
10153
10154 2006-05-17  Miguel de Icaza  <miguel@novell.com>
10155
10156         * class.c (mono_class_get_exception_for_failure): Implement parts
10157         of a TODO: if the loader error is set (instead of the class
10158         error), we return a Loader exception that can be properly thrown
10159         elsewhere.
10160
10161         This was exposed by some Winforms 2.0 code that I tried to run
10162         (Atsushi pointed me to it).
10163
10164 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
10165
10166         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
10167         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
10168         
10169         * marshal.c (emit_marshal_vtype): Add limited support for 
10170         UnmanagedType.LPStruct. Fixes #78427.
10171
10172         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
10173         Applied a patch from kangaroo to fix #77523.
10174
10175 2006-05-17  Martin Baulig  <martin@ximian.com>
10176
10177         * threads.c
10178         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
10179         (debugger_thread_created): Removed.
10180         (debugger_thread_exited): Removed.
10181
10182 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
10183
10184         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10185
10186         * object-internals.h (MonoReflectionResource): Sync with managed version.
10187
10188 2006-05-12  Wade Berrier <wberrier@novell.com>
10189
10190         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
10191
10192 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
10193
10194         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
10195         functions try to allocate from the image mempool.
10196
10197 2006-05-12  Dick Porter  <dick@ximian.com>
10198
10199         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
10200
10201 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
10202
10203         * object.c: The FieldGetter and FieldSetter methods require the full
10204         name of the class, not only the name. Fixes bug #78277.
10205
10206 2006-05-11  Miguel de Icaza  <miguel@novell.com>
10207
10208         * loader.c (method_from_memberref): Do not pass the NULL klass to
10209         mono_loader_set_error_() methods.  Pass the non-NULL value
10210         (class). 
10211
10212 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
10213
10214         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
10215         (mono_assembly_close): Null out assembly->image->references after freeing it.
10216
10217         * image.c (mono_image_close): Free image->references.
10218         
10219         * reflection.c (mono_image_basic_init): Fix a small memory leak.
10220
10221 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
10222
10223         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
10224         before checking if it's NULL (g_assert).
10225
10226 2006-05-10  Martin Baulig  <martin@ximian.com>
10227
10228         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
10229         I thought I already killed that two months ago, but now it somehow reappeared.
10230
10231 2006-05-10  Martin Baulig  <martin@ximian.com>
10232
10233         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
10234
10235 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
10236
10237         * reflection.c: Allocate memory for dynamically created methods in the image
10238         mempools.
10239
10240 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
10241
10242         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
10243         don't use the ad pointer before checking if it's NULL (g_assert).
10244
10245 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
10246
10247         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
10248         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
10249
10250         * marshal.c: Allocate all signatures from mempools.
10251
10252         * marshal.c: Allocate some more signatures from mempools.
10253
10254 2006-05-09  Miguel de Icaza  <miguel@novell.com>
10255
10256         * object.c (mono_load_remote_field): The code used to provide a
10257         temporary variable for returning results if the user did not
10258         provide a result pointer.  But our temporary variable was allocted
10259         on the satck.
10260
10261         Fix calling code to always pass a result area.   Coverity ID 103.
10262
10263 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
10264
10265         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
10266         value, not the old. Fixes #78312.
10267         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
10268
10269         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
10270         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
10271         per-image cache.
10272
10273         * assembly.c (mono_assembly_close): Free image->references.
10274
10275         * assembly.c (mono_assembly_names_equal): Fix a warning.
10276         (mono_assemblies_cleanup): Cleanup more global data.
10277
10278         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
10279
10280         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
10281         ptr_cache and image->modules.
10282
10283         * image.c (mono_image_init): Allocate array_cache lazily.
10284         
10285 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10286
10287         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
10288         behavior was changed recently and has bad side effects.
10289
10290 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
10291
10292         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
10293         
10294         * assembly.c (mono_assembly_close): Remove a debug printf.
10295
10296         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
10297
10298         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
10299         to also allow for temporary references between mono_image_open ()/close ().
10300
10301         * domain.c (get_runtimes_from_exe): Add a FIXME.        
10302
10303 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
10304
10305         * marshal.c: Fix support for dynamic methods.
10306
10307         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
10308
10309         * marshal.c (mono_marshal_cleanup): New cleanup function.
10310
10311         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
10312         image mempools.
10313
10314         * class.c (mono_class_init): Fix leaking class->nested_classes.
10315
10316         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
10317
10318         * image.c (mono_image_init): Initialize the new cashes.
10319
10320         * image.c (mono_image_close): Destroy the new cashes.
10321
10322         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
10323
10324         * mempool.c (mono_mempool_strdup): New helper function.
10325
10326         * class-internals.h: Add prototype for mono_loader_unlock ().
10327
10328         * domain.c (mono_jit_info_table_find): Fix a warning.
10329         (mono_debugger_check_runtime_version): Ditto.
10330
10331         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
10332         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
10333         functions to these modules.
10334
10335         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
10336         metadata modules.
10337         
10338         * marshal.c (mono_free_bstr): Fix a warning.
10339
10340         * assembly.c (mono_assembly_open_full): Fix another small leak.
10341
10342         * object.c: Fix some unload leaks in the remoting code.
10343
10344         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
10345         function.
10346
10347         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
10348
10349         * reflection.c: Fix some unload leaks in dynamic assemblies.
10350
10351 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
10352
10353         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
10354         * marshal.h: Add BSTR support on Win32
10355         * icall.c: Add BSTR icalls
10356         * metadata.h: Add BSTR enums
10357
10358 2006-04-28  Miguel de Icaza  <miguel@novell.com>
10359
10360         Work to catch the crash from #76795 and turn it into an
10361         exception.   As I stubbed out pieces of the VisualBasic support,
10362         I found a number of places where the code was failing and I added
10363         checks to those places. 
10364         
10365         * metadata.c (do_mono_metadata_parse_generic_class): Make this
10366         function return a status code.  If we fail to parse the signature
10367         from mono_metadata_parse_generic_inst, return FALSE.
10368
10369         * loader.c (mono_get_method_from_token): If we fail to load the
10370         method (mono_class_get) return NULL.   
10371
10372         * (method_from_memberref): Return NULL if we are unable to parse
10373         the method signature
10374
10375         (mono_loader_error_prepare_exception): Since we now use the
10376         loader_error flag internally to stop processing, and obtaining
10377         exceptions that might be thrown will walk this code path the
10378         proper way of going from a MonoLoaderError into a
10379         MonoException was convoluted.   This new routine encapsulates the
10380         process of turning the error into an exception and *clearing* the
10381         error afterwards.
10382         
10383 2006-04-27  Miguel de Icaza  <miguel@novell.com>
10384
10385         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
10386         with missing assemblies), and to cope with:
10387
10388                 * Missing fieldref from a non-existing assembly.
10389                 * Missing methodref from a non-existing assembly.
10390
10391         The first batch of work to address *some* of the issues from 76661.
10392         
10393         * object.c (mono_class_create_runtime_vtable): If we fail to
10394         initialize the class raise the exception here. 
10395
10396         * metadata.c (mono_class_get_overrides_full): If any methods fail
10397         to load return the failure to the caller.
10398
10399         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
10400         flagging assemblies that failed to load.   
10401
10402         Do not crash if we are unable to load the assembly.
10403
10404         (mono_assembly_close): Do nothing with REFERENCE_MISSING
10405         assemblies. 
10406
10407         * loader.c (mono_loader_set_error_type_load): Change the
10408         convention to always pass unallocated strings, so we make our own
10409         copies (I know our own code had duplicated strings before, but
10410         this keeps the normal conventions).
10411         (method_from_memberref): Call mono_loader_set_error_method_load
10412         for all possible failures of loading the class. 
10413         Remove assert, turn into a loader error.
10414
10415         (mono_loader_error_to_exception): Move this routine from mini
10416         (mini_loader_error_to_exception) there was no need to have that in
10417         mini. 
10418
10419         * class.c (mono_class_from_typeref): If we were not able to load
10420         the assembly with mono_assembly_load_reference, call the
10421         mono_loader_set_error_type_load to register the problem.
10422
10423         (mono_class_setup_fields): If we fail to load the type from
10424         mono_metadata_parse_type_full, call mono_class_set_failure and
10425         break from the loop.
10426
10427         If class->exception_type is set, we do not layout the fields as
10428         that might crash the runtime, and instead return (from breaking
10429         from the previous loop).
10430
10431         (mono_class_setup_vtable): This now returns a boolean indicating
10432         whether the table was properly setup.   The decision is driven by
10433         mono_class_get_overrides_full which might run into non-existing
10434         methods. 
10435         
10436         (mono_class_init): Returns TRUE on success or FALSE if there was a
10437         problem in loading the type (incorrect assemblies, missing
10438         assemblies, methods, etc).
10439
10440         When we call mono_class_setup_fields we also check for a potential
10441         error inside this call (either a class exception or a general
10442         loader exception).
10443
10444         (mono_class_create_from_typedef): If the parent fails to load
10445         (calling mono_class_get_full) return NULL.
10446         
10447         ** Important **
10448
10449         calls to mono_metadata_parse_type_full should be checked
10450         everywhere and set the mono_class_set_failure
10451         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
10452
10453         The current patch checks the places where my manually constructed
10454         tests show the errors are showing up, but we should do it
10455         everywhere. 
10456
10457         ** Important2 **
10458
10459         mono_class_init return values should be tested everywhere, like
10460         the previous case this is something that we should audit
10461         everywhere and not only on the cases exposed by the tests I
10462         created. 
10463
10464 2006-04-26  Miguel de Icaza  <miguel@novell.com>
10465
10466         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
10467         boolean parameter and instead pass the information on `options'
10468         parameter (FileOptions).
10469
10470         * icall.c: Register the new signature for MonoIO.Open.
10471
10472         * debug-helpers.c (dis_one): Trying to understand how coverity
10473         works.  Fix Run 5, item 78.
10474
10475 2006-04-26  Dick Porter  <dick@ximian.com>
10476
10477         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
10478         dereference.
10479
10480 2006-04-25  Martin Baulig  <martin@ximian.com>
10481
10482         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
10483
10484         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
10485         debugger_thread_created().
10486         (debugger_gc_push_all_stacks): Don't handle the main thread in any
10487         special way.
10488         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
10489         (mono_debugger_finalize_threads): New function; undo the effects
10490         of mono_debugger_init_threads().
10491         (mono_debugger_create_all_threads): Removed.
10492
10493 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
10494
10495         * image.c (mono_image_close): Tidy up trace messages.
10496
10497         * assembly.c (mono_assembly_close): Ditto.
10498
10499         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
10500         no longer references an already freed assembly. Fixes #78168.
10501
10502 2006-04-21  Dick Porter  <dick@ximian.com>
10503
10504         * threads.c (mono_thread_detach): Fix reference counting when
10505         detaching threads.
10506
10507 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
10508
10509         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
10510         #78155.
10511
10512 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
10513
10514         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
10515         (mono_type_to_stind): Ditto.
10516
10517         * marshal.c: Use the new helper functions to simplify code.
10518
10519         * image.c (mono_image_close): Add some code for help debug assembly unloading
10520         problems.
10521
10522         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
10523         image mempool.
10524
10525         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
10526         assembly was already loaded in another appdomain. Fixes #78083.
10527
10528 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
10529
10530         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
10531         referenced assemblies.
10532         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
10533
10534         * domain.c (mono_domain_free): Add a trace message.
10535
10536         * appdomain.c (add_assemblies_to_domain): Ditto.        
10537
10538         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
10539         field.  
10540
10541 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
10542
10543         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
10544
10545 2006-04-12  Martin Baulig  <martin@ximian.com>
10546
10547         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
10548         `USE_INCLUDED_LIBGC'.   
10549
10550 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
10551
10552         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
10553         the patch contains ../ and a small directory name later. Hopefully fixes
10554         #78035.
10555
10556 2006-04-10  Martin Baulig  <martin@ximian.com>
10557
10558         Clean up the debugger's thread-handling code.
10559
10560         The debugger's thread-handling code has been moved from
10561         ../mini/debug-debugger.c to threads.c.  We now iterate directly
10562         over the `threads' hash, keep track of exiting threads and also
10563         use proper locking.
10564
10565         We can now debug XSP and XSP based applications with the debugger.
10566
10567         * object-internals.h (MonoThread): Added `gpointer end_stack'.
10568
10569         * threads.h
10570         (MonoThreadCallbacks): Removed; this was only used by the debugger.
10571         (mono_install_thread_callbacks): Likewise.      
10572
10573         * threads.c (mono_thread_callbacks): Removed.
10574         (debugger_thread_created, debugger_thread_exited): New static functions.
10575         (start_wrapper): Call debugger_thread_created().
10576         (thread_cleanup): Call debugger_thread_exited().
10577         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
10578         (mono_debugger_init_threads): New public function.
10579         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
10580         iterate directly over the `threads' hash and also use proper locking.
10581
10582         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
10583
10584         * mono-debug-debugger.h
10585         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
10586
10587 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
10588
10589         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
10590         argument type=array. Fixes #78057.
10591
10592 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
10593
10594         * culture-info-table.h : regenerated. Fixed bug #69652.
10595
10596 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
10597
10598         * loader.c metadata.c: Reapply a variant r59116.
10599         
10600         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
10601
10602         * class.c (mono_class_setup_interface_offsets): New internal function.
10603
10604         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
10605         interfaces too. Fixes #77398.
10606
10607         * reflection.c (encode_cattr_value): Add support for 
10608         parameter type=object, argument type=array.
10609         (load_cattr_value): Ditto. Fixes #77916.
10610
10611         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
10612         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
10613
10614         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
10615         a byval char array and CharSet is Ansi.
10616
10617         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
10618
10619 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
10620
10621         * metadata.c: Add some locking comments.
10622         
10623         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
10624         mempool.
10625         (mono_metadata_free_method_signature): Don't free the signature itself.
10626
10627         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
10628
10629         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
10630         reference the same MonoImage.
10631         (mono_assembly_load_from_full): Add an assert.
10632
10633 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
10634
10635         * image.c (mono_image_close): Don't put the image we are about to free into the
10636         loaded_images_guid_hash.
10637
10638         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
10639         to reduce code duplication.
10640
10641         * marshal.c: Register the native functions called by this module as icalls, to
10642         somewhat centralize the creation of MonoMethodSignature's.
10643
10644         * loader.c (mono_method_signature): Add a cache for method signatures.
10645
10646         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
10647         the parameter attributes of a method.
10648         (mono_metadata_parse_method_signature_full): Refactored the computation of
10649         parameter attributes into a separate function. Also avoid one allocation in
10650         most cases.
10651
10652         * assembly.c (mono_assembly_close): Ditto.
10653
10654         * image.c (mono_image_close): Log trace messages with INFO level.
10655
10656         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
10657
10658         * image.c reflection.c: Correct reference counting of image modules.
10659         
10660         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
10661         of this function from the image mempool.
10662         
10663         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
10664         to allow more cached types to be used.
10665
10666         * mono-debug.c (mono_debug_add_method): Appled patch from
10667         David S. Miller  <davem@sunset.davemloft.net>: Access 
10668         minfo->lexical_blocks[] entry elements using read32().
10669
10670 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
10671
10672         * loader.c (mono_free_method): No longer free the method header for non-dynamic
10673         methods as it is allocated from the mempool.
10674
10675         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
10676         image mempool.
10677
10678         * metadata-internals.h: Add comments describing the reference counting scheme
10679         used for MonoImage and MonoAssembly.
10680
10681         * image.c assembly.c reflection.c: Rework reference counting of images and 
10682         assemblies so they are freed when the runtime is shut down. Free some 
10683         additional memory structures when an image is unloaded.
10684         
10685 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
10686
10687         * class.c loader.c reflection.c: Allocate more data structures in
10688         the image mempool.
10689
10690 2006-03-31  Miguel de Icaza  <miguel@novell.com>
10691
10692         * icall.c
10693         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
10694         build on pre glib 2.4 systems.
10695
10696 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
10697
10698         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
10699
10700         * icall.c: Fix some warnings.
10701
10702 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
10703
10704         * culture-info-table.h : regenerated.
10705
10706 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
10707
10708         * threads.c, object-internals.h, verify.c: changed the culture caching
10709         code to use a normal MonoArray for storage so the GC can keep track of
10710         them easily. Fixed bits of the cache logic, too and simplified the
10711         code.
10712
10713 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
10714
10715         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
10716         thread for non-Boehm GCs.
10717
10718 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
10719
10720         * domain.c, object.c, domain-internals.h: reduce the amount of memory
10721         needed to keep track of the data for static fields.
10722
10723 2006-03-29  Raja R Harinath  <rharinath@novell.com>
10724
10725         Fix #75172
10726         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
10727         for interface classes.  Use 'num_methods' instead.
10728         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
10729         before using '->vtable_size' field.
10730
10731 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
10732
10733         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
10734         doesn't contain managed pointers, so use a normal hashtable.
10735
10736 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
10737
10738         * reflection.c, class-internals.h, domain.c: fixed handling of types
10739         used as values for objects in custom attributes (bug #77915):
10740
10741 2006-03-24  Martin Baulig  <martin@ximian.com>
10742
10743         * class.c (mono_class_setup_fields): Added support for generic
10744         instances; fixes #77580.
10745
10746 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10747
10748         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
10749
10750 2006-03-24  Dick Porter  <dick@ximian.com>
10751
10752         * file-io.c (get_file_attributes): More stat macro breakage.
10753         Fixes bug 77759.
10754
10755 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
10756
10757         * profiler.c: added the file=filename option in the default profiler
10758         to output the profile data to filename.
10759
10760 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10761
10762         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
10763         bug #77877.
10764
10765 2006-03-22  Martin Baulig  <martin@ximian.com>
10766
10767         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
10768         allocated `MonoClassField *' in `fb->handle'.
10769
10770 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
10771
10772         * class.c, image.c, metadata-internals.h: implemented new mechanism to
10773         allocate interface ID to save memory and allow better ID reuse on
10774         appdomain unload. setup_generic_vtable () removal from Martin.
10775
10776 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
10777
10778         * object.h, appdomain.c, domain.c, exception.c, icall.c,
10779         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
10780         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
10781         write barriers for reference stores with managed objects accessed with
10782         C structures in the runtime and in embedding programs.
10783
10784 2006-03-20  Raja R Harinath  <rharinath@novell.com>
10785
10786         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
10787         'interface_id' and 'max_interface_id' fields of MonoClasses
10788         representing open generic types.
10789
10790 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
10791
10792         * object.h, object.c, icall.c: added functions to deal with
10793         storing valuetypes that contain references in managed objects.
10794         * reflection.c, string-icalls.c, threads.c, marshal.c: small
10795         fixes and comments around uses of mono_array_addr ().
10796
10797 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
10798
10799         * object.h, icall.c, monitor.c: object.GetHashCode ()
10800         implementation that supports the moving garbage collector.
10801
10802 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
10803
10804         * icall.c, threads-types.h, threads.c: implemented finalizer for
10805         LocalDataStoreSlot.
10806
10807 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
10808
10809         * metadata.c (mono_type_size): Add a fixme.
10810         (mono_type_stack_size): Ditto.
10811
10812         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
10813         'type_forwarders' field.
10814
10815         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
10816         attribute from net 2.0.
10817
10818         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
10819         from class.c.
10820
10821         * class.c (mono_class_setup_fields): Fix a warning.
10822         
10823         * class.c (mono_class_from_name): Add support for assemblyref entries
10824         in the EXPORTEDTYPE table.
10825
10826         * reflection.c: Add support for handling type forwarders under net 2.0.
10827
10828         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
10829         
10830 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
10831
10832         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
10833         overwriting entries in ModuleBuild->types, also clean up the code
10834         a little. Fixes #77774.
10835
10836 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
10837
10838         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
10839         load friend assembly info when present.
10840
10841 2006-03-14  Raja R Harinath  <rharinath@novell.com>
10842
10843         Fix crasher on gtest-158.cs.
10844         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
10845         the return value if the MonoClass we want is yet in an
10846         inconsistent state.
10847         * class.c (mono_class_create_from_typedef): Add an comment
10848         explaining an order dependency between mono_class_setup_parent and
10849         mono_class_setup_mono_type.
10850
10851 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
10852
10853         * class.c: documentation updates and events bug fix.
10854
10855 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
10856
10857         * class.c: some cleanup, locking fixes.
10858
10859 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
10860
10861         * class.c: fix the generics code to setup nested
10862         type info to the instantiated type (bug #77770).
10863
10864 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
10865
10866         * marshal.c: fixed a few type correctness issues.
10867
10868 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
10869
10870         * loader.c: the Set/Get/Addrtess array methods should be public.
10871
10872 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
10873
10874         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
10875         
10876         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
10877         info->wrapper.
10878
10879 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
10880
10881         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
10882
10883         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
10884
10885         * mempool.c (mono_mempool_alloc): Speed this up a bit.
10886         (mono_mempool_alloc0): Ditto.
10887
10888 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10889
10890         * socket-io.c:
10891         (create_object_from_sockaddr): it was allocating 4 extra bytes
10892         for the AF_UNIX data. Fixes bug #77747.
10893
10894 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
10895
10896         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
10897
10898 2006-03-09  Dick Porter  <dick@ximian.com>
10899
10900         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
10901         Fixes bug 76966 again.
10902
10903 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
10904
10905         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
10906         names from r57532
10907         * appdomain.c: Bumped corlib version to 48 (due to r57532)
10908
10909 2006-03-07  Martin Baulig  <martin@ximian.com>
10910
10911         * object.c
10912         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
10913
10914 2006-03-07  Martin Baulig  <martin@ximian.com>
10915
10916         * class.c
10917         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
10918         regression introduced in r56970; see gtest-252.cs.
10919
10920         * loader.c (mono_get_method_constrained): Correctly handle generic
10921         methods; see gtest-253.cs.
10922
10923 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
10924
10925         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
10926
10927 2006-03-04  Martin Baulig  <martin@ximian.com>
10928
10929         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
10930         compute the parent type at runtime, just like we're already doing
10931         it for interfaces.
10932
10933         * reflection.c
10934         (mono_reflection_bind_generic_parameters): Don't compute the
10935         parent type anymore.
10936
10937         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
10938
10939 2006-03-04  Martin Baulig  <martin@ximian.com>
10940
10941         * mono-debug-debugger.h
10942         (mono_debugger_create_notification_function): Allocate memory at
10943         runtime and return a pointer to it.
10944
10945 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
10946
10947         * assembly.c: Fix windows build.
10948         
10949         * assembly.c: Fix build.
10950
10951         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
10952
10953         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
10954         
10955 2006-03-03  Dick Porter  <dick@ximian.com>
10956
10957         * process.c
10958         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
10959         Check parameters before dereferencing them.  Fixes Aaron's part of
10960         bug 77393.
10961
10962 2006-03-03  Raja R Harinath  <rharinath@novell.com>
10963
10964         Fix performance regression.
10965         * loader.c (find_method_in_class): Add 'from_class' argument.
10966         Rename 'klass' argument to 'in_class'.  The signature is compared
10967         against the method in 'in_class', and the corresponding method is
10968         returned from 'from_class'.
10969         (find_method): Walk both 'in_class' and 'from_class' in parallel.
10970         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
10971         type definition and generic instantiation in parallel.
10972         (mono_get_method_constrained): Update to changes.
10973
10974 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
10975
10976         * threads.c: make sure the domain is correct, too when doing
10977         mono_thread_attach ().
10978
10979 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
10980
10981         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
10982         windows. Fixes #77683.
10983
10984 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
10985
10986         * object.h, *: introduced specific way to set elements of an array
10987         of references to be used as write barrier. Still need to audit the
10988         uses of mono_array_addr.
10989
10990 2006-03-01  Miguel de Icaza  <miguel@novell.com>
10991
10992         * object-internals.h: New field to cache the assmebly name, patch
10993         from Tambet Ingo (tambet@ximian.com)
10994
10995 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
10996
10997         * decimal.h, class-internals.h, metadata-internals.h,
10998         file-io.h: mark a few function declarations as internal, to
10999         reduce the number of PLT entries.
11000
11001 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11002
11003         * file-io.c: fix typo in warning message.
11004
11005 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
11006
11007         * loader.c: on unix, lookup the "*A" version of a function
11008         if charset is auto as a second option before failing.
11009
11010 2006-02-28  Raja R Harinath  <rharinath@novell.com>
11011
11012         * class.h (mono_class_inflate_generic_method): Revert to two
11013         argument version.
11014         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
11015         (mono_class_inflate_generic_method_full): Add.
11016         * class.c (mono_class_inflate_generic_method_full): Rename from
11017         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
11018         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
11019         * loader.c, reflection.c: Update to changes.
11020
11021 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
11022
11023         * icall.c: const fixes and small improvements.
11024
11025 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11026
11027         * threadpool.c: for asynchronous connect(), enable the same workaround
11028         for BSD 6 as for the Mac. Fixes bug #77637.
11029
11030 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
11031
11032         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
11033         formatted classes. Fixes #77524.
11034
11035 2006-02-24  Raja R Harinath  <rharinath@novell.com>
11036
11037         * class.c (inflate_generic_type): Add a couple more
11038         micro-optimizations.
11039         (inflate_generic_context): Don't use the 'gmethod' from
11040         'inflate_with'.
11041         (mono_class_inflate_generic_method): If the method has generic
11042         parameters, but the passed-in context doesn't have a 'gmethod',
11043         create one.  Use the possibly simplified generic instantiation
11044         from the declaring class instead of the one passed in.
11045
11046 2006-02-24  Raja R Harinath  <harinath@gmail.com>
11047
11048         Make generic method signature and method header handling lazy.
11049         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
11050         (inflate_generic_header): Likewise.
11051         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
11052         parameter to avoid inflating types.
11053         (mono_get_inflated_method): Empty out.
11054         * class.h (mono_class_inflate_generic_method): Update to changes.
11055         * loader.c (mono_get_method_from_token): Don't parse signature for
11056         generic methods, nor methods of generic classes.
11057         (mono_method_signature): Rename from 'mono_method_signature'.
11058         Inflate signature on demand.
11059         (mono_method_get_header): Inflate method header on demand.
11060         * reflection.c: Update to changes.
11061
11062 2006-02-23  Raja R Harinath  <rharinath@novell.com>
11063
11064         * metadata.c (mono_metadata_inflate_generic_inst): If the
11065         instantiation is closed, don't bother expanding it in the new
11066         context.
11067         * class.c (inflate_generic_class): If the generic instantiation
11068         doesn't change after inflation, return the argument itself.
11069         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
11070         Add bounds checks.
11071         (inflate_generic_context): If neither the generic class nor the
11072         generic method instantiations change, return the original context.
11073         * reflection.c (mono_method_get_object): Do
11074         'mono_get_inflated_method' before accessing the ->klass field.
11075         (inflate_mono_method): Don't create a MonoGenericMethod unless
11076         necessary.
11077         (inflate_method): Don't pass a constructed type as the declaring
11078         type of a methodbuilder.
11079
11080 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
11081
11082         * object.c: fix memory overwrite.
11083
11084 2006-02-22  Dick Porter  <dick@ximian.com>
11085
11086         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
11087         it doesn't work any more.
11088         (mono_threads_request_thread_dump): Fix unused variable warnings.
11089
11090 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11091
11092         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
11093         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
11094         the public header file.
11095
11096 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
11097
11098         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
11099
11100 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
11101
11102         * class-internals.h, object.c: reduce the size of MonoVTable
11103         and store the interface_offsets array at negative offsets.
11104
11105 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
11106
11107         * metadata.c: tweak table descriptors data structures to reduce
11108         size and runtime relocations.
11109
11110 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11111
11112         * marshal.c: fix some types and opcodes to be type-safe
11113         in marshaling wrappers.
11114
11115 2006-02-21  Ankit Jain  <jankit@novell.com>
11116
11117         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
11118
11119 2006-02-21  Raja R Harinath  <rharinath@novell.com>
11120
11121         * metadata.c (get_constraints): Relax debugging checks for monodis.
11122
11123 2006-02-21  Ankit Jain  <jankit@novell.com>
11124
11125         * metadata.c (mono_metadata_load_generic_params): Move the code
11126         checking for ambiguous generic params from here to mono/dis/get.c
11127         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
11128
11129 2006-02-21  Raja R Harinath  <harinath@gmail.com>
11130
11131         Fix assertion triggered when compiling nemerle.
11132         * class.c (mono_get_shared_generic_inst): Rename from
11133         get_shared_inst and make non-static.
11134         * loader.c (mono_get_shared_generic_method): New.  Used to create
11135         the MonoGenericContext-equivalent of a MonoGenericContainer.
11136         (mono_get_method_from_token): Initialize the 'context' field of
11137         the created MonoGenericContainer.
11138         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
11139         * metadata.c (get_constraints): Add sanity check.
11140         * class-internals.h: Add new internal methods.
11141
11142         * reflection.c (verify_safe_for_managed_space): New sanity check.
11143         Currently checks that owner-less generic parameters aren't allowed
11144         in managed space.
11145         (mono_type_get_object): Use it.
11146         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
11147         that are now in mono_type_get_object.
11148         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
11149
11150 2006-02-19  Raja R Harinath  <harinath@gmail.com>
11151
11152         * metadata.c (mono_type_create_from_typespec): Rename from
11153         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
11154         argument and caching of types in the generic container.
11155         (unwrap_arrays, find_generic_param): Remove.
11156         * metadata-internals.h: Update.
11157         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
11158
11159 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
11160
11161         * class.c (mono_class_get_exception_for_failure): Fix a warning.
11162
11163         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
11164         return values. Fixes #77581.
11165
11166         * class.c (mono_fnptr_class_get): Switch name and name_space.
11167
11168         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
11169         classes and add support for [In, Out] attributes.
11170         (mono_marshal_free_asany): Ditto. Fixes #77524.
11171
11172 2006-02-18  Raja R Harinath  <harinath@gmail.com>
11173
11174         * class.c (mono_class_from_generic_parameter): Make more robust to
11175         incomplete MonoGenericContainers from monodis.
11176
11177 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11178
11179         * class-internals.h: added some more exception types.
11180         * class.c, metadata.c: added a few checks to handle missing
11181         types.
11182
11183 2006-02-17  Raja R Harinath  <rharinath@novell.com>
11184
11185         Use owner-less generic-params some more.
11186         * class.c (my_mono_class_from_generic_parameter): Remove.
11187         (mono_class_from_generic_parameter): Handle null image,
11188         param->name and param->owner.
11189         (mono_class_from_mono_type): Update.
11190         (mono_class_create_from_typespec): Remove 'container' parameter.
11191         If that parameter is non-null, the result is always inflated by
11192         'mono_class_get_full' anyway.
11193         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
11194         parameter.
11195         (mono_class_get_full): Update.
11196
11197         * class.c (inflate_generic_type) [GENERICINST]: If the generic
11198         instance is not open, don't bother inflating.
11199         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
11200         parse metadata for inflated classes.
11201         (_mono_class_get): Change GenericContext* parameter to
11202         GenericContainer*.
11203         (mono_class_create_from_typespec): Likewise.  Simplify, and
11204         implement trivially.  All the cases are handled in
11205         mono_class_from_mono_type.  Don't inflate returned class.
11206         (mono_class_get_full): Delegate GENERICINST optimization to
11207         inflate_generic_type.
11208         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
11209
11210 2006-02-16  Dick Porter  <dick@ximian.com>
11211
11212         * socket-io.c (create_object_from_sockaddr): Fix typo.
11213         (create_sockaddr_from_object): Check array lengths before
11214         potentially accessing items off the end.
11215         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
11216         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
11217         (ves_icall_System_Net_Sockets_Socket_Send_internal)
11218         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
11219         length checks to avoid wraparound overflows.
11220         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
11221         contents of the array of sockets
11222         (hostent_to_IPHostEntry2)
11223         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
11224         Check return value of inet_ntop ().
11225         (addrinfo_to_IPHostEntry): Fix typo
11226
11227 2006-02-16  Raja R Harinath  <rharinath@novell.com>
11228
11229         Type metadata parsing doesn't use generic-instantiation information.
11230         * metadata.c (mono_metadata_parse_array_full): Change
11231         MonoGenericContext* parameter to MonoGenericContainer*.
11232         (mono_metadata_parse_type_full): Likewise.
11233         (mono_type_create_from_typespec_full): Likewise.
11234         (mono_metadata_parse_mh_full): Likewise.
11235         (mono_metadata_parse_generic_inst): Likewise.
11236         (do_mono_metadata_parse_generic_class): Likewise.
11237         (do_mono_metadata_parse_type): Likewise.
11238         * metadata-internals.h: Update to changes.
11239         * class.c (mono_class_find_enum_basetype): Likewise.
11240         (mono_class_setup_fields): Likewise.
11241         (mono_class_create_from_typespec): Likewise.
11242         * loader.c (method_from_methodspec): Likewise.
11243         (mono_get_method_from_token): Likewise.
11244         (mono_method_get_header): Likewise.
11245
11246 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11247
11248         * marshal.c: handle additional GENERICINST case (patch from
11249         Thong Nguyen <tum@veridicus.com>).
11250         Fix a few cases where LDIND_I/STIND_I was used for references.
11251
11252 2006-02-16  Raja R Harinath  <rharinath@novell.com>
11253
11254         * reflection.c (mono_reflection_get_token): Remove unused variable.
11255
11256 2006-02-16  Martin Baulig  <martin@ximian.com>
11257
11258         * reflection.c (mono_reflection_get_token): Add support for fields
11259         in instantiated generic types.
11260
11261         * icall.c
11262         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
11263
11264 2006-02-15  Martin Baulig  <martin@ximian.com>
11265
11266         * icall.c
11267         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
11268         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
11269         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
11270         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
11271
11272 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
11273
11274         * class.c, metadata.c, metadata.h, object.c, icall.c,
11275         marshal.c: changed mono_type_get_underlying_type () to do
11276         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
11277         Fixed handling of instantiated generic valuetypes (bug #75479).
11278
11279 2006-02-15  Raja R Harinath  <rharinath@novell.com>
11280
11281         * metadata.c (mono_metadata_decode_signed_value): Simplify.
11282         Delegate to mono_metadata_decode_value, and work on the returned value.
11283
11284         * icall.c (ves_icall_MonoType_GetGenericArguments):
11285         Add consistency check here too.
11286         
11287 2006-02-15  Ankit Jain  <jankit@novell.com>
11288
11289         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
11290         char/short etc.
11291
11292 2006-02-15  Ankit Jain  <jankit@novell.com>
11293
11294         * metadata.c (mono_metadata_decode_signed_value): New function to decode
11295         signed values, used only for representing lower bounds of arrays.
11296         (mono_metadata_parse_array_full): Use new
11297         mono_metadata_decode_signed_value to decode lower bounds.
11298
11299 2006-02-14  Martin Baulig  <martin@ximian.com>
11300
11301         * reflection.c
11302         (mono_reflection_get_token): Support "MonoGenericMethod" and
11303         "MonoGenericCMethod" and allow generic instances / methods.
11304
11305 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
11306
11307         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
11308         to obtain the terminal size using an ioctl.
11309
11310         * object.c (mono_nullable_init): Revert this as nullable reference
11311         types are not valid.
11312         (mono_nullable_box): Ditto.
11313
11314 2006-02-09  Dick Porter  <dick@ximian.com>
11315
11316         * threads.c (mono_thread_detach): Drop a reference to the thread
11317         we're detaching.
11318
11319 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
11320
11321         * object.c (mono_nullable_init): Handle nullable reference types.
11322         (mono_nullable_box): Ditto. Fixes #77446.
11323
11324 2006-02-07  Martin Baulig  <martin@ximian.com>
11325
11326         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
11327
11328 2006-02-07  Ankit Jain  <jankit@novell.com>
11329
11330         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
11331         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
11332         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
11333         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
11334         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
11335         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
11336
11337 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
11338
11339         * class.c (mono_class_create_generic): Set type_token as well.
11340
11341         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
11342         compatible with MS.
11343
11344 2006-02-02  Martin Baulig  <martin@ximian.com>
11345
11346         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
11347         has never been used so far.
11348
11349 2006-02-02  Martin Baulig  <martin@ximian.com>
11350
11351         * mono-debug-debugger.h: Changed comment at the top of this file;
11352         the header is not installed, but it's safe to #include it from
11353         within the JIT.
11354
11355         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
11356         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
11357
11358 2006-02-02  Martin Baulig  <martin@ximian.com>
11359
11360         * mono-debug.h
11361         (MonoSymbolTable): Removed the `metadata_info' field.
11362
11363         * mono-debug.c
11364         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
11365
11366         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
11367         (mono_debugger_add_builtin_types): Removed.
11368         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
11369         (mono_debugger_create_notification_function): We now operate on a
11370         pre-allocated area; take a `gpointer' and return `void'.
11371
11372         * mono-debug-debugger.c
11373         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
11374         (mono_debugger_add_builtin_types): Removed.
11375
11376 2006-02-02  Martin Baulig  <martin@ximian.com>
11377
11378         * threads.c (mono_debugger_create_all_threads): New public method.
11379
11380 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11381
11382         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
11383         breaks on several platforms.
11384
11385 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
11386
11387         * assembly.c: the VS.NET build doesn't supply default values for
11388         MONO_ASSEMBLIES and MONO_CFG_DIR.
11389
11390 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
11391
11392         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
11393         helper function.
11394
11395         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
11396
11397         * loader.c (method_from_memberref): Fix a warning.
11398
11399         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
11400
11401         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
11402         with explicit layout. Fixes #77433.
11403
11404 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
11405
11406         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
11407         max_interface_id is initialized before using it. Fixes #77398.
11408         (ves_icall_Type_GetInterfaces): Ditto.
11409
11410 2006-01-30  Raja R Harinath  <rharinath@novell.com>
11411
11412         * metadata.c (mono_metadata_parse_method_signature_full): Don't
11413         allocate memory for parameter attributes when parsing memberref
11414         signatures.
11415         * loader.c (mono_loader_set_error_method_load): Don't warn.
11416         (method_from_memberref): Ensure MissingMethodException gets thrown
11417         if method is not found.  Make warning more informative.
11418
11419 2006-01-29  Raja R Harinath  <harinath@gmail.com>
11420
11421         Fix #77397
11422         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
11423         return true if is byref.
11424         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
11425         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
11426         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
11427
11428 2006-01-27  Raja R Harinath  <rharinath@novell.com>
11429
11430         Fix tests/find-method.2.il
11431         * loader.c (find_method, find_method_in_class): Remove is_inflated
11432         argument.  Revert 2006-01-18 change.
11433         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
11434         is generic, search for method in its generic definition.
11435         * class.c (mono_class_setup_vtable_general): Print generic
11436         arguments of generic types in debugging printf.
11437
11438 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
11439
11440         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
11441
11442         * threads.c (mono_threads_request_thread_dump): New helper function.
11443
11444 2006-01-25  Raja R Harinath  <rharinath@novell.com>
11445
11446         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
11447
11448 2006-01-25  Ankit Jain  <jankit@novell.com>
11449
11450         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
11451         move definition to ..
11452         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
11453         
11454 2006-01-25  Ankit Jain  <jankit@novell.com>
11455             Raja R Harinath  <rharinath@novell.com>
11456
11457         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
11458         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
11459         as necessary.
11460
11461 2006-01-25  Martin Baulig  <martin@ximian.com>
11462
11463         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
11464         `MonoDebuggerThread' into debug-debugger.c.
11465
11466 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
11467
11468         * profiler.c: fix printing of data.
11469
11470 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
11471
11472         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
11473           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
11474
11475 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
11476
11477         * object.c: fix deadlock related to string interning.
11478
11479 2006-01-23  Martin Baulig  <martin@ximian.com>
11480
11481         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
11482
11483         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
11484
11485 2006-01-23  Martin Baulig  <martin@ximian.com>
11486
11487         * mono-debug.h: Moved the prototypes of some functions which are
11488         used by the JIT here from mono-debug-debugger.h.
11489
11490 2006-01-21  Martin Baulig  <martin@ximian.com>
11491
11492         * Makefile.am: Don't install mono-debug-debugger.h.
11493
11494 2006-01-21  Martin Baulig  <martin@ximian.com>
11495
11496         * mono-debug-debugger.h: Enforce the private status of this header
11497         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
11498         Moved some stuff from mono-debugger-jit-wrapper.h here.
11499
11500 2006-01-20  Raja R Harinath  <rharinath@novell.com>
11501
11502         * class.c (mono_class_from_typeref): Add a sanity test to help
11503         catch lack of assembly load/search hooks.
11504
11505 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
11506
11507         * marshal.c (emit_struct_conv): Relax the fields with same offset
11508         check even more. Fixes #77230.
11509
11510 2006-01-18  Martin Baulig  <martin@ximian.com>
11511
11512         * loader.c (find_method_in_class): Added `gboolean is_inflated'
11513         argument; if false, we compare the uninstantiated signatures.
11514         (method_from_memberref): Compare the uninstantiated signatures;
11515         fixes #76417.
11516
11517 2006-01-18  Robert Jordan  <robertj@gmx.net>
11518
11519         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
11520         Clear the weak link. Fixes bug #77170.
11521
11522         * gc.c (mono_gchandle_free):
11523         Reflect *-gc.c changes (tiny optimization).
11524
11525 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
11526
11527         * metadata.c (mono_metadata_signature_dup): Applied patch from
11528         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
11529         Fixes #77288.
11530
11531 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
11532
11533         * marshal.c (emit_struct_conv): Allow fields with the same offset when
11534         marshalling from native to managed code. Fixes #77230.
11535
11536 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11537
11538         * threadpool.c: fix problem (Mac only) when more than one asynchronous
11539         connect. Fixes bug #77020.
11540
11541 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
11542
11543         * class.c: fixed id assignement for nested interfaces (bug #77275).
11544         Added also better info for --print-vtable debugging.
11545
11546 2006-01-12  Martin Baulig  <martin@ximian.com>
11547
11548         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
11549         interfaces on-the-fly; fixes #76625.
11550
11551         * class-internals.h
11552         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
11553         don't need that anymore.
11554
11555 2006-01-12  Miguel de Icaza  <miguel@novell.com>
11556
11557         * socket-io.c
11558         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
11559         To avoid initing the nested_classes when not needed I turned the
11560         PeerCredData as a toplevel internal class, as it has to be shared
11561         anyways. 
11562
11563         Fixes the CASA issue.
11564
11565 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
11566
11567         * domain.c: Accessors for MonoJitInfo
11568
11569         * profiler-private.h: Add jitinfo to the end jit hook
11570
11571         * profiler.[ch]: Define new hooks, called after jitting which give
11572         the MonoJitInfo that was compiled
11573
11574 2006-01-10  Martin Baulig  <martin@ximian.com>
11575
11576         * class.c (mono_class_setup_events): Add support for generic
11577         classes; fixes #76440.
11578
11579 2006-01-06  Raja R Harinath  <rharinath@novell.com>
11580
11581         Fix #77160.
11582         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
11583         on passed-in method.
11584
11585 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
11586
11587         * object.c (mono_runtime_invoke_array): Add Nullable support.
11588
11589         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
11590
11591 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
11592
11593         * file-io.c: Don't consider sockets as directory and avoid an endless
11594         loop. Fix bug #76966.
11595
11596 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
11597
11598         * object.c (mono_nullable_init): New helper function.
11599         (mono_nullable_box): Ditto.
11600
11601         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
11602
11603         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
11604
11605         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
11606         
11607 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
11608
11609         * class.c (mono_class_is_assignable_from): Make T assignable to 
11610         Nullable<T>.
11611
11612 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
11613
11614         * appdomain.c: Bump corlib version to 46.
11615         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
11616         serialization purpose) and changed ves_icall_System_Reflection_
11617         Assembly_get_code_base signature to accept a boolean (to escape, or 
11618         not, the assembly code base).
11619
11620 2005-12-23  Dick Porter  <dick@ximian.com>
11621
11622         * icall.c: 
11623         * threads-types.h: 
11624         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
11625         CreateEvent icall now returns "created" boolean parameter.
11626
11627 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
11628
11629         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
11630         #76967.
11631
11632         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
11633         when attr_klass is an interface. Fixes #77045.
11634
11635 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
11636
11637         * marshal.c (emit_struct_conv): Fix previous patch.
11638         
11639         * marshal.c (emit_struct_conv): Add a check for fields with the same
11640         offset.
11641
11642 2005-12-20  Raja R Harinath  <rharinath@novell.com>
11643
11644         Fix regression in Mono.C5.
11645         * class.c (mono_class_create_generic): If 'klass' is an interface
11646         set up the interface offsets.
11647         (mono_class_is_assignable_from): Don't throw away generic arguments.
11648
11649 2005-12-19  Raja R Harinath  <rharinath@novell.com>
11650
11651         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
11652         type parameters.
11653
11654 2005-12-15  Raja R Harinath  <rharinath@novell.com>
11655
11656         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
11657         dead store.
11658         (do_mono_metadata_parse_generic_class): Don't pass the current
11659         generic context when parsing the type being instantiated: it
11660         cannot use it, anyway.
11661
11662         * loader.c (method_from_memberref): Don't inflate a signature if
11663         it doesn't contain any type parameters.
11664
11665 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
11666
11667         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
11668
11669 2005-12-14  Martin Baulig  <martin@ximian.com>
11670
11671         * class.c
11672         (mono_type_get_name_recurse): Don't return null for type
11673         parameters and open generic classes.
11674         (mono_class_setup_methods): Don't exclude generic instances.
11675         (mono_get_unique_iid): Use different IDs for different
11676         instantiations of the same generic type.
11677         (mono_class_setup_vtable): Only use setup_generic_vtable() for
11678         open generic instances; create a normal vtable for closed generic
11679         instances.
11680         (mono_class_setup_vtable_general): We're now also called for
11681         closed generic instances.
11682
11683         * reflection.c
11684         (mono_reflection_bind_generic_parameters): Correctly use
11685         mono_metadata_lookup_generic_inst() everywhere.
11686
11687 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
11688
11689         * object.c (mono_class_create_runtime_vtable): Call 
11690         mono_class_setup_vtable ().
11691
11692         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
11693         function.
11694         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
11695         #76959.
11696
11697         * loader.c (mono_loader_set_error_type_load): Print the type load
11698         warnings to the console so they are more visible to the user.
11699         (mono_loader_set_error_method_load): Ditto.
11700
11701         * reflection.c (ensure_runtime_vtable): Revert the last change as it
11702         is still broken.
11703         
11704         * reflection.c (ensure_runtime_vtable): Fix build.
11705
11706         * reflection.c (ensure_runtime_vtable): Disable an optimization which
11707         doesn't work in all cases.
11708
11709 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
11710
11711         * object.c (mono_array_new_full): Treat a single dimensional array
11712         with 0 lower bounds as an szarray. Fixes #76973.
11713
11714         * reflection.c (custom_attr_visible): Really fix this.
11715
11716 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
11717
11718         * reflection.c (custom_attr_visible): Allow nested public attributes
11719         as well.
11720
11721         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
11722         interface check.
11723
11724 2005-12-12  Raja R Harinath  <harinath@gmail.com>
11725
11726         * class.c (set_generic_param_owner): Delete.
11727         (mono_class_create_from_typedef): Don't set ->owner field of
11728         generic parameters to "param containers" of enclosing classes.
11729         * reflection.c (mono_reflection_initialize_generic_parameter):
11730         Likewise.
11731
11732 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
11733
11734         * reflection.c (custom_attr_visible): Fix build.
11735
11736 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
11737
11738         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
11739         private attributes.
11740         
11741         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
11742         handling of null parameter defaults.
11743
11744 2005-12-09  Raja R Harinath  <rharinath@novell.com>
11745
11746         * class.c (mono_class_from_generic_parameter): Don't set
11747         klass->generic_container.
11748         (my_mono_class_from_generic_parameter): Likewise.
11749
11750 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
11751
11752         * reflection.c (load_public_key): Fix a warning.
11753         (method_encode_code): Fix unaligned accesses.
11754
11755 2005-12-07  Martin Baulig  <martin@ximian.com>
11756
11757         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
11758
11759         * reflection.c
11760         (write_generic_param_entry): Encode our custom attrs.
11761
11762         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
11763
11764 2005-12-07  Martin Baulig  <martin@ximian.com>
11765
11766         * reflection.c (encode_new_constraint): Removed; we don't use the
11767         `NewConstraintAttribute' anymore.
11768
11769 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
11770
11771         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
11772         not fire a TypeResolve event when Assembly.GetType () is called.
11773
11774 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
11775
11776         Beginning of support for nullable types in the runtime. Parts of
11777         this patch are from Martin.
11778
11779         * appdomain.c (MONO_CORLIB_VERSION): Bump
11780
11781         * domain.c (mono_init_internal): get the nullable type
11782
11783         * class.c (mono_class_is_nullable): New method
11784         (mono_class_get_nullable_param): New mehod
11785         (mono_class_create_generic): In types T? set cast_class to T
11786
11787         * class-internals.h (MonoDefaults): new nullable default class
11788         (mono_class_get_nullable_param, mono_class_get_nullable_param):
11789         new methods.
11790
11791 2005-12-05  Raja R Harinath  <rharinath@novell.com>
11792
11793         * metadata.c (select_container): New.  Refactor code to select the
11794         appropriate GenericContainer given the type of generic parameter
11795         we are looking for.
11796         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
11797         not a MonoGenericContext.  Use select_container.  Update parameters.
11798         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
11799         and MONO_TYPE_MVAR.
11800         (unwrap_arrays): Remove duplicate tests.
11801         (find_generic_param): Rename from 'has_same_context'.  Now walks a
11802         generic instantiated class to find any arguments that are generic
11803         parameters.
11804         (mono_type_create_from_typespec_full): Use find_generic_param to
11805         avoid evicting some generic instantiations from the typespec
11806         cache.
11807
11808 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
11809
11810         * reflection.c: fixed writing of doubles on ARM FPA.
11811
11812 2005-12-02  Robert Jordan  <robertj@gmx.net>
11813
11814         * icall.c: Fixed EventInfo.ReflectedType (#76829).
11815
11816 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11817
11818         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
11819         least on SUSE 10 they are not the same (on debian, they are just the
11820         same thing).
11821
11822 2005-12-01  Raja R Harinath  <rharinath@novell.com>
11823
11824         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
11825         DeclaringType for VARs and MVARs.
11826         * class.c (set_generic_param_owner): Fix initialization of owner
11827         fields.
11828
11829 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
11830
11831         * icall.c: fixed Enum.ToObject() to correctly convert the values.
11832
11833 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11834
11835         * threadpool.c: workaround for a bug that shows up on the Mac:
11836         select()+connect() on a blocking socket is not like it should
11837         be, so we proceed to connect() in that case, wasting the I/O
11838         threadpool thread until connect succeedes. Fixes bug #75436.
11839
11840 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11841
11842         * threadpool.c: fix typo when setting file descriptor states.
11843
11844 2005-11-28  Raja R Harinath  <rharinath@novell.com>
11845
11846         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
11847         * metadata.c (mono_metadata_parse_method_signature_full): Don't
11848         create a temporary signature container.
11849         (mono_metadata_parse_generic_param): Update to changes.
11850         (mono_type_create_from_typespec_full): Update to changes.
11851         * loader.c (method_from_memberref): Don't use a
11852         MonoGenericContainer while parsing a memberref signature.
11853         (method_from_methodspec): Remove dead-store of the 'container'
11854         variable.  It's overwritten before use.
11855
11856         * metadata.c (mono_type_create_from_typespec_full): Make debugging
11857         checks tighter.
11858         (mono_metadata_parse_generic_param): Likewise.
11859         * loader.c (find_method_in_class): Does not need a
11860         MonoGenericContainer.  Use 'mono_method_signature' rather than
11861         'mono_method_signature_full'.
11862         (find_method, mono_get_method_constrained, method_from_memberref):
11863         Update to changes.
11864
11865         * metadata.c (mono_type_create_from_typespec_full): Ensure that
11866         owner-less generic-parameters are never evicted from the typespec
11867         cache.
11868
11869         * loader.c (method_from_memberref): Don't use the current context
11870         when parsing signatures.
11871         (method_from_methodspec, mono_get_method_from_token): Update to changes.
11872
11873         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
11874         side-effects in g_assert.
11875         * loader.c (mono_get_method_from_token): Resolve klass earlier so
11876         that we don't potentially lose information.
11877
11878 2005-11-26  Dick Porter  <dick@ximian.com>
11879
11880         * icall.c:
11881         * threads.c: icalls to implement basic (ie, not named)
11882         System.Threading.Semaphore.
11883
11884 2005-11-24  Dick Porter  <dick@ximian.com>
11885
11886         * process.c
11887         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
11888         Use GetProcessId() if it's available.
11889
11890 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
11891
11892         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
11893
11894 2005-11-23  Raja R Harinath  <rharinath@novell.com>
11895             Ankit Jain  <jankit@novell.com>
11896
11897         * loader.c (mono_get_method_from_token): Initialize 'method' field
11898         of all generic parameters before parsing the signature.  Remove
11899         code that "fixed"-up MVAR references.
11900
11901 2005-11-23  Ankit Jain  <jankit@novell.com>
11902
11903         * metadata.c (mono_metadata_has_generic_params):
11904         (mono_metadata_load_generic_param_constraints):
11905         (mono_metadata_load_generic_params): Move duplicate code ...
11906         (mono_metadata_get_generic_param_row): ... here. Returns the
11907         first row-id in GenericParam table for a given owner (token).
11908         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
11909         prototype.
11910
11911 2005-11-23  Raja R Harinath  <rharinath@novell.com>
11912             Ankit Jain  <jankit@novell.com>
11913
11914         * metadata.c (mono_metadata_class_equal): Pass signature_only when
11915         comparing VARs too.
11916         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
11917         type->data.generic_param only if the type is an MVAR.
11918         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
11919         leak owner-less VARs and MVARs into managed space.
11920
11921 2005-11-21  Martin Baulig  <martin@ximian.com>
11922
11923         * class-internals.h
11924         (MonoMethod): Moved the `generic_container' here from
11925         `MonoMethodNormal' since we now also need it for
11926         `MonoMethodPInvoke';
11927         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
11928         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
11929         an union containing both `MonoMethodNormal' and
11930         `MonoMethodPInvoke'.
11931
11932         * loader.c
11933         (mono_get_method_from_token): Allow implementing generic methods
11934         as interncalls.
11935
11936         * threads.c
11937         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
11938         icall.
11939
11940 2005-11-17  Dick Porter  <dick@ximian.com>
11941
11942         * icall.c: 
11943         * process.h: 
11944         * process.c: Split the Process Start_internal icall into
11945         ShellExecuteEx_internal and CreateProcess_internal, which are
11946         called depending on whether UseShellExecute is true.  Fixes bug
11947         76670.
11948
11949         * appdomain.c (MONO_CORLIB_VERSION): Incremented
11950
11951 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
11952
11953         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
11954         'msize' parameters, use the information in 'mspec' instead.
11955         (emit_object_to_ptr_conv): Ditto.
11956
11957         * marshal.c (emit_struct_conv): Handle explicit layout structs with
11958         fields out of order. Fixes #76733.
11959
11960 2005-11-17  Ankit Jain  <jankit@novell.com>
11961
11962         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
11963
11964 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
11965
11966         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
11967           bug #76575.
11968
11969 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
11970
11971         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
11972         for types with non-auto layout. Fixes #76717.
11973
11974 2005-11-16  Ankit Jain  <jankit@novell.com>
11975
11976         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
11977         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
11978         if generic_context is null.
11979           (mono_metadata_generic_param_equal): param->owner can be null.
11980           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
11981         null.
11982
11983 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
11984
11985         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
11986         the correct value.
11987
11988 2005-11-15  Martin Baulig  <martin@ximian.com>
11989
11990         * object.c (set_value): Use mono_class_from_mono_type() instead of
11991         the hack for generic instances; fixes #76136.
11992
11993 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
11994
11995         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
11996         fields.
11997
11998         * image.c (load_metadata_ptrs): Initialize the new fields.
11999
12000         * reflection.c (create_dynamic_mono_image): Ditto.
12001
12002         * reflection.c (build_compressed_metadata): Use the new fields.
12003
12004         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
12005         icall.
12006
12007         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
12008         icall.
12009         
12010 2005-11-15  Ankit Jain  <jankit@novell.com>
12011             Raja R Harinath  <harinath@gmail.com>
12012
12013         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
12014         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
12015         new per-generic_container cache if the cached MonoType's context matches
12016         the current context.
12017           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
12018         to the expected context.
12019           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
12020
12021 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12022
12023         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
12024         we changed the signature of an icall.
12025         * icall.c: Modify to mono_double_ParseImpl return true/false 
12026         depending on the success, instead of throwing the exception. This will
12027         help us in Double.TryParse methods.
12028         
12029 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
12030
12031         * marshal.c (emit_marshal_object): Throw an exception when
12032         marshalling 'object' instead of crashing. Fixes #76696.
12033
12034 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
12035
12036         * class-internals.h: Add prototype for mono_type_get_full_name ().
12037
12038 2005-11-11  Dick Porter  <dick@ximian.com>
12039
12040         * threads.c (mono_thread_manage): Make sure the main thread has
12041         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
12042
12043 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
12044
12045         * loader.c (mono_loader_set_error_type_load): Log a warning to the
12046         console about the missing type.
12047         (mono_loader_set_error_method_load): Ditto.
12048
12049 2005-11-09  Miguel de Icaza  <miguel@novell.com>
12050
12051         * mono-config.c (mono_get_config_dir): Set the system defaults if
12052         none is specified.
12053
12054         * assembly.c (mono_set_dirs): New API entry point to set the
12055         assembly and the config directory in one call
12056
12057 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
12058
12059         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
12060         the ftnptr was created from a delegate in a domain other than the
12061         current domain. Fixes #75377.
12062
12063         * exception.h exception.c: Add mono_get_exception_not_supported ().
12064
12065 2005-11-08  Martin Baulig  <martin@ximian.com>
12066
12067         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
12068
12069 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
12070
12071         * security-manager.h: Added definitions to deal with strongname key 
12072         pairs bigger (and smaller) than 1024 bits.
12073         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
12074         adjust wrt the public key length being used.
12075
12076 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
12077
12078         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
12079           Windows build (r51396-51397).
12080
12081 2005-11-03  Martin Baulig  <martin@ximian.com>
12082
12083         * class.c (mono_class_setup_vtable_general): Also add generic
12084         methods to the vtable; fixes #76581.
12085
12086 2005-11-01  Miguel de Icaza  <miguel@novell.com>
12087
12088         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
12089         sure that we lookup GetString method from the System.Text.Encoding
12090         class, not the derived class or we get an empty method.
12091
12092         Fixed class #76612.
12093
12094 2005-10-25  Miguel de Icaza  <miguel@novell.com>
12095
12096         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
12097         if it has been previously set (embedders). 
12098
12099         Make mono_set_rootdir available also on Unix.
12100
12101 005-10-24  Robert Jordan  <robertj@gmx.net>
12102
12103         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
12104
12105 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
12106
12107         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
12108         only calls which are made to native code use this flag.
12109
12110         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
12111
12112 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
12113
12114         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
12115         Add support for FieldBuilders.
12116
12117 2005-10-29  Martin Baulig  <martin@ximian.com>
12118
12119         * mono-debug.c
12120         (mono_debug_using_mono_debugger): New public method; returns
12121         whether we're running inside the debugger.
12122
12123 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
12124
12125         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
12126         for Method/Constructor/FieldBuilders.
12127
12128 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
12129
12130         * reflection.c (module_add_cattrs): Save custom attributes for global methods
12131         and fields as well.
12132
12133 2005-10-26  Martin Baulig  <martin@ximian.com>
12134
12135         * mono-debug-debugger.c
12136         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
12137
12138 2005-10-24  Raja R Harinath  <harinath@gmail.com>
12139
12140         * icall.c (base64_to_byte_array): Don't pass an out-of-range
12141         integer to isspace.
12142
12143 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
12144
12145         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
12146         when passing valuetypes byref. Fixes #76502.
12147
12148 2005-10-19  Jackson Harper  <jackson@ximian.com>
12149
12150         * profiler.c: Don't put a . in front of types that are not in a
12151         namespace.
12152
12153 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
12154
12155         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
12156
12157 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
12158
12159         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
12160         #76436.
12161         (mono_marshal_get_ldflda_wrapper): Fix a warning.
12162
12163 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12164
12165         * assembly.c metadata-internals.h icall.c: Define an additional
12166         parameter for mono_assembly_name_parse_full, so we can avoid creating
12167         S.R.AssemblyName.Version when no version info wasn't passed.
12168         
12169 2005-10-09  Miguel de Icaza  <miguel@novell.com>
12170
12171         * class.c (mono_type_get_full_name): Reimplement method that was
12172         removed. 
12173
12174         * image.c: Some docs
12175
12176 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
12177
12178         * profiler.c (output_newobj_profile): Fix printing of Total memory
12179         on x86.
12180
12181 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
12182
12183         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
12184
12185 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
12186
12187         * threads.c: remove debug output.
12188
12189 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
12190
12191         * threads.c (mono_thread_manage): Fix crashes if more than 64
12192         threads need to be aborted. Hopefully fixes #75899.
12193
12194         * assembly.c (mono_stringify_assembly_name): New helper function.
12195
12196         * class.c: Use mono_stringify_assembly_name instead of the similar
12197         static function.
12198
12199         * assembly.h assembly.c: Add support for calling a postload search 
12200         hook if an assembly cannot be loaded.
12201
12202         * appdomain.c: Register new search hooks which call the AssemblyResolve
12203         events in AppDomain. Fixes #75231
12204
12205 2005-10-07  Martin Baulig  <martin@ximian.com>
12206
12207         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
12208         methods without debug info.
12209
12210 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
12211
12212         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
12213         wrappers.
12214
12215 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12216
12217         * file-io.c: now that we return symlinks, use lstat and, when the file
12218         is a symbolic link, stat, to get the file attributes. Also avoid the
12219         conversion to/from utf16/external.
12220
12221 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
12222
12223         * class.c (mono_class_layout_fields): Compute klass->has_references
12224         correctly if an embedded valuetype is not yet initialized. Fixes
12225         #76331.
12226
12227 2005-10-04  Martin Baulig  <martin@ximian.com>
12228
12229         * metadata.c
12230         (mono_metadata_load_generic_param_constraints): New public
12231         function; splitted the constraints loading out from
12232         mono_metadata_load_generic_params().
12233
12234         * class.c (mono_class_create_from_typedef): Call
12235         mono_metadata_load_generic_param_constraints() after setting up
12236         the type and creating our parent; fixes #75329.
12237
12238 2005-10-04  Martin Baulig  <martin@ximian.com>
12239
12240         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
12241         non-dynamic parent classes.
12242
12243 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
12244
12245         * file-io.c : win32 build fix (ETXTBSY seems not found).
12246
12247 2005-10-04  Martin Baulig  <martin@ximian.com>
12248
12249         * reflection.c
12250         (mono_image_get_methodspec_token): Make the cache actually work;
12251         fixes #75974.
12252
12253 2005-10-04  Martin Baulig  <martin@ximian.com>
12254
12255         * class.c (mono_class_name_from_token): Removed the unneccessary
12256         `MonoGenericContext *' argument.
12257
12258 2005-10-04  Martin Baulig  <martin@ximian.com>
12259
12260         * loader.c
12261         (method_from_methodspec): Make the caching work again; fixes the
12262         performance regression from #76262.
12263
12264 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12265
12266         * file-io.c:
12267         * file-io.h:
12268         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
12269         GetFileSystemEntries that performs the same work but without going
12270         into io-layer, locking, etc.
12271
12272 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
12273
12274         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
12275         ThreadState_Stopped as well. Fixes #76047.
12276
12277 2005-09-29  Martin Baulig  <martin@ximian.com>
12278
12279         * class.c
12280         (inflate_generic_context): If the new context has a `gmethod', set
12281         its `container' that that gmethod's `container'.
12282
12283         * metadata.c
12284         (mono_metadata_parse_generic_param): Simplify things;
12285         `generic_container = generic_context->container;' is just fine.
12286
12287         * loader.c (method_from_methodspec): Code cleanups.
12288
12289 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
12290
12291         * decimal.c: fix warning (and let gcc generate correct
12292         code on ARM with optimizations).
12293
12294 2005-09-28  Martin Baulig  <martin@ximian.com>
12295
12296         * loader.c
12297         (method_from_memberref): Added `MonoGenericContext *class_context'
12298         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
12299         (method_from_methodspec): If we're a memberref, use the enclosing
12300         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
12301
12302 2005-09-28  Martin Baulig  <martin@ximian.com>
12303
12304         * object.c (mono_runtime_invoke_array): Added support for
12305         MONO_TYPE_GENERICINST; fixes #75917.
12306
12307 2005-09-27  Martin Baulig  <martin@ximian.com>
12308
12309         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
12310         `k->byval_arg.type' to determine the actual type.
12311
12312         * loader.c (method_from_methodspec): Removed some hacks.
12313
12314 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
12315
12316         * class-internals.h (mono_field_is_deleted): Do the test for
12317         rtspecialname before we check the actual name of the field. This
12318         prevents us from dereferencing a pointer into the string table,
12319         saving us from accessing a few pages
12320
12321         * *.c: Replace the use of {Enter,Leave}CriticalSection with
12322         macros. This will allow a deadlock debugger to easily be plugged
12323         in.
12324
12325 2005-09-27  Martin Baulig  <martin@ximian.com>
12326
12327         * loader.c (method_from_methodspec): Create a "signature"
12328         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
12329
12330 2005-09-27  Martin Baulig  <martin@ximian.com>
12331
12332         * class.c
12333         (inflate_generic_class): Correctly set the new context's
12334         container.
12335
12336         * loader.c
12337         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
12338         instead of a `MonoGenericContext *'.
12339         (mono_method_signature_full): Take a `MonoGenericContainer *'
12340         instead of a `MonoGenericContext *'.
12341
12342         * metadata.c
12343         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
12344         instead of a `MonoGenericContext *'.
12345         (mono_metadata_parse_method_signature_full): Likewise.
12346
12347 2005-09-26  Martin Baulig  <martin@ximian.com>
12348
12349         * class.c
12350         (mono_class_from_generic_parameter): Set `klass->generic_container'
12351         (mono_class_from_generic_parameter): Likewise.
12352         (mono_bounded_array_class_get): We inherit the generic container
12353         from the element class.
12354
12355         * loader.c
12356         (find_method, find_method_in_class): Take a `MonoGenericContext *'
12357         argument rather than computing it here.
12358         (method_from_memberref): Correctly set the generic context before
12359         parsing the signature.  Fixes #75681.
12360
12361 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
12362
12363         * object.c (mono_class_has_special_static_fields): Fix warnings.
12364
12365 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12366
12367         * assembly.c: Add parse_public_key function, to
12368         par the public keys. Also added mono_assembly_name_parse_full,
12369         to define it the parsed key should be freed or not.
12370         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
12371         to parse a long format assembly name.
12372         * metadata-internals.h: Keep mono_assembly_name_parse_full as
12373         private, since calling it to preserve the key requires
12374         freeing it manually.
12375         
12376 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
12377
12378         * locales.c : removed HAVE_ICU part.
12379
12380 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
12381
12382         * object.c (mono_class_create_runtime_vtable): Avoid calling 
12383         field_is_special_static if the klass has no special static fields.
12384
12385         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
12386         (MonoCachedClassInfo): Likewise.
12387
12388         * object.c (mono_class_has_special_static_fields): New helper function.
12389
12390 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
12391
12392         * class.c (mono_class_create_from_typedef): Don't call 
12393         interfaces_from_typedef_full for enums.
12394         (mono_class_create_from_typedef): Compute the base types of enums directly
12395         without calling mono_class_setup_fields ().
12396         (mono_class_find_enum_basetype): New helper function.
12397
12398         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
12399         one place inside the string heap.
12400         
12401 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
12402
12403         * class.c: locking fixes, code cleanups, some docs added.
12404         Allocate some data structures in the image mempool.
12405
12406 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
12407
12408         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
12409         the example code.
12410         
12411 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
12412
12413         * class-internals.h, class.c, reflection.c: reduce memory taken by
12414         MonoClass.
12415
12416 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
12417
12418         * metadata.c, metadata.h, loader.h: documentation updates, code and
12419         API cleanups.
12420
12421 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
12422
12423         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
12424         the example code.
12425
12426         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
12427         page faults caused by the runtime while reading metadata.
12428
12429 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12430
12431         * socket-io.c: the field names were changed 3 months ago and no one
12432         realized until bug #76077 got filed!
12433
12434 2005-09-20  Martin Baulig  <martin@ximian.com>
12435
12436         * icall.c (assembly_icalls): Removed some unused debugger icalls.
12437
12438 2005-09-20  Martin Baulig  <martin@ximian.com>
12439
12440         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
12441         write the rank into the class entry.
12442
12443 2005-09-20  Martin Baulig  <martin@ximian.com>
12444
12445         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
12446
12447 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
12448
12449         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12450
12451         * icall.c (custom_attrs_defined_internal): New icall.
12452
12453         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
12454         function.
12455         (mono_custom_attrs_construct_by_type): New helper function.
12456
12457 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
12458
12459         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
12460         terminate the resulting string. Fixes #76123.
12461
12462 2005-09-16  Martin Baulig  <martin@ximian.com>
12463
12464         * mono-debug.c
12465         (mono_debug_add_method): Ignore inflated methods for the moment.
12466
12467 2005-09-14  Martin Baulig  <martin@ximian.com>
12468
12469         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
12470
12471 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
12472
12473         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
12474         return a success/failure indication.
12475         (mono_metadata_interfaces_from_typedef_full): Ditto.
12476         (get_constraints): Ditto.
12477
12478 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
12479
12480         * marshal.c (emit_marshal_array): Fix handling of null arrays.
12481         
12482         * marshal.c (emit_marshal_array): Add support for returning string
12483         arrays from delegates. Fixes #76063.
12484
12485         * marshal.c: Use the emit_ldloc/stloc macros where possible.
12486
12487 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
12488
12489         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
12490         icall.
12491
12492 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
12493
12494         * reflection.c icall.c: Fix after mono_get_exception_type_load
12495         signature change.
12496
12497         * assembly.c (mono_assembly_get_assemblyref): New helper function.
12498         (mono_assembly_load_reference): Use the new helper.
12499
12500         * class-internals.h (MonoLoaderError): New structure containing 
12501         information about type loading errors.
12502
12503         * class-internals.h loader.c: Add APIs to store per-thread loader
12504         error information.
12505
12506         * loader.c class.c: Set the loader error if needed.
12507
12508         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
12509
12510 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
12511
12512         * decimal.c: fixed to handle the broken ARM fp format.
12513
12514 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
12515
12516         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
12517         broken.
12518
12519 2005-09-06  Martin Baulig  <martin@ximian.com>
12520
12521         * domain.c (supported_runtimes): Added v2.0.50727.
12522
12523 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
12524
12525         * culture-info.h: reduce the size of some structures.
12526
12527 2005-09-05  Martin Baulig  <martin@ximian.com>
12528
12529         Reflect latest API changes in the August CTP.
12530
12531         * icall.c
12532         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
12533         ("MonoType.HasGenericArguments"): Removed.
12534         ("MonoMethod.BindGenericParameters"): Renamed to
12535         "MakeGenericMethod".
12536         ("MethodBuilder.BindGenericParameters"): Renamed to
12537         "MakeGenericMethod".    
12538
12539 2005-09-05  Martin Baulig  <martin@ximian.com>
12540
12541         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
12542
12543 2005-09-05  Martin Baulig  <martin@ximian.com>
12544
12545         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12546
12547         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
12548         generic_container is non-NULL.
12549
12550 2005-09-05  Martin Baulig  <martin@ximian.com>
12551
12552         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12553
12554         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
12555
12556 2005-08-29  Michal Moskal  <malekith@nemerle.org>
12557
12558         * reflection.c (encode_locals,
12559         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
12560         for large generic types.
12561
12562 2005-09-05  Martin Baulig  <martin@ximian.com>
12563
12564         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12565
12566         * class.c (mono_dup_array_type): New public method.
12567         (mono_metadata_signature_deep_dup): New public method.
12568         (dup_type): Correctly duplicate array and function types.
12569
12570 2005-09-05  Martin Baulig  <martin@ximian.com>
12571
12572         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12573
12574         * reflection.c (get_default_param_value_blobs): Handle generic types
12575         and generic methods.
12576
12577 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
12578
12579         * class.c: Fixed error reporting (method/class were inversed) for 
12580         inheritance demands.
12581         * security-manager.c|h: Added the AppDomain when calling the managed
12582         System.Security.SecurityManager.InheritanceDemand method.
12583
12584 2005-09-01  Raja R Harinath  <rharinath@novell.com>
12585
12586         * reflection.c (encode_marshal_blob): 'marshaltype' and
12587         'marshaltyperef' are alternate sources for the custom marshaler
12588         name.
12589
12590 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
12591
12592         * class.c: fix creation of array classes with rank == 1
12593         (patch by Ankit Jain <jankit@novell.com>).
12594
12595 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
12596
12597         * object.c: fix check for creating the bound data for arrays vs
12598         szarrays.
12599
12600 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12601
12602         * object.c: configuration file name is now based on the executable name,
12603         not the image name. Fixes bug #75931.
12604
12605 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
12606
12607         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
12608         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
12609
12610 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
12611
12612         * rand.c: Use wincrypt.h instead of WinCrypt.h.
12613
12614 2005-08-24  Ankit Jain  <jankit@novell.com>
12615             Raja R Harinath  <rharinath@novell.com>
12616
12617         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
12618           called by it recursively.
12619           (mono_class_init): Remove special case in pending_init handling, since it's
12620           superseded by the fix to mono_class_from_typeref.
12621
12622 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
12623
12624         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
12625         BROKEN_THREAD_START stuff.
12626
12627 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
12628
12629         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
12630         trampoline.
12631
12632         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
12633         
12634         * object.c (mono_delegate_ctor): Replace the original function address with
12635         a delegate trampoline.
12636
12637 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
12638
12639         * icall.c: add boolean argument to base64_to_byte_array and 
12640         InternalFromBase64String to control whether a whitespace-only string
12641         is allowed (or should casue a FormatException to be thrown). We need
12642         this as the behavior has changed between MS.NET 1.x and 2.0, and we
12643         to match the MS behaviour in both profiles.
12644         * appdomain.c: Bump corlib version.
12645
12646 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12647
12648         This patch implements a big portion of publisher policy
12649         support, used to bind assembly versions and redirect
12650         one assembly from version A to version B.
12651
12652         * assembly.c:
12653         New GSList loaded_assembly_bindings, for storing the cached
12654         assembly bindings.
12655         (assembly_binding_maps_name): New static function for checking if a 
12656         assembly binding information maps an assembly name.
12657         (mono_assembly_binding_info_free): New function for freeing
12658         assembly binding information resources.
12659         (get_publisher_policy_info): New static function for retrieving 
12660         assembly binding information from a MonoImage.
12661         (compare_versions): New static function for comparing an assembly
12662         binding information data and the version of an assembly name.
12663         (check_policy_versions): New static function for checking if an
12664         assembly binding info mapping an assembly name is valid for it.
12665         (mono_assembly_load_publisher_policy): New static function for
12666         loading the 'policy.major.minor.MyAssembly' image for an assembly
12667         with an assembly name 'aname'.
12668         (mono_assembly_bind_version): New static function for updating
12669         assembly redirection.
12670         (mono_assembly_apply_binding): New static function for applying
12671         assembly binding.
12672         (search_binding_loaded): New static function for searching 
12673         loaded assembly binding infos in the cache domain.
12674         (mono_assembly_load_full): Don't apply assembly binding for
12675         reflection only assemblies.
12676
12677         * metadata-internals.h: Add MonoAssemblyBindingInfo,
12678         which contains information about assembly binding. Also
12679         declare signature for mono_config_parse_publisher_policy ()
12680         function, used to retrieve pub policy info.
12681         
12682         * mono-config.c:
12683         (publisher_policy_start): New static function used to parse publisher 
12684         policy config files.
12685         (publisher_policy_parser): New static MonoParseHandler containing 
12686         the functions used when parsing config files.
12687         (mono_config_parse_publisher_policy): New function for parsing
12688         publisher policy files.
12689         
12690 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
12691
12692         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
12693
12694         * marshal.c (mono_delegate_free_ftnptr): Ditto.
12695
12696         * object.c (mono_get_addr_from_ftnptr): New helper function.
12697
12698         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
12699
12700         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12701
12702 2005-08-19  Dick Porter  <dick@ximian.com>
12703
12704         * threads.c, threads.h, appdomain.c, appdomain.h,
12705         profiler-private.h, monitor.c, object.c, object-internals.h,
12706         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
12707         store the thread ID, so it can hold a 64 bit value if needed.
12708
12709 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
12710
12711         * reflection.c (mono_reflection_create_dynamic_method): Store the
12712         handle class into the method references as well so ldtoken works in
12713         dynamic methods.
12714
12715         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
12716         types.
12717
12718 2005-08-19  Ankit Jain <jankit@novell.com>
12719
12720         Fix #75847.
12721         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
12722           here rather than using the method signature of a arbitrary function
12723           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
12724           two arguments.
12725           Hack done with Harinath.
12726
12727 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12728
12729         * threadpool.c: disable printing stack traces when we get a exception
12730         in a threadpool thread. I need to do more testing to figure out which
12731         cases actually print this. Fixes bug #75828.
12732
12733 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12734
12735         * icall.c: there might be ignored whitespace after the last '='. This
12736         fixes length computation and bug #75840.
12737
12738 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
12739
12740         * assembly.c (mono_assembly_load_full): Consider .exe extension as
12741         well. Fixes #75809.
12742
12743         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
12744         #75784.
12745         
12746         * reflection.c (create_custom_attr_data): Ditto.
12747
12748 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
12749
12750         * locales.c, culture-info.h : removed RegionLCIDMap.
12751         * culture-info-tables.h : regenerated.
12752
12753 2005-08-16  Martin Baulig  <martin@ximian.com>
12754
12755         * class.c (mono_type_get_name_recurse): Small fix.
12756
12757 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
12758
12759         * locales.c : indentation fixie.
12760
12761 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
12762
12763         * object-internals.h,
12764           locales.h,
12765           locales.c,
12766           culture-info.h,
12767           icall.c : added RegionInfo table support.
12768         * culture-info-table.h : regenerated for region support.
12769
12770 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
12771
12772         * reflection.c (resolve_object): handle all kinds of MonoMethod
12773         including generic ones
12774
12775 2005-08-12  Ankit Jain <jankit@novell.com>
12776
12777         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
12778           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
12779
12780 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
12781
12782         * process.c: Don't close a thread handle when it's NULL. This is a
12783         workaround for bug #75733.
12784
12785 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
12786
12787         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
12788
12789 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
12790
12791         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
12792
12793 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12794
12795         * threadpool.c: if a work item in the thread pool has a callback that
12796         catches a exception, don't propagate it after invoking the callback.
12797         Fixes bug #75336.
12798
12799 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
12800
12801         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
12802
12803         * class-internals.h (MonoCachedClassInfo): Add some new fields.
12804
12805         * class.c (mono_class_init): Load field info lazily in the AOT case.    
12806
12807         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
12808
12809 2005-08-03  Ankit Jain  <jankit@novell.com>
12810
12811         Fix #75683.
12812         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
12813           PInvoke calling convention is 0.
12814
12815 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
12816
12817         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
12818         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
12819
12820 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
12821
12822         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
12823         to handle threads not started by the GC (patch by Michael Meeks
12824         <michael.meeks@novell.com>).
12825
12826 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
12827
12828         * reflection.c: Make buffer used in emitting types larger for some
12829         big generic types (patch by Michal Moskal).
12830
12831 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
12832
12833         * mono-debug.c: Fix some (not all) alignment problems.
12834
12835 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12836
12837         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
12838         Invoke mono_image_load_from_data_full passing the refonly
12839         parameter.
12840
12841         * assembly.c
12842         (mono_assembly_open_from_bundle): Add the refonly argument, 
12843         in order to pass it to other methods it calls to.
12844         (do_mono_assembly_open): Add the refonly argument, in order 
12845         to pass it to other methods it calls to.
12846         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
12847         the refonly parameter to it.
12848
12849         * image.c: Add loaded_images_refonly_hash and
12850         loaded_images_refonly_guid_hash to cache the reflection
12851         only loaded images.
12852         (mono_images_init): Initialize the hash tables used for
12853         caching the reflection only images.
12854         (load_modules): Invoke mono_image_open_full passing the refonly
12855         parameter to load the modules the correct way.
12856         (build_guid_table): Add the refonly argument, to re-build the 
12857         correct hash table.
12858         (do_mono_image_open): Added the refonly argument, in order to
12859         define it for the loaded image.
12860         (mono_image_loaded_full): New function, which receives an
12861         additional parameter to look for the image in the refonly or
12862         non-refonly section.
12863         (mono_image_loaded): Updated, using mono_image_loaded_full.
12864         (mono_image_loaded_by_guid_full): The same case that happens
12865         with mono_image_loaded_full.
12866         (mono_image_loaded_by_guid): Likewise.
12867         (register_image): Use the ref_only variable inside MonoImage
12868         to decide in which hash table store the current image.
12869         (mono_image_open_from_data_full): Rename
12870         mono_image_open_from_data to mono_image_open_from_data_full,
12871         adding the refonly argument, to define the ref_only variable 
12872         inside MonoImage.
12873         (mono_image_open_from_data): Return 
12874         mono_image_open_from_data_full.
12875         (mono_image_open_full): Rename mono_image_open to
12876         mono_image_open_full, receiving the new refonly argument,
12877         to pass it to inner methods.
12878         (mono_pe_file_open): Update this function, to open
12879         a MonoImage as a non-refonly image.
12880         (mono_image_close): Use the refonly variable inside
12881         MonoImage to remove the image from the correct caches.
12882
12883         * image.h: Add the signatures of mono_image_open_full,
12884         mono_image_open_from_data_full, mono_image_loaded_full,
12885         mono_image_loaded_by_guid_full.
12886
12887         * metadata-internals.h: Add the ref_only field to 
12888         MonoImage.
12889         
12890 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12891
12892         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
12893         Fix the last behavior, which used to load the assemblies and
12894         extract MonoReflectionAssemblyName information, instead of
12895         extract it from the metadata tables. Needed for Reflection
12896         Only assemblies.
12897         
12898 2005-07-29  Martin Baulig  <martin@ximian.com>
12899
12900         * mono-debug-debugger.c
12901         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
12902         not initialized.
12903
12904         * mono-debug.c
12905         (mono_debug_address_from_il_offset): Check whether we have
12906         debugging support before attempting to take the lock.
12907         (mono_debug_source_location_from_address): Likewise.
12908         (mono_debug_source_location_from_il_offset): Likewise.
12909         (mono_debug_il_offset_from_address): Likewise.
12910         (mono_debug_address_from_il_offset): Likewise.
12911
12912 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
12913
12914         * class.c (mono_class_from_name_case): Add support for dynamic images.
12915         Fixes #75650.
12916
12917         * object.c (mono_class_compute_gc_descriptor): Add a workaround
12918         for #75479.
12919
12920 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
12921         
12922         * reflection.c (mono_method_get_object): Fix warning.
12923
12924 2005-07-28  Martin Baulig  <martin@ximian.com>
12925
12926         * mono-debug.c
12927         (mono_debug_add_wrapper): Also write the wrapper type.
12928
12929 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
12930
12931         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
12932         
12933         * class.c (mono_class_init): Avoid reading nested classes if the AOT
12934         data indicates the class has none.
12935
12936 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
12937
12938         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
12939         loader lock with the debugger lock. Prevents deadlocks for beagle.
12940
12941         Beagle can now run on an smp box for a weekend without any
12942         issues. Woohoo!
12943
12944 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
12945
12946         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
12947         in a module. Fixes #75629.
12948
12949 2005-07-26  Martin Baulig  <martin@ximian.com>
12950
12951         * mono-debug.c (mono_debug_add_wrapper): New static method.
12952         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
12953         interncall or a wrapper.
12954
12955         * mono-debug.h (MonoDebugWrapperData): New public typedef.
12956         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
12957         (MONO_DEBUGGER_VERSION): Bump to 51.
12958
12959         * mono-debug-debugger.c
12960         (mono_debugger_add_type): Removed this empty function.
12961         (mono_debugger_add_method): Likewise.
12962
12963 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
12964
12965         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
12966         before accessing method->slot.
12967
12968 2005-07-21  Jb Evain  <jbevain@gmail.com>
12969
12970         * reflection.c (method_encode_clauses/class): Handle filters clauses.
12971         Fixes #75010.
12972
12973 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
12974
12975         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
12976         #75587.
12977
12978 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
12979
12980         * image.h image.c: Add mono_image_get_guid () API function.
12981
12982 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
12983
12984         There were issues when multiple threads tried to load
12985         assemblies. A deadlock was created between assemblies_mutex and
12986         mono_domain_assemblies_lock. This fixes the issue by making the
12987         assembly ref counting be lock free. See bug 75586.
12988         
12989         * image.c (mono_image_close): The add ref function here was using
12990         Interlocked operations while the unref was using a mutex and a
12991         --. I don't think this was ever a bug that would be exposed in a
12992         non-pendantic way (ie, by an embedder doing a ref on one thread
12993         and an unref on another), but for the sake of correctness, this is
12994         now Interlocked.
12995
12996         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
12997         (mono_assembly_load_reference): Call mono_assembly_addref rather
12998         than touching the refcount ourselves.
12999         (mono_assembly_close): Use InterlockedDecrement to unref the
13000         assembly. Don't acquire the lock unless it is actually needed.
13001
13002 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
13003
13004         * class.c (mono_class_layout_fields): Fix calculation of has_references
13005         for generic types.
13006
13007 2005-07-12  Martin Baulig  <martin@ximian.com>
13008
13009         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13010
13011         * metadata.c
13012         (mono_type_hash): Provide better hashing for generic instances.
13013         (mono_generic_inst_hash): Improve hashing.
13014         (mono_generic_class_hash): Likewise.
13015
13016         * reflection.c (mymono_metadata_type_hash): Improve hashing for
13017         generic instances.
13018
13019 2005-07-12  Martin Baulig  <martin@ximian.com>
13020
13021         * reflection.c (mono_reflection_create_runtime_class): Remove the
13022         hack for generic type definitions and non-`Run' assemblies.
13023         (mono_reflection_bind_generic_parameters): Also use
13024         `klass->wastypebuilder' to check for TypeBuilders.
13025
13026 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
13027
13028         * class.c (mono_class_layout_fields): Fix calculation of has_references
13029         for generic types.
13030
13031         * class.c (inflate_generic_class): Fix a leak.
13032         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
13033         for generic types.
13034
13035 2005-07-11  Martin Baulig  <martin@ximian.com>
13036
13037         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
13038         on error.
13039
13040 2005-07-11  Martin Baulig  <martin@ximian.com>
13041
13042         * loader.c (find_method): Also lookup in
13043         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
13044
13045 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13046
13047         * appdomain.c (mono_domain_unload): Don't free the error message
13048         before passing it to mono_get_exception_...
13049
13050         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
13051         
13052 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
13053
13054         * threads.c: try to better guess an available RT signal (bug #75387).
13055
13056 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13057
13058         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
13059         and CACHE_OBJECT.
13060
13061 2005-07-07  Martin Baulig  <martin@ximian.com>
13062
13063         * class.c (mono_type_get_name_full): Return NULL for
13064         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
13065         fixes #75408.
13066
13067 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13068
13069         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
13070         exit the appdomain as well being aborted.
13071
13072         * threadpool.c: Create all threadpool threads inside the root appdomain, and
13073         change back to the root domain after calling managed code. This enables
13074         appdomains using threadpools to be unloaded.
13075
13076 2005-07-07  Martin Baulig  <martin@ximian.com>
13077
13078         * class-internals.h
13079         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
13080         into `MonoDynamicGenericClass' since we only need it for dynamic
13081         types.
13082
13083         * reflection.c (mono_class_bind_generic_parameters): We don't need
13084         to compute the `parent' here.
13085
13086 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
13087
13088         * culture-info-table.h : regenerated.
13089
13090 2005-07-06  Martin Baulig  <martin@ximian.com>
13091
13092         * icall.c
13093         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
13094
13095         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
13096
13097 2005-07-06  Martin Baulig  <martin@ximian.com>
13098
13099         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
13100         we're doing a signature-only comparision; fixes #74945.
13101
13102 2005-07-06  Martin Baulig  <martin@ximian.com>
13103
13104         * class-internals.h (MonoGenericClass): Moved some things out into
13105         a new `MonoInflatedGenericClass' type.  
13106         (MonoInflatedGenericClass): New type; the `klass' of a
13107         `MonoGenericClass' is now computed lazyly in
13108         mono_get_inflated_generic_class().      
13109
13110         * class.c (mono_get_inflated_generic_class): New public function.
13111         (mono_class_inflate_generic_method): Removed the unused
13112         `MonoClass *' argument.
13113         (setup_generic_vtable): Don't call mono_get_inflated_method() on
13114         all the methods.
13115         (mono_class_create_generic): Make this static and merge it with
13116         mono_class_create_generic_2(); we're now called automatically from
13117         mono_get_inflated_generic_class().
13118
13119         * loader.c (mono_method_signature): Call
13120         mono_get_inflated_method() here.
13121
13122 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
13123
13124         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
13125         type of fields with RVA.
13126
13127         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
13128         for this pseudo class.
13129         (my_mono_class_from_generic_parameter): Likewise.
13130         (mono_class_init): Allow interfaces to have cctors.
13131
13132 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
13133
13134         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
13135         lazily for AOT methods.
13136
13137 2005-07-05  Martin Baulig  <martin@ximian.com>
13138
13139         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
13140         returns FALSE for a successful match, not TRUE.
13141
13142 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
13143
13144         * loader.c (mono_method_get_index): Optimize this a bit.
13145
13146 2005-07-04  Martin Baulig  <martin@ximian.com>
13147
13148         * class.c
13149         (class_compute_field_layout): Move the check for generic type
13150         definitions into mono_class_layout_fields().  Fixes #74684.
13151         (mono_class_from_generic_parameter): Correctly compute
13152         `klass->parent'; fixes #75457.
13153
13154         * reflection.c (register_assembly, register_module): Make sure
13155         `domain->rejobject_hash' is already created.
13156
13157 2005-07-02  Martin Baulig  <martin@ximian.com>
13158
13159         * class-internals.h
13160         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
13161         `MonoDynamicGenericClass'.      
13162
13163 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
13164
13165         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
13166         returned by a field getter is null, since null is a valid value.
13167
13168 2005-07-01  Martin Baulig  <martin@ximian.com>
13169
13170         * reflection.c (mono_reflection_generic_class_initialize): Update
13171         the `dgclass->fields [i].parent' to the correct class.
13172         (mono_image_get_fieldref_token): Use the declaring type, not the
13173         reflected type.
13174
13175 2005-07-01  Martin Baulig  <martin@ximian.com>
13176
13177         * loader.c (find_method): Also look in the interfaces; fixes #75429.
13178
13179 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
13180
13181         * threads.c (thread_cleanup): assert that thread != NULL
13182         (wait_for_tids_or_state_change): We were using the wrong variable
13183         when accessing wait->threads. `i' was always out of the bounds of
13184         the array.
13185
13186 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13187
13188         * loader.c: map user32 and kernel32 to libMonoSupportW
13189
13190 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
13191
13192         * appdomain.c (unload_thread_main): Mark this as WINAPI.
13193
13194 2005-06-28  Martin Baulig  <martin@ximian.com>
13195
13196         * loader.c (method_from_methodspec): Fix #75334.
13197
13198 2005-06-28  Martin Baulig  <martin@ximian.com>
13199
13200         Fix #74953 - Arrays now implement the generic IList<T> interface
13201         on the 2.0 platform.
13202
13203         * class-internals.h (MonoDefaults): Added `generic_array_class'.
13204
13205         * reflection.c (mono_class_bind_generic_parameters): New public
13206         function; similar to mono_reflection_bind_generic_parameters(),
13207         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
13208
13209         * domain.c (mono_init_internal): Try to initialize.
13210         `mono_defaults.generic_array_class' here; this'll only succeed if
13211         we're using the 2.0 corlib.
13212
13213         * icall.c
13214         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
13215         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
13216         (mono_lookup_internal_call): Added support for nested classes.
13217
13218         * loader.c
13219         (mono_get_method_from_token): Set `result->signature->pinvoke' if
13220         we're an interncall and have generic arguments.
13221
13222         * class.c
13223         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
13224         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
13225         instance of System.Array.InternalArray<T> for arrays, so they
13226         implement the generic IList<T> interface.
13227
13228 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
13229
13230         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
13231         (chastamar@yahoo.com). Fixes #75374.    
13232
13233 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
13234
13235         * culture-info-table.h: regenerated.
13236
13237 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13238
13239         * icall.c: handle spaces correctly for base64 strings.
13240
13241 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
13242
13243         * *.c: Kill some warnings.
13244
13245 2005-06-23  Duncan Mak  <duncan@novell.com>
13246
13247         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
13248         that this builds on Solaris 10 (x86).
13249
13250 2005-06-23  Martin Baulig  <martin@ximian.com>
13251
13252         * class.c
13253         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
13254         generic type definitions.
13255
13256 2005-06-23  Martin Baulig  <martin@ximian.com>
13257
13258         Fix #75331.
13259
13260         * metadata.c (mono_class_get_overrides): Renamed to
13261         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
13262         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
13263         pass it to mono_get_method_full().
13264
13265 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
13266
13267         * reflection.c (mono_reflection_create_runtime_class): take the
13268         mono_domain_lock in this method. Prevents deadlocks
13269
13270 2005-06-22  Martin Baulig  <martin@ximian.com>
13271
13272         * loader.c (method_from_methodspec): Fix #75330.
13273
13274 2005-06-22  Martin Baulig  <martin@ximian.com>
13275
13276         * reflection.c (type_get_qualified_name): Use
13277         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
13278         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
13279         argument; use it if we don't have an assembly name.
13280
13281 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
13282
13283         * object.c: In mono_message_init, set "copy out" flag for in
13284         parameters with the [Out] flag.
13285
13286 2005-06-21  Martin Baulig  <martin@ximian.com>
13287
13288         * class.c
13289         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
13290         and MONO_TYPE_PTR.
13291
13292 2005-06-21  Martin Baulig  <martin@ximian.com>
13293
13294         * class.c (mono_class_init): Don't initialize `class->fields' for
13295         generic instances since they're initialized again in
13296         compute_field_layout(). 
13297         (compute_field_layout): Set the field's `generic_info' here; fix
13298         #75320. 
13299
13300 2005-06-21  Martin Baulig  <martin@ximian.com>
13301
13302         * class-internals.h
13303         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
13304
13305         * metadata.c (mono_metadata_generic_method_equal): Also
13306         distinguish the `generic_class'; fixes #75334.
13307
13308 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13309
13310         * domain.c:
13311         * appdomain.c:
13312         * domain-internals.h:
13313         * reflection.c: 'domain_assemblies' field is now protected by its own
13314         lock. Don't call into managed code to run the AssemblyLoad event if we
13315         now there are no registered delegates for it.
13316
13317 2005-06-20  Martin Baulig  <martin@ximian.com>
13318
13319         * class.c (mono_class_is_assignable_from): Use a custom version of
13320         mono_class_has_parent() to make things work for generic instances;
13321         fix #75300.
13322
13323 2005-06-20  Martin Baulig  <martin@ximian.com>
13324
13325         * loader.c (method_from_methodspec): Apply a patch from
13326         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
13327
13328 2005-06-20  Martin Baulig  <martin@ximian.com>
13329
13330         * class.c (mono_class_init): Reverted Zoltan's last change; it
13331         breaks generics.
13332
13333 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
13334
13335         * threads.c (wait_for_tids_or_state_change): Add missing locking.
13336
13337 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13338
13339         * socket-io.c: fix the index in the socket array for writable/error
13340         sockets. Fixes bug #75306.
13341
13342 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
13343
13344         * class.c (mono_class_init): Allow interfaces to have static ctors.
13345
13346 2005-06-17  Martin Baulig  <martin@ximian.com>
13347
13348         * loader.c (method_from_methodspec): Use `context->container' when
13349         parsing the `gmethod->inst'.
13350
13351 2005-06-17  Martin Baulig  <martin@ximian.com>
13352
13353         * class.c (mono_type_get_name_recurse): Don't add the assembly
13354         name for type arguments.
13355
13356 2005-06-15  Martin Baulig  <martin@ximian.com>
13357
13358         * reflection.c (mono_image_get_inflated_method_token): Encode
13359         correct klass; fixes #75260.
13360
13361 2005-06-13 Michal Moskal <malekith@nemerle.org>
13362
13363         * icall.c: Make GetCorrespondingMethod/Constructor take
13364         MonoReflectionMethod method not MonoMethod. Removed
13365         MonoType.GetCorrespondingField, and make
13366         MonoGenericType.GetCorrespondingField take name not
13367         MonoClassField.
13368
13369 2005-06-13  Michal Moskal <malekith@nemerle.org>
13370
13371         * reflection.c (field_encode_signature, encode_locals):
13372          Make sizes of buffers for types larger (for big generic types).
13373          (create_generic_typespec,
13374          mono_reflection_sighelper_get_signature_local,
13375          mono_reflection_sighelper_get_signature_field):
13376          Add asserts for too small buffers.
13377
13378 2005-06-15  Martin Baulig  <martin@ximian.com>
13379
13380         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
13381         if our parent is not a dynamic type.
13382
13383 2005-06-15  Martin Baulig  <martin@ximian.com>
13384
13385         * class-internals.h (MonoTypeNameFormat): New enum.
13386
13387         * class.c
13388         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
13389         (mono_type_get_full_name): Removed.
13390         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
13391         argument instead of the boolean's.
13392
13393         * icall.c (ves_icall_System_MonoType_getFullName):
13394         Added `gboolean assembly_qualified'.    
13395
13396         * reflection.h
13397         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
13398
13399         * reflection.c (mono_reflection_parse_type): Parse the new type
13400         name format.
13401
13402 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13403
13404         * icall.c: no need to convert from utf16 to utf8 and then back again
13405         after the call to GetLogicalDrives.
13406
13407 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13408
13409         * icall.c: frombase64. Fix problems exposed by new tests.
13410
13411 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13412
13413         * icall.c: added internal calls for converting char [] and strings in
13414         base64 into byte [].
13415
13416 2005-06-10  Martin Baulig  <martin@ximian.com>
13417
13418         * class.c (mono_class_create_generic_2): Read the nested classes
13419         from the metadata rather than from `gklass->nested_classes' since
13420         `gklass' might not be initialized yet.
13421
13422 2005-06-09  Duncan Mak  <duncan@novell.com>
13423
13424         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
13425         all public headers. Fixes #74919.
13426
13427 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
13428
13429         * domain.c: The key for proxy_vtable_hash is now a pointer
13430         array. Added new GHashFunc and GCompareFunc functions for this.
13431
13432         * class.h: The list of interfaces in MonoRemoteClass is known in
13433         advance and can't grow (we create a new MonoRemoteClass if needed),
13434         so now the interface array can be allocated together with
13435         MonoRemoteClass.
13436         
13437         * object.c: Added a new method create_remote_class_key.
13438         Fixed mono_remote_class so it does not depend on
13439         mono_upgrade_remote_class.
13440         Removed extend_interface_array.
13441         Added new method clone_remote_class(), which makes a copy of a remote
13442         class and adds a new interface or class to it.
13443         mono_upgrade_remote_class() now creates a new remote class (or gets
13444         it from the cache) if an vtable upgrade is needed. In this way
13445         we make sure that other objects sharing the same remote class
13446         don't get the new vtable with unwanted interfaces.
13447         
13448         * object-internals.h:
13449         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
13450         
13451         * marshal.c: Track changes in mono_upgrade_remote_class().
13452
13453 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
13454         * icall.c: Add runtime methods for obtaining members of inflated
13455         class, which were created from supplied non-inflated members. It
13456         is used in internal Get{Method,Constructor,Field} methods in
13457         System.Type
13458
13459 2005-06-09  Martin Baulig  <martin@ximian.com>
13460
13461         * reflection.c
13462         (mono_reflection_bind_generic_method_parameters): Fix #75169.
13463
13464 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13465         * reflection.c (mono_image_basic_init): Define
13466         Version in MonoDynamicAssembly. 
13467         
13468 2005-06-08  Martin Baulig  <martin@ximian.com>
13469
13470         Fix #75136.
13471
13472         * loader.c
13473         (mono_method_signature_full): New public method; takes a
13474         `MonoGenericContext *'.
13475         (find_method): Use mono_method_signature_full() and pass the
13476         klass'es context to it.
13477
13478         * class.c (mono_class_is_inflated_method): Use
13479         mono_method_signature_full() and pass the context to it.
13480
13481 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
13482
13483         * object.c: add proper locking in mono_remote_class_vtable(),
13484         fixes possible memory corruption.
13485
13486 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
13487
13488         * marshal.c (mono_remoting_marshal_init): set
13489         initialized after initialization.
13490
13491 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
13492
13493         * locales.c : hush.
13494
13495 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
13496
13497         * object.c (extend_interface_array): fix really silly
13498         memory corrupting / comparison bug.
13499
13500 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13501
13502         * reflection.c: Functions added to support the creation
13503         of CustomAttributeData, which includes Attribute data
13504         used by ReflectionOnly methods.
13505
13506         * reflection.h:  mono_reflection_get_custom_attrs_data and
13507          mono_custom_attrs_data_construct added (functions exposed).
13508
13509          * icall.c: Added mono_reflection_get_custom_attrs_data
13510          as icall.
13511         
13512 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
13513
13514         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
13515         lupus's request.
13516
13517 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
13518
13519         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
13520
13521         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
13522         dynamic DllImportAttribute.
13523
13524         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
13525         dynamic DllImportAttribute.
13526
13527         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
13528         Fixes #75162.
13529
13530 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13531
13532         * threads.c: avoid segfault when an unstarted thread is aborted.
13533
13534 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
13535
13536         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
13537         Returns the name and version of the runtime for reporting.
13538
13539 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13540
13541         * appdomain.c: bump corlib version.
13542         * object-internals.h: new field in MonoReflectionAssembly.
13543
13544 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13545
13546         * object-internals.h: Carlos forgot to add this field.
13547
13548 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13549
13550         * icall.c: Added create_version to create instances
13551         of Version of MonoReflectionAssemblyName. This change helps
13552         the AssemblyName tests to keep running fine.
13553         
13554 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
13555   
13556         * object.c (mono_method_return_message_restore): A somehow less
13557         intrusive fix for #75138.
13558
13559 2005-06-03  Raja R Harinath  <rharinath@novell.com>
13560
13561         * object.c (mono_method_return_message_restore): Fix computation
13562         of expected number of out args.
13563
13564 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
13565
13566         * reflection.c (mono_image_get_method_info): Fix the case when the
13567         charset is empty.
13568
13569 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
13570
13571         * object.c: Added missing null check in
13572           mono_method_return_message_restore.
13573
13574 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
13575
13576         * reflection.c (mono_image_get_method_info): Handle the case when
13577         dllentry is empty.
13578
13579 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
13580
13581         * object.c: When creating the vtable for a proxy, take into account
13582         all inherited interfaces, not only the ones registered in
13583         iclass->interfaces. This fixs bug #74996.
13584         Also, in mono_method_return_message_restore, verify that the array
13585         of out args has the expected lengh.
13586
13587 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13588
13589         * socket-io.c: update the timeout in Poll when the call is interrupte.
13590
13591 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13592
13593         * socket-io.c: support abort/suspend in Select_internal after last
13594         change.
13595
13596 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13597
13598         * threadpool.c: remove warning.
13599
13600 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13601
13602         * icall.c:
13603         * socket-io.[ch]: Select_internal uses poll() now when available, thus
13604         removing the 1024 limit from select(). Runtime part of the fix for
13605         bug #71203.
13606
13607 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13608
13609         * socket-io.c: when resolving the addresses for the same
13610         host returned by gethostname(), get the local IPs from the interface
13611         list. Loopback addresses are discarded if the are interfaces up with
13612         non-loopback ones. Fixes bug #63265.
13613
13614 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
13615
13616         * appdomain.c, verify.c, object-internals.h, reflection.c:
13617         bumped corlib number to 36, and added new extra_flags field
13618         to ReflectionMethodBuilder and friends.  Fixes #75060.
13619
13620 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
13621
13622         * gc.c: register a new weak link only if the object is non-null
13623         (fixes bug#75047).
13624
13625 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
13626
13627         * culture-info.h : short time pattern too.
13628
13629 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
13630
13631         * culture-info.h : expand long time pattern string length.
13632
13633 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
13634
13635         * culture-info-table.h : update (more French date format; #72788).
13636
13637 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
13638
13639         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
13640         the method is static. Fixes #75029.
13641
13642 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
13643
13644         * reflection.c: Update the table_idx field of method builders after
13645         saving the module, since it can change. This is a workaround for
13646         bug #74914. 
13647
13648 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
13649
13650         * culture-info-table.h : update (additional French date format).
13651
13652 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
13653
13654         * icall.c (ves_icall_type_Equals): Revert last change.
13655         
13656         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
13657
13658         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
13659
13660 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
13661
13662         * class-internals.h: Added executioncontext_class field to 
13663         MonoDefaults structure.
13664         * domain.c: Cache System.Threading.ExecutionContext class in 
13665         mono_defaults.
13666         * object.c: Capture the ExecutionContext for asynchroneous calls in
13667          mono_async_result_new.
13668         * object-internals.h: Added execution_context and original_context 
13669         fields to MonoAsyncResult. Added execution_context to MonoThread.
13670         * security-manager.c|.h: Added mono_get_context_capture_method to 
13671         return the capture method (if required by the security manager or by
13672         the framework version used).
13673         * threadpool.c: Apply capture (if present) ExecutionContext in 
13674         mono_async_invoke and revert to original context after it completes.
13675
13676 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
13677
13678         * culture-info-table.h : updated (real hacky solution for zh-CHT).
13679
13680 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
13681
13682         * culture-info-table.h : zh-CHT related workaround.
13683
13684 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
13685
13686         * marshal.c (emit_marshal_custom): Add some error checking and call the
13687         methods in the ICustomMarshaler interface. Fixes #74875.
13688         
13689         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
13690         native->managed wrappers.
13691
13692 2005-05-12  Martin Baulig  <martin@ximian.com>
13693
13694         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
13695         here and use the loader lock.
13696
13697         * mono-debug.c: Properly lock when the debugger is not attached.
13698         (mono_debug_init): Release the initial lock if we're not running
13699         in the debugger.
13700
13701 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
13702
13703         * marshal.c (emit_marshal_custom): Pass through NULL values without
13704         calling the custom marshalling routines.
13705
13706         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
13707         conversion in structures. Fixes #74882.
13708
13709 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
13710
13711         * culture-info-table.h : zh-* cultures were missing.
13712
13713 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
13714
13715         * threads.c: Added a new event background_change_event which is signaled
13716         when a thread changes its background mode.
13717         Moved here several checks previously done in managed code. The checks
13718         require the thread lock, and using the thread lock in managed code
13719         can result in deadlocks.
13720         Merged Start_internal and Thread_internal into a single method. Now 
13721         Thread_internal does all work of creating and starting a thread.
13722         Added icalls for setting and getting the state of the object. Moved from
13723         managed code to avoid locking there.
13724         Added wait_for_tids_or_state_change() which is called instad of
13725         wait_for_tids when waiting for non-backround threads to end. This method
13726         will return if one of the threads ends or the background_change_event
13727         is signaled.
13728         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
13729         the background mode. This method signals the background_change_event
13730         event.
13731         * icall.c:
13732         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
13733         removed Start_internal.
13734         
13735 2005-05-11  Martin Baulig  <martin@ximian.com>
13736
13737         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
13738         to order of some fields to get proper alignment on 64-bit machines.
13739
13740 2005-05-11  Martin Baulig  <martin@ximian.com>
13741
13742         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
13743         changes as they're broken and completely fuck up the debugger.
13744
13745         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
13746
13747 2005-05-10  Martin Baulig  <martin@ximian.com>
13748
13749         * reflection.c (mono_reflection_generic_class_initialize): Don't
13750         call mono_class_setup_parent() here.
13751
13752 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13753
13754         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
13755         send/receive timeout use an integer in milliseconds. We were using a
13756         struct timeval.
13757
13758 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13759
13760         * locales.c:
13761         (internal_get_cultures): reserve the first slot of the array for the
13762         InvariantCulture, which will be filled in managed code.
13763
13764 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
13765
13766         * reflection.c (mono_image_fill_module_table): Initialize the
13767         GENERATION field as well.
13768
13769 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13770
13771         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
13772         Monitor.Enter on the object.
13773
13774 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
13775
13776         * threads.c: Enable the wait for running threads when exiting.
13777         * icall.c: Suspend all threads before exiting.
13778
13779 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
13780
13781         * assembly.c (mono_assembly_load_reference): Fix warning.
13782
13783 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13784
13785         * threadpool.c: changed the default number of threads per cpu. From now
13786         on, the default will be 20 + (5 * number of cpus) instead of 50.
13787
13788 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
13789
13790         * loader.c (mono_method_get_signature_full): Add locking here.
13791
13792 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
13793
13794         * appdomain.c: Moved methods for parsing and freeing assembly
13795         names to assembly.c.
13796         * assembly.c, domain-internals.h: Created public methods for parsing
13797         assembly names. Fixed mono_assembly_load_with_partial_name:
13798         it now finds the best match, taking into account the version,
13799         token and culture specified in the partial name. Also return
13800         the latest version if no version information is specified.
13801
13802 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
13803
13804         * threadpool.c: replace check for SocketAsyncCall class.
13805
13806 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13807
13808         * threadpool-internals.h:
13809         * Makefile.am: added threadpool-internals.h
13810
13811         * threadpool.c: call mono_unhandled_exception on exceptions not handled
13812         that happen in threadpool threads (tested on MS).
13813         (mono_thread_pool_remove_socket): new function that dispatch any pending
13814         AIO call on a socket that is closing. By now only epoll really needs it,
13815         as select/poll wake up when the socket closes.
13816
13817
13818         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
13819
13820 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
13821
13822         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
13823
13824 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
13825
13826         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
13827
13828 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
13829
13830         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
13831         has an abort request, convert it into a suspend request.
13832
13833 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
13834
13835         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
13836         warning for the usage of `UnmanagedFunctionPointerAttribute' which
13837         is not supported yet.
13838
13839 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13840
13841         * image.c: register assemblies loaded from data (bundles) in the loaded
13842         assemblies hash. Fixes bug #74772.
13843
13844 2005-04-29  Martin Baulig  <martin@ximian.com>
13845
13846         * class.c (mono_type_get_name_recurse): Update to the new naming
13847         schema from the latest .NET 2.x beta2.
13848         (mono_class_setup_vtable_general): If we're a generic instance,
13849         copy the vtable from our generic type definition and inflate all
13850         the methods in it.
13851
13852         * loader.c (find_method): Update to the new naming schema from the
13853         latest .NET 2.x beta2.
13854
13855 2005-04-29  Raja R Harinath  <harinath@gmail.com>
13856
13857         * class.c (mono_class_init): Add a mono_loader_unlock to the
13858         #74734 fix.
13859
13860 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
13861
13862         * icall.c (ves_icall_System_Environment_Exit): Remove the 
13863         suspend_all_other_threads () call for the time being, since it can hang.
13864
13865         * threads.c (mono_thread_manage): Similarly, disable the waiting for
13866         the background threads to exit, since it can also hang.
13867
13868         * class.c (mono_class_init): Applied patch from Ankit Jain 
13869         (radical@gmail.com). Avoid pending init errors when a field refers
13870         to a nested class using a typeref. Fixes #74734.
13871
13872         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
13873         this for dynamic modules.
13874
13875 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13876
13877         * threads.c: don't wait for threads that are in the process of aborting
13878         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
13879         and waiting for background threads to finish. This makes xsp and
13880         mod-mono-server exit without random length delays and/or hangs.
13881
13882 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13883
13884         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
13885
13886 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
13887
13888         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
13889         dynamic types to prevent infinite loops. Fixes #74727.
13890
13891         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
13892         ..._is_assignable_to.
13893
13894 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
13895
13896         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
13897
13898 2005-04-25  Martin Baulig  <martin@ximian.com>
13899
13900         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
13901
13902         * domain.c
13903         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
13904
13905         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
13906
13907         * reflection.c (build_compressed_metadata): Set metadata header
13908         version to 2.0.
13909
13910 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
13911
13912         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
13913         number into an integral and a decimal part. Fixes #70473.
13914
13915         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
13916
13917 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
13918
13919         * culture-info-table.h : reflected the latest locale-builder output.
13920
13921 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13922
13923         * threadpool.c: check for SuspendRequested too when deciding if
13924         mono_thread_interruption_checkpoint should be called.
13925
13926 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13927
13928         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
13929         * threads.c: remove interruption_mutex and use Interlocked instead. When
13930         suspending all the threads, wait for all the suspended events at once.
13931         If we're shutting down and get an APC that is going to be queued,
13932         call mono_thread_execute_interruption immediately, as the thread might
13933         be sleeping on a pthread condition or mutex.
13934
13935         * icall.c: call mono_runtime_set_shutting_down before suspending the
13936         threads.
13937
13938         Fixes bug #74693. And now xsp is happier when exiting.
13939
13940 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
13941
13942         * loader.c (mono_stack_walk): Fix #74690.
13943
13944 2005-04-22  Martin Baulig  <martin@ximian.com>
13945
13946         * mono-debug.h (MonoDebugMethodJitInfo): Added
13947         `MonoDebugMethodJitInfo *jit'.
13948
13949         * mono-debug.c (mono_debug_read_method): Cache the
13950         MonoDebugMethodJitInfo in `address->jit'.
13951         (mono_debug_free_method_jit_info): New public method.
13952
13953 2005-04-22  Martin Baulig  <martin@ximian.com>
13954
13955         * class.c (mono_class_is_assignable_from): Disallow
13956         type parameter -> interface.
13957
13958 2005-04-21  Dick Porter  <dick@ximian.com>
13959
13960         * threads.c (mono_thread_create): Turn an assertion into an error.
13961
13962 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
13963
13964         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
13965         
13966         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
13967         Fix some gcc 4.0 warnings.
13968
13969 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
13970
13971         * file-io.c: fix alt dir separator char on unix systems
13972         and cleanup (fixes bug #71214).
13973
13974 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
13975
13976         * marshal.c: Use CALLVIRT instead of CALL when dispatching
13977         a call to a remote domain, since the method may be an
13978         interface method in the client domain. This fixes bug #74192.
13979
13980 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13981
13982         * threadpool.c: recv/send are now performed before going back to managed
13983         code to save one transition.
13984
13985 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13986
13987         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
13988
13989         * metadata/threadpool.c: removed hack to workaround the bug above.
13990
13991         Fixes bug #74618.
13992
13993 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
13994
13995         * reflection.c reflection.h: Fix handling of parameter defaults in
13996         dynamic methods. Also fixes handling of parameter attributes.
13997         Fixes #74609.
13998
13999         * mono-debug.c (mono_debug_close_image): Fix warning.
14000
14001 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14002
14003         * socket-io.h: replaced old unused field with new 'blocking'.
14004         * threadpool.c: restore socket blocking state on windows(tm).
14005
14006 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
14007
14008         * icall.c: don't return the codebase in the AssemblyName[] returned by
14009         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
14010         * object-internals.h: Removed FIXME (fields were presents) and fixed
14011         versioncompat declaration.
14012
14013 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14014
14015         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
14016         not closed, so don't cleanup when it happens.
14017
14018 2005-04-13  Chris Toshok  <toshok@ximian.com>
14019
14020         * mono-debug-debugger.h: change prototype for
14021         mono_debugger_lookup_type.
14022
14023         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
14024         this function, although it should probably be named
14025         mono_debugger_init_type.
14026
14027 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14028
14029         * threadpool.c: fix non-AIO case.
14030
14031 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
14032
14033         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
14034         the built-in profiler to measure just JIT compilation times.
14035
14036 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14037
14038         * threadpool.c: the epollfd might be closed by another thread at
14039         any time, so ignore EBADF at treat it as a "we're closing" sign.
14040
14041 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14042
14043         * threadpool.c: release the semaphores with a count equals to the number
14044         of working threads in both IO and regular pools. Fixed typo that messed
14045         up the count of IO pool threads. Don't initialize the pipe handles if
14046         we're using epoll.
14047
14048 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14049
14050         * threadpool.c: some systems don't like a NULL when deleting the socket
14051         from epoll.
14052
14053 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14054
14055         * threadpool.c: fix semaphore allocation.
14056
14057 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14058
14059         * threadpool.c: added epoll() based implementation for asynchronous IO
14060         that is used instead of the default poll() when available.
14061         It can be disabled by setting MONO_DISABLE_AIO.
14062
14063 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14064
14065         * threadpool.c: windows needs 'closesocket' and instead of returning
14066         0 when the stream is closed while in select, it returns -1. Fixes bug
14067         #74573.
14068
14069 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
14070
14071         * class.c (class_compute_field_layout): Fix the regression caused by
14072         the previous try.
14073
14074 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14075
14076         * threadpool.c: separate pool for socket async. IO.
14077         * threadpool.h: mono_max_worker_threads is not a global any more.
14078
14079 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
14080
14081         * class.c (class_compute_field_layout): Fix #74549.
14082
14083 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14084
14085         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
14086         use 2 connected sockets instead.
14087
14088 2005-04-08  Miguel de Icaza  <miguel@novell.com>
14089
14090         * mono-config.c: Add new entry point for mkbundle
14091         mono_config_parse_memory. 
14092
14093 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14094
14095         * threadpool.c: removed another unused function.
14096
14097 2005-04-08  Ankit Jain  <radical@corewars.org>
14098
14099         * reflection.c (get_default_param_value_blobs): Add 'types'
14100         parameter to get the types encoded in the constant table.
14101         (mono_param_get_objects): Use the type from the constant table,
14102         not the type of the parameter, when creating default values.
14103         Handle null default values correctly.
14104
14105 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14106
14107         * file-io.c:
14108         * file-io.h:
14109         * threadpool.c:
14110         * threadpool.h:
14111         * icall.c:
14112         * socket-io.c: removed dead code for async IO.
14113
14114 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14115
14116         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
14117
14118         * threadpool.c: intercept socket async. calls and pass them to a thread
14119         that is polling and dispatching the job items to the threadpool as
14120         socket become ready. Fixes bugs #71217, #71933.
14121
14122         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
14123         between char and short/ushort arrays.
14124
14125         * socket-io.c: remove dead code.
14126
14127 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
14128
14129         * locales.c,
14130           icall.c : removed InternalToUpper_Comp() and
14131           InternalToLower_Comp().
14132
14133 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
14134
14135         * char-conversions.h : The tables were incorrectly generated. Should
14136           be generated against invariant culture.
14137
14138 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
14139
14140         * object.c (mono_runtime_invoke_array): Fix return value when 
14141         passing pre-created valuetype objects to ctors.
14142
14143         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
14144         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
14145         Fixes #74338.
14146
14147 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
14148
14149         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
14150         only used with --security and hides the wrong corlib version error.
14151
14152 2005-03-30  Joshua Tauberer  <tauberer@for.net>
14153
14154         * class.c: Changed mono_class_name_from_token so that types
14155         outside of a namespace don't have an initial period.  Improved
14156         the g_warning message used in _mono_class_get when loading
14157         fails.
14158         * assembly.c: In mono_assembly_load_reference, when an assembly
14159         can't be found, "No such file or directory" is misleading and
14160         unhelpful because a few paths were checked for the presence of
14161         the assembly.  When that happens (ENOENT), display a nicer
14162         message indicating the directories that were searched.  In all
14163         cases, the warning is made easier to read for non-hackers.
14164
14165 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
14166
14167         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
14168         project/solution.
14169         * appdomain.h|domain.c: Removed inline from functions.
14170         * appdomain.c: Reduced warnings when compiling on windows.
14171         * icall.c: Fixed output_debug declaration to gunichar2*.
14172         * mono-config.c: Reduced warnings when compiling on windows.
14173         * rand.c: Added missing "windows.h". Added missing return value.
14174         * rawbuffer.c: Added missing winsock2.h for windows.
14175         * sysmath.h: Added mono-compiler.h header to allow/ease 
14176         compilation with non-GCC compilers.
14177         * threads.c: Fixed declarations to compile with VS.NET C compiler.
14178         Removed cast warnings.
14179
14180         Adapted from the work of J Lothian (for VC6).
14181
14182 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
14183
14184         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
14185         from default_path.
14186
14187 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
14188
14189         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
14190         the 2.0 profile.
14191
14192 2005-03-27  Raja R Harinath  <harinath@gmail.com>
14193
14194         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
14195         has to be in $(exec_prefix).  $(prefix) is for arch-independent
14196         stuff, and it would probably use $(prefix)/share rather than
14197         $(prefix)/lib.
14198
14199 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14200
14201         * console-io.c: added 2 includes that might be missing.
14202
14203 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
14204
14205         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
14206         profile.
14207
14208         * reflection.c (create_custom_attr): Allocate the params array using
14209         alloca so it gets GC tracking.
14210
14211 2005-03-23  Chris Toshok  <toshok@ximian.com>
14212
14213         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
14214         out some spew.
14215
14216 2005-03-24  Raja R Harinath  <rharinath@novell.com>
14217
14218         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
14219         changes to pick up any changes in prefix, etc.
14220
14221 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
14222
14223         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
14224         
14225         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
14226         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
14227
14228 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
14229
14230         * class-internals.h object-internals.h class.c reflection.c: Extend the
14231         mono_lookup_dynamic_token () function to return the class of the
14232         token as well. 
14233
14234         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
14235         well. Fixes #73848.
14236
14237 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
14238
14239         * security-manager.c: Skip inheritance checks for intra-corlib
14240         class inheritance and method overrides. This skips a lot of checks
14241         and (anyway) permissions cannot work until corlib is loaded.
14242
14243 2005-03-23  Martin Baulig  <martin@ximian.com>
14244
14245         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
14246         MONO_TYPE_GENERICINST.  
14247
14248 2005-03-23  Martin Baulig  <martin@ximian.com>
14249
14250         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
14251
14252 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
14253
14254         * class.c: added locking comments to some functions.
14255         Cache the interface offsets arrays (saves about 20 KB
14256         of runtime memory in a typical app).
14257         Reduce the time overhead in mono_class_setup_supertypes ().
14258
14259 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
14260
14261         * icall.c: speedup and fix leaks in GetMethodsByName and
14262         GetPropertiesByName.
14263
14264 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
14265
14266         * reflection.c: some locking fixes.
14267
14268 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
14269
14270         * metadata.c: added missing break in case statement.
14271
14272 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
14273
14274         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
14275         typedbyref return values. Fixes #73941.
14276
14277 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
14278
14279         * security-manager.c|h: Added demandunmanaged method and 
14280         suppressunmanagedcodesecurity class to MonoSecurityManager.
14281         Renamed aptc class to allowpartiallytrustedcallers.
14282
14283 2005-03-17  Martin Baulig  <martin@ximian.com>
14284
14285         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
14286
14287 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14288
14289         * file-io.c: disabled file async. IO using aio_*. It uses the
14290         threadpool now. Workaround for bug #73718.
14291
14292 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
14293
14294         * assembly.h, mono-config.c: added code to deal with bundled configs
14295         for bundled assemblies.
14296
14297 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
14298
14299         * *.c, private.h: cleanup, removing old private.h header file.
14300
14301 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
14302
14303         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
14304         and throw_on_unmappable_char attributes.
14305
14306 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
14307
14308         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
14309         _ProcessName_internal.
14310
14311 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
14312
14313         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
14314         #73631.
14315
14316         * icall.c threads.c threads-types.h: Remove slothash icalls as they
14317         are no longer used.
14318
14319 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
14320
14321         * object.c (compute_class_bitmap): Add support for generics. Fixes
14322         #73527.
14323
14324 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
14325
14326         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
14327
14328 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14329
14330         * filewatcher.c: commented out the code for windows watcher, as we don't
14331         use it (we use the managed implementation instead).
14332
14333 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
14334
14335         * object-internals.h (MonoThread): Remove 'unused1' field.
14336
14337         * appdomain.c: Bump corlib version.
14338
14339         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
14340
14341         * reflection.c (mono_reflection_create_runtime_class): Remove the
14342         AssemblyBuilder.Save optimization since it causes too many problems.
14343
14344 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
14345
14346         * exception.c|h: Added mono_get_exception_reflection_type_load to
14347         create a ReflectionTypeLoadException object.
14348         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
14349         to return NULL is a InheritanceDemand fails during reflection. Updated
14350         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
14351         ReflectionTypeLoadException if an InheritanceDemand fails during 
14352         reflection. Added icall mapping for GetLinkDemandSecurity.
14353         * security-manager.c|h: Added ves_icall_System_Security_
14354         SecurityManager_GetLinkDemandSecurity internal call to return the
14355         class and methods permissions set for a LinkDemand. Removed unused
14356         fields in MonoSecurityManager.
14357
14358 2005-03-10  Martin Baulig  <martin@ximian.com>
14359
14360         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
14361         it's a generic instance.
14362
14363 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
14364
14365         * reflection.c (mono_get_object_from_blob): Applied patch from
14366         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
14367
14368         * class.c (mono_class_is_assignable_from): Another try at fixing 
14369         #73469 without breaking anything.
14370
14371 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
14372
14373         * class.c: (mono_class_is_assignable_from): Revert the last changes
14374         since they don't work with generics.
14375         
14376         * class.c (mono_class_is_assignable_from): Fix build bustage.
14377
14378         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
14379         the managed IsAssignableFrom method. Fixes #73469.
14380
14381         * reflection.c (mono_reflection_call_is_assignable_from): New helper
14382         function.
14383
14384 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
14385
14386         * object.c (mono_load_remote_field_new): Fix returning uninitialized
14387         memory when the remoting callback does not sets the out arguments.
14388         Fixes #73007.
14389
14390         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
14391         by mistake.
14392
14393         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
14394
14395         * object-internals.h (MonoStackFrame): Sync with managed object layout.
14396
14397         * appdomain.c: Bump corlib version.
14398
14399 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
14400
14401         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
14402         function.
14403
14404         * threads.c (mono_thread_attach): Detect threads which are not started
14405         by the GC pthread wrappers.
14406
14407 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
14408
14409         * icall.c: Added new icall for RNG.
14410         * rand.c|h: Added new icall to open the RNG. This allows to share a 
14411         single handle on Linux to access /dev/urandom and fix #73183.
14412
14413 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
14414
14415         * object.c: setting the new vtable in a transparent proxy object must
14416         not change the GC descriptor.
14417
14418 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
14419
14420         * object.c: fixed compilation without GCJ support.
14421         * reflection.c: for runtime-created types ensure klass->has_references
14422         is correct (bug #73215).
14423
14424 2005-03-02  Martin Baulig  <martin@ximian.com>
14425
14426         * class.c (mono_class_is_assignable_from): Make this work if
14427         `oklass' is a generic instance; fixes #72831.
14428
14429 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
14430
14431         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
14432         with hasthis set.
14433         
14434         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
14435
14436         * marshal.c: Reorganize native->managed marshalling code to also use
14437         the emit_marshal_... functions.
14438
14439 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
14440
14441         * object.c: typed allocs have issues with bitmap sizes > 30,
14442         so check for max_set >= 30.
14443
14444 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
14445
14446         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
14447         managed code. Fixes #73012.
14448
14449         * metadata.h (MonoMarshalSpec): Add elem_mult field.
14450
14451         * metadata.c reflection.c: Load/Emit elem_mult as well.
14452         
14453         * metadata.h (MonoMarshalSpec): Add comment.
14454
14455         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
14456
14457         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
14458         num_elem to -1 if not given.
14459
14460         * object-internals.h (MonoReflectionMarshal): Add has_size field.
14461
14462         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
14463         given values.
14464
14465 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
14466
14467         * null-gc.c (mono_gc_free_fixed): Was not compilable.
14468
14469 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
14470
14471         * reflection.c (encode_marshal_blob): Encode param_num field as well.
14472
14473         * object-internals.h (MonoReflectionMarshal): Add param_num field.
14474
14475 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
14476
14477         * object.c: generalized the reference bitmap creation
14478         and added hooks for the new GC.
14479         * class-internals.c: removed the gc_bitmap field from MonoClass.
14480
14481 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14482
14483         * domain.c: help the compiler to produce better code
14484         in mono_jit_info_table_find ().
14485
14486 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
14487
14488         * object.c: make all allocations look typed.
14489
14490 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14491
14492         * socket-io.c: load Mono.Posix if it's not loaded already
14493         (fixes bug#73033).
14494
14495 2005-02-24  Martin Baulig  <martin@ximian.com>
14496
14497         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
14498         * reflection.c (dup_type): Likewise.
14499
14500 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
14501
14502         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
14503         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
14504
14505 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
14506
14507         * domain.c, threads.c, object-internals.h: make the critical thread
14508         local vars use the fast access mode (even when we're compiled in
14509         a lib). Provide accessors to be used by the jit during codegen.
14510
14511 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14512
14513         * appdomain.c: Changed hook functios behavior to include
14514         support for the reflection only assemblies. Some icalls were changed
14515         to support the mentioned assemblies too. Signatures of static methods
14516         try_assembly_resolve and real_load now have an additional parameter:
14517         refonly.
14518
14519         * assembly.c: General changes to mono_assembly_ methods to support
14520         reflection only api. Functions mono_assembly_open, mono_assembly_load,
14521         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
14522         suffix, to support an additional gbool parameter to specify whether
14523         the assembli is reflection only or not. Created some new hook functions 
14524         to add support for reflection only assemblies. Signatures of static 
14525         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
14526         have now an additional parameter: refonly.
14527
14528         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
14529         indicating whether the assembly is reflection only or not.
14530
14531         * exception.c: Add mono_get_exception_invalid_operation.
14532
14533         * icall.c: Throw an InvalidOperationException when trying to invoke
14534         a property/method/event, or trying to set/get the value of a field.
14535         Also add an icall to retrieve the ref_only flag to the
14536         MonoReflectionAssembly.
14537
14538 2005-02-23  Chris Toshok  <toshok@ximian.com>
14539
14540         Part of fix for #72827.
14541         * mono-debug.c (mono_debug_add_method): add lexical block data to
14542         the info we write.  Kind of a hack at the moment - we copy the
14543         lexical block info from the MonoDebugMethodInfo to the
14544         MonoDebugMethodJitInfo here, before writing it.
14545         (mono_debug_read_method): read the lexical block info.
14546
14547         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
14548
14549         * debug-mono-symfile.h: add lexical block support.
14550
14551         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
14552         support.
14553
14554 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
14555
14556         * loader.c (mono_lookup_pinvoke_call): Fix warning.
14557
14558         * object.c (mono_runtime_free_method): Call mono_free_method () and
14559         put the TODOs there.
14560
14561         * loader.c (mono_free_method): Free up most memory allocated for 
14562         dynamic methods.
14563
14564 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
14565
14566         * reflection.c: properly flag a Type argument to a
14567         named custom attr value (bug #72248).
14568
14569 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
14570
14571         * reflection.c: reduce code duplication in named custom
14572         attribute encoding.
14573
14574 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
14575
14576         * reflection.c: properly encode custom attrs of type object
14577         (bug #72649).
14578
14579 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
14580
14581         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
14582
14583 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
14584
14585         * socket-io.c: load System.dll if it's not loaded already
14586         (bug #72850 and #70477).
14587
14588 2005-02-21  Martin Baulig  <martin@ximian.com>
14589
14590         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
14591         generic instances.
14592
14593 2005-02-21  Martin Baulig  <martin@ximian.com>
14594
14595         * reflection.c (mono_image_build_metadata): We also need to
14596         "fixup" the MethodImpl table after we computed the final method
14597         indices.  Call fixup_methodimpl() to do that.
14598         (fixup_methodimpl): New private method.
14599
14600 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
14601
14602         * assembly.c: special case mscorlib.dll (bug#72536),
14603         patch from Carlos Alberto Cortez.
14604
14605 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
14606
14607         * threads-types.h threads.c: Fix build bustage.
14608
14609         * threads.c: Use a union for long<->double conversions.
14610
14611         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
14612         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
14613
14614         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
14615         containing the checkpoint call with NOT_TAKEN.
14616         
14617         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
14618         checkpoint before pushing the arguments, so they won't have to be
14619         spilled to stack.
14620
14621 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
14622
14623         * domain.c, assembly.c, domain-internals.h: make some data
14624         const and relocation-free.
14625
14626 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
14627
14628         * object.c, appdomain.c, class-internals.h: introduce the
14629         MonoClassRuntimeInfo structure to hold the info needed to
14630         use a class at runtime. Made mono_class_vtable() lock-free
14631         for all the appdomains.
14632
14633 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
14634
14635         * metadata-internals.h, image.c: introduce a per-image mempool to
14636         be used for memory that has the same lifetime as the image.
14637
14638 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
14639
14640         * domain.c: In mono_init_internal(), instead of selecting the first
14641         runtime version supported by an executable, get a list of all
14642         supported versions and select the one for which an mscorlib exists
14643         (since even if the runtime supports a given version, it doesn't mean
14644         that the framework for that version is installed).
14645         Modified get_runtimes_from_exe to support this behavior.
14646         In supported_runtimes, added information about additional system
14647         assembly versions.
14648         
14649         * assembly.c: Added support for more than one system assembly version
14650         per runtime version. Updated the assembly list.
14651         In mono_assembly_remap_version, removed the initial version check,
14652         since we don't know to which version we need to compare until we
14653         get the version set on which the assembly is based.
14654         Moved the code for loading corlib into the new method
14655         mono_assembly_load_corlib(), so it can be used by the initialization
14656         code.
14657         
14658         * domain-internals.h: Updated data structures and added declaration
14659         for mono_assembly_load_corlib.
14660
14661 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
14662
14663         * reflection.c (resolve_object): Fix the creation of the signature in 
14664         the SignatureHelper case.
14665
14666         * assembly.c (mono_assembly_remap_version): Fix binary search.
14667         
14668 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
14669  
14670         * class.c: Added inheritance check when a method is overloaded (from a
14671         virtual method or when implementing an interface) and when a class is
14672         inherited. Added functions to set a failure for a class and to 
14673         retreive the exception from a failure.
14674         * class-internals.h: Added fields to MonoClass to keep the exception
14675         information status for inheritance (or other exceptions) to be thrown
14676         later (i.e. not at load time).
14677         * object.c: Throw the inheritance SecurityException when a type is to 
14678         be created with either class or method inheritance violations.
14679         * reflection.c|h: Fix when getting declsec from a class. Removed 
14680         unrequired code for class. Improved sanity in parameter naming.
14681         * security-manager.c|h: Added functions to check for class and method
14682         inheritance.
14683
14684 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
14685
14686         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
14687         and has_finalize in dynamic types as well.
14688
14689 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
14690
14691         * culture-info-table.h : fixed currency format for en-GB (and so on).
14692
14693 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
14694
14695         * gc.c: ensure the GC handles never have 0 as a value.
14696
14697 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
14698
14699         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
14700         a pointer to a struct to unmanaged code. Fixes #72625.
14701
14702 2005-02-16  Martin Baulig  <martin@ximian.com>
14703
14704         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
14705
14706 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
14707
14708         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
14709
14710 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
14711
14712         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
14713
14714         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
14715         UnmanagedFunctionPointerAttribute, use it for determining calling convention
14716         etc. Fixes #71471.
14717
14718         * reflection.c (mono_custom_attrs_get_attr): New helper function.
14719
14720         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
14721
14722 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
14723
14724         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
14725         changes to make the current context a field in MonoThread.
14726
14727 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
14728
14729         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
14730         the last change.
14731         
14732         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
14733         extracted from mono_marshal_get_native_wrapper.
14734
14735         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
14736         to create wrappers around native functions.
14737
14738         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
14739         delegates for arbitrary function pointers. Fixes #71472.
14740
14741 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
14742
14743         * threads.c: cleaned up the code a little.
14744
14745 2005-02-15  Martin Baulig  <martin@ximian.com>
14746
14747         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
14748         the data table.
14749
14750         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
14751         allocate larger chunks if needed.
14752
14753 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
14754
14755         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
14756         in by mistake.
14757
14758 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
14759
14760         * domain.c: keep the domains in an array and ensure the domain ids
14761         are kept small, so they can be used as indexes to domain-specific data
14762         with a small memory overhead.
14763
14764 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
14765
14766         * icall.c: Handle byref types in Type icalls. Fixes #72544.
14767
14768 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
14769
14770         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
14771
14772 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
14773
14774         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
14775
14776         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
14777         values.
14778
14779         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
14780         
14781 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
14782
14783         * domain-internals.h: add the hashtable here.
14784
14785         * class-internals.h: Remove `info' from MonoMethod
14786
14787         * domain.c: Add a new hashtable, jit_trampoline_hash
14788
14789 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
14790
14791         * object.c: don't set the value of static fields
14792         (fixes bug#72494).
14793
14794 2005-02-11  Martin Baulig  <martin@ximian.com>
14795
14796         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
14797         (mono_debug_add_method): Silently ignore the method if it's too big.
14798         (mono_debug_add_type): Likewise.
14799
14800 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
14801
14802         * threads.c, appdomain.c: remove #ifdefs from the code.
14803
14804 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
14805
14806         * metadata-internals.h: Added flags to MonoAssembly to cache the most
14807         common security informations. This allows us to stay in unmanaged code
14808         when doing LinkDemand and it's special cases (except for the first 
14809         time for initialization). The flags a very much used with --security.
14810         * reflection.c|h: Added code to get declarative security attributes 
14811         for LinkDemand and InheritanceDemand. This required to refactor the
14812         existing code for Demand.
14813         * security-manager.c|h: Added new method fields for the special cases
14814         of LinkDemand.
14815
14816 2005-02-10  Martin Baulig  <martin@ximian.com>
14817
14818         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
14819         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
14820
14821 2005-02-10  Martin Baulig  <martin@ximian.com>
14822
14823         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
14824         debugging code; this is almost a complete rewrite.
14825
14826         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
14827
14828 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
14829
14830         * domain.c, object.h: expose mono_string_equal () and 
14831         mono_string_hash ().
14832         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
14833         it's implemented in managed code.
14834
14835 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
14836
14837         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
14838         lo leak objects between appdomains.
14839
14840 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
14841
14842         * assembly.c: old compilers compilation fix from 
14843         robertj@gmx.net (Robert Jordan).
14844
14845 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
14846
14847         * class-internals.h: Little reminder for the future.
14848
14849         * debug-helpers.c: Fix up wrapper_type_names
14850
14851 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
14852
14853         * image.c, metadata-internals.h: when loading an image from a file,
14854         mmap all of it and use the same codepaths as when using a
14855         in-memory image: the code is simpler and we use less memory
14856         (both writable and readonly).
14857
14858 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
14859
14860         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
14861         API to alloc runtime data structures that need to be tracked by the
14862         GC and contain pointers.
14863         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
14864         make the code more readable and eventually use a different GC.
14865
14866 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
14867
14868         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
14869         for out arguments.
14870         
14871 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
14872
14873         * object.c: In release_type_locks(), don't release the cctor lock
14874         if it has already been released. This fixes a crash in the
14875         thread5 test.
14876
14877 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14878
14879         * gc.c, marshal.c, icall.c: register a delegate for finalization
14880         only when the native function pointer has been allocated for it.
14881
14882 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
14883
14884         * object.c: cleaned up some code, allocate objects that are
14885         pointer free with the atomic malloc variant. Allocate memory
14886         for static data from the mempool if it's pointer-free.
14887         Allocate the bounds array at the end of the array data, when needed.
14888         * object-internals.h, object.h: move a private function in a private
14889         header.
14890         * class.c: handle missing case in tracking references in fields.
14891
14892 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
14893
14894         * class.c, class-internals.h: keep track if a type has
14895         reference fields in either the instance or static fields.
14896
14897 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
14898
14899         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
14900         and renamed to MonoRuntimeInfo. Added fields to store the expected
14901         framework assembly version. Changed mono_get_framework_version and
14902         mono_get_runtime_version for a single mono_get_runtime_info method.
14903         
14904         * assembly.c: Added method to remap system assembly versions to the
14905         current executing runtime version. Removed old mapping code.
14906         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
14907         
14908         * icall.c, reflection.c: Track api changes.
14909
14910 2005-02-06  Miguel de Icaza  <miguel@novell.com>
14911
14912         * loader.c (method_from_memberref): Improve error reporting,
14913         produce the class name instead of the typeref/typedef index. 
14914
14915 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
14916
14917         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
14918
14919 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
14920
14921         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
14922         stdcall and charset name mangling.  Reorganize the code and add
14923         some tracing stuff.
14924
14925 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
14926
14927         * monodiet.c: More iters!
14928
14929         * marshal.c: Iter usage.
14930
14931         * icall.c: Iter usage.
14932
14933         * object.c: Use iters.
14934
14935         * debug-helpers.c: More iters
14936
14937 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
14938
14939         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
14940         under win32.
14941
14942 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
14943
14944         * mono-debug-debugger.c: use iters
14945
14946         * class.c, class-internals.h: mono_class_setup_events is static
14947         now
14948
14949         * All callers: use iters
14950
14951 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
14952
14953         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
14954         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
14955
14956 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
14957
14958         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
14959
14960         * marshal.h: Add prototypes for ldfld/stfld_remote.
14961
14962         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
14963         this is called during startup.
14964         
14965 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
14966
14967         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
14968         MonoThreadsSync struct private in monitor.c. Changed the way
14969         MonoThreadsSync is allocated so it's faster and there is no
14970         need to keep track of it with a finalizer and it uses less memory.
14971         This also finally allows us to allocate mono objects as ptrfree when
14972         there are no reference fields.
14973
14974 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
14975
14976         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
14977         disappearing link to the GC interface and use them to simplify
14978         the gchandles code.
14979
14980 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
14981
14982         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
14983         stfld_remote which call mono_load/store_field_new. This allows methods
14984         calling ldfld/stfld wrappers to be AOTed.
14985
14986         * console-io.c: Include sys/filio.h under solaris.
14987         
14988         * console-io.c: Include curses.h if needed correctly.
14989
14990 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
14991         
14992         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
14993         method->klass as well.
14994
14995         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
14996
14997         * class.c (mono_class_init): Switch on lazy initialization of 
14998         methods.
14999
15000         * class.c (mono_class_get_finalizer): Handle the case when the 
15001         finalizer is inherited.
15002
15003 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15004
15005         * console-io.c: <curses.h> is needed by term.h on solaris.
15006
15007 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
15008
15009         * icall.c, class-internals.h, monodiet.c, class.c: Remove
15010         mono_class_setup_properties where possible. Remove this ftn from
15011         the header file, and make it static.
15012
15013 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
15014
15015         * loader.c: Add missing setup_... call.
15016
15017         * class.c: Add missing setup_... calls.
15018
15019         * class.c (mono_class_init): Switch on lazy initialization of 
15020         the generic vtable.
15021         
15022         * class.c (mono_class_init): Fix generics broken by the recent changes.
15023
15024         * monodiet.c (handle_type): Add missing setup_... calls.
15025
15026         * class.c: Back out garbage in previous patch.
15027         
15028         * class.c: Add missing setup_... calls.
15029
15030         * class.c (mono_class_get_method_from_name_flags): Avoid calling
15031         mono_class_setup_methods () if possible.
15032
15033         * class-internals.h (MonoClass): Add 'has_cctor' flag.
15034
15035         * class-internals.h (MonoCachedClassInfo): New structure.
15036
15037         * class.c: Initialize properties and events fields of MonoClass lazily.
15038
15039         * class.c: Add infrastructure for lazily initializing the methods and
15040         vtable fields of MonoClass. Not yet used.
15041
15042         * class.c (mono_class_get_finalizer): New helper function.
15043
15044         * class.c: Add infrastructure for loading some class related data from
15045         an AOT file.
15046
15047         * object.c: Add infrastructure for initializing the vtable from data
15048         in the AOT file.
15049
15050         * gc.c (run_finalize): Use mono_class_get_finalizer ().
15051
15052         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
15053         appropriate initialization function before accessing parts of the
15054         MonoClass structure.
15055
15056         * marshal.c: Fix warnings.
15057         
15058         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
15059
15060         * mono-debug-debugger.c (get_exception_message): Use 
15061         mono_class_get_method_from_name_flags ().
15062
15063 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
15064
15065         * reflection.c, appdomain.c: Replace a few manual searches that
15066         Zoltan missed. (Paolo approved this part of my initial patch).
15067
15068 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
15069
15070         * profiler.c: disable recording statistical events at report time.
15071
15072 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
15073
15074         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
15075         to byteswap arrays of enum values, too (bug #72080).
15076
15077 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
15078
15079         * appdomain.c (set_domain_search_path): Allow this to be called if
15080         domain->setup is not yet set.
15081
15082         * loader.c (mono_method_get_index): New helper function.
15083
15084         * loader.c reflection.c: Use mono_method_get_index ().
15085
15086         * class.c (mono_class_get_method_from_name_flags): New helper method.
15087
15088         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
15089         this.
15090
15091         * class.c (mono_class_get_cctor): New helper method.
15092
15093         * string-icalls.c object.c class.c marshal.c reflection.c: Use
15094         mono_class_get_method () to look up methods.
15095
15096 2005-02-01  Miguel de Icaza  <miguel@novell.com>
15097
15098         * console-io.c: Fix the build, this should work on Windows.
15099
15100 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
15101
15102         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
15103         be set to null to keep things valid
15104
15105 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15106
15107         * icall.c: added Console 2.0 icalls.
15108         * Makefile.am: added console-io.[ch]
15109         * console-io.[ch]: internal calls for Console 2.0 API.
15110
15111 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
15112
15113         * class.c: make sure we consider all the interfaces
15114         when calculating max_interface_id (bug found by
15115         Jeroen Frijters running ikvm).
15116
15117 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
15118
15119         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
15120         valuetype fields to null.
15121
15122         * object.c (set_value): Ditto. Fixes #71669.    
15123
15124 2005-01-31  Martin Baulig  <martin@ximian.com>
15125
15126         * metadata.c (mono_metadata_has_generic_params): New public
15127         function; checks whether something is a generic method.
15128
15129 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
15130
15131         * appdomain.c: fix infinite recursion when adding assemblies.
15132
15133 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
15134
15135         * object.c: Fix small typo to return all items for Environment.
15136         GetCommandLineArgs.
15137
15138 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
15139
15140         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
15141         reflection.c: more domain and assembly-unload related fixes
15142         and memory leaks plugs.
15143
15144 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
15145
15146         * 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.
15147
15148 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
15149
15150         * loader.c (mono_method_signature): Make this method lazy
15151         (mono_get_method_from_token): Don't computate the signature here.
15152
15153         Doing this saves quite a bit of memory. I got 90 kb on starting up
15154         monodoc. It should also save some disk reads on startup.
15155
15156         * *: MonoMethod->signature might be NULL now. You *MUST* use
15157         mono_method_signature.
15158
15159 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
15160
15161         * object.c (mono_runtime_get_main_args): Return an array from the
15162         current domain here. Fixes #71938.
15163
15164 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
15165
15166         * monitor.c: formatting changes to comply with the
15167         mono coding style and remove #ifdefs from the code.
15168
15169 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
15170
15171         * metadata.c, private.h: remove some unneeded data
15172         and use a more compact representation for table schemas.
15173
15174 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
15175
15176         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
15177         to get a better distribution in hash tables.
15178         * *.c: use mono_aligned_addr_hash() where appropriate.
15179         * assembly.c: make var static.
15180
15181 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
15182
15183         * domain-internals.h: Put MonoJitInfo on a diet.
15184
15185         * domain.c: Fix a warning.
15186
15187 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15188
15189         * gc.c: rework the gc handles code to reuse handles
15190         when freed.
15191
15192 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
15193
15194         * domain.c: fixed long standing bug in mono_string_equal() which
15195         was brought to light with the ldstr changes.
15196
15197 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
15198
15199         * reflection.c: Remove warning by adding missing include for marshal.h
15200
15201 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
15202
15203         * domain.c, object.c: change the ldstr_table to hold
15204         MonoString* as keys: makes the runtime isinterned lookup
15205         faster and simplifies memory management.
15206
15207 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
15208  
15209         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
15210         possible to add imperative security checks before calling the icall.
15211         * reflection.c: Return security attributes on the original MonoMethod
15212         (and not the wrapped one). This fix permissions on icalls.
15213
15214 2005-01-25  Dick Porter  <dick@ximian.com>
15215
15216         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
15217         the check for mktime() support actually test the mktime() return
15218         value.  "Fixes" bug 71682, though the output is still different to
15219         MS.
15220
15221 2005-01-25  Martin Baulig  <martin@ximian.com>
15222
15223         * class.c (mono_class_is_assignable_from): Make this work for
15224         generic instances.
15225
15226 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
15227
15228         * marshal.c (mono_string_utf8_to_builder)
15229         (mono_string_builder_to_utf16): We might not have ownership of the
15230         string. In thise case, we need to create a new buffer.
15231
15232         * object-internals.h (mono_stringbuilder_capacity): sb->str might
15233         be null, in which case, use the default capacity.
15234
15235 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
15236
15237         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
15238         GC events to the profiler.
15239
15240 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
15241
15242         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
15243         if you don't want the GC to run.
15244
15245 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
15246
15247         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
15248         start providing a GC API and keeping different implementations in
15249         their own file.
15250         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
15251
15252 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
15253
15254         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
15255         mmap rather than allocating a huge buffer.
15256         (mono_debug_close_mono_symbol_file): Free the buffer allocated
15257         above.
15258
15259 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
15260
15261         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
15262         and CheckExecutionRights.
15263         * reflection.c|h: Keep the index of the declarative security to be 
15264         used, instead of the pointer, when AOT compiler is used. Also add 
15265         class initialization when requesting demands.
15266         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
15267         CheckExecutionRights. Both properties are now FALSE by default, and
15268         unmodifiable, unless the --security option is used.
15269
15270 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
15271
15272         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
15273         reflection.c: properly refcount images and assemblies, many leaks fixed.
15274
15275 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15276
15277         * threadpool.c: increase the timeout for threads in the thread pool to
15278         10s.  Fixes bug #67159.
15279
15280 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
15281
15282         * class-internals.h: Sun's compiler insists on explicit
15283         signed on bit fields to handle then correctly.
15284
15285 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
15286
15287         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
15288         Make the size of the array fit only the number of invalid path
15289         chars that we have.
15290
15291         * class.c (_mono_class_get): Improve the error reporting when a
15292         class referenced is not found, to assist debugging. 
15293
15294 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
15295
15296         * threads.c: fix off-by-one error.
15297         * domain.c: free data allocated in the domain.
15298
15299 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
15300
15301         * reflection.c (mono_method_body_get_object): Fill out exception info
15302         as well.
15303
15304         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
15305         structure.
15306         
15307 2005-01-19  Martin Baulig  <martin@ximian.com>
15308
15309         * loader.c (mono_get_method_constrained): Make this work again.
15310
15311 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
15312
15313         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
15314         guint16 to match the managed side.
15315
15316         * reflection.c (mono_reflection_body_get_object): Fill out local
15317         variables array.
15318
15319         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
15320         as well.
15321
15322         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
15323         'local_var_sig_token'.
15324
15325 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
15326
15327         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
15328         System.Drawing.
15329
15330         * reflection.c (mono_method_body_get_object): Handle abstract and
15331         runtime methods.
15332
15333 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
15334
15335         * marshal.c, loader.c, class-internals.h, reflection.c:
15336         store the emthod data for a wrapper in an array instead of a list.
15337
15338 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
15339
15340         * marshal.c: change the code to allocate memory more
15341         conservatively for method wrappers.
15342
15343 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
15344
15345         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
15346         fields from MonoClass to the marshal info structure where they belong.
15347
15348 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15349
15350         * class.c, object.c, class-internals.h, marshal.c: rearrange
15351         some fields and tweak some types to lower memory usage.
15352
15353 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
15354
15355         * threads.c (signal_thread_state_change): Handle the case when the
15356         target thread is the current thread.
15357
15358         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
15359
15360         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
15361         emit_ptr_to_object_conv. 
15362
15363         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
15364         marshalling. Fixes #71352.
15365
15366 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
15367
15368         * metadata.h, blob.h: move table enum to blob.h so it can be included
15369         in any header.
15370         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
15371         cut the size of MonoImage/MonoDynamicImage.
15372
15373 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
15374
15375         * profiler.c (mono_profiler_install_simple): Fix default arguments.
15376
15377 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
15378
15379         * reflection.c, reflection.h, icall.c: add a function to check
15380         if an attribute type is defined for a metadata object.
15381
15382 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
15383
15384         * object-internals.h: Added some needed fields from StringBuilder class.
15385         * marshal.c: Set the maxCapacity when creating a StringBuilder.
15386
15387 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
15388
15389         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
15390         threads before shutting down the runtime.
15391
15392         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
15393
15394 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
15395
15396         * object-internal.h, threads.c: implement stacksize and 
15397         parameterized thread start functionality (requires
15398         matching corlib). Marked broken code for later removal.
15399
15400 2005-01-12  Martin Baulig  <martin@ximian.com>
15401
15402         * class-internals.h (MonoGenericClass): Moved the `initialized'
15403         flag to MonoDynamicGenericClass, removed `init_pending'.
15404         (MonoGenericInst): Added `is_reference' flag.
15405
15406 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
15407
15408         * reflection.c (mono_image_create_pefile): Only set the pe_offset
15409         inside the MSDOS header. Fixes #71201.
15410
15411         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
15412         gc thread.
15413         (mono_domain_finalize): Ditto.
15414
15415 2005-01-12  Martin Baulig  <martin@ximian.com>
15416
15417         * class.c (mono_get_shared_generic_class): Use the cache for
15418         non-dynamic generic classes.
15419
15420         * class-internals.h (mono_class_create_generic_2): Removed
15421         function prototype, this function is now static inside class.c.
15422
15423         * class.c (mono_class_create_generic_2): Made this static, only
15424         call it from mono_class_init() and mono_class_setup_parent().
15425         (collect_implemented_interfaces_aux): Call mono_class_init() on
15426         the interfaces we collect.
15427         (mono_class_setup_vtable): Call mono_class_init (class->parent).
15428
15429 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
15430
15431         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
15432         it a real thread handle.
15433
15434         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
15435         MonoJitExceptionInfo, since each catch clause needs its own variable.
15436         
15437 2005-01-11  Dick Porter  <dick@ximian.com>
15438
15439         * image.c (mono_pe_file_open): New variant on mono_image_open()
15440         that does not set up the CLI metadata; used for FileVersionInfo so
15441         it can get the data for windows binaries too.
15442         
15443         * process.c (process_read_string_block): Don't read off the end of
15444         the StringTable block.
15445
15446         These both fix bug 70766.
15447
15448 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
15449
15450         * gc.c: set some fields to NULL at GC cleanup time.
15451         * threads.c: if we quit the main thread, call exit ().
15452
15453 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
15454
15455         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
15456
15457 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
15458
15459         * threads.h, threads.c, object.c: added accessor and settor for
15460         main_thread. Handle it specially when exiting from it: wait
15461         for other foreground threads to exit.
15462
15463 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
15464
15465         * process.c, verify.c: remove some bloat.
15466
15467 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
15468
15469         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
15470         the calling convention to cdecl under win32.
15471
15472 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
15473
15474         * object.c (mono_object_get_size): New function to get the size of
15475         an object instance.
15476
15477         * profiler.c (simple_allocation): Use above.
15478
15479 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
15480
15481         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
15482         ves_icall_System_AppDomain_getRootDomain (as it's not required to
15483         get an appdomain by it's id and we can't assume the root's id is 0).
15484         * domain-internals.h: Change the function prototype to match.
15485         * icall.c: Change the icall table for AppDomain.
15486
15487 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
15488
15489         * locales.c (string_invariant_compare_char): Only compute
15490         GUnicodeTypes in the case where we need them.  Test for ordinality
15491         first and return if so.
15492
15493         From the commit:
15494
15495                 /*
15496                  * FIXME: here we must use the information from c1type and c2type
15497                  * to find out the proper collation, even on the InvariantCulture, the
15498                  * sorting is not done by computing the unicode values, but their
15499                  * actual sort order.
15500                  */
15501
15502 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
15503
15504         * loader.c: for P/Invoke methods, allow the "Internal" shared
15505         library name to refer to the calling process symbol namespace.
15506
15507 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
15508
15509         * Makefile.am: Add the security manager to the build.
15510         * security-manager.c|h: New. Initialization of the security manager.
15511
15512 2005-01-07  Dick Porter  <dick@ximian.com>
15513
15514         * threads.c: 
15515         * monitor.c: Update thread state during Monitor and WaitHandle
15516         waits.  Fixes bug 71031.
15517
15518 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
15519
15520         * reflection.c (property_encode_signature): Correctly handle when the
15521         property has no methods.
15522
15523 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
15524
15525         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
15526         
15527         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
15528         fields from mb, not rmb. Fixes #71017.
15529
15530         * marshal.c (emit_ptr_to_str_conv): Add support for 
15531         ByValTStr -> string conversion. Fixes #71015.
15532
15533         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
15534
15535         * mempool.c (mono_mempool_contains_addr): New helper function.
15536
15537 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
15538
15539         * metadata.c (mono_metadata_compute_size): Fix size calculation of
15540         HasSematics encoded fields.
15541         
15542         * metadata.c (mono_type_to_unmanaged): Improve error message for 
15543         invalid string marshalling.
15544
15545         * metadata.c: Fix warnings.
15546         
15547 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
15548
15549         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
15550         profiler support.
15551
15552 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
15553
15554         * domain.c object.c domain-internals.h: Revert part of r38077 since the
15555         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
15556         tests.
15557
15558 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
15559
15560         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
15561         so methods containing these can be AOTed.
15562
15563 2005-01-03  Martin Baulig  <martin@ximian.com>
15564
15565         * loader.c (find_method): Removed the hack for generic instances.
15566         (method_from_memberref): If our parent is a generic instance, pass
15567         its generic type definition to find_method() and then inflate the
15568         method.
15569         (mono_get_method_constrained): Pass the generic type definition to
15570         find_method() and inflate the method later.
15571
15572         * class-internals.h (MonoStats): Added `generic_class_count'.
15573
15574         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
15575         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
15576
15577         * reflection.c (mono_custom_attrs_from_params): Don't ignore
15578         generic type definitions.
15579
15580 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
15581
15582         * loader.c icall.c: Fix warnings.
15583
15584 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
15585
15586         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
15587         blittable types. Fixes #70864.
15588
15589 2004-12-29  Martin Baulig  <martin@ximian.com>
15590
15591         * icall.c
15592         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
15593
15594         * reflection.c (mono_method_get_object): Create a
15595         "System.Reflection.MonoGenericMethod" for inflated methods; don't
15596         call mono_get_inflated_method().
15597
15598         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
15599
15600 2004-12-27  Martin Baulig  <martin@ximian.com>
15601
15602         * class-internals.h (MonoMethod): Added `is_inflated' flag.
15603         (MonoMethodInflated): Added `inflated' field.
15604
15605         * class.c (mono_class_inflate_generic_method): Don't really
15606         inflate the method here; just set the `is_inflated' flag in the
15607         MonoMethod.
15608         (mono_class_get_inflated_method): Actually inflate the method here
15609         if it's not already inflated; we use the MonoMethodInflated's new
15610         `inflated' field as a cache.
15611
15612 2004-12-26  Martin Baulig  <martin@ximian.com>
15613
15614         * class.c
15615         (inflate_generic_class): Moved some code out of inflate_generic_type().
15616         (mono_class_inflate_generic_method): If we're already inflated,
15617         inflate the context and use the declaring method; ie. make sure
15618         the declaring method of an inflated method is always the generic
15619         method definition.
15620         (mono_class_create_from_typedef): Create
15621         `class->generic_container->context->gclass'.
15622
15623 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
15624
15625         * metadata-internals.h, marshal.c, reflection.c: More
15626         MonoGHashTable->GHashTable.
15627
15628         * domain-internals.h, class.c: Change MonoGHashTable's into
15629         GHashTables for some cases where no gc stuff is used
15630
15631         All users: update apis
15632
15633 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
15634
15635         * metadata.c (builtin_types): Make this `const'. Makes this get
15636         put into the shareable section.
15637         (mono_metadata_init): Casts to make gcc happy.
15638
15639 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
15640
15641         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
15642
15643 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
15644
15645         * icall.c: Added an internal call to retrieve the position and length
15646         of assembly-level declarative security attributes (RequestMinimum, 
15647         RequestOptional and RequestRefuse). This is used by the Assembly class
15648         to re-create the corresponding permission sets.
15649
15650 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
15651
15652         * marshal.c: fix the stelemref wrapper to be type correct
15653         (and faster).
15654
15655 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
15656
15657         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
15658         to do key & 0x7fffffff. Hashtable already does this. It just
15659         results in longer code.
15660
15661 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
15662
15663         * appdomain.c: Bump corlib version.
15664         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
15665         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
15666         * reflection.c|h: Add functions to get declarative security infos
15667         (blob position and length) for assemblies, classes and methods.
15668
15669 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
15670
15671         * reflection.c: sort the constant table (bug #70693).
15672
15673 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
15674
15675         * object-internals.h, threads.c, domain.c: add accessors for
15676         the MonoThread and MonoDomain tls keys.
15677
15678 2004-12-18  Martin Baulig  <martin@ximian.com>
15679
15680         * class.c (inflate_generic_type): If we're inflating a generic
15681         instance, set `ngclass->context->container = context->container';
15682         ie. the container we inflated into.
15683
15684         * metadata.c (mono_metadata_parse_generic_param): Reflect above
15685         inflate_generic_type() changes.
15686
15687 2004-12-17  Martin Baulig  <martin@ximian.com>
15688
15689         * class-internals.h
15690         (MonoGenericClass): Replaced `MonoType *generic_type' with
15691         `MonoClass *generic_class'.  Removed `dynamic_info'; if
15692         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
15693         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
15694
15695 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
15696
15697         * exception.c (mono_exception_from_token): New helper function.
15698
15699 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
15700
15701         * assembly.c (mono_assembly_load_with_partial_name): Call 
15702         mono_assembly_loaded before invoking the preload hooks. Fixes
15703         #70564.
15704
15705         * object-internals.h (MonoThread): Change culture_info and 
15706         ui_culture_info into an array.
15707
15708         * threads.c: Cache culture info objects from more than one appdomain.
15709
15710         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
15711         current UI culture.
15712
15713 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
15714
15715         * threads.h threads.c appdomain.c: Clear the culture_info field of
15716         all threads during unloading if they point to an object in the dying
15717         appdomain.
15718
15719 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
15720
15721         * culture-info.h (TextInfoEntry): New struct
15722         * object-internals.h: sync with managed
15723         * locales.c: fill the `text_info_data' field
15724         * culture-info-tables.h: update
15725
15726 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
15727
15728         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
15729         collector.
15730
15731 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
15732
15733         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
15734         (ves_icall_ModuleBuilder_getMethodToken): Ditto
15735
15736 2004-12-12  Martin Baulig  <martin@ximian.com>
15737
15738         * mono-debug-debugger.c (write_type): If we're an enum and the
15739         builtin types have already been initialized, call mono_class_init().
15740
15741 2004-12-11  Martin Baulig  <martin@ximian.com>
15742
15743         * metadata.c (mono_metadata_load_generic_params): Added
15744         `MonoGenericContainer *parent_container' argument; automatically
15745         compute `container->is_method'; pass the correct owner to
15746         get_constraints().      
15747
15748         * reflection.c (compare_genericparam): Sort the GenericParam table
15749         according to increasing owners. 
15750
15751 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
15752
15753         * profiler.c: allow disabling the default profiler.
15754
15755 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
15756
15757         * decimal.c, icall.c: allow disabling System.Decimal support.
15758
15759 2004-12-09  Marek Safar <marek.safar@seznam.cz>
15760
15761         * reflection.c: Add support for null attribute arguments.
15762
15763 2004-12-09  Martin Baulig  <martin@ximian.com>
15764
15765         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
15766         names to get rid of compiler warnings.
15767
15768 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
15769
15770         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
15771         mono_marshal_load_type_info (). Fixes #69625.
15772         (mono_marshal_get_ptr_to_struct): Likewise.
15773
15774 2004-12-08  Martin Baulig  <martin@ximian.com>
15775
15776         * mono-debug.h: Bumped version number to 47.
15777
15778         * mono-debug-debugger.c
15779         (mono_debugger_event_handler, mono_debugger_event): Take two
15780         guint64 arguments insteed of a gpointer and a guint32.  
15781
15782 2004-12-08  Martin Baulig  <martin@ximian.com>
15783
15784         * debug-mono-symfile.h
15785         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
15786         `address' to `native_offset'.
15787
15788 2004-12-08  Martin Baulig  <martin@ximian.com>
15789
15790         * class.c (mono_class_create_from_typespec): Only inflate if we
15791         either have `context->gclass' or `context->gmethod'.
15792
15793 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
15794
15795         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
15796
15797         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
15798
15799         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
15800
15801         * reflection.c (mono_assembly_get_object): Remove the workaround put
15802         in for the release.
15803         
15804         * appdomain.c: Use the corlib_internal field from MonoAssembly.
15805
15806         * appdomain.c: Bump corlib version.
15807
15808         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
15809         be visible in other appdomains.
15810
15811 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
15812
15813         * threads.c: Interlocked inc and dec for longs were messed up,
15814         use a KISS based impl for this. Fixes 70234
15815
15816 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
15817
15818         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
15819
15820 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
15821
15822         * icall.c: fix to follow policy not to allow struct
15823         arguments in icalls.
15824
15825 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15826
15827         * process.c: make the patch that handles spaces in file paths work
15828         on mono/windows too.
15829
15830 2004-12-06  Martin Baulig  <martin@ximian.com>
15831
15832         * class.c (mono_class_create_generic): Call
15833         mono_class_setup_supertypes() if we're dynamic.
15834         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
15835
15836 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
15837
15838         * object-internals.h: Add new fields to MonoThread.
15839
15840         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15841
15842         * icall.c threads-types.h threads.c: Add new icalls.
15843
15844         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
15845
15846         * object-internals.h (MonoReflectionAssembly): Sync object layout with
15847         managed side.
15848
15849         * appdomain.c: Bump corlib version.
15850
15851         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
15852         internal assemblies. Fixes #69181.
15853
15854 2004-12-05  Martin Baulig  <martin@ximian.com>
15855
15856         * class.c (mono_class_inflate_generic_signature): Make this a
15857         no-op if `context' is NULL or we don't have any type parameters;
15858         also copy `sentinelpos'.        
15859
15860 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
15861
15862         * image.c: Add unbox_wrapper_cache.
15863
15864         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
15865
15866         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
15867         function generator.
15868         
15869         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
15870         Fixes #70173.
15871
15872         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
15873         
15874 2004-12-04  Martin Baulig  <martin@ximian.com>
15875
15876         * loader.c (mono_method_get_signature_full): New public function;
15877         like mono_method_get_signature(), but with an additional
15878         `MonoGenericContext *' argument.
15879
15880         * class.c (mono_class_inflate_generic_signature): Formerly known
15881         as inflate_generic_signature(); make this public.
15882
15883 2004-12-04  Martin Baulig  <martin@ximian.com>
15884
15885         * metadata.c
15886         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
15887         instead of a `MonoGenericContainer *'.  
15888         (mono_metadata_parse_array_full): Likewise.
15889         (mono_metadata_parse_signature_full): Likewise.
15890         (mono_metadata_parse_method_signature_full): Likewise.
15891         (mono_metadata_parse_generic_inst): Likewise.
15892         (mono_metadata_parse_generic_param): Likewise.
15893         (mono_metadata_parse_mh_full): Likewise.
15894         (mono_type_create_from_typespec_full): Likewise.
15895
15896 2004-12-03  Martin Baulig  <martin@ximian.com>
15897
15898         * class-internals.h (MonoGenericContainer): Replaced the
15899         `MonoGenericContext * pointer with a `MonoGenericContext'
15900         structure and made it the first element.
15901
15902 2004-12-03  Martin Baulig  <martin@ximian.com>
15903
15904         * class.c
15905         (inflate_generic_type): Set the `context->container' when creating
15906         a new MonoGenericContext.
15907         (mono_class_inflate_generic_method): Likewise.
15908         (mono_class_create_from_typespec): Just use `context->container'
15909         to get the container.
15910
15911         * loader.c (method_from_methodspec): Set `context->parent' from
15912         `context->container' - and if that's a method container, use its
15913         parent.  Also set the `context->container' when creating a new
15914         MonoGenericContext.
15915         (mono_get_method_from_token): Use just `context->container' to get
15916         the container.
15917
15918         * metadata.c (do_mono_metadata_parse_generic_class): Also set
15919         `gclass->context->container'.
15920
15921         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
15922         the `context->container' when creating a new MonoGenericContext.
15923
15924 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
15925
15926         * reflection.c (compare_genericparam): Sort params with identical
15927         owner by their number. Fixes gen-111 on sparc.
15928
15929 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
15930
15931         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
15932         around the domain changes.
15933
15934         * appdomain.c (mono_domain_unload): Handle the case when the thread
15935         calling Unload is itself being aborted during unloading. Fixes #70022.
15936
15937         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
15938
15939         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
15940         checkpoint_func as an icall so it gets a wrapper.
15941         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
15942         in the cross-appdomain wrappers too.
15943
15944         * threads.c (mono_thread_has_appdomain_ref): Make this public.
15945
15946         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
15947
15948         * reflection.c: Fix some memory leaks.
15949         
15950 2004-12-02  Martin Baulig  <martin@ximian.com>
15951
15952         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
15953
15954         * metadata.c (generic_class_cache): New static hashtable.
15955         (mono_metadata_lookup_generic_class): New public method.
15956
15957 2004-12-02  Martin Baulig  <martin@ximian.com>
15958
15959         * class.c (mono_class_create_from_typedef): Call
15960         mono_class_setup_parent() and mono_class_create_mono_type() before
15961         parsing the interfaces.
15962
15963 2004-12-02  Martin Baulig  <martin@ximian.com>
15964
15965         * metadata.c (generic_inst_cache): New static hashtable.
15966         (mono_metadata_lookup_generic_inst): New public function.
15967         (mono_metadata_inflate_generic_inst): New public function.
15968         (mono_metadata_parse_generic_inst): New public function.
15969         (do_mono_metadata_parse_generic_class): Use the new
15970         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
15971         since this'll also use the cache.
15972
15973         * reflection.c (mono_reflection_bind_generic_method_parameters):
15974         Use mono_metadata_lookup_generic_inst() to use the new cache.
15975
15976         * class.c (inflate_mono_type): Use
15977         mono_metadata_inflate_generic_inst() to inflate a generic
15978         instance; this'll also use the new cache.
15979
15980         * loader.c (method_from_methodspec): Use
15981         mono_metadata_parse_generic_inst() and
15982         mono_metadata_inflate_generic_inst() rather than parsing it
15983         manually, so we can use the new cache.
15984
15985 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
15986
15987         * threads.c (wait_for_tids): Do not incorrectly free threads when 
15988         the wait times out.
15989
15990 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15991
15992         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
15993         iter->args based on whether parameters are passed in registers (i.e.
15994         MONO_ARCH_REGPARMS is defined)
15995
15996 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
15997
15998         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
15999         the exception message. Fixes #70070.
16000         (method_from_methodspec): Fix warnings.
16001
16002 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16003
16004         * process.c: (complete_path) return the path quoted
16005
16006 2004-12-01  Martin Baulig  <martin@ximian.com>
16007
16008         * class-internals.h (MonoGenericInst): New structure.
16009         (MonoGenericClass): Replaced `type_argc', `type_argv' and
16010         `is_open' with `MonoGenericInst *inst'.
16011         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
16012         `is_open' with `MonoGenericInst *inst'.
16013
16014 2004-11-30  Martin Baulig  <martin@ximian.com>
16015
16016         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
16017
16018         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
16019         to `generic_class_cache'.
16020
16021         * metadata.c
16022         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
16023         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
16024         (mono_generic_inst_is_valuetype): Renamed to
16025         mono_generic_class_is_valuetype().
16026
16027         * class-internals.h
16028         (MonoGenericInst): Renamed to MonoGenericClass.
16029         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
16030         (MonoClass): Renamed `generic_inst' to `generic_class'.
16031         (MonoGenericContext): Renamed `ginst' to `gclass'.
16032
16033         * object-internals.h
16034         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
16035
16036         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
16037         mono_reflection_generic_class_initialize().
16038
16039         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
16040         now known as "System.Reflection.MonoGenericClass".
16041         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
16042
16043 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
16044
16045         * class-internals.h: Added a flag field to MonoClass to cache the
16046         declarative security attributes actions associated with the class.
16047         * domain-internals.h: Added booleans to MonoJitInfo to cache the
16048         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
16049         applicable to the JITted method.
16050         * reflection.c|h: Added functions to extract (as flags) which security
16051         actions are available (declaratively) for a method, class or assembly.
16052         * metadata.c|h: Added functions to search the declarative security
16053         table in the metadata.
16054         
16055 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
16056
16057         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
16058         EXPORTEDTYPES are already in the class name cache, so there is no
16059         need to add extra code here to look at them. Just removes a bit of
16060         cruft.
16061
16062         (ves_icall_System_Environment_get_TickCount): No need for #if
16063         WINDOWS. We already have the code in io-layer.
16064
16065 2004-11-28  Martin Baulig  <martin@ximian.com>
16066
16067         * loader.c
16068         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
16069         Fixes gen-112.cs.
16070
16071 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
16072
16073         * assembly.c (do_mono_assembly_open): Instead of having a
16074         conditional WITH_BUNDLE, incorporate support for bundles here, by
16075         having a global `bundles' variable holding a pointer to the actual
16076         bundles. 
16077
16078         (mono_register_bundled_assemblies): New API call used by the
16079         bundle code. 
16080
16081         See mkbundle.1 for details.
16082         
16083 2004-11-27  Martin Baulig  <martin@ximian.com>
16084
16085         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
16086         the vtable for generic methods.
16087
16088 2004-11-26  Martin Baulig  <martin@ximian.com>
16089
16090         * metadata.c
16091         (mono_metadata_generic_method_hash): New public function.
16092         (mono_metadata_generic_method_equal): Likewise.
16093
16094         * class-internals.h
16095         (MonoGenericContainer): Added `GHashTable *method_hash'.
16096
16097         * reflection.c (ReflectionMethodBuilder): Added
16098         `MonoGenericContainer *generic_container'.
16099         (reflection_methodbuilder_to_mono_method): Don't create a new
16100         MonoGenericContainer each time we're called.
16101         (mono_reflection_bind_generic_method_parameters): Use
16102         `container->method_hash' to cache the results so we don't create a
16103         different method if we're called several times with the same
16104         arguments.
16105
16106         * loader.c (method_from_methodspec): Use the new
16107         `container->method_hash' here, too.
16108
16109 2004-11-26  Martin Baulig  <martin@ximian.com>
16110
16111         * class.c (inflate_generic_signature): Correctly compute
16112         `res->has_type_parameters'.
16113         (mono_class_vtable): Use the `has_type_parameters' flag to
16114         determine whether we're a generic method.
16115
16116         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
16117
16118 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
16119
16120         * object.c (mono_runtime_run_main): Fix a small memory leak.
16121
16122 2004-11-25  Martin Baulig  <martin@ximian.com>
16123
16124         * class.c (set_generic_param_owner): Fixed the loop.
16125
16126 2004-11-25  Martin Baulig  <martin@ximian.com>
16127
16128         * object.c (mono_class_vtable): Don't create any JIT wrappers for
16129         generic methods.
16130
16131 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
16132
16133         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
16134         names. Fixes #69787.
16135
16136 2004-11-24  Martin Baulig  <martin@ximian.com>
16137
16138         * class.c (mono_class_create_generic_2): If we don't have a
16139         `ginst->parent', inflate `gklass->parent' to get our parent.
16140
16141 2004-11-24  Martin Baulig  <martin@ximian.com>
16142
16143         * reflection.c (compare_genericparam): Correctly sort the
16144         GenericParam table; fixes #69779.
16145
16146 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
16147
16148         * reflection.c: When writing a PE file, don't create a huge
16149         buffer in memory. Just write the arrays we have to the file.
16150         This reduces memory usage.
16151
16152         * metadata-internals.h: MonoDynamicStream pefile is no longer used
16153         globally.
16154
16155 2004-11-17  Martin Baulig  <martin@ximian.com>
16156
16157         * class.c (mono_class_init): Don't setup `class->parent' for
16158         dynamic instances; moved this to mono_class_generic_2().
16159         (mono_class_create_generic): Also set `klass->inited' for dynamic
16160         generic instances.
16161         (mono_class_create_generic_2): Don't do anything for dynamic
16162         generic instances.  Set `klass->parent' here and also call
16163         mono_class_setup_parent() here. 
16164
16165         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
16166         `MonoType *parent' argument; set `ginst->parent' before calling
16167         mono_class_create_generic_2(), so we set the correct parent.
16168
16169 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
16170
16171         * reflection.c: allow getting attributes from ModuleBuilder
16172         (used by ikvm).
16173
16174 2004-11-17  Martin Baulig  <martin@ximian.com>
16175
16176         * class.c (mono_class_create_from_typedef): If a type parameter is
16177         inherited from an outer class, set its owner to that class.
16178
16179 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
16180
16181         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
16182           for (int*) written size. This fixes bug #69592.
16183
16184 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
16185
16186         * icall.c: Added IsAuthenticodePresnet internal call.
16187         * image.c|h: New function that check a MonoImage for an Authenticode
16188         signature in the certificate PE data directory.
16189         * security.c|h: New internal call to ask the runtime if an 
16190         Authenticode signature seems referenced in the PE header.
16191
16192 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
16193
16194         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
16195
16196         * reflection.c (mono_image_create_pefile): Free the assembly streams
16197         after writing out the assembly file.
16198
16199         * object.c (mono_runtime_run_main): Fix small memory leak.
16200
16201         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
16202         property access modifiers. Fixes #69389.
16203
16204 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
16205
16206         * domain.c, object.c, object-internals.h, domain-internals.h,
16207         object.h, marshal.c: keep dynamic code info per domain.
16208
16209 2004-11-15  Martin Baulig  <martin@ximian.com>
16210
16211         * class.c (mono_type_get_name_recurse): Put type arguments in
16212         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
16213         see bug #68387.
16214
16215 2004-11-15  Martin Baulig  <martin@ximian.com>
16216
16217         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
16218         (mono_class_setup_vtable): When computing `the_cname' for a
16219         generic instance, don't include the namespace since we'd otherwise
16220         add it twice.
16221
16222 2004-11-15  Martin Baulig  <martin@ximian.com>
16223
16224         * class.c (mono_class_create_generic): Changed return type to void.
16225         (mono_class_create_generic_2): New public function; setup
16226         `class->method', `class->field' and `class->interfaces' here
16227         instead of in mono_class_init().
16228
16229         * class.h (mono_class_create_generic): Moved to class-internals.h.
16230
16231 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
16232
16233         * reflection.c (mono_image_create_pefile): take a file HANDLE.
16234         rather than writing to memory, write to this file. Right now,
16235         we are just writting into a buffer, and copying that. However
16236         we can avoid the buffer later.
16237
16238         (mono_dynamic_stream_reset): new function
16239
16240         * icall.c, object-internals.h: update for the above.
16241
16242 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
16243
16244         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
16245         have been using gc'd memory. First it is slower, unlikely
16246         the comment in the source code said, secondly, it increases
16247         our footprint to do it in the gc.
16248
16249         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
16250         the method so that it does not have to copy to managed code.
16251
16252 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
16253
16254         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
16255
16256 2004-11-12  Martin Baulig  <martin@localhost>
16257
16258         * reflection.c (mono_image_create_token): Allow generic method
16259         definitions here, since they may appear in an `.override'; see
16260         gen-98/gen-99 for an example.
16261
16262 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
16263
16264         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
16265         #69365.
16266
16267         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
16268         descriptive.
16269
16270 2004-11-11  Martin Baulig  <martin@ximian.com>
16271
16272         * class.c (mono_class_setup_vtable): In an explicit interface
16273         implementation, the method name now includes the arity.
16274
16275 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
16276
16277         * object.c (mono_array_full_copy): Fix warning.
16278
16279 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
16280
16281         * appdomain.c: Removed look_for_method_by_name(). Use the new method
16282         mono_class_get_method_from_name() instead.
16283         
16284         * class-internals.h: Added two new types of wrappers. 
16285         Added MonoRemotingTarget enum. Added new trampoline function type, which
16286         takes an additional MonoRemotingTarget value as parameter, so it is
16287         possible to request a trampoline for a specific target.
16288         
16289         * class.c: Added new mono_class_get_method_from_name() method.
16290         
16291         * class.h: In MonoRemoteClass, we can have now to vtables, one for
16292         general remoting sinks and one specific for cross domain calls.
16293         
16294         * debug-helpers.c: Added new wrapper names.
16295         
16296         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
16297         of a remote class.
16298         
16299         * image.c: Porperly delete value objects form the remoting invoke hashtable.
16300         
16301         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
16302         with several other methods (mono_marshal_get_xappdomain_dispatch,
16303         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
16304         and others) can generate a fast remoting wrapper for cross domain calls.
16305         More information can be found in docs/remoting.
16306         Other changes: Removed mono_find_method_by_name, and used
16307         mono_class_get_method_from_name instead.
16308         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
16309         is stored in the remoting invoke hashtable.
16310         
16311         * marshal.h: published the new method for getting the xdomain wrapper,
16312         and also added a method for getting the adequate wrapper for a given
16313         method and target.
16314         
16315         * object-internals.h, object.c: Added a couple of methods for capying and
16316         cloning arrays.
16317         Modified mono_install_remoting_trampoline, which takes the new remoting
16318         trampoline that has a remoting target as parameter.
16319         mono_class_proxy_vtable now also takes a remoting target as parameter, and
16320         will return the most suitable vtable for the target.
16321         Added mono_remote_class_vtable, which returns the vtable of a remote class
16322         (which can be the normal remoting vtable or the xdomain vtable).
16323         
16324         * threads.c: the xdomain invoke and dispatch wrappers must also be
16325         protected against interruptions.
16326
16327 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16328
16329         * icall.c: use memmove in BlockCopyInternal when the source and
16330         destination arrays are the same.
16331
16332 2004-11-09  Martin Baulig  <martin@ximian.com>
16333
16334         * class-internals.h (MonoGenericContainer): Removed `method' and
16335         `signature', replaced them with `is_method' and `is_signature'
16336         flags.  Added `context'.
16337
16338         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
16339         instead of a `MonoGenericContainer *'.
16340
16341         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
16342         for dynamic type parameters.
16343         (mono_metadata_load_generic_params): Setup `container->context'.
16344
16345         * reflection.c (mono_reflection_setup_generic_class): Setup
16346         `tb->generic_container->context'.
16347         (do_mono_reflection_bind_generic_parameters): Use
16348         mono_class_inflate_generic_type() to correctly inflate types,
16349         rather than using our own hack just for MONO_TYPE_VAR.
16350
16351 2004-11-09  Martin Baulig  <martin@ximian.com>
16352
16353         * class.c (mono_class_inflate_generic_method): Small fix; don't
16354         crash here.
16355
16356         * icall.c
16357         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
16358         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
16359         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
16360         (ves_icall_Type_BindGenericParameters): Likewise.
16361         (ves_icall_Type_get_IsGenericInstance): Likewise.
16362         (ves_icall_Type_GetGenericParameterPosition): Likewise.
16363         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
16364         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
16365         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
16366
16367 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
16368
16369         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
16370         assembly versions and public key tokens. Fixes #69113.
16371
16372 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
16373
16374         * metadata.c: fix bug introduced with the type cache changes
16375         on 2004-11-06.
16376
16377 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
16378
16379         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
16380         the MonoClass pointer instead of the token in exception clauses.
16381         * reflection.c: updates for the above and make the code not depend
16382         on the structure of MonoExceptionClause.
16383
16384 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
16385
16386         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
16387         Add support for dynamic assemblies. Fixes #69114.
16388
16389         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
16390
16391 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
16392
16393         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
16394         since most only those methods use it. the code member of
16395         MonoMethodPInvoke was dead, so that can be removed too. Also,
16396         remove inline_count (again, not used), and move slot so that it
16397         can share bits with some other flags. This saves 8 bytes in the
16398         structure and gives us about 50 kb back for mcs helloworld.cs
16399
16400         * *.[ch]: Do naming changes for the above.
16401
16402         * loader.c (mono_method_get_header): Lazily init the header
16403         on first access.
16404         (mono_get_method_from_token): don't init the header here
16405         (mono_free_method): the header may never be allocated
16406
16407         Overall, this saves 150 kb of unmanaged allocations
16408         for mcs helloworld.cs. That accounts for 10% of the unmanaged
16409         memory at runtime.
16410         
16411         * loader.c, loader.h (mono_method_get_header): new accessor.
16412
16413         * *.[ch]: use the above method. Prepares us to lazily load
16414         the header.
16415
16416         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
16417         three warnings, which are actual bugs (see 69206).
16418
16419         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
16420         unused. Saves a cool 4 bytes / method.
16421
16422 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
16423
16424         * metadata.c (builtin_types): Add types for System.Object here.
16425         (mono_metadata_parse_type_full): Cache MonoType*'s that are
16426         for a class or valuetype from klass->this_arg or klass->byval_arg.
16427
16428         On mcs for a hello world, this gets us down from 21836 MonoType's
16429         to 14560.
16430
16431         (mono_metadata_free_type): Account for the above change.
16432
16433 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
16434
16435         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
16436         exception instead of asserting if name is null.
16437         (ves_icall_System_AppDomain_GetData): Ditto.
16438
16439 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
16440
16441         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
16442         EnumBuilder.
16443
16444         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
16445         Return NULL when the domain does not have entry_assembly set.
16446
16447         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
16448         Add a 'resource_modules' argument.
16449         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
16450
16451         * reflection.c (mono_reflection_create_runtime_class): Move setting
16452         of wastypebuilder here, so mono_get_type_object () returns a MonoType
16453         for enums too.
16454
16455         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
16456         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
16457         Throw an ArgumentNullException if 'ptr' is null.
16458
16459         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
16460         assemblies here. Fixes #69020.
16461
16462 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
16463
16464         * reflection.c (build_compressed_metadata): Fix the previous patch for
16465         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
16466         the stack.
16467
16468 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
16469
16470         * assembly.c (mono_assembly_names_equal): Allow a match if one of
16471         the cultures is false. Fixes #69090.
16472
16473         * reflection.c (build_compressed_metadata): Fix invalid memory read 
16474         detected by valgrind.
16475         
16476         * reflection.c (mono_reflection_get_type): Avoid triggering a 
16477         TypeResolve multiple times for the same type. Fixes #65577.
16478
16479 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
16480
16481         * marshal.c: Avoid using ldftn to call managed functions. It is
16482         much slower than just a call.
16483
16484         * reflection.c (mono_module_get_object): free the basename we
16485         allocate here from glib.
16486         
16487         * reflection.c (ensure_runtime_vtable): make sure to free
16488         overrides.  Also, we were allocating an array of MonoMethod not an
16489         array of MonoMethod*.
16490
16491         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
16492
16493         * image.c (mono_image_close): free image->guid here.
16494
16495 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
16496
16497         * reflection.c: Fix some spec conformance issues with the PE file
16498         structures so mcs compiled apps run on the Net 2.0 beta.
16499
16500 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
16501
16502         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
16503         Implement this. Fixes #67264.
16504
16505         * debug-helpers.h debug-helpers.c marshal.c: Move 
16506         mono_find_method_by_name to debug-helpers.c.
16507
16508 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
16509
16510         * object.c (mono_release_type_locks): type_initialization_hash is
16511         a GHashTable.
16512
16513         * reflection.c object.c object-internals.h: Fix warnings.
16514
16515         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
16516         without accessors. Fixes #61561.
16517
16518         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
16519         application base from the root domain if not set. Fixes #65641.
16520         (mono_runtime_init): Fix warning.
16521
16522 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16523
16524         * appdomain.c: call mono_thread_pool_init.
16525         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
16526         of worker threads based on the number of CPUs and the environment
16527         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
16528         for non-windows (windows) systems.
16529
16530 2004-10-27  Chris Toshok  <toshok@ximian.com>
16531
16532         * mono-debug-debugger.c (write_class): don't call mono_class_init
16533         here, as even with the check for (!klass->init_pending), we get
16534         into a situation where we're hitting cycles in class
16535         initialization.  Fixes #68816.
16536
16537 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
16538
16539         * image.c: Avoid overwriting values in the loaded_images_hash when an
16540         assembly is loaded multiple times. Fixes #61152.
16541
16542         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
16543         so multiple satellite assemblies for the same name can be loaded.
16544         Fixes #68259.
16545
16546         * mono_domain_assembly_preload: Actually return the loaded assembly, 
16547         not NULL.
16548
16549         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
16550         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
16551
16552         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
16553         pending finalizers are not invoked after the appdomain has been 
16554         unloaded. Fixes #67862.
16555
16556 2004-10-22  Martin Baulig  <martin@ximian.com>
16557
16558         * mono-debug-debugger.c
16559         (mono_debugger_runtime_invoke): Don't box valuetypes.
16560
16561 2004-10-22  Chris Toshok  <toshok@ximian.com>
16562
16563         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
16564         don't hide private methods.
16565
16566 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
16567
16568         * icall.c: Allows the runtime to "share" (when known) the public key
16569         token of an assembly. This avoid the need to recalculate the token 
16570         (from the public key) in managed code.
16571
16572 2004-10-21  Chris Toshok  <toshok@ximian.com>
16573
16574         * debug-helpers.c (append_class_name): argh, revert last patch.
16575         
16576 2004-10-21  Chris Toshok  <toshok@ximian.com>
16577
16578         * debug-helpers.c (append_class_name): use '+' as the delimiter,
16579         not '/', so that it matches what the debugger uses to look up
16580         methods.
16581
16582 2004-10-21  Martin Baulig  <martin@ximian.com>
16583
16584         * mono-debug-debugger.c (mono_debugger_throw_exception): New
16585         public method; this is called each time an exception is thrown and
16586         allows the debugger to use exception catch points.
16587
16588 2004-10-21  Martin Baulig  <martin@ximian.com>
16589
16590         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
16591         the stack pointer and the exception object in some struct and pass
16592         that to the debugger.
16593
16594 2004-10-21  Chris Toshok  <toshok@ximian.com>
16595
16596         * mono-debug-debugger.c (do_write_class): add instance/static
16597         event support.  We don't expose "raise" or "other" yet.
16598         (event_is_static): new method.
16599
16600 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
16601
16602         * mono-debug-debugger.c
16603         (mono_debugger_handle_exception): Remove
16604         bogus return value for fussy compilers.
16605
16606 2004-10-20  Martin Baulig  <martin@ximian.com>
16607
16608         * mono-debug-debugger.c
16609         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
16610         (mono_debugger_handled_exception): Likewise.
16611
16612 2004-10-20  Martin Baulig  <martin@ximian.com>
16613
16614         * mono-debug-debugger.h (MonoDebuggerEvent): Added
16615         MONO_DEBUGGER_EVENT_EXCEPTION.
16616
16617         * mono-debug-debugger.c (mono_debugger_handle_exception): New
16618         public function to send the debugger a notification for an
16619         exception and inform it about a catch/finally clause.
16620
16621 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
16622
16623         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
16624         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
16625         fix 2.95 build. 
16626
16627         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
16628
16629 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
16630
16631         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
16632         marshalled as [In,Out]. Fixes #58325.
16633
16634 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
16635
16636         * reflection.c (mono_method_body_get_object): Implement some fields.
16637
16638 2004-10-12  Martin Baulig  <martin@ximian.com>
16639
16640         * reflection.c (mono_reflection_bind_generic_parameters): Small
16641         fix, correctly retrieve our parent from a generic instance.
16642
16643 2004-10-12  Martin Baulig  <martin@ximian.com>
16644
16645         * metadata.c (mono_metadata_generic_param_equal): We always have
16646         an owner.
16647
16648         * class.c
16649         (mono_class_from_generic_parameter): We need to have an owner.
16650         (my_mono_class_from_generic_parameter): Likewise.
16651
16652         * reflection.c (mono_reflection_setup_generic_class): Renamed to
16653         mono_reflection_create_generic_class() and added a new
16654         mono_reflection_setup_generic_class().  
16655         (mono_reflection_initialize_generic_param): If we're a nested
16656         generic type and inherited from the containing class, set our
16657         owner to the outer class.
16658
16659 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
16660
16661         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
16662
16663         * reflection.c (mono_method_body_get_object): New function to create
16664         a MethodBody object.
16665
16666         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
16667
16668 2004-10-11  Martin Baulig  <martin@ximian.com>
16669
16670         * metadata.c (_mono_metadata_type_equal): Renamed to
16671         do_mono_metadata_type_equal() and made static.
16672
16673 2004-10-11  Martin Baulig  <martin@ximian.com>
16674
16675         * appdomain.c: Bump corlib version number to 28.
16676
16677 2004-10-10  Martin Baulig  <martin@ximian.com>
16678
16679         * class-internals.h
16680         (MonoGenericInst): Added `MonoGenericContainer *container'.
16681         (MonoGenericMethod): Likewise.
16682         (MonoGenericContext): Likewise.
16683         (MonoGenericParam): Added `MonoGenericContainer *owner'.
16684
16685         * metadata.c
16686         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
16687         (do_mono_metadata_parse_generic_inst): Likewise.
16688         (mono_metadata_parse_type_full): New public method.  This is the actual
16689         mono_metadata_parse_type() implementation - with an additional
16690         `MonoGenericContainer *' argument.
16691         (mono_metadata_parse_array_full): Likewise.
16692         (mono_metadata_parse_signature_full): Likewise.
16693         (mono_metadata_parse_method_signature_full): Likewise.
16694         (mono_metadata_parse_mh_full): Likewise.
16695         (mono_type_create_from_typespec): Likewise.
16696         (mono_metadata_interfaces_from_typedef_full): New public method;
16697         this is similar to the other _full() methods, but we take a
16698         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
16699         (mono_metadata_parse_generic_param): Take an additional
16700         `MonoGenericContainer *' argument and lookup the MonoGenericParam
16701         from that container.
16702         (mono_metadata_generic_param_equal): New static method to compare
16703         two type parameters.
16704         (_mono_metadata_type_equal): New static method; takes an
16705         additional `gboolean signature_only' argument - if true, we don't
16706         compare the owners of generic parameters.
16707         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
16708         with a TRUE argument - do a signature-only comparision.
16709
16710         * loader.c: Use the new _full() methods and pass the
16711         MonoGenericContainer to them.
16712
16713         * object-internals.h (MonoReflectionTypeBuilder): Added
16714         `MonoGenericContainer *generic_container' field.
16715         (MonoReflectionMethodBuilder): Likewise.
16716
16717 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
16718
16719         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
16720         case initial images of dynamic assemblies.
16721
16722         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
16723
16724         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
16725
16726         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
16727         length of event->other array.
16728         (typebuilder_setup_events): Ditto.
16729
16730         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
16731         'assembly_by_name' and add an 'assemblies' list.
16732
16733         * assembly.h assembly.c: Add a new search hook for determining whenever
16734         an assembly is already loaded. Use this instead of searching in the
16735         loaded_assemblies list.
16736
16737         * domain.c appdomain.c: Implement the new search hook so loaded 
16738         assemblies are now scoped by appdomain. Fixes #67727.
16739
16740 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
16741
16742         * threads.c (mono_thread_attach): Initialize synch_lock field so
16743         mono_thread_detach works again.
16744
16745         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
16746         'lib' too. Fixes #63130.
16747
16748 2004-10-06  Jackson Harper  <jackson@ximian.com>
16749
16750         * culture-info-tables.h: regenerated.
16751
16752 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
16753
16754         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
16755         implemented by other interfaces in the result. Fixes #65764.
16756         
16757         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
16758         Handle unloadable modules without crashing.
16759
16760         * image.c (load_modules): Revert the previous patch since modules must
16761         have a fixed index inside the array.
16762         
16763         * image.c (load_modules): Don't include native modules in the modules
16764         array.
16765
16766 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
16767
16768         * reflection.h: Add param_defaults field.
16769
16770         * reflection.c: Add support for parameter defaults in dynamic methods.
16771         Fixes #64595.
16772
16773         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
16774         an empty string when a type has no namespace. Fixes #64230.
16775
16776 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
16777
16778         * tabledefs.h: Added "internal" security actions to support non-CAS
16779         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
16780         Note: they do not seems to be used anymore in 2.0 (new metadata format)
16781
16782 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
16783
16784         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
16785         constructor of abstract class. Fixes #61689.
16786
16787 2004-10-04  Martin Baulig  <martin@ximian.com>
16788
16789         * class-internals.h (MonoGenericContainer): New type.
16790         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
16791         `MonoGenericContainer *generic_container'.
16792         (MonoClass): Replaced `gen_params' and `num_gen_params' with
16793         `MonoGenericContainer *generic_container'.
16794
16795         * metadata.c (mono_metadata_load_generic_params): Return a
16796         `MonoGenericContainer *' instead of a `MonoGenericParam *';
16797         removed the `num' argument.
16798
16799 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
16800
16801         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
16802         for dynamic images.
16803
16804         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
16805         machine fields.
16806
16807         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
16808
16809         * reflection.c: Save pe_kind and machine values into the generated
16810         image file.
16811
16812         * appdomain.c: Bump corlib version number.
16813
16814         * object-internals.h: Reorganize layout of LocalBuilder.
16815
16816         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
16817         New helper function.
16818
16819         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
16820         created MonoType for dynamic types. Fixes #66180.
16821
16822 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
16823
16824         * threadpool.c: the ares hashtable needs a critical section around it.
16825         this prevents some nasty segfaults
16826
16827 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
16828
16829         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
16830         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
16831         bug 67324).
16832         
16833 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
16834
16835         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
16836         
16837 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
16838
16839         * image.c: Always canonicalize image file names, to avoid loading
16840         the same assembly twice when referenced using a relative path.
16841
16842 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
16843
16844         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
16845
16846         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
16847
16848         * marshal.c: Fix warnings.
16849
16850 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
16851
16852         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
16853         attempting to marshal the delegate_trampoline as the method_addr.
16854         This patch has a static hashtable of marshalled delegates so that 
16855         we can map delegate_trampoline addresses back to delegates.  This
16856         allows a delegate passed to managed code to be passed back into native
16857         code.  Fixes #67039
16858
16859 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
16860
16861         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
16862
16863         * reflection.c (method_encode_code): Align method headers properly.
16864         Fixes #66025.
16865
16866 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
16867
16868         * marshal.c: In the runtime invoke wrapper, reset the abort
16869         exception if it is cached. This avoids the automatic rethrowal of 
16870         the exception after the catch of the wrapper. Also check for pending
16871         interruptions before calling the managed method. This is done using
16872         the new method emit_thread_force_interrupt_checkpoint, since the
16873         normal checkpoint method is ignored when running the invoke wrapper.
16874         * object.c: If the abort exception is rethrown, set the abort_exc
16875         field of the thread, so it will be rethrown aftere every catch.
16876         * threadpool.c: Only run an interruption checkpoint if what has been
16877         requested is a stop of the thread (aborts will be ignored).
16878         * threads.c: By default, a thread will now never be interrumped while
16879         running the runtime invoke wrapper (this ensures that runtime_invoke
16880         will always return to the caller if an exception pointer is provided).
16881         There is a new special method mono_thread_force_interruption_checkpoint()
16882         to force an interruption checkpoint even if running a protected
16883         wrapper, which is used by the same runtime invoke wrapper to do a check
16884         at a safe point.
16885
16886 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
16887
16888         * object.c, object-internals.h: Implemented mono_release_type_locks,
16889         which releases the cctor locks held by a thread.
16890         * threads.c, threads.h: In thread_cleanup, release cctor locks held
16891         by a thread. Added mono_thread_exit() method to be used to safely stop
16892         a thread.
16893
16894 2004-09-28  Raja R Harinath  <rharinath@novell.com>
16895
16896         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
16897         Move null check before dereference.  Avoid indexing beyond the end
16898         of the 'modules' array.
16899
16900 2004-09-28  Raja R Harinath  <rharinath@novell.com>
16901
16902         * metadata-internals.h (MonoImage): Add module_count field.
16903         * image.c (load_modules): Set image->module_count.
16904         (mono_image_load_file_for_image): Use image->module_count.
16905         * reflection.c (mono_image_load_module): Append to image->modules array 
16906         of dynamic assembly.
16907         (mono_module_get_object): Fix loop to actually increment index.
16908         Use image->module_count.
16909         * assembly.c (mono_assembly_load_references): Use image->module_count.
16910         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
16911         Likewise.
16912
16913 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
16914
16915         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
16916         Avoid assert on generic types.
16917
16918 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
16919
16920         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
16921
16922         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
16923
16924         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
16925         function to convert a MarshalSpec structure to its managed counterpart.
16926
16927         * reflection.c: Fix warnings.
16928         
16929         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
16930         field.
16931
16932         * icall.c (mono_create_icall_signature): Fix build.
16933
16934 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
16935
16936         * icall.c: Add MakePointType icall.
16937
16938         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
16939         warnings.
16940
16941 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16942
16943         * threadpool.c: reuse allocated slots in the queue.
16944
16945 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
16946
16947         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
16948
16949         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
16950
16951         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
16952         previous change.
16953
16954         * tabledefs.h: Add constants for pinvoke attributes BestFit and
16955         ThrowOnUnmappableChar.
16956
16957         * icall.c (ves_icall_Type_GetPacking): New icall.
16958
16959 2004-09-24  Martin Baulig  <martin@ximian.com>
16960
16961         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
16962
16963 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16964
16965         * appdomain.c:
16966         (mono_domain_set): allow setting a domain that is being unloaded.
16967         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
16968         being unloaded.
16969
16970 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
16971
16972         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
16973         the GetCustomAttributes icall.
16974
16975 2004-09-23  Martin Baulig  <martin@ximian.com>
16976
16977         * object-internals.h (MonoReflectionGenericParam): Replaced
16978         'has_ctor_constraint', `has_reference_type' and `has_value_type'
16979         with `guint32 attrs'.
16980
16981 2004-09-23  Martin Baulig  <martin@ximian.com>
16982
16983         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
16984
16985 2004-09-23  Martin Baulig  <martin@ximian.com>
16986
16987         * object-internals.h (GenericParameterAttributes): New enum.
16988
16989 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
16990
16991         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
16992         
16993         * class.c (init_events): Fill out event->other field.
16994
16995         * class.c: Fix warnings.
16996
16997         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
16998
16999 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
17000
17001         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
17002         walk which doesn't supply the IL offset.
17003
17004 2004-09-22  Martin Baulig  <martin@ximian.com>
17005
17006         * reflection.c (mono_reflection_setup_internal_class): If we're
17007         System.ValueType, System.Object or System.Enum, set
17008         `klass->instance_size' and create the vtable.
17009         (mono_reflection_create_internal_class): If we're an enum type,
17010         get the base class from our current corlib.
17011
17012 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
17013
17014         * reflection.h (MonoResolveTokenError): New type.
17015
17016         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
17017         icall.
17018
17019         * icall.c: Add an 'error' argument to the ResolveToken icalls.
17020
17021 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
17022
17023         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
17024         Support also calling constructors, but only for already allocated objects.
17025
17026 2004-09-17  Geoff Norton <gnorton@customerdna.com>
17027
17028         * reflection.c (type_get_qualified_name): If the klass is null
17029         return the typename to avoid a NullRefEx.
17030         (encode_cattr_value): Get the qualified name of the boxed type,
17031         not the underlying enumtype.  Fixes #62984.
17032
17033 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
17034
17035         * marshal.c: Fix problems with previous checkin.
17036
17037 2004-09-21    <vargaz@freemail.hu>
17038
17039         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
17040         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
17041
17042         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
17043
17044 2004-09-21  Geoff Norton <gnorton@customerdna.com>
17045
17046         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
17047         should only return a type for pointers, arrays, and passbyref types.
17048         Fixes bug #63841.
17049
17050 2004-09-21  Martin Baulig  <martin@ximian.com>
17051
17052         * domain.c (mono_debugger_check_runtime_version): New public
17053         function.
17054
17055         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
17056
17057 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
17058
17059         * reflection.c: Added missing sort to the declarative security 
17060         attributes table. MS implementation stops seeing the attributes if the
17061         token number regress in the table (as shown by ildasm and permview).
17062
17063 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
17064
17065         * object-internals.h (MonoReflectionModule): Add 'token' field.
17066         
17067         * reflection.c (mono_reflection_get_token): Add support for Module
17068         and Assembly.
17069         (mono_module_get_object): Set 'token' field.
17070         (mono_module_file_get_object): Set 'token' field.
17071
17072         * icall.c: Add new Assembly and Module icalls.
17073
17074         * appdomain.c: Bump corlib version.
17075
17076 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
17077
17078         * loader.h loader.c class.h class.c: Add helper functions for obtaining
17079         tokens of metadata objects.
17080
17081         * reflection.h reflection.c (mono_reflection_get_token): New function
17082         to obtain the token of a metadata object.
17083
17084         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
17085
17086 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
17087
17088         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
17089         
17090         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
17091
17092 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
17093
17094         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
17095         * object-internals.h: Added 3 MonoArray* members to MonoReflection
17096         AssemblyBuilder to access the permissions set in the class lib.
17097         * reflection.c: Added security attributes encoding step in 
17098         mono_image_build_metadata.
17099         * tabledefs.h: Added new security actions defined in 2.0:
17100         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
17101
17102 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
17103
17104         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
17105         macro parameter.
17106
17107 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
17108  
17109         * locales.c: nullify the ICU_collator member of CompareInfo when it is
17110           finalized. There where random SIGSEVs at program termination, when
17111           an object being finalized was trying to do a string comparison and
17112           the current culture was already finalized.
17113  
17114 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17115
17116         * threads.c: call thread_cleanup before finishing the thread if we get
17117         there.
17118
17119 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
17120
17121         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
17122         assemblies from the parent. Fixes #65665.
17123
17124 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
17125
17126         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
17127         modifiers.
17128
17129 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
17130
17131         * reflection.h: add prototype for mono_get_dbnull_object
17132         * reflection.c: add prototypes for get_default_param_value_blobs 
17133         and mono_get_object_from_blob for fussier compilers
17134
17135 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
17136  
17137         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
17138         false deadlock checks in class initialization.
17139  
17140 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
17141
17142         * image.c (mono_image_addref): Fix comment.
17143
17144         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
17145         possible.
17146
17147 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
17148
17149         * reflection.c (mono_param_get_objects): Modified to return
17150         ParameterInfo.DefaultValue object.
17151
17152         (get_default_param_value_blobs):
17153         (mono_get_object_from_blob):
17154         (mono_get_dbnull_object): New helper routines. 
17155
17156         * object.c (mono_get_constant_value_from_blob): New helper routine
17157         carved out from get_default_field_value ()
17158
17159         * object-internals.h (mono_get_constant_value_from_blob): Added
17160         function declaration.
17161
17162 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
17163
17164         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
17165         referenced assemblies. Fixes #62135.
17166
17167         * exception.h exception.c (mono_get_exception_file_not_found2): New
17168         helper function.
17169
17170 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
17171
17172         * class.h class.c: Add mono_type_get_underlying_type ().
17173
17174 2004-09-09  Geoff Norton <gnorton@customerndna.com>
17175
17176         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
17177         Fix GetTypes() to support dynamically created assemblies.
17178
17179 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
17180
17181         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
17182         
17183         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
17184         previous patch.
17185
17186         * reflection.h reflection.c loader.c: Allow dynamic construction of
17187         pinvoke methods. Fixes #65571.
17188         
17189         * reflection.c (mono_reflection_get_type): Revert previous change since
17190         it causes regressions.
17191
17192 2004-09-08  Martin Baulig  <martin@ximian.com>
17193
17194         * class.c (class_compute_field_layout): Don't call
17195         mono_class_layout_fields() for open generic instances.
17196
17197 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
17198         * threads.c appdomain.c: fix typo in GC macro
17199
17200 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17201
17202         * threads.c: don't call mono_thread_detach() in start_wrapper(),
17203         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
17204
17205 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
17206
17207         * image.c (mono_image_close): Applied patch from 
17208         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
17209         assembly is loaded multiple times from data.
17210         
17211         * image.c (mono_image_open): Fix warning.
17212
17213 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17214
17215         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
17216         once. Fixes #58334.
17217         
17218         * reflection.c (mono_reflection_create_runtime_class): Initialize
17219         klass->nested_classes. Fixes #61224.
17220
17221 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
17222
17223         * threads.c: sched_yield() on exit, to allow threads to quit.
17224
17225 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17226
17227         * object.c (mono_unhandled_exception): Remove leftover debug code.
17228
17229 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
17230
17231         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
17232
17233 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17234
17235         * marshal.c (emit_marshal_array): Really null terminate string arrays.
17236         
17237         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
17238
17239 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17240
17241         * marshal.c (emit_marshal_array): Null terminate string arrays.
17242         
17243         * marshal.c (raise_auto_layout_exception): Fix warning.
17244
17245         * reflection.c (mono_param_get_objects): Initialize the default value
17246         with DBNull.Value, not null. Fixes #62123.
17247
17248 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
17249
17250         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
17251         throw an exception with a cute explanation.
17252
17253 2004-09-06  Dick Porter  <dick@ximian.com>
17254
17255         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
17256         Close the new process's thread handle, as we don't use it.  The
17257         handle stays around forever otherwise.
17258
17259 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17260
17261         * object.c (arith_overflow): Fix warning.
17262
17263         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
17264         calling conventions in method refs. Fixes #65352.
17265
17266         * reflection.c: Fix warnings.
17267
17268 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
17269
17270         * icall.c: Add a new icall for Array.Clear
17271
17272 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
17273
17274         * object.c: When allocating an array, we have to throw
17275         an overflow exception if any of the lengths are < 0.
17276
17277 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17278
17279         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
17280         properly. Also move implementation of string array marshalling to 
17281         managed code. Fixes #42316.
17282
17283 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17284
17285         * assembly.c: provide more information when loading an assembly fails.
17286
17287 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17288
17289         * filewatcher.c: don't expect the development fam package to be
17290         installed.
17291
17292 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
17293
17294         * marshal.c: Make a copy of the signature cookie since it will be
17295         freed by the caller.
17296         
17297         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
17298
17299         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
17300
17301         * metadata.c (mono_metadata_free_marshal_spec): New function to free
17302         marshal specs.
17303
17304         * marshal.c: More refactoring.
17305         
17306         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
17307         smaller functions.
17308
17309 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
17310
17311         * object.c: In mono_message_invoke, fill the output parameter array after
17312           calling the managed method (it was done before the call). This fixes
17313           bug #59299.
17314
17315 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
17316
17317         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
17318         as well.
17319
17320 2004-09-02  Martin Baulig  <martin@ximian.com>
17321
17322         * class.c (mono_class_instance_size): Don't allow generic type
17323         definitions or open generic instances.
17324         (mono_class_array_element_size): If we're a value type, call
17325         mono_class_instance_size() on the original class.
17326
17327         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
17328         handle generic instances.
17329
17330         * mono-debug-debugger.c (write_type): Handle generic instances
17331         like classes.
17332
17333 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
17334
17335         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
17336         the allocation request fails. Fixes #65089.
17337
17338         * object.c (mono_runtime_free_method): Do not call mono_free_method.
17339         
17340         * object.c (mono_runtime_free_method): New function to free a dynamic
17341         method.
17342
17343         * marshal.c (mono_delegate_free_ftnptr): New function to free the
17344         delegate trampoline.
17345
17346         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
17347         with hasthis as dynamic,
17348
17349         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
17350
17351         * domain.c (mono_jit_info_table_remove): New function to remove an
17352         entry from the jit info table.
17353
17354         * class-internals.h (MonoMethod): Add 'dynamic' field.
17355
17356         * loader.c: Fix warnings.
17357
17358 2004-09-01  Martin Baulig  <martin@ximian.com>
17359
17360         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
17361         instead of mono_debugger_lock() because the latter one is a no-op
17362         unless running in the debugger.
17363
17364 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
17365
17366         * class.c (class_compute_field_layout): Classes with auto-layout or
17367         reference fields are not blittable.
17368         
17369 2004-09-01  Dick Porter  <dick@ximian.com>
17370
17371         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
17372         mono_image_get_filename() to get the assembly location.
17373
17374         * icall.c:
17375         * metadata.h: Fix compile warnings
17376
17377 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
17378
17379         * class.c (class_compute_field_layout): System.Object is blittable.
17380
17381         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
17382         as in/out. Fixes #59909.
17383
17384 2004-09-01  Martin Baulig  <martin@ximian.com>
17385
17386         * metadata.h (MONO_TYPE_ISREFERENCE): Call
17387         mono_metadata_generic_inst_is_valuetype() if we're a generic
17388         instance to check whether our underlying type is a reference type.
17389
17390 2004-09-01  Martin Baulig  <martin@ximian.com>
17391
17392         * metadata.c (mono_type_size): If we're a generic instance, call
17393         mono_class_value_size() for value types.
17394
17395 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
17396
17397         * marshal.c: Implement more custom marshalling functionality. Fixes
17398         #64915.
17399
17400 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
17401
17402         * mono-debug.c, debug-mono-symfile.c: add some locking love.
17403
17404 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
17405
17406         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
17407
17408         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
17409
17410         * icall.c: Fix some warnings.
17411
17412         * threads.c (abort_appdomain_thread): Fix unref errors.
17413         (mono_thread_current): Fix THREAD_DEBUG define.
17414
17415 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
17416
17417         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
17418
17419         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
17420
17421 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
17422
17423         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
17424         string arrays.
17425
17426 2004-08-28  Martin Baulig  <martin@ximian.com>
17427
17428         * metadata.c
17429         (mono_metadata_generic_inst_is_valuetype): New public function.
17430
17431         * metadata.h (MONO_TYPE_ISSTRUCT): Call
17432         mono_metadata_generic_inst_is_valuetype() if we're a generic
17433         instance to check whether our underlying type is a valuetype.
17434
17435 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
17436
17437         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
17438         #63768.
17439
17440 2004-08-25  Martin Baulig  <martin@ximian.com>
17441
17442         * loader.c (mono_get_method_from_token): Abstract methods can also
17443         be generic and thus have type parameters.
17444
17445         * metadata-internals.h
17446         (MonoDynamicImage): Added `GPtrArray *gen_params'.
17447
17448         * reflection.c (mono_image_get_generic_param_info): Don't create a
17449         metadata row, just add an entry to the `gen_params' array.
17450         (build_compressed_metadata): Sort the `gen_params' array and then
17451         actually create the metadata.
17452
17453 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17454
17455         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
17456
17457 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
17458
17459         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
17460
17461 2004-08-24  Martin Baulig  <martin@ximian.com>
17462
17463         * class.cs (mono_class_is_subclass_of): Like an interface, a
17464         generic instance also derives from System.Object.
17465
17466 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
17467
17468         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
17469         custom modifiers to be in any order. Fixes #61990.
17470
17471 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
17472
17473         * object.c: Register mono_object_new_fast icall.
17474         
17475         * object.c (mono_class_get_allocation_ftn): Return to calling
17476         mono_object_new_fast, since it seems faster to compute the object 
17477         size in unmanaged code than passing it as a parameter.
17478
17479         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
17480
17481         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
17482         this function with Boehm as the oom handler, so we don't have to check
17483         the result of GC_malloc.
17484
17485         * object.c: Remove checks for oom.
17486
17487         * object.h object.c (mono_class_get_allocation_ftn): New function to
17488         return the icall which can be used to allocate an instance of a given
17489         class. 
17490
17491         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
17492
17493         * class-internals.h: Add 'enabled' field.
17494
17495 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
17496
17497         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
17498
17499 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
17500         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
17501         value 0x0010.
17502
17503 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
17504
17505         * appdomain.c: use the Tls function for appdomain too,
17506         at Zoltan's request. Actually return in mono_context_get
17507
17508         * appdomain.c, profiler.c, threads.c: use __thread
17509
17510 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
17511
17512         * appdomain.c threads.c: Call GC_CreateThread on windows.
17513
17514         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
17515         multiple libraries since this don't work on windows.
17516
17517 2004-08-18  Martin Baulig  <martin@ximian.com>
17518
17519         * class-internals.h
17520         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
17521         MonoMethodHeader.
17522
17523         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
17524         MonoMethodNormal since we also need it for abstract and interface
17525         methods.
17526
17527         * reflection.c
17528         (build_compressed_metadata): Sort the GenericParam table.
17529         (mono_image_create_token): Added `gboolean create_methodspec'
17530         argument; this is false when generating a MethodImpl token.
17531         (reflection_methodbuilder_to_mono_method): Abstract and interface
17532         methods may also have generic parameters.
17533
17534 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
17535
17536         * appdomain.c: thread local alloc
17537
17538 2004-08-17  Martin Baulig  <martin@ximian.com>
17539
17540         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
17541
17542         * icall.c
17543         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
17544         argument.
17545
17546         * class.c (mono_type_get_full_name): New public function.
17547         (mono_type_get_name): Don't include the type arguments.
17548
17549 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
17550
17551         * Makefile.am: Build static versions of libmetadata and libmonoruntime
17552         for inclusion into the mono executable.
17553
17554 2004-08-16  Martin Baulig  <martin@ximian.com>
17555
17556         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
17557         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
17558
17559 2004-08-14  Martin Baulig  <martin@ximian.com>
17560
17561         * class.c (dup_type): Also copy the `byref' field.
17562
17563 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
17564
17565         * reflection.c (create_dynamic_mono_image): Revert the last change 
17566         since it breaks bootstrap.
17567
17568 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
17569
17570         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
17571
17572         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
17573         not free them with g_free.
17574
17575 2004-08-11  Martin Baulig  <martin@ximian.com>
17576
17577         * reflection.c (mono_reflection_setup_internal_class): Also call
17578         mono_class_setup_mono_type() if we already have a `tb->type.type'.
17579
17580 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
17581
17582         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
17583         called during default (first) AppDomain creation. Keep track of
17584         Evidence when loading assemblies.
17585
17586 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
17587
17588         * opcodes.c, opcodes.h: reduce runtime relocations.
17589
17590 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
17591
17592         * culture-info.h, locales.c: fixes and chages to sue the new
17593         optimized format of the locale data.
17594         * culture-info-tables.h: regenerated.
17595
17596 2004-08-06  Geoff Norton <gnorton@customerdna.com>
17597         
17598         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
17599
17600 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
17601
17602         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
17603         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
17604         * domain-internals.h: icall declaration.
17605         * icall.c: icall registration.
17606         * object-internals.h: New fields in MonoAssembly for CAS.
17607
17608 2004-08-05  Duncan Mak  <duncan@ximian.com>
17609
17610         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
17611         CEE_LDELEM_ANY.
17612
17613 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
17614
17615         * reflection.c: fix to deal with object[] arrays in custom ctors
17616         (bug #62550).
17617
17618 2004-08-05  Martin Baulig  <martin@ximian.com>
17619
17620         * class.c (mono_class_array_element_size): Added support for
17621         generic instances and correctly handle "recursive" types.
17622
17623 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
17624
17625         * assembly.c: Fix warnings.
17626
17627 2004-08-04  Martin Baulig  <martin@ximian.com>
17628
17629         * class.c
17630         (mono_type_get_name_recurse): Added `gboolean include_arity'
17631         argument specifying whether or not we should include the generic
17632         arity in the type name.
17633         (_mono_type_get_name): New static function.
17634         (mono_class_setup_vtable): If we're a generic instance, don't
17635         include the generic arity in the names of explicit method
17636         implementations.        
17637
17638 2004-08-03  Martin Baulig  <martin@ximian.com>
17639
17640         * class.c (mono_type_get_name_recurse): Enclose the generic type
17641         arguments in `<', '>'.
17642
17643 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
17644
17645         * gc.c: make GC warning messages use the trace API, they are just
17646         noise to most of the users.
17647
17648 2004-08-03  Martin Baulig  <martin@ximian.com>
17649
17650         * debug-mono-symfile.c (read_string): Correctly read the string.
17651
17652 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
17653
17654         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
17655         
17656         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
17657         icalls.
17658         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
17659
17660 2004-07-30  Martin Baulig  <martin@ximian.com>
17661
17662         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
17663         Reflect latest symbol writer changes.   
17664
17665 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
17666
17667         * object.c: always create an object if null is passed
17668         to Invoke() where a valuetype is expected.
17669
17670 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
17671
17672         * marshal.c (mono_marshal_init): make managed
17673         signatures match native ones better for 64bits.
17674
17675 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17676
17677         * appdomain.c: hack to build correctly the private bin path on windows.
17678         Fixes bug #61991.
17679
17680 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
17681
17682         * assembly.c: Load mscorlib from the correct framework directory
17683           (mono/<version>/mscorlib.dll).
17684         * appdomain.h: Added prototypes for new functions.
17685         * internals.h: Added some prototypes.
17686         * domain.c: When initializing the runtime, get from the executable and
17687           the configuration files the runtime version that the app supports.
17688           Added support methods for reading app.exe.config. Added list of versions
17689           supported by the JIT. Added two new methods: mono_init_from_assembly,
17690           which initializes the runtime and determines the required version from
17691           the provided exe file, and mono_init_version, which initializes
17692           the runtime using the provided version.
17693         * icall.c: Get machine.config from version-specific directory.
17694         * reflection.c: When generating an image, embed the version number
17695           of the current runtime.
17696
17697 2004-07-28  Dick Porter  <dick@ximian.com>
17698
17699         * socket-io.c
17700         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
17701         returned sockaddr size before creating the remote address object.
17702         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
17703         61608.
17704
17705 2004-07-28  Dick Porter  <dick@ximian.com>
17706
17707         * locales.c (string_invariant_compare_char): Fix invariant char
17708         compares between upper and lower cases.  Fixes bug 61458.
17709
17710 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
17711         
17712         * marshal.c: actually cache stelem.ref wrappers.
17713         
17714 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
17715
17716         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
17717         sections and remove the mono_cli_rva_map () function.
17718
17719 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
17720
17721         * debug-mono-symfile.c: fix one more endianess issue, from a patch
17722         by Geoff Norton (<gnorton@customerdna.com>).
17723
17724 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
17725
17726         * class.c: fix class loads for pointer types (typeof(int) !=
17727         typeof(int*)).
17728
17729 2004-07-27  Martin Baulig  <martin@ximian.com>
17730
17731         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
17732         reading the debugging information from an external ".mdb" file.
17733
17734 2004-07-24  Martin Baulig  <martin@ximian.com>
17735
17736         * reflection.c (mono_image_get_type_info): Only write a class
17737         layout entry if we actually have a size or a packing size.
17738
17739 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
17740
17741         * reflection.c (type_get_fully_qualified_name): 
17742         insert cast to get type checking of ?: with non-gcc compilers
17743
17744 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
17745
17746         * rand.c: use g_getenv for both lookups of
17747         MONO_EGD_SOCKET
17748
17749 2004-07-17  Martin Baulig  <martin@ximian.com>
17750
17751         * reflection.c (mono_reflection_bind_generic_method_parameters):
17752         Set `gmethod->reflection_info'.
17753
17754 2004-07-17  Martin Baulig  <martin@ximian.com>
17755
17756         * class.c (mono_class_create_from_typedef): Insert the newly
17757         created class into the hash table before computing the interfaces
17758         since we could be called recursively.
17759
17760 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
17761
17762         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
17763         function to implement stelem.ref in managed code
17764         * class-internals.h, debug-helpers.c: a new wrapper type
17765         for the above.
17766
17767 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
17768
17769         * gc.c: allow GC handles to work even when no GC is compiled in.
17770         Fix part of bug #61134 (GetAddrOfPinnedObject).
17771
17772 2004-07-13  Peter Williams  <peter@newton.cx>
17773  
17774         * process.c (complete_path): Make sure we don't attempt to execute
17775         directories.
17776  
17777 2004-07-12  Geoff Norton <gnorton@customerdna.com>
17778
17779         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
17780           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
17781           and will add/subtract the hour if needed
17782
17783 2004-07-12  Martin Baulig  <martin@ximian.com>
17784
17785         * reflection.c (mono_field_get_object): If we have
17786         `field->generic_info', take the attributes from
17787         `field->generic_info->generic_type'.    
17788
17789 2004-07-12  Martin Baulig  <martin@ximian.com>
17790
17791         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
17792         This function must be called before initializing the runtime.
17793         (mono_debug_init_1): New function; call this after initializing
17794         the runtime, but before loading the assembly.  It tells the
17795         debugger to load corlib and the builtin types.
17796
17797         * mono-debug-debugger.c: Did some larger changes in the debugging
17798         code; support recursive class declarations, make sure we actually
17799         add all classes.
17800
17801 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17802
17803         * debug-helpers.c: undo my previous patch and fixed the real issue in
17804         ../mini/exceptions-x86.c
17805
17806 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17807
17808         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
17809         when no HOME env. variable was set and a NullRef was thrown in a .cctor
17810         called from other .cctors.
17811
17812 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
17813
17814         * loader.c: Removed the mono_loader_wine_init hack now that we are
17815         doing a managed version of Windows.Forms.
17816
17817 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
17818
17819         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
17820         threadpool.c, threads.c: remove static data from rootset.
17821
17822 2004-07-09  Dick Porter  <dick@ximian.com>
17823
17824         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
17825         Don't do any more processing if the matched length was 0.  It was
17826         increasing the size of the string before.  Fixes bug 61167.
17827
17828 2004-07-09  Dick Porter  <dick@ximian.com>
17829
17830         * socket-io.h:
17831         * socket-io.c
17832         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17833         Add support for SO_PEERCRED if its available.
17834
17835 2004-07-09  Peter Bartok <pbartok@novell.com>
17836         * loader.c: winelib.exe.so error message is now only displayed if
17837         MONO_DEBUG is set. To help us avoid questions when people are trying
17838         out the new Managed.Windows.Forms.
17839
17840 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
17841
17842         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
17843         for isinst and castclass wrappers.
17844
17845         * class-internals.h icall.c: Move registration and lookup of JIT icalls
17846         to libmetadata from the JIT, so they could be used by the marshalling
17847         code and the interpreter.
17848
17849         * marshal.c: Register marshalling related JIT icalls here instead of
17850         in mini.c. Use CEE_MONO_ICALL instead of the family of 
17851         CEE_MONO_PROC<x> opcodes to call marshalling functions.
17852
17853         * metadata.h: Remove unneeded marshalling conversions.
17854
17855         * opcodes.c: Update for new opcodes.
17856         
17857 2004-07-08  Martin Baulig  <martin@ximian.com>
17858
17859         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
17860         (mono_debug_get_domain_data): Make this function static.
17861
17862 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
17863
17864         * gc.c, object.h: add nice GC handle API for embedders.
17865
17866 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
17867
17868         * reflection.c: more changes for the new api
17869
17870         * object.c: When we reflect on a field w/ a constant value, it
17871         will not have a memory location, so we must access metadata. Also,
17872         allow easier reading of strings so that we can read them from
17873         the constant data.
17874
17875         * class.c (mono_class_layout_fields): no need for literal fields here.
17876
17877         * class-internals.h: api changes for const fields
17878
17879         * icall.c (ves_icall_get_enum_info): use new apis for const fields
17880
17881 2004-07-06  Martin Baulig  <martin@ximian.com>
17882
17883         * mono-debug.h: Increment version number to 44.
17884
17885         * mono-debug.c (mono_debug_add_wrapper): The second argument is
17886         now a gpointer, rewrote this whole method.
17887
17888         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
17889         function.  Add information about the wrapper in a new "misc table".
17890
17891         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
17892         for the new misc table.
17893
17894 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
17895
17896         * metadata-internals.h image.c: Add a cache for helper signatures.
17897
17898         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
17899
17900 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
17901
17902         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
17903         delegates from a delegate. Fixes #61033.
17904         
17905         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
17906         marshalling of stringbuilder arrays. Fixes #59900.
17907
17908 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
17909
17910         * icall.c: Add EnumBuilder:setup_enum_type icall.
17911
17912 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
17913
17914         * icall.c: Added a new icall for the property version of
17915         OffsetOfStringData.
17916
17917 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
17918
17919         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
17920         it has a constant size across platforms.
17921
17922         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
17923         stack trace.
17924
17925 2004-06-29  Martin Baulig  <martin@ximian.com>
17926
17927         * mono-debug.c (mono_debug_add_method): Protect the whole function
17928         in mono_debugger_lock(), not just parts of it.
17929
17930 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
17931
17932         * reflection.c: make sure padding bytes in heaps are zeroed.
17933
17934 2004-06-24  David Waite  <mass@akuma.org>
17935
17936         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
17937         image.c, loader.c, locales.c, marshal.c, metadata.c,
17938         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
17939         string-icalls.c, threads.c: change to C90-style comments from C99 /
17940         C++ -style
17941
17942 2004-06-24  Dick Porter  <dick@ximian.com>
17943
17944         * threads.c
17945         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
17946         return createdNew.  Fixes bug 60412.
17947
17948         * threads-types.h: 
17949         * icall.c: Add createdNew parameter to CreateMutex icall
17950
17951 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
17952
17953         * reflection.c, object-internals.h: save default value in params.
17954
17955 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17956
17957         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
17958         no need to build a new path combining that with the application base.
17959         Fixes bug #60442.
17960
17961 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
17962
17963         * reflection.c: fixed minor standard compliance issues.
17964
17965 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
17966
17967         * reflection.c: fixed issue with encoding some custom attributes
17968         (arrays in properties and fields, bug #60411).
17969
17970 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17971
17972         * reflection.c: fix start address when copying the public key token.
17973
17974 2004-06-23  Martin Baulig  <martin@ximian.com>
17975
17976         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
17977         the `exc' object in a static object to put it into the GC's root set.
17978
17979 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
17980
17981         * reflection.c: make mono_reflection_setup_internal_class ()
17982         callable a second time to setup a new parent class.
17983
17984 2004-06-23  Dick Porter  <dick@ximian.com>
17985
17986         * threads.c: Check for WAIT_IO_COMPLETION return values.
17987
17988 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
17989
17990         * appdomain.c: Removed the g_free on the public key token. Now copy 
17991         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
17992         * assembly.c: Added public key token string value when loading 
17993         assemblies. Fix bug #60439.
17994         * icall.c: Added missing informations (like public key) in 
17995         GetReferencedAssemblies. Fix #60519.
17996         * image.h: Changed definition for public key token from const char*
17997         public_tok_value to guchar public_key_token [17];
17998         * reflection.c: Updated for changes to public key token.
17999
18000 2004-06-22  Lluis Sanchez Gual
18001
18002         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
18003         for the field in base classes.
18004
18005 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
18006
18007         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
18008         mark headers as not supported, they are installed only for use by the
18009         debugger.
18010
18011 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
18012
18013         * *.c, *.h: avoid namespace pollution in public headers.
18014
18015 2004-06-21  Martin Baulig  <martin@ximian.com>
18016
18017         * exception.c (mono_get_exception_security): It's in
18018         "System.Security", not in "System".
18019
18020         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
18021         the exception classes.
18022
18023 2004-06-21  Martin Baulig  <martin@ximian.com>
18024
18025         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
18026         Protect the exception object from being finalized.
18027
18028 2004-06-21  Martin Baulig  <martin@ximian.com>
18029
18030         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
18031         public function.
18032
18033 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
18034
18035         * reflection.c: Load the assembly in mono_reflection_type_from_name,
18036         if it was not loaded before. Fix parts of #60439.
18037
18038 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
18039
18040         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
18041         code that was broken since Ben's change: wrappers are now
18042         dependent on the method signature only again.
18043
18044 2004-06-21  Martin Baulig  <martin@ximian.com>
18045
18046         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
18047         added interface support.
18048
18049 2004-06-21  Martin Baulig  <martin@ximian.com>
18050
18051         * class.c (mono_vtable_get_static_field_data): New public method.
18052
18053 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
18054
18055         * filewatcher.c : Windows build fix to be compliant with API changes.
18056
18057 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
18058
18059         * class.h, class.c: more accessors.
18060         * metadata.h, metadata.c: prepare for hiding MonoType and
18061         MonoMethodSignature: people should use the accessors from now on
18062         outside of the tree.
18063
18064 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
18065
18066         * *.c, *.h: more API cleanups.
18067
18068 2004-06-18  Jackson Harper  <jackson@ximian.com>
18069
18070         * assembly.c: Trace loading assemblies.
18071         * loader.c: Trace loading native libraries.
18072         * mono-config.c: Trace loading config files.
18073         
18074 2004-06-18  Dick Porter  <dick@ximian.com>
18075
18076         * locales.c: Tell ICU the lengths of strings, it can cope with
18077         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
18078
18079 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
18080
18081         * image.c: swapped name/filename;
18082
18083 2004-06-18  Martin Baulig  <martin@ximian.com>
18084
18085         * mono-debug-debugger.c (write_class): Write the parent class at
18086         the end of the header.
18087
18088 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
18089
18090         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
18091
18092 2004-06-17  Raja R Harinath  <rharinath@novell.com>
18093
18094         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
18095         (bundle_obj): New conditional define.
18096         (BUILT_SOURCES): Remove.
18097         ($(bundle_srcs)): Make parallel-make safe.
18098         (libmonoruntime_la_LIBADD): Make unconditional.
18099         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
18100         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
18101
18102 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
18103
18104         * culture-info-tables.h: It was inconsistent with the latest
18105           supp info files.
18106
18107 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
18108
18109         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
18110         be loaded.
18111
18112         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
18113         with gcc 2.95.
18114
18115 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
18116
18117         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
18118         cleaned up public header threads.h.
18119
18120 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
18121
18122         * Makefile.am, *.c, *.h: more API cleanups.
18123
18124 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
18125
18126         * Makefile.am: removed monosn from compilation.
18127         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
18128         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
18129         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
18130         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
18131         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
18132         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
18133
18134 2004-06-15  Jackson Harper  <jackson@ximian.com>
18135
18136         * assembly.c: Make locales lower case when searching the GAC for
18137         assemblies. gacutil will always make locales lowercase when
18138         installing so this effectively makes them case insensitive.
18139         
18140 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
18141
18142         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
18143         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
18144           parameter which allows to choose whether the wait can be interrupted or 
18145           not. Also added the method mono_monitor_enter(), which locks the monitor
18146           using an infinite wait and without allowing interruption.
18147           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
18148           interrupted.
18149         * object.h: Added new fields in MonoThread. suspend_event holds the event
18150           used to susped/resume the thread. synch_lock is the lock object to use for
18151           modifying the thread state.
18152         * threads.c: Use the new synch_lock object for locking, instead of "this",
18153           which can generate deadlocks.
18154           Moved thread state change in Thread.Sleep and Thread.Join from managed
18155           to unmanaged code. This avoids a deadlock when the thread was suspended
18156           just after acquiring the thread lock.
18157           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
18158           Implemented Thread.Suspend using an event instead of ThreadSuspend,
18159           which is not fully implemented in the io-layer.
18160         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
18161
18162 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
18163
18164         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
18165         threads-types.h: more API cleanups.
18166
18167 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
18168
18169         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
18170         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
18171         threadpool.c, threads.c: first pass at the exported API cleanup.
18172
18173 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
18174
18175         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
18176
18177 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18178
18179         * icall.c: added internalGetHome.
18180
18181 2004-06-14  Dick Porter  <dick@ximian.com>
18182
18183         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
18184         possible to return successfully when '.' or '..' were the only
18185         entries in a directory, but were skipped.  The MonoIOStat was not
18186         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
18187         Fixes bug 59574.
18188
18189 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
18190
18191         * reflection.c: make binaries run on .Net 1.1 by default.
18192
18193 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
18194
18195         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
18196
18197 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
18198
18199         * marshal.c: keep track of struct size with explicit layout
18200         (bug #59979).
18201
18202 2004-06-12  Martin Baulig  <martin@ximian.com>
18203
18204         * mono-debug-debugger.c: Comment out a debugging g_message().
18205
18206 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
18207
18208         * reflection.c, reflection.h: do not free custom attrs that are cached.
18209         * icall.c: use braces to make code clearer.
18210
18211 2004-06-11  Martin Baulig  <martin@ximian.com>
18212
18213         * class.h (MonoInflatedField): New type.
18214         (MonoClassField): Replaced `MonoType *generic_type' with
18215         `MonoInflatedField *generic_info'.
18216
18217         * icall.c
18218         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
18219
18220 2004-06-11  Martin Baulig  <martin@ximian.com>
18221
18222         * reflection.c (mono_image_create_method_token): Correctly encode
18223         varargs methods.
18224
18225 2004-06-11  Martin Baulig  <martin@ximian.com>
18226
18227         * metadata.c (mono_metadata_parse_method_signature): When parsing
18228         a MethodDef which has VarArgs, also set sentinelpos if we don't
18229         have any parameters.
18230
18231 2004-06-11  Martin Baulig  <martin@ximian.com>
18232
18233         * verify.c (mono_method_verify): In CEE_CALL, use
18234         mono_method_get_signature() to get the method's signature, unless
18235         we're a PInvoke method.
18236
18237 2004-06-10  Jackson Harper  <jackson@ximian.com>
18238
18239         * assembly.c: Use <path>/lib/mono/gac for the extra paths
18240         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
18241         logical name as the supplied path is just a prefix to the gac not
18242         the direct path to it.
18243         
18244 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
18245
18246         * reflection.c: make the token for a created method match
18247         the token of the MethodBuilder it was created from
18248         (IKVM requires this behaviour now).
18249
18250 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
18251
18252         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
18253         reflection.c, socket-io.c: leak fixes.
18254
18255 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
18256
18257         * icall.c: handle sentinel pos in vararg methods in position different
18258         from 0.
18259
18260 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18261
18262         * culture-info-tables.h: freshly generated.
18263
18264 2004-06-09  Martin Baulig  <martin@ximian.com>
18265
18266         * loader.c (mono_get_method_constrained): Call `mono_class_init
18267         (constrained_class)'.   
18268
18269 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
18270
18271         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
18272         any methods. Fixes #59629.
18273
18274 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
18275
18276         * culture-info-tables.h: reflecting locale-builder updates.
18277
18278 2004-06-08  Dick Porter  <dick@ximian.com>
18279
18280         * object.h:
18281         * locales.c: Fixed compile warnings, including a real bug in
18282         CompareInfo_internal_compare.
18283         
18284 2004-06-08  Dick Porter  <dick@ximian.com>
18285
18286         * locales.c
18287         (ves_icall_System_Globalization_CompareInfo_internal_index):
18288         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
18289         Double-check the resuls of usearches, because ICU currently
18290         ignores most of the collator settings here.  Fixes bug 59720.
18291         
18292 2004-06-08  Dick Porter  <dick@ximian.com>
18293
18294         * locales.c
18295         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
18296         Fix memory leak and segfault-causing typo.  No idea how this one
18297         lasted so long without being noticed.
18298
18299 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
18300
18301         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
18302         any methods. Fixes #59629.
18303
18304 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18305
18306         * assembly.c:
18307         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
18308         own the critical section before). Removed dead code (that's done
18309         in the preload hook).
18310
18311         (mono_assembly_load_with_partial_name): call the preload hook.
18312
18313 2004-06-08  Martin Baulig  <martin@ximian.com>
18314
18315         * metadata.c (mono_metadata_signature_alloc): Default
18316         `sentinelpos' to -1.
18317
18318         * reflection.c (mono_image_get_array_token): Likewise.
18319
18320 2004-06-08  Martin Baulig  <martin@ximian.com>
18321
18322         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
18323
18324         * metadata.c (mono_metadata_parse_method_signature): When parsing
18325         a MethodDef which has VarArgs, set sentinelpos.
18326
18327         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
18328         `gint16' since we're using -1 for non-varargs methods.
18329
18330         * reflection.c
18331         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
18332         (method_encode_signature): Added varargs support.
18333         (method_builder_encode_signature): Likewise.
18334         (mono_image_get_varargs_method_token): New static method.
18335         (mono_image_create_method_token): New public method; this is
18336         called via an icall instead of mono_image_create_token() when
18337         calling a varargs method.       
18338
18339 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
18340
18341         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
18342
18343 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
18344
18345         * culture-info-tables.h : Reflecting the latest locale-builder that
18346           fixed empty array representation ({} to {0}).
18347
18348 2004-06-07  Jackson Harper  <jackson@ximian.com>
18349
18350         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
18351         looking up extra gac paths. This allows MONO_GAC_PATH to act
18352         exactly like a prefix.
18353         
18354 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
18355
18356         * reflection.c (mono_reflection_type_from_name): Make a copy of the
18357         type name before modifying it. Fixes #59405.
18358
18359 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
18360
18361         * culture-info.h: added fields for "all datetime patterns".
18362         * locales.c: (  ves_icall_System_Globalization_CultureInfo
18363           _construct_datetime_format ()): fill xxx_patterns fields.
18364         * object.h: added fields for "all datetime patterns" to
18365           MonoDateTimeFormatInfo.
18366         * culture-info-tables.h: reflecting locale-builder updates.
18367
18368 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
18369
18370         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
18371         the event has no add and remove methods. Fixes #59629.
18372
18373 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
18374
18375         * object.c: Fixed possible integer overflow when allocating large
18376         strings.
18377
18378 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
18379
18380         * culture-info-tables.h: reflecting locale-builder updates.
18381
18382 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
18383
18384         * culture-info-tables.h: reflecting locale-builder updates.
18385
18386 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
18387
18388         * culture-info-tables.h: reflecting locale-builder updates.
18389
18390 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
18391
18392         * threads.c: Made Thread.Sleep abortable.
18393
18394 2004-06-02  Martin Baulig  <martin@ximian.com>
18395
18396         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
18397
18398         * debug-mono-symfile.h: Bumped symbol file version number to 37.
18399
18400 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
18401
18402         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
18403
18404 2004-05-30  Jackson Harper  <jackson@ximian.com>
18405
18406         * reflection.c: Do not hardcode assembly versions or public key
18407         tokens anymore. All of this except the corlib section was dead
18408         code anyways.
18409         
18410 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
18411
18412         * object.c (mono_runtime_invoke_array): Automatically create boxed
18413         objects for byref valuetypes if needed. Fixes #59300.
18414         
18415         * object.c (mono_method_return_message_restore): Handle 
18416         MONO_TYPE_OBJECT as well.
18417
18418 2004-05-28  Jackson Harper  <jackson@ximian.com>
18419
18420         * reflection.c: The modified type encoding was causing build
18421         problems. Reverted for now.
18422         
18423 2004-05-28  Jackson Harper  <jackson@ximian.com>
18424
18425         * reflection.c/h: Take an assembly ref so that we dont create
18426         fully qualified names when encoding types in the same assembly as
18427         the custom attribute being emitted.
18428         * appdomain.c: Increment version number.
18429         
18430 2004-05-26  Duncan Mak  <duncan@ximian.com>
18431
18432         * icall.c
18433         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
18434         Set the full version number (major, minor, build, revision).
18435
18436 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
18437
18438         * marshal.c (emit_struct_conv): increment src/dst after blit
18439         (mono_marshal_get_managed_wrapper,
18440         mono_marshal_get_native_wrapper): make sure we have marshalling
18441         info before marshalling params (info computation affects
18442         blittable)
18443
18444         * class.c (class_compute_field_layout): correctly deal with
18445         blittable
18446         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
18447         value types (as per what windows dows by default)
18448         (mono_class_setup_mono_type): System.ValueType is blittable
18449         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
18450         blittable
18451
18452         * marshal.c (mono_marshal_load_type_info): flag types  as
18453         non-blittable if the native layout doesn't match the managed
18454         layout
18455
18456 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18457
18458         * appdomain.c: don't add stuff in the private search path that is
18459         above the application base. If application base is not set, there's
18460         no private search path.
18461
18462 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
18463
18464         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
18465         byref struct arguments in native->managed marshalling.
18466
18467 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
18468
18469         * marshal.c (mono_marshal_get_runtime_invoke): correctly
18470         cache methods using signature (special case for methods
18471         that are value type or string class)
18472         
18473         * image.c (mono_image_close): clean up allocated GSList's
18474         in runtime_invoke_cache.
18475
18476 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18477
18478         * mono-config.c: set the correct path for mono_cfg_dir on windows when
18479         there's no MONO_CFG_DIR environment variable defined.
18480
18481 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18482
18483         * threads.c: windows version must be >= 0x0500 to include OpenThread.
18484
18485 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
18486
18487         * threadpool.c: Really wait for 500ms after the async call, even if the wait
18488           is interrumped.
18489         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
18490           before waiting for it, and call CloseHandle after the wait to unref it.
18491           This will make sure that handles are not disposed too early.
18492
18493 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18494
18495         * appdomain.c:
18496         * appdomain.h:
18497         * icall.c: removed
18498         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
18499         needed now.
18500
18501         * object.c: se the application_base only for the domain that runs
18502         Main. Fixes bug #59216,
18503
18504 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18505
18506         * appdomain.c:
18507         * object.c: only the domain in which Main is run have
18508         SetupInformation.ConfigurationFile set, so moved a few lines from
18509         appdomain.c to object.c.
18510
18511 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18512
18513         * appdomain.c: we tried to load [name].(dll|exe), but according
18514         to bug #57710, we must also try [culture]/[name].(dll|exe) and
18515         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
18516         There's a test case attached to bug #58922.
18517
18518 2004-05-27  Dick Porter  <dick@ximian.com>
18519
18520         * icall.c:
18521         * file-io.c: Implemented icalls for locking and unlocking regions
18522         in a file.
18523         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
18524         FALSE on error (fixes both compiler warning and real bug.)
18525
18526 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
18527
18528         * culture-info-tables.h: reflecting locale-builder updates.
18529
18530           (Added missing ChangeLog entry for 05/26)
18531
18532 2004-05-27  Jackson Harper  <jackson@ximian.com>
18533
18534         * locales.c: Fix some cut and paste errors.
18535         
18536 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18537
18538         * mono-config.c: set the correct path for config. directory on windows.
18539
18540 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
18541
18542         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
18543           on win32.
18544
18545 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
18546
18547         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
18548         from pinvoke functions.
18549         
18550         * marshal.c (mono_ftnptr_to_delegate): Implement this.
18551
18552 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
18553
18554         * culture-info-tables.h: reflecting locale-builder updates.
18555
18556 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
18557
18558         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
18559         #59086.
18560
18561 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
18562
18563         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
18564         * icall.c: Modified icalls for RNG.
18565         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
18566         Windows (CryptoAPI).
18567
18568 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
18569
18570         * locales.c: Fix build.
18571
18572 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
18573
18574         * culture-info-tables.h: reflecting locale-builder updates.
18575
18576 2004-05-25  Jackson Harper  <jackson@ximian.com>
18577
18578         * locales.c: When creating the current culture use the $LANGs
18579         specific culture. So DateTimeFormat and NumberFormat entries are created.
18580         
18581 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
18582
18583         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
18584         a char array as parameter.
18585
18586 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
18587
18588         * image.c: In mono_image_open(), always use an absolute path name to
18589           look for already loaded images.
18590
18591 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
18592
18593         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
18594         missing in the windows build (like older cygwin include files).
18595
18596 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
18597
18598         * icall.c: Fixed check for possible integer overflow in Buffer_
18599         BlockCopy icall. Replaced comments style // by /* */.
18600
18601 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
18602
18603         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
18604         
18605         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
18606         check after MONO_VTADDR. Fixes pinvoke2.exe.
18607
18608         * marshal.h marshal.c metadata.h: Add beginnings of support for
18609         ftnptr -> delegate marshalling.
18610
18611 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
18612
18613         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
18614         * threads.c: Fix warnings.
18615
18616 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
18617
18618         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
18619         * icall.c: Registered icalls for Suspend and Resume.
18620         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
18621           Thread.Abort.
18622         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
18623         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
18624         * process.c: Use WaitForSingleObjectEx.
18625         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
18626           checkpoints.
18627         * threads.c, threads.h: Make use of new Ex wait methods. Improved
18628           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
18629           for Suspend and Resume. Added new mono_thread_stop, used for stoping
18630           background threads. Added basic support for Abort in Windows.
18631           Start new threads using a managed delegate invoke wrapper. This wrapper
18632           has an interruption checkpoint that is needed since an interruption
18633           can be requested before the thread leaves the unmanaged code that starts 
18634           the thread.
18635         * marshal.c: Added interruption checkpoint after every native call, and
18636           also before managed calls for wrappers called from unmanaged code to
18637           go into managed code.
18638         * object.h: Added new field in MonoThread to keep track of interruption
18639           requests.
18640
18641 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
18642
18643         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
18644         calls.
18645
18646 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18647
18648         * appdomain.c:
18649         * assembly.c:
18650         * gc.c:
18651         * locales.c:
18652         * mono-config.c:
18653         * rand.c: getenv -> g_getenv (windows!)
18654
18655         * process.c: complete_path is also used on non-windows platforms.
18656
18657 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18658
18659         * icall.c: new signature for Process_Start.
18660
18661         * process.[ch]: new signature for Process_Start. If we're on windows
18662         and UseShellExecute is false, we have to search for the program by
18663         ourselves if we don't get a full path.
18664
18665 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
18666
18667         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
18668         marshalling and call CleanUpNativeData if needed. Fixes #58646.
18669
18670 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18671
18672         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
18673         Fixes bug #58373.
18674
18675 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18676
18677         * process.c: use double quotes to quote program name and arguments on
18678         windows. Fixes bug #58575.
18679
18680 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18681
18682         * file-io.c: don't return "." and ".." when using windows Find*File.
18683
18684 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
18685
18686         * marshal.c: Don't pass wrappers to message init because method 
18687         addressed used to lookup metadata. part of remoting[2|3] fix.
18688
18689 2004-05-15  Jackson Harper  <jackson@ximian.com>
18690
18691         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
18692         path is essentially the same as MONO_PATH except that it points to
18693         GACs instead of lib directories.
18694         * loader.h: The user gac is gone so we dont need function to
18695         enable/disable it.
18696         * mono-config.c: user gac option is now gone.
18697         
18698 2004-05-15  Jackson Harper  <jackson@ximian.com>
18699
18700         * culture-info.h: Make defines more consistent, add calendar data
18701         to the culture info table.
18702         * culture-info-tables.h: Add basic calendar data. Basically
18703         everyone gets default gregorian until all the data is
18704         updated.
18705         * locales.c: Use the new consistent defines. Set calendar data for
18706         culture info objects.
18707         * object.h: add a field for calendar data to CultureInfo
18708         
18709 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
18710
18711         * image.c: image->runtime_invoke_cache is keyed on signatures now.
18712         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
18713         a signature.
18714         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
18715         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
18716         an extra param that is the pointer of the method to invoke. The IL for
18717         the invoke method is no longer specific to the method, but to the
18718         signature of the method. Thus, we can share the same code for multiple
18719         methods. This reduces the number of methods that have to be compiled.
18720
18721 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
18722
18723         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
18724
18725         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18726
18727         * icall.c: Optimize Buffer.BlockCopy.
18728
18729 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18730
18731         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
18732         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
18733         quote). Changed them to "MMMM yyyy".
18734
18735 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
18736
18737         * rand.c
18738         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
18739
18740 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
18741
18742         * reflection.h: Updated after changes to managed structures.
18743
18744         * appdomain.c: Bump corlib version.
18745
18746 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18747
18748         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
18749         windows.
18750
18751 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18752
18753         * Makefile.am: link to ../os/libmonoos.la on windows.
18754
18755         * assembly.c:
18756                 -If MONO_DEBUG, warn about non-existing directories in
18757                 MONO_PATH.
18758                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
18759                 compile time variable.
18760                 -Removed init_default_path and call mono_set_rootdir from
18761                 libmonoos.a instead (windows only).
18762
18763         * assembly.h: declare mono_assembly_getrootdir().
18764
18765         * domain.c:
18766         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
18767
18768         * loader.c: s/getenv/g_getenv/
18769
18770 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
18771
18772         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
18773
18774         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
18775
18776         * metadata.h: Add new marshalling conversions.
18777
18778         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
18779         function.
18780
18781         * reflection.c (mono_reflection_get_type): Lookup the type in all
18782         modules of a multi-module assembly. Fixes #58291.
18783
18784 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
18785
18786         * threads.c: Before aborting a background, set the StopRequested
18787         state.  This avoids throwing the Abort exception.
18788         In mono_thread_manage, don't continue with the shutdown until all
18789         aborted threads have actually stopped.
18790
18791 2004-05-10  Jackson Harper  <jackson@ximian.com>
18792
18793         * locales.c: Remove the modifier from culture names.
18794         
18795 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18796
18797         * Makefile.am: monosn is not installed any more. It has been deprecated
18798         in favor of sn.
18799
18800 2004-05-07  Jackson Harper  <jackson@ximian.com>
18801
18802         * locales.c
18803         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
18804         Fix array construction, add bailout if the length is 0.
18805
18806 2004-05-07  Dick Porter  <dick@ximian.com>
18807
18808         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
18809         machine doesn't have a DNS entry.  Patch by Urs Muff
18810         (umuff@quark.com), fixes bug 57928.
18811
18812 2004-05-06  Jackson Harper  <jackson@ximian.com>
18813
18814         * reflection.c: Handle null PublicTokens properly. alloc mem for
18815         assembly names culture so we dont crash when freeing it.
18816         
18817 2004-05-06  Jackson Harper  <jackson@ximian.com>
18818
18819         * assembly.c: Check the usergac when loading with partial names.
18820         
18821 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
18822
18823         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
18824         does nothing for now (not required for Linux/Windows) but the class
18825         library can call it (and a newer or modified runtime could need it).
18826         * icall.c: Registred icall.
18827
18828 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18829
18830         * loader.c: prints a message on module loading error we set MONO_DEBUG
18831         environment variable.
18832
18833 2004-05-05  Jackson Harper  <jackson@ximian.com>
18834
18835         * appdomain.c: Handle PublicKeyToken=null properly.
18836         
18837 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
18838
18839         * environment.c|h: Added icall ves_icall_System_Environment_
18840         GetOSVersionString to get the current OS version as a string.
18841         * icall.c: Registred icall.
18842
18843 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
18844
18845         * object.c: in mono_object_get_virtual_method(), take into account that
18846         non-virtual methods don't have a slot in the vtable. Check needed when
18847         the object is a proxy.
18848
18849 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
18850
18851         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
18852         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
18853
18854         * object.c (mono_class_compute_gc_descriptor): Fix warning.
18855
18856         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
18857         passed when a valuetype is expected.
18858
18859         * object.c (mono_unhandled_exception): Only set the exit code if the
18860         exception happens in the main thread. Fixes thread5.exe.
18861
18862         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
18863         invalid names. Fixes #58047.
18864
18865 2004-05-03  Jackson Harper  <jackson@ximian.com>
18866
18867         * assembly.c: This line was committed accidently and is unneeded.
18868         
18869 2004-05-03  Jackson Harper  <jackson@ximian.com>
18870
18871         * icall.c: Add new icall for Assembly::LoadWithPartialName
18872         * assembly.c/.h: new function that probes the GAC to load partial
18873         assembly names by Paolo Molaro.
18874         
18875 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18876
18877         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
18878         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
18879         (type_get_fully_qualified_name): Added PublicKeyToken when building a
18880         full type name.
18881
18882 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18883
18884         * appdomain.c: fixed check for 'neutral' culture and removed warning.
18885         * reflection.c: fix bug when parsing a full type name and Version is not
18886         the last thing in the string.
18887
18888 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
18889
18890         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
18891         crashes when it is freed.
18892
18893 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18894
18895         * assembly.c: print the compat warning to stderr.
18896
18897 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
18898
18899         * assembly.c (mono_assembly_load_references): Add a compatibility
18900         hack to run old applications that might be still referencing the
18901         3300-based assemblies, only do this for System.xxx.
18902
18903 2004-05-01  Jackson Harper  <jackson@ximian.com>
18904
18905         * appdomain.c: If the culture is neutral we set it to "".
18906         
18907 2004-04-29  Jackson Harper  <jackson@ximian.com>
18908
18909         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
18910
18911 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
18912  
18913         * string-icalls.c: added low overhead function for copying chars
18914         * icall.c: added needed icall for the above function
18915  
18916 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18917
18918         * icall.c: fix return value of get_global_assembly_cache.  Implemented
18919         Environment.GetLogicalDrives.
18920
18921 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
18922
18923         * rand.c: try and talk to egd or prngd
18924         for random bytes if opening devices fail.
18925
18926 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
18927
18928         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
18929         alignment for the type using the native alignment of its members 
18930         instead of using klass->min_align.
18931
18932         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
18933
18934 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18935
18936         * file-io.c:
18937         * socket-io.c: added check for sys/aio.h.
18938
18939 2004-04-28  Dick Porter  <dick@ximian.com>
18940
18941         * threads.c: Don't abort a thread thats already aborting, when
18942         terminating everything.
18943
18944 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18945
18946         * icall.c: added 2 new async calls for Socket.
18947
18948         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
18949         IO on *nix systems.
18950
18951         * threadpool.c: removed unused variable.
18952
18953 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
18954
18955         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
18956
18957 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
18958
18959         * locales.c: put back string_invariant_tolower () and
18960         string_invariant_toupper ().
18961
18962 2004-04-26 David Waite <mass@akuma.org>
18963
18964         * file-io.h:
18965         * socket-io.h:
18966         * threads.h:
18967         * unicode.h: remove comma from end of enumeration declarations
18968
18969 2004-04-26 David Waite <mass@akuma.org>
18970
18971         * debug-mono-symfile.h:
18972         * decimal.c:
18973         * mono_debug.h:
18974         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
18975
18976
18977 2004-04-26  Jackson Harper  <jackson@ximian.com>
18978
18979         * appdomain.c: Increment version number.
18980         
18981 2004-04-26  Jackson Harper  <jackson@ximian.com>
18982
18983         * appdomain.c: Set assembly references public token value when
18984         PublicKeyToken is specified, not the hash_value. Free public token
18985         values when free assembly name data. Previously the public key
18986         token was hex decoded, however we are using hex encoded public key
18987         tokens, so this is not neccasary.
18988         * assembly.c: Lookup assemblies in the gac if their public token
18989         value is set. Add function to allow enabling user gac
18990         lookups. Specify whether or not the assembly was loaded from the
18991         GAC. Compare full assembly names when checking the cache for
18992         assemblies (Temporarily disabled see comment in code). Remove
18993         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
18994         specifies trace-loader they get extra info to stdout on the
18995         loading of assemblies.
18996         * image.h: Add a field for an assembly references public token
18997         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
18998         whether an assembly has been loaded from the GAC.
18999         * image.c: Remove a corlib -> mscorlib name mapping.
19000         * loader.h: Add function to enable/disable the user gac.
19001         * mono-config.c: Check if the usergac is enabled in the config
19002         file.
19003         * icall.c: New icall to determine whether or not an assembly has
19004         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
19005         * tabldefs.h: Add constant for assemblyref flag that specifies a
19006         full public key is used instead of a public token.
19007         * reflection.c: Remove mscorlib -> corlib mappings. Set
19008         PublicTokenValue instead of hash value. This value is a hex
19009         string so it does not need to be expanded.
19010
19011 2004-04-26  Martin Baulig  <martin@ximian.com>
19012
19013         * mono-debug-debugger.c (mono_debugger_initialize): Set
19014         `mono_debugger_initialized' before calling mono_debug_lock().
19015
19016 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
19017
19018         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
19019           InternalToUpper/InternalToLower.
19020         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
19021           removed invariant culture shortcut.  This is now done in managed code.
19022         * locales.c: (string_invariant_toupper/tolower) removed.
19023
19024 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19025
19026         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
19027         Added Poll internal call.
19028
19029         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
19030         call for Poll. Select was too heavy for polling a single socket.
19031
19032         * threadpool.[ch]: added mono_threadpool_cleanup.
19033         * threads.c: use it. Don't use Thread_Abort on windows.
19034
19035 2004-04-23  Martin Baulig  <martin@ximian.com>
19036
19037         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
19038
19039 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
19040
19041         * icall.c: Registred new icalls for key pair protection and added an
19042         icall for Environment.GetFolderPath on Windows.
19043         * security.c|h: Added new icalls for key pair protection.
19044
19045 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19046
19047         * socket-io.c: don't display the non-supported family warning for known
19048         families. Now this is not displayed on windows when checking support
19049         for IPv4/IPv6.
19050
19051 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19052
19053         * class.c: don't display the layout warning for static fields.
19054
19055 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
19056
19057         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
19058         * locales.c, locales.h: Added new icalls for culture-specific
19059         Char.ToLower and Char.ToUpper.
19060
19061 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19062
19063         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
19064         by David Waite.
19065
19066 2004-04-20  Martin Baulig  <martin@ximian.com>
19067
19068         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
19069         of the type name before passing it to mono_reflection_type_from_name().
19070
19071 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
19072
19073         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
19074         encodings here. Fixes #56965.
19075
19076 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
19077
19078         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
19079         fix test on strstr result not that I can see anything that
19080         relies on the result.
19081
19082 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
19083
19084         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
19085         Fixes #57081.
19086
19087         * marshal.c (mono_marshal_get_string_encoding): New helper function.
19088
19089         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
19090         function to determine which marshalling to use for strings. Fixes
19091         #56965.
19092
19093         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
19094
19095         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
19096
19097 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
19098
19099         * icall.c: #include mono-config.h
19100
19101 2004-04-15  Jackson Harper  <jackson@ximian.com>
19102
19103         * culture-info-tables.h: Fix date formats for en-US culture.
19104         
19105 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
19106
19107         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
19108         ThreadPool.SetMinThreads.
19109         * threadpool.c: Implemented ThreadPool.GetMinThreads and
19110         ThreadPool.SetMinThreads.
19111
19112 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
19113
19114         * mono-config.c: also load the .config file in the directory
19115         where the assembly was found.
19116
19117 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
19118
19119         * assembly.c: load per-assembly config files.
19120         * icall.c: decrapified code to get the config dir and moved to
19121         mono-config.c.
19122         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
19123         per-assembly config files. When doing a dll map lookup give precedence
19124         to the per-assembly data.
19125
19126 2004-04-14  Martin Baulig  <martin@ximian.com>
19127
19128         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
19129         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
19130         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
19131
19132         * mono-debugger-debugger.c: While the debugger is locked, remember
19133         whether the symbol tables have changes and send one single
19134         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
19135
19136 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
19137
19138         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
19139
19140         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
19141         function.
19142
19143         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
19144         account when marshalling string arrays. Fixes #56965.
19145
19146 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
19147
19148         * icall.c: Add new icalls mapping for security.
19149         * security.c|h: Add internal calls for WindowsIdentity,
19150         WindowsImpersonationContext and WindowsPrincipal.
19151
19152 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
19153
19154         * class.c: Added comment to ensure the System.MonoDummy class
19155         is removed when no longer necessary
19156
19157 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
19158
19159         * appdomain.c: Pass arguments to the bootstraping exceptions to
19160         minimize JITed methods at boot
19161
19162         * metadata.c (mono_exception_from_name_two_strings): Allow for the
19163         second string to be null.
19164
19165         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
19166         Change the protocol to minimize the JIT methods at startup.  Now
19167         it Returns the internal codepage, if the value of "int_code_page"
19168         is 1 at entry, and we can not compute a suitable code page
19169         number, returns the code page as a string.
19170
19171 2004-04-13  Jackson Harper  <jackson@ximian.com>
19172
19173         * culture-info-tables.h: Fix number of decimal digits for all
19174         english locales.
19175
19176 2004-04-13  Jackson Harper  <jackson@ximian.com>
19177
19178         * icall.c: Clairfy out of sync error message. It is not always
19179         your corlib that is out of sync.
19180
19181 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
19182
19183         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
19184         properties when only the set accessor is overriden. Fixes #55874.
19185
19186 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
19187
19188         * assembly.c (mono_assembly_load_references): Make this thread safe.
19189         Fixes #56327.
19190
19191 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
19192
19193         * monosn.c: Add missing initialization calls.
19194
19195 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
19196
19197         * locales.c:
19198         ves_icall_System_Globalization_CultureInfo_construct_number_format
19199         Fix g_assert so it compiles on fussier compilers re int/ptr
19200         mismatch
19201
19202 2004-04-08  Dick Porter  <dick@ximian.com>
19203
19204         * socket-io.h:
19205         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
19206         53992.  Also rearrange the code so that the internal calls return
19207         an error value and exceptions are thrown from managed code.
19208
19209         * icall.c: Add type info to the socket icalls.
19210
19211 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19212
19213         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
19214         owes me a beer.
19215
19216 2004-04-07  Martin Baulig  <martin@ximian.com>
19217
19218         * class.c (mono_class_from_generic_parameter): Don't default
19219         `klass->parent' to `mono_defaults.object_type'.
19220
19221 2004-04-07  Martin Baulig  <martin@ximian.com>
19222
19223         * reflection.c (mono_reflection_initialize_generic_parameter): Set
19224         `param->pklass->reflection_info'.       
19225
19226 2004-04-07  Jackson Harper  <jackson@ximian.com>
19227
19228         * culture-info-tables.h: Fix date separator symbol.
19229         
19230 2004-04-07  Martin Baulig  <martin@ximian.com>
19231
19232         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
19233         from System.Type to System.MonoType.
19234
19235 2004-04-07  Martin Baulig  <martin@ximian.com>
19236
19237         * reflection.h
19238         (MonoReflectionGenericParam): Added `has_reference_type' and
19239         `has_value_type' fields.
19240
19241         * reflection.c (mono_image_get_generic_param_info): Encode the
19242         correct flags if we have the `class' or `struct' constraint.
19243
19244 2004-04-07  Martin Baulig  <martin@ximian.com>
19245
19246         * reflection.h
19247         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
19248
19249 2004-04-07  Jackson Harper  <jackson@ximian.com>
19250
19251         * appdomain.c: Revert extra patches, just wanted to bump the
19252         version number.
19253         
19254 2004-04-07  Jackson Harper  <jackson@ximian.com>
19255
19256         * Makefile.am: Add culture-info private headers.
19257         * icall.c: Add new icalls for contructing locales.
19258         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
19259         * locales.h: Declare new culture info construction methods.
19260         * object.h: Add new fields used to avoid the CultureMap to
19261         MonoCultureInfo.
19262         * culture-info.h: Definition of structs used in the culture info
19263         tables.
19264         * culture-info-tables.h: Autogenerated tables that contain culture
19265         info data. This file was generated with the locale-builder tool.
19266         * appdomain.c: Incement corlib version number.
19267         
19268 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
19269
19270         * appdomain.c: (mono_runtime_init) move mono_thread_init
19271         to before mono_object_new calls so critical sections
19272         are initialized before use.
19273
19274 2004-04-07  Martin Baulig  <martin@ximian.com>
19275
19276         * icall.c
19277         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
19278         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
19279         (ves_icall_MonoGenericParam_initialize): Removed.
19280         (monogenericparam_icalls): Removed.
19281         (generictypeparambuilder_icalls): Added new table for
19282         System.Reflection.Emit.GenericTypeParameterBuilder.
19283
19284         * reflection.c
19285         (mono_reflection_define_generic_parameter): Removed.
19286         (mono_reflection_initialize_generic_parameter): This is now called
19287         from GenericTypeParameterBuilder's .ctor.
19288
19289 2004-04-06  Martin Baulig  <martin@ximian.com>
19290
19291         * class.c (mono_class_init): Don't inflate nested classes in a
19292         generic instance.
19293         (mono_type_get_name_recurse): Include the generic arguments for
19294         generic instances and generic type declarations.
19295         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
19296         (_mono_class_get_instantiation_name): Removed.
19297         (mono_class_create_generic): Always use `gklass->name' as our name.
19298
19299         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
19300
19301         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
19302         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
19303         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
19304         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
19305         closed generic methods here.
19306
19307         * reflection.c
19308         (mono_reflection_generic_inst_get_nested_types): Removed.
19309         (inflate_mono_method): Copy the generic parameters from the
19310         MonoMethodHeader into out MonoGenericMethod.
19311
19312 2004-04-06  Martin Baulig  <martin@ximian.com>
19313
19314         * row-indexes.h
19315         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
19316
19317         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
19318
19319         * reflection.c (build_compressed_metadata): If we have any entries
19320         in the GenericParam, MethodSpec or GenericParamConstraint tables,
19321         set the header version to 1.1.
19322
19323 2004-04-06  Martin Baulig  <martin@ximian.com>
19324
19325         * class.c (mono_class_init): If we're a generic instance,
19326         initialize our nested classes, too.
19327         (_mono_class_get_instantiation_name): Deal with the new `!%d'
19328         suffix. 
19329
19330 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19331
19332         * process.c: quote the argument passed to the shell on windows.
19333
19334 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
19335
19336         * threads.c (mono_alloc_special_static_data): Allow this to be
19337         called during startup.
19338
19339 2004-04-02  Martin Baulig  <martin@ximian.com>
19340
19341         * icall.c
19342         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
19343
19344 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
19345
19346         * icall.c: Fix build.
19347
19348 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
19349
19350         * Makefile.am: Added security.c|h.
19351         * icall.c: Added icall for get_UserName;
19352         * security.c: New file for security related icalls. Added function
19353         get_UserName for System.Environment (fix #56144).
19354         * security.h: New. Header file for security.c
19355
19356 2004-04-02  Dick Porter  <dick@ximian.com>
19357
19358         * icall.c: Deleted the icalls that were obsoleted some time ago
19359         by the ICU string code, and which were mixed into the icall
19360         rearranging.  Fixes bug 55969.
19361
19362         * string-icalls.h: 
19363         * string-icalls.c: Deleted the code that those icalls reference.
19364
19365 2004-04-01  Martin Baulig  <martin@ximian.com>
19366
19367         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
19368
19369         * class.c (mono_class_from_generic_parameter): Don't set 
19370         TYPE_ATTRIBUTE_INTERFACE.
19371         (my_mono_class_from_generic_parameter): Likewise.
19372
19373 2004-04-01  Martin Baulig  <martin@ximian.com>
19374
19375         * loader.c (find_method): Added an optional `MonoClass *ic'
19376         argument to search in a specific interface.
19377         (mono_get_method_constrained): New public function.
19378
19379 2004-04-01  Martin Baulig  <martin@ximian.com>
19380
19381         * reflection.c (mono_image_get_generic_field_token): Use the
19382         `handleref' cache here.
19383
19384 2004-04-01  Martin Baulig  <martin@ximian.com>
19385
19386         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
19387
19388         * reflection.c (create_generic_typespec): Use the `typespec' hash
19389         here, not the `typeref' one.    
19390
19391 2004-04-01  Martin Baulig  <martin@ximian.com>
19392
19393         * class.c (mono_class_inflate_generic_type): Moved the
19394         functionality into a new static inflate_generic_type() which
19395         returns NULL if it didn't do anything.  Only increment the
19396         `mono_stats.inflated_type_count' if we actually inflated
19397         something.
19398         (mono_class_get_full): Check the classes type to see whether we
19399         need to inflate it; also inflate MONO_TYPE_(M)VAR.
19400
19401 2004-04-01  Jackson Harper  <jackson@ximian.com>
19402
19403         * reflection.c: Set culture for assembly references.
19404         
19405 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
19406
19407         * reflection.[ch], icall.[ch], Fix support for pinning variables.
19408
19409 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19410
19411         * assembly.c:
19412         (do_mono_assembly_open): the critical section also covers
19413         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
19414
19415 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19416
19417         * threads.c:
19418         (mono_manage_threads): abort the background threads when finishing.
19419         Fixes bug #47232.
19420
19421 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19422
19423         * gc.c: only close the done_event handle if there was no timeout.
19424         C-ified comments.
19425
19426 2004-03-30  Martin Baulig  <martin@ximian.com>
19427
19428         * icall.c (icall_entries): It's called "System.Activator", not
19429         "System.Activation".    
19430
19431 2004-03-30  Martin Baulig  <martin@ximian.com>
19432
19433         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
19434         (mono_class_create_from_typespec): Likewise.
19435
19436 2004-03-30  Martin Baulig  <martin@ximian.com>
19437
19438         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
19439         `has_ctor_constraint' and `initialized'.
19440
19441 2004-03-30  Martin Baulig  <martin@ximian.com>
19442
19443         * reflection.c (encode_new_constraint): New static function to add
19444         the constructor constraint attribute to a type parameter.
19445         (encode_constraints): Call encode_new_constraint() if necessary.
19446
19447         * reflection.h
19448         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
19449
19450         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
19451         
19452 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
19453
19454         * reflection.c, icall.c: add support for pinning variables. 
19455
19456 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
19457
19458         * marshal.c (mono_marshal_get_managed_wrapper):
19459         init bool local with zero rather than null.
19460
19461 2004-03-29  Martin Baulig  <martin@ximian.com>
19462
19463         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
19464         the "official" behavior here.
19465         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
19466
19467 2004-03-29  Martin Baulig  <martin@ximian.com>
19468
19469         * icall.c: Reflect latest API changes.
19470
19471 2004-03-29  Martin Baulig  <martin@ximian.com>
19472
19473         * loader.c (mono_get_method_from_token): Also call
19474         mono_metadata_load_generic_params () for abstract and interface
19475         methods; replace the type arguments in the method signature with
19476         the ones which are loaded from the metadata.
19477
19478 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
19479
19480         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
19481         of the lock is not the current thread. MS.NET don't do it, in spite of
19482         what the documentation says. See bug #56157.
19483
19484 2004-03-28  Martin Baulig  <martin@ximian.com>
19485
19486         * class.c (mono_class_init): Don't call init_properties() and
19487         init_events() for generic instances; set `prop->parent' when
19488         inflating properties.
19489
19490         * reflection.c (mono_generic_inst_get_object): Call
19491         `mono_class_init (ginst->klass)'.
19492         (mono_type_get_object): Only create a MonoGenericInst if your
19493         generic type is a TypeBuilder.
19494         (do_mono_reflection_bind_generic_parameters): Only set
19495         `ginst->is_dynamic' if our generic type is a TypeBuilder.
19496
19497 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
19498
19499         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
19500         Fixes #56091.
19501
19502 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19503
19504         * icall.c: added Kill_internal icall.
19505         * process.[ch]: added Kill_internal icall.
19506
19507 2004-03-25  Martin Baulig  <martin@ximian.com>
19508
19509         * class.h (MonoStats): Added `generic_instance_count',
19510         `inflated_method_count', `inflated_type_count' and
19511         `generics_metadata_size'.       
19512
19513 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19514
19515         * reflection.c: no warnings now.
19516
19517 2004-03-25  Martin Baulig  <martin@ximian.com>
19518
19519         * class.c (mono_class_get_full): New public function; does a
19520         mono_class_get(), but also takes a `MonoGenericContext *'.
19521
19522         * loader.c (mono_field_from_memberref): Renamed to
19523         `field_from_memberref', made static and added `MonoGenericContext *'
19524         argument.
19525         (mono_field_from_token): Added `MonoGenericInst *' argument.
19526         (method_from_memberef): Likewise.
19527         (mono_get_method_from_token): Likewise.
19528         (mono_get_method_full): New public function; does a
19529         mono_get_method(), but also takes a `MonoGenericContext *'.
19530
19531         * verify.c (mono_method_verify): Get the method's generic context
19532         and pass it to mono_field_from_token(), mono_get_method_full() and
19533         mono_class_get_full().
19534
19535 2004-03-25  Martin Baulig  <martin@ximian.com>
19536
19537         * class.c (mono_class_inflate_generic_type): Take a
19538         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
19539         `MonoGenericMethod *'.
19540
19541 2004-03-25  Martin Baulig  <martin@ximian.com>
19542
19543         * loader.h (MonoMethodInflated): Store the MonoGenericContext
19544         instead of the MonoGenericMethod here.
19545
19546 2004-03-25  Martin Baulig  <martin@ximian.com>
19547
19548         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
19549         each time we create a new MonoGenericInst, we also create a new
19550         context which points back to us.
19551
19552         * class.c (inflate_method): Use `ginst->context' instead of
19553         creating a new context.
19554
19555         * loader.c (method_from_memberref): Use
19556         `klass->generic_inst->context' instead of creating a new context.
19557
19558 2004-03-25  Martin Baulig  <martin@ximian.com>
19559
19560         * class.h (MonoGenericContext): New struct.
19561         (MonoGenericMethod): Removed `generic_inst'.
19562
19563         * class.c (mono_class_inflate_generic_method): Take a
19564         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
19565
19566 2004-03-25  Martin Baulig  <martin@ximian.com>
19567
19568         * loader.h (MonoMethodInflated): New typedef.
19569
19570         * metadata.h (MonoMethodSignature): Removed `gen_method', make
19571         `generic_param_count' consume just 30 bits, added `is_inflated'
19572         and `has_type_parameters' flags (one bit each).
19573
19574         * class.c (mono_class_inflate_generic_method): Create a
19575         MonoMethodInflated instead of a MonoMethodNormal and set
19576         `is_inflated' in the method signature.
19577
19578         * class.h (MonoGenericMethod): Removed `generic_method'.
19579
19580 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
19581
19582         * image.c: Make sure the name of a MonoImage is always an absolute path.
19583           This fixes bug #54415.
19584
19585 2004-03-24  Martin Baulig  <martin@ximian.com>
19586
19587         * class.c (mono_class_setup_vtable): If we're a generic instance,
19588         use our generic type's vtable size.
19589
19590 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
19591
19592         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
19593         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
19594         problems.
19595
19596 2004-03-23  Martin Baulig  <martin@ximian.com>
19597
19598         * class.h (MonoDynamicGenericInst): Added `int count_events' and
19599         `MonoEvent *events'.
19600
19601         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
19602         (typebuilder_icalls): Added "get_event_info"; calls
19603         mono_reflection_event_builder_get_event_info(). 
19604
19605         * reflection.c (mono_reflection_generic_inst_initialize): Added
19606         `MonoArray *events'.
19607         (mono_reflection_event_builder_get_event_info): New function.
19608
19609 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
19610
19611         * object.h: add mono_type_initialization_init
19612
19613         * object.c (mono_runtime_class_init): 
19614         implement class constructor synchronization rules
19615         to cope with threading issues.  
19616         add mono_type_initialization_init
19617
19618         * appdomain.c (mono_runtime_init): call 
19619         mono_type_initialization_init
19620
19621         * class.h: removing initializing field from MonoVTable
19622
19623 2004-03-23  Martin Baulig  <martin@ximian.com>
19624
19625         * class.c (my_mono_class_from_generic_parameter): Use
19626         `param->name' if it's not NULL. 
19627
19628 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
19629
19630         * class.c: do not insert non-virtual methods in the vtable.
19631         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
19632         that means the method is non-virtual. This never would have
19633         happened before.
19634
19635 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
19636
19637         * profiler.c: Added lock for accessing coverage_hash.
19638
19639 2004-03-22  Martin Baulig  <martin@ximian.com>
19640
19641         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
19642         `method->method->signature->generic_param_count != 0' to make it
19643         work for interface methods.
19644
19645 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19646
19647         * process.c: quote the string passed to the shell using g_shell_quote.
19648
19649 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19650
19651         * threads.c:
19652         (mono_threads_manage): don't remove the finalizer thread and self
19653         from the threads hash table so that mono_thread_manage can be called
19654         more than once.
19655
19656 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19657
19658         * process.c: quote the arguments when UseShellExecute is true. Fixes
19659         bug #55790.
19660
19661 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19662
19663         * threads.c: set mono_thread_detach as a cleanup routine for every
19664         thread. This way it's always executed upon thread termination, either
19665         aborted or finished normally. No more xsp hangs!
19666
19667 2004-03-17  Martin Baulig  <martin@ximian.com>
19668
19669         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
19670         `int count_nested' and a `MonoType **nested'.
19671
19672         * reflection.c (mono_reflection_bind_generic_parameters): Moved
19673         most of the functionality into a new static
19674         do_mono_reflection_bind_generic_parameters() and don't take a
19675         `MonoType *nested_in' argument any more.  Don't compute nested
19676         types here.
19677         (mono_reflection_generic_inst_get_nested_types): New public method
19678         to get nested types.
19679
19680         * class.c (mono_class_create_generic): Set `klass->nested_in' if
19681         we're a nested class.
19682
19683         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
19684         mono_reflection_generic_inst_get_nested_types() to compute the
19685         nested types.
19686
19687 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
19688
19689         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
19690         descriptive error message under windows.
19691         
19692 2004-03-17  Martin Baulig  <martin@ximian.com>
19693
19694         * class.c (dup_type): Added `const MonoType *original' argument;
19695         copy the attrs from the original type.
19696
19697 2004-03-17  Martin Baulig  <martin@ximian.com>
19698
19699         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
19700         `m->generic_inst_cache' here.
19701
19702 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
19703
19704         * exception.h exception.c: Add stack_overflow_exception.
19705
19706 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19707
19708         * threadpool.c:
19709         (overlapped_callback): call SetEvent *after* invoking the callback.
19710         No need to call CloseHandle.
19711
19712 2004-03-16  Martin Baulig  <martin@ximian.com>
19713
19714         * reflection.c (mono_image_get_fieldref_token): Take a
19715         `MonoReflectionField *' instead of a `MonoClassField *' and a
19716         `MonoClass *'; store the `MonoReflectionField *' in the hash.
19717
19718 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19719
19720         * appdomain.c: don't add the culture to the filename we're looking for
19721         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
19722
19723 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19724
19725         * locales.c: don't ignore symbols when doing case insensitive compares.
19726         Thanks Dick! Fixes bug #54046.
19727
19728         * threads.c: surround 'threads' usage with enter/leave in
19729         mono_thread_manage.
19730
19731 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
19732
19733         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
19734         implicitly marshalled as [Out]. Fixes #55450.
19735
19736         (mono_marshal_get_runtime_invoke): Zero out the result if there is
19737         an exception.
19738
19739 2004-03-16  Martin Baulig  <martin@ximian.com>
19740
19741         * class.c (mono_class_from_generic_parameter): Use the actual
19742         parameter name. 
19743
19744 2004-03-16  Martin Baulig  <martin@ximian.com>
19745
19746         * reflection.c (type_get_signature_size): New static function.
19747         Compues the size of the type in a method signature.
19748         (method_get_signature_size): New static function; calls
19749         type_get_signature_size() to compute the actual size of the
19750         method's signature.
19751         (method_encode_signature): Use method_get_signature_size() to get
19752         the signature's size rather than using `nparams * 10'.
19753
19754 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19755
19756         * file-io.h: define here WapiOverlapped on windows. I don't want the
19757         regular OVERLAPPED one.
19758
19759         * file-io.c:
19760         * threadpool.c: somehow, BindIoCompletionCallback is not found.
19761         Disabling AIO on windows.
19762
19763 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19764
19765         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
19766         bug #55385.
19767
19768 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19769
19770         * appdomain.c: upgraded corlib version.
19771
19772         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
19773         and BeginWrite. Allow opening files for asynchrnous operations.
19774
19775         * file-io.h: new struct that maps FileStreamAsyncResult.
19776         * icall.c: added new icalls.
19777         * process.[ch]: support setting child process environment variables
19778         and use the SHELL or COMSPEC when UseShellExecute is true.
19779
19780         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
19781         callback for async. IO is here and also BindHandle.
19782
19783         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
19784         from here.
19785
19786 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
19787
19788         * reflection.c (create_custom_attr): Allow len == 0.
19789
19790         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
19791         computation on big-endian machines.
19792
19793 2004-03-13  Martin Baulig  <martin@ximian.com>
19794
19795         * class.h (MonoGenericInst): Added `int count_ifaces'.
19796
19797         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
19798         `ginst->count_ifaces' instead `klass->interface_count' since we
19799         may get called before the vtable is created.
19800
19801         * loader.c (mono_method_get_param_names): If we're a generic
19802         instance, return and don't initialize the class.
19803
19804         * reflection.c (mono_reflection_setup_generic_class): Don't call
19805         ensure_runtime_vtable().
19806         (mono_reflection_bind_generic_parameters): Set
19807         `ginst->count_ifaces'.
19808
19809 2004-03-11  Jackson Harper <jackson@ximian.com>
19810
19811         * icall.c:
19812         * unicode.c:
19813         * unicode.h: Remove unused System.Char icalls.
19814         
19815 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
19816
19817         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
19818         code when we P/Invoke the first library in Windows.Forms, instead
19819         of when we first open the assembly.
19820
19821         * assembly.c: Drop the lookup from here.
19822
19823 2004-03-10  Martin Baulig  <martin@ximian.com>
19824
19825         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
19826         class for properties, fields and events.  Finally fixes #54945.
19827
19828 2004-03-10  Martin Baulig  <martin@ximian.com>
19829
19830         * metadata.c (mono_metadata_class_equal): New static function;
19831         checks whether two generic instances or two generic parameters are
19832         equal.
19833         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
19834         compare classes.        
19835
19836 2004-03-10  Martin Baulig  <martin@ximian.com>
19837
19838         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
19839
19840         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
19841         argument and write it into the `reflection_info' field.
19842
19843         * icall.c
19844         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
19845         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
19846
19847 2004-03-09  Jackson Harper  <jackson@ximian.com>
19848
19849         * char-conversions.h: use 8 bits for numeric data its all we need
19850         * icall.c: numeric data is only 8 bits now.
19851
19852 2004-03-09  Martin Baulig  <martin@ximian.com>
19853
19854         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
19855
19856         * class.c (init_properties, init_events): Initialize the new
19857         `parent' field.
19858
19859         * reflection.c (typebuilder_setup_properties): Likewise.
19860         (typebuilder_setup_events): Likewise.
19861
19862         * reflection.h (MonoEventInfo): Replaced `parent with
19863         `declaring_type' and `reflected_type'.
19864
19865         * icall.c (ves_icall_get_property_info): Distinguish between
19866         declaring and reflected type.
19867         (ves_icall_get_event_info): Likewise.
19868
19869 2004-03-09  Martin Baulig  <martin@ximian.com>
19870
19871         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
19872         (ves_icall_Type_GetField): Correctly set field->klass.
19873
19874 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
19875
19876         * loader.h: Fix warning.
19877
19878 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
19879
19880         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
19881         library routine if present.  Notice that it will still continue
19882         executing even if its missing, for those working on the Gtk#
19883         edition of Windows.Forms.
19884
19885         * assembly.c (do_mono_assembly_open): If loading the
19886         System.Windows.Forms call mono_loader_wini_init.
19887
19888 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
19889
19890         * class.h: Added MonoRemoteClass struct.
19891         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
19892         function for MonoStrings.
19893         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
19894         Added internal call for getting the proxy type.
19895         * marshal.c: Get the type of transparent proxies from its remote_class.
19896         Added methods that generate the IL for type checks and casts:
19897         mono_marshal_get_isinst, mono_marshal_get_castclass, 
19898         mono_marshal_get_proxy_cancast.
19899         * marshal.h: Declaration of the previous new methods.
19900         * object.c: Added new moethods for creating and updating MonoRemoteClass
19901         instances: mono_remote_class, mono_upgrade_remote_class, 
19902         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
19903         * verify.c: FIx transparent_proxy_fields layout.
19904         * appdomain.c: Bump corlib version.
19905
19906 2004-03-04  Jackson Harper  <jackson@ximian.com>
19907
19908         * icall.c: Add icall to access char conversion tables.
19909         * char-conversions.h: Character conversion tables.
19910         * Makefile.am: Add char-conversions.h private header file.
19911         
19912 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
19913
19914         * appdomain.c (unload_thread_main): Increase unloading timeout to
19915         10 sec as a temporary workaround for Nant problems.
19916
19917 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
19918
19919         * gc.c: Add checks for GC_enable and GC_disable.
19920
19921         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
19922         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
19923         (bug #54988).
19924         
19925 2004-02-27  Martin Baulig  <martin@ximian.com>
19926
19927         * reflection.c (mono_reflection_bind_generic_parameters): Take a
19928         `MonoReflectionType *' instead of a `MonoType *'.
19929
19930 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
19931
19932         * gc.c (run_finalize): Avoid finalizing the object representing the
19933         finalizer thread.
19934         (finalizer_thread): Fix warning.
19935
19936 2004-02-25  Martin Baulig  <martin@ximian.com>
19937
19938         * class.c (_mono_class_get_instantiation_name): Added `int offset'
19939         argument for nested types.
19940         (mono_class_create_generic): Added support for nested generictypes.
19941
19942         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
19943         `GList *nested'.
19944
19945         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
19946
19947         * reflection.c (method_encode_signature): Increase the minimum
19948         value of `size' from 10 to 11.
19949         (mono_reflection_bind_generic_parameters): Take `int type_argc'
19950         and `MonoType **types' arguments instead of the `MonoArray
19951         *types'; added `MonoType *nested_in'.  Recursively instantiate
19952         nested classes. 
19953
19954 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
19955
19956         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
19957         stack_overflow_ex members which are used by exception handling.
19958
19959         * appdomain.c (mono_runtime_init): Initialize the new members.
19960
19961         * gc.c (mono_gc_enable): New helper function.
19962         * gc.c (mono_gc_disable): New helper function.
19963
19964 2004-02-23  Martin Baulig  <martin@ximian.com>
19965
19966         * icall.c: I must have been really stupid - make it actually work
19967         this time ;-)
19968
19969 2004-02-23  Martin Baulig  <martin@ximian.com>
19970
19971         * loader.c (method_from_memberref): Only inflate the method if
19972         it's in another klass.
19973
19974 2004-02-23  Martin Baulig  <martin@ximian.com>
19975
19976         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
19977         (mono_class_init): If we're a generic instance and an interface,
19978         compute `class->interface_id'; also create `class->interfaces'
19979         here and inflate them.
19980
19981         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
19982         `ginst->is_open'.
19983         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
19984
19985         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
19986
19987 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
19988
19989         * reflection.c (method_encode_code): Improved the error message
19990         generated by the exception.
19991
19992 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19993
19994         * icall.c: Martin did not do what he said in the ChangeLog for
19995         2004-02-18, but put back the changes for properties and events.
19996         Commenting those changes out again and adding comment to bug #54518.
19997         
19998         * process.c: removed warning.
19999
20000 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
20001
20002         * marshal.c (emit_struct_conv): Print an error message instead of
20003         asserting when a type does not have the StructLayout attribute.
20004
20005 2004-02-20  Martin Baulig  <martin@ximian.com>
20006
20007         * reflection.c (mono_type_get_object): Also use the cache for
20008         generic instances.
20009         (mono_reflection_bind_generic_parameters): Always compute
20010         `ginst->ifaces'.        
20011
20012 2004-02-20  Martin Baulig  <martin@ximian.com>
20013
20014         * class.h (MonoGenericMethod): Removed `klass'.
20015
20016         * class.c (mono_class_inflate_generic_method): Added `MonoClass
20017         *klass' argument.
20018
20019 2004-02-20  Martin Baulig  <martin@ximian.com>
20020
20021         * reflection.c (method_encode_methodspec): Actually use the
20022         uninflated signature for the memberref.
20023
20024 2004-02-20  Martin Baulig  <martin@ximian.com>
20025
20026         * class.h (MonoGenericMethod): Removed `declaring'.
20027
20028         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
20029         is NULL, compute it here.
20030
20031 2004-02-20  Martin Baulig  <martin@ximian.com>
20032
20033         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
20034
20035         * metadata.c (mono_metadata_generic_inst_hash): New method.
20036         (mono_metadata_generic_inst_equal): New method.
20037
20038         * reflection.c (mono_reflection_bind_generic_parameters): Use the
20039         `klass->image->generic_inst_cache' cache to avoid creating
20040         duplicate MonoGenericInst's.
20041
20042         * class.c (mono_class_inflate_generic_type): Use the cache.
20043
20044 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
20045
20046         * object.c: fixed gc descriptor calculation for embedded valuetypes.
20047
20048 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20049
20050         * icall.c: added Socket.WSAIoctl icall.
20051
20052         * socket-io.[ch]: implemented
20053         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
20054
20055 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
20056
20057         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
20058
20059 2004-02-18  Urs C Muff  <umuff@quark.com>
20060
20061         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
20062         this work on PPC and other big-endian architectures.
20063
20064         * debug-mono-symfile.h: Prepended the names of all the `guint32'
20065         fields with an underscore to make sure they're only accessed by
20066         the read32() macro.
20067
20068 2004-02-18  Martin Baulig  <martin@ximian.com>
20069
20070         * icall.c: Put the klass->refclass changes back for methods and
20071         fields, but not for properties and events.  We're currently not
20072         distinguishing between DeclaringType and ReflectedType for
20073         properties and events, that's what caused the regressions.
20074
20075 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20076
20077         * object.c:
20078         (mono_async_result_new): the handle can be NULL.
20079
20080         * threadpool.c: Use an event instead of a semaphore, don't initialize
20081         it until needed. This saves quite a few semaphores from being created
20082         when using the threadpool.
20083
20084 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
20085
20086         * object.c (mono_string_is_interned_lookup): Fix interning of long
20087         strings. Fixes #54473.
20088
20089         * domain.c (ldstr_equal): Optimize if the two strings are equal.
20090
20091         * icall.c: Revert the klass->refclass changes since they introduce
20092         regressions (bug #54518).
20093
20094 2004-02-18  Martin Baulig  <martin@ximian.com>
20095
20096         * class.c (mono_class_init): If we're a generic instance and don't
20097         come from a TypeBuilder, inflate our members here.
20098         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
20099         (mono_class_create_generic): New public method.
20100         (mono_class_initialize_generic): Removed.
20101         (get_instantiation_name): Renamed to
20102         _mono_class_get_instantiation_name() and made it public.
20103
20104 2004-02-18  Martin Baulig  <martin@ximian.com>
20105
20106         * class.c (mono_class_inflate_generic_type): Clear the new
20107         instance's `nginst->klass' when inflating a generic instance.
20108         (mono_class_is_subclass_of): Added (basic) support for generic
20109         instances.
20110
20111 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
20112
20113         * appdomain.h, domain.c: use a MonoCodeManager instead of a
20114         MonoMempool to hold compiled native code.
20115
20116 2004-02-17  Martin Baulig  <martin@ximian.com>
20117
20118         * class.h (MonoDynamicGenericInst): Added `count_properties' and
20119         `properties'.
20120
20121         * reflection.c (mono_reflection_generic_inst_initialize): Added
20122         `MonoArray *properties' argument.
20123
20124         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
20125
20126 2004-02-17  Martin Baulig  <martin@ximian.com>
20127
20128         * icall.c (ves_icall_Type_GetFields): Renamed to
20129         ves_icall_Type_GetFields_internal() and added a
20130         `MonoReflectionType *rtype' argument; pass it to
20131         mono_field_get_object() to set the field's "reflected" type.
20132         (ves_icall_Type_GetConstructors): Likewise.
20133         (ves_icall_Type_GetEvents): Likewise.
20134         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
20135         argument; pass it to mono_method_get_object() to set the method's
20136         "reflected" type.       
20137
20138 2004-02-17  Martin Baulig  <martin@ximian.com>
20139
20140         * class.h (MonoDynamicGenericInst): New type.
20141         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
20142
20143         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
20144         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
20145         (ves_icall_MonoGenericInst_GetFields): New interncall.
20146
20147         * class.c (mono_class_from_generic): Don't call
20148         mono_class_initialize_generic() if this is a dynamic instance;
20149         ie. it's being created from a TypeBuilder.
20150         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
20151         `class->byval_arg.type'.
20152
20153         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
20154         to `inflate_method' and made static.
20155         (mono_reflection_inflate_field): Removed.
20156         (mono_reflection_generic_inst_initialize): New public method.
20157
20158         * reflection.h (MonoReflectionGenericInst): Removed `methods',
20159         `ctors' and `fields'; added `initialized'.
20160
20161 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
20162
20163         * debug-helpers.c (mono_method_full_name): Fix output for empty
20164         namespaces.
20165
20166 2004-02-12  Martin Baulig  <martin@ximian.com>
20167
20168         * class.h (MonoClassField): Added `MonoType *generic_type'.
20169
20170         * reflection.c (mono_image_get_fieldref_token): Added support for
20171         instantiated generic types.
20172         (field_encode_inflated_field): Removed.
20173         (mono_image_get_inflated_field_token): Removed.
20174         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
20175
20176         * reflection.h (MonoReflectionInflatedField): Removed.
20177
20178 2004-02-12  Martin Baulig  <martin@ximian.com>
20179
20180         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
20181         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
20182
20183         * reflection.c (mono_image_get_methodspec_token): Take a
20184         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
20185         (mono_image_create_token): Check whether we have a
20186         `method->signature->gen_method' and call
20187         mono_image_get_methodspec_token() if appropriate.
20188         (inflated_method_get_object): Removed.
20189         (mono_reflection_bind_generic_method_parameters): Return a
20190         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
20191         (mono_reflection_inflate_method_or_ctor): Likewise.
20192
20193         * reflection.h (MonoReflectionInflatedMethod): Removed.
20194
20195 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
20196
20197         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
20198         for custom valuetype marshalling.
20199
20200         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
20201
20202 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20203
20204         * icall.c: fixed WSAGetLastError_internal name.
20205
20206 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
20207
20208         * threads.c (mono_thread_attach): Allow this to be called multiple
20209         times for a thread.
20210         
20211         * threads.c (build_wait_tids): Do not wait for ourselves.
20212
20213         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
20214         appdomain list is empty.
20215
20216         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
20217         memory returned by mono_string_builder_to_utf16, since it points into
20218         managed memory. Thanks to Bernie Solomon for noticing this.
20219
20220         * icall.c: Add AppDomainSetup icalls.
20221
20222         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
20223
20224         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
20225         types.
20226
20227         * reflection.c (reflection_methodbuilder_to_mono_method): Save
20228         custom attributes to the method_aux struct. Also fix array indexes etc.
20229
20230         * loader.c (mono_method_get_param_names): Make dynamic case work again.
20231         
20232 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
20233
20234         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
20235         (both static and runtime) and reduce startup time.
20236
20237 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
20238
20239         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
20240         AsAny marshalling conversion instead of crashing.
20241
20242         * marshal.c: Fix warnings.
20243
20244 2004-02-09  Martin Baulig  <martin@ximian.com>
20245
20246         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
20247
20248         * reflection.h (MonoReflectionInflatedMethod): Removed the
20249         `declaring' field, it's now in the unmanaged MonoGenericMethod.
20250
20251         * reflection.c (method_encode_methodspec): Removed the `method'
20252         argument; we get it from `gmethod->declaring'.
20253         (inflated_method_get_object): Removed the `declaring' argument.
20254
20255 2004-02-09  Martin Baulig  <martin@ximian.com>
20256
20257         * class.h (MonoGenericMethod): New type.
20258         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
20259         `generic_method'.
20260
20261         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
20262         a `MonoGenericMethod *gen_method' one.
20263
20264         * class.c (mono_class_inflate_generic_type): Take an additional
20265         `MonoGenericMethod * argument.  This is only non-NULL if we're
20266         inflating types for a generic method.   
20267         (mono_class_inflate_generic_signature): Renamed to
20268         inflate_generic_signature() and made static; take a
20269         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
20270         (inflate_generic_header): Take a `MonoGenericMethod *' argument
20271         instead of a `MonoGenericInst *' one.
20272         (mono_class_inflate_generic_method): Likewise.
20273
20274         * reflection.c (encode_generic_method_sig): Take a
20275         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
20276         (method_encode_methodspec): Likewise.
20277         (inflated_method_get_object): Likewise. 
20278
20279         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
20280         field with a `MonoGenericMethod *gmethod' one.  
20281
20282 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
20283
20284         * class.h (mono_class_has_parent): add parens to expansion
20285         so you can ! this.
20286
20287 2004-02-08  Martin Baulig  <martin@ximian.com>
20288
20289         * image.h (MonoImage): Removed `generics_cache'.
20290
20291         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
20292         instead of a `MonoType *' argument; removed the `inflate_methods'
20293         argument.  Don't inflate methods here.
20294
20295         * loader.c (find_method): If it's a generic instance, call
20296         mono_class_init() on the `sclass->generic_inst->generic_type'.
20297
20298         * metadata.c (mono_type_size): Make this work on uninitialized
20299         generic instances; call it on the `ginst->generic_type's class.
20300
20301         * reflection.c (mono_reflection_bind_generic_parameters): Call
20302         mono_class_from_generic() to create the `ginst->klass'.
20303
20304 2004-02-08  Martin Baulig  <martin@ximian.com>
20305
20306         * class.h (MonoClass): Changed type of `generic_inst' from
20307         `MonoType *' to `MonoGenericInst *'.
20308
20309 2004-02-08  Martin Baulig  <martin@ximian.com>
20310
20311         * icall.c (ves_icall_Type_BindGenericParameters): Just call
20312         mono_type_get_object(), this is now creating a `MonoGenericInst'
20313         for MONO_TYPE_GENERICINST.
20314         (ves_icall_MonoGenericInst_GetParentType): Likewise.
20315         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
20316
20317         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
20318         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
20319         (inflated_method_get_object): Added `MonoClass *refclass' argument.
20320         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
20321         and reflected type.
20322
20323         * reflection.h (MonoReflectionInflatedMethod): Removed
20324         `declaring_type' and `reflected_type'.
20325
20326 2004-02-08  Martin Baulig  <martin@ximian.com>
20327
20328         * class.h (MonoGenericInst): Added `MonoType *parent' and
20329         `MonoType **ifaces'.
20330
20331         * reflection.h (MonoReflectionGenericInst): Removed `klass',
20332         `parent' and `interfaces'.
20333
20334         * reflection.c (mono_reflection_bind_generic_parameters): Take a
20335         `MonoType *' argument and return a `MonoType *'.
20336
20337         * icall.c
20338         (ves_icall_MonoGenericInst_GetParentType): New interncall.
20339         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
20340
20341 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
20342
20343         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
20344         valuetype marshalling.
20345
20346 2004-02-06  Martin Baulig  <martin@ximian.com>
20347
20348         * class.c
20349         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
20350         (my_mono_class_from_generic_parameter): Likewise.
20351
20352 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
20353
20354         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
20355         contents of the symbol files lazily.
20356
20357         * object.h (MonoThread): Add 'name' and 'name_len' fields.
20358
20359         * threads.h threads.c icall.c: New icalls for getting and setting the
20360         threads name.
20361
20362 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
20363
20364         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
20365         Raise an exception when the domain is not found.
20366
20367 2004-02-03  Martin Baulig  <martin@ximian.com>
20368
20369         * reflection.c (mono_image_get_methodspec_token): Use the
20370         uninflated signature; fixes gen-33.
20371
20372 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
20373
20374         * gc.c threads.c: Make the finalizer thread a normal managed thread so
20375         the finalizer code can use thread functionality.
20376
20377         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
20378         the finalizer thread.
20379
20380         * threads.c: Make some functions more robust.
20381
20382         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
20383
20384         * metadata.h: Add new marshalling conventions.
20385
20386         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
20387         stringbuilder marshalling. Fixes #53700.
20388
20389         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
20390
20391         * reflection.c (mono_image_get_type_info): Save declarative security
20392         info.
20393
20394         * reflection.c (mono_image_get_field_info): Handle uninitialized 
20395         unmanaged fields as well.
20396
20397         * appdomain.c: Bump corlib version.
20398
20399 2004-02-01  Martin Baulig  <martin@ximian.com>
20400
20401         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
20402         method type arguments.  
20403
20404 2004-01-30  Duncan Mak  <duncan@ximian.com>
20405
20406         * marshal.h: Add prototype for
20407         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
20408         and
20409         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
20410         fix the build.
20411
20412 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
20413
20414         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
20415         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
20416
20417 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
20418
20419         * marshal.c (mono_marshal_get_native_wrapper): Add support for
20420         custom marshalling of valuetypes.
20421
20422         * marshal.c: Fix some warnings.
20423
20424 2004-01-29  Martin Baulig  <martin@ximian.com>
20425
20426         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
20427         for generic method parameters.
20428
20429         * reflection.c (method_encode_methodspec): Write the uninflated
20430         signature into the methodspec table.
20431         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
20432         is always the uninflated method.
20433         (reflection_methodbuilder_to_mono_method): Copy the generic
20434         parameters from the MethodBuilder into `header->gen_params'.
20435
20436 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
20437
20438         * class.c (mono_class_from_generic_parameter): Fix warning.
20439
20440 2004-01-27  Martin Baulig  <martin@ximian.com>
20441
20442         * class.c (mono_class_from_generic_parameter): Don't create
20443         `klass->methods' here.  
20444
20445 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
20446
20447         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
20448         extension since it does not work with libraries named lib<FOO>.dll.so.
20449
20450 2004-01-25  Martin Baulig  <martin@ximian.com>
20451
20452         * class.c (mono_class_inflate_generic_type): Added support for
20453         MONO_TYPE_GENERICINST.
20454
20455         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
20456         inflate methods on open constructed types.      
20457
20458 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20459
20460         * object.c: fire ProcessExit event in the root AppDomain after running
20461         Main. Fixes bug #53299.
20462
20463 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
20464
20465         * socket-io.c: include the new socket-wrappers.h header.
20466         Use the wrappers instead of the unix socket functions to make the code
20467         more clear.
20468
20469 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
20470
20471         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
20472
20473         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
20474         Fixes #22532.
20475
20476 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
20477
20478         * reflection.c (mono_image_create_pefile): Handle the case when the
20479         entry point is not a MethodBuilder.
20480
20481         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
20482         field to ReflectionMethod since it is not allways a builder.
20483
20484         * reflection.c (type_get_fully_qualified_name): New helper function to
20485         return the fully qualified name of a type.
20486
20487         * reflection.c (encode_marshal_blob): Always emit the fully qualified
20488         type name for custom marshallers.
20489
20490         * reflection.c (mono_marshal_spec_from_builder): Ditto.
20491
20492         * class.c (mono_class_setup_vtable): If a parent class already 
20493         implements an interface, use the implementing methods from that class.
20494         Fixes #53148.
20495
20496 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20497
20498         * threadpool.c: just return instead of ExitThread to allow for thread
20499         clean up earlier.
20500
20501 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
20502
20503         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
20504         when closing resource modules.
20505
20506         * reflection.c (mono_image_create_pefile): Handle the case when the
20507         entry point is not a MethodBuilder.
20508
20509         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
20510         field to ReflectionMethod since it is not allways a builder.
20511
20512 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
20513
20514         * marshal.c (mono_marshal_get_managed_wrapper): 
20515         mono_marshal_alloc takes native int so CONV_I
20516         the arg for 64bits.
20517
20518 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
20519
20520         * reflection.c (fixup_cattrs): New function to fixup the methoddef
20521         tokens in the cattr table. Fixes #53108.
20522
20523 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20524
20525         * loader.c: don't trim ".dll" before looking up in the config file.
20526         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
20527
20528 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
20529
20530         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
20531         Return the module which contains the resource as well.
20532         (ves_icall_System_Reflection_Module_Close): New icall.
20533
20534         * appdomain.c: Bump corlib version number.
20535
20536         * image.c (mono_image_addref): New public function.
20537
20538         * assembly.c: Call mono_image_addref.
20539
20540         * reflection.c (mono_module_get_object): Increase reference count of 
20541         the image.
20542
20543         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
20544         Fixes #22532.
20545
20546         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
20547         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
20548         proper exceptions on DllImport problems.
20549
20550 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
20551
20552         * class.c, metadata.c: eliminate CSIZE macro.
20553
20554 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
20555
20556         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
20557         * object.h: Added async_callback field in MonoAsyncResult.
20558         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
20559         * verify.c: Added async_callback in MonoAsyncResult layout.
20560
20561 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
20562
20563         * reflection.c (mono_reflection_get_custom_attrs): Add support
20564         for Modules.
20565
20566 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
20567
20568         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
20569         marshalling.
20570         (mono_marshal_method_from_wrapper): Add null pointer check.
20571
20572 2004-01-16  Martin Baulig  <martin@ximian.com>
20573
20574         * debug-mono-symfile.h: Set version number to 36 and reflect
20575         latest symbol writer changes.
20576
20577 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
20578
20579         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
20580         multi-dimensional arrays.
20581         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
20582         (mono_class_from_mono_type): Use bounded_array_class_get.
20583         
20584         * class.c (mono_bounded_array_class_get): New function which takes
20585         a 'bounded' bool argument to distinguish vectors from one dimensional
20586         arrays.
20587
20588         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
20589         bounded_array_class_get if the array has bounds.
20590
20591         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
20592         Search modules loaded using AssemblyBuilder:AddModule as well.
20593
20594 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20595
20596         * appdomain.c: increased corlib version.
20597         * filewatcher.c: removed g_print.
20598         * icall.c:
20599         (get_property_info): only allocate what is actually requested.
20600         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
20601
20602 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20603
20604         * Makefile.am: added filewatcher.[ch]
20605         * filewatcher.[ch]: FileSystemWatcher runtime support.
20606         * icall.c: added new FSW icalls.
20607
20608 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
20609
20610         * string-icalls.c: fix stringbuilder regression as suggested by
20611         Iain McCoy <iain@mccoy.id.au>.
20612
20613 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
20614
20615         * process.c (process_read_stringtable_block): Recognize '007f' as
20616         a language neutral stringtable block.
20617
20618 2004-01-12  Patrik Torstensson
20619
20620         * object.h (MonoStringBuilder) : Changed layout to support our
20621         new stringbuilder class.
20622         * marshal.c: Change marshalling to support the new layout of 
20623         string builder.
20624         * appdomain.c: increased version number because new layout of
20625         string builder.
20626
20627 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
20628
20629         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
20630         assembly name as an string instead of an AssemblyName, since it is
20631         easier to extract info from it.
20632
20633         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
20634         the culture subdirectories too. Fixes #52231.
20635
20636 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20637
20638         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
20639         It takes 2 new parameters with an optional name for the method to look
20640         for and case ignoring info.
20641
20642         * threadpool.c: removed unused variable.
20643
20644 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20645
20646         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
20647         It takes 2 new parameters with an optional name for the property to look
20648         for and case ignoring info.
20649         Fixes bug #52753.
20650
20651 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
20652
20653         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
20654         Fix #52451.
20655
20656 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20657
20658         * appdomain.c:
20659         * assembly.c: escape the uri before passing it to g_filename_from_uri.
20660         Fixes bug #52630.
20661
20662 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
20663
20664         * reflection.c: Add support for more than one unmanaged resource.
20665
20666         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
20667         in field->def_value, as done in all other cases.
20668
20669         * reflection.c (mono_reflection_get_custom_attrs): Add support for
20670         TypeBuilders.
20671
20672         * reflection.c (mono_reflection_create_runtime_class): Remove 
20673         errorneous assignment to klass->element_class, since it is already
20674         done in mono_reflection_setup_internal_class.
20675
20676 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20677
20678         * gc.c: added missing LeaveCriticalSection.
20679         * icall.c: indented a couple of lines.
20680         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
20681         if we call EndInvoke inside a callback. Fixes bug #52601.
20682
20683 2004-01-07  Martin Baulig  <martin@ximian.com>
20684
20685         * mono-debug-debugger.h
20686         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
20687
20688 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
20689
20690         * appdomain.c: Use messages in NotImplementedException.
20691
20692         * exception.c (mono_get_exception_not_implemented): Now this takes
20693         a message argument.
20694
20695         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
20696         exception instead of g_asserting an aborting when something is not
20697         implemented.
20698
20699         Add some inline docs.
20700
20701 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
20702
20703         * reflection.h: Update after changes to object layout.
20704
20705         * reflection.c: Implement saving of unmanaged aka win32 resources.
20706
20707         * appdomain.c: Bump version number.
20708
20709         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
20710         Handle missing domains gracefully.
20711
20712 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
20713
20714         * file-io.c : On Windows, there are much more invalid_path_chars.
20715
20716 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
20717
20718         * class.h, object.c: prepare for GetType () speedup.
20719
20720 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
20721
20722         * profiler.c: workaround for --profile null reference exception on
20723           cygwin. Patch by Patrik Torstensson.
20724
20725 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
20726
20727         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
20728         make work for unaligned access.
20729
20730 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
20731
20732         * class.c: small cleanup (class->fields [i] -> field).
20733         * image.c: check address of metadata is valid.
20734
20735 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
20736
20737         * assembly.h assembly.c (mono_assembly_loaded): New public function to
20738         search the list of loaded assemblies.
20739
20740         * reflection.c (mono_reflection_type_from_name): Use 
20741         mono_assembly_loaded instead of mono_image_loaded.
20742
20743         * reflection.c: Fix warnings.
20744
20745 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
20746
20747         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
20748         is dynamic. This is needed since an assembly can contain both dynamic and
20749         non-dynamic images.
20750
20751         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
20752         assembly->dynamic.
20753
20754         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
20755
20756         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
20757         to store modules loaded using AddModule.
20758
20759         * reflection.c (mono_image_fill_file_table): Generalize this so it works
20760         on Modules.
20761
20762         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
20763
20764         * reflection.c (mono_image_fill_export_table_from_module): New function to
20765         fill out the EXPORTEDTYPES table from a module.
20766
20767         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
20768         into a separate function. Also handle loaded non-dynamic modules.
20769
20770         * reflection.c (mono_image_basic_init): Fix memory allocation.
20771
20772         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20773
20774         * assembly.c (mono_assembly_load_references): Make this public.
20775
20776 2003-12-19  Martin Baulig  <martin@ximian.com>
20777
20778         * class.c (mono_class_initialize_generic): Made this static, take
20779         a `MonoGenericInst *' instead of a `MonoClass *'.
20780         (mono_class_from_generic): Call mono_class_initialize_generic()
20781         unless we're already initialized or being called from
20782         do_mono_metadata_parse_generic_inst().
20783
20784         * class.h (MonoGenericInst): Added `initialized' and
20785         `init_pending' flags.
20786
20787         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
20788         `mono_class_init (gklass)' or mono_class_initialize_generic()
20789         here; set `generic_inst->init_pending' while parsing the
20790         `type_argv'.
20791
20792 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
20793
20794         * locales.c: include string.h for memxxx prototypes
20795
20796 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
20797
20798         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
20799         constructor when accessing literal fields.
20800
20801 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
20802
20803         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20804
20805         * reflection.c (assembly_add_resource_manifest): New function to fill
20806         the MANIFESTRESOURCE table.
20807
20808         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
20809
20810         * reflection.h: Update to changes in class layout.
20811
20812         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
20813         Reenable call to mono_runtime_is_shutting_down ().
20814
20815         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
20816         determine if the runtime is shutting down.
20817
20818 2003-12-16  Jackson Harper <jackson@ximian.com>
20819
20820         * icall.c: comment out call to mono_runtime_is_shutting_down to
20821         fix build.
20822         
20823 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
20824
20825         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
20826         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
20827
20828 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
20829
20830         * reflection.c: move definition of swap_with_size
20831         to before its first call
20832
20833 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
20834
20835         * appdomain.c (mono_runtime_is_shutting_down): New public function.
20836
20837         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
20838         icall.
20839
20840         * object.c: Fix warnings.
20841
20842         * icall.c (ves_icall_Type_Get...): Only consider inherited static
20843         members if FlattenHierarchy is set.
20844
20845         * reflection.c (mono_image_add_decl_security): New function to emit
20846         declarative security.
20847
20848         * reflection.h reflection.c: Add support for declarative security.
20849
20850         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
20851         
20852 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
20853
20854         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
20855         
20856         * appdomain.c verify.c: Moved corlib version checking into its own
20857         function in appdomain.c since it needs to create vtables etc.
20858
20859 2003-12-13  Patrik Torstensson <p@rxc.se>
20860
20861         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
20862         instead of unwrapped server.
20863
20864 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
20865
20866         * verify.c (check_corlib): Fix field index.
20867
20868 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
20869
20870         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
20871         GetGacPath icall.
20872
20873 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
20874
20875         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
20876         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
20877         cope with sizeof(size_t) != sizeof(guint32).
20878
20879 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20880
20881         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
20882         in case of failure.
20883
20884 2003-12-10  Mark Crichton <crichton@gimp.org>
20885
20886         * icall.c: removed the GetNonZeroBytes.  We now handle this case
20887         in managed code.
20888
20889         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
20890
20891 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
20892
20893         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
20894         marked as deleted.
20895
20896 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
20897
20898         * verify.c (check_corlib): Handle the case when the version field is 
20899         initialized by a static constructor.
20900
20901 2003-12-08  Patrik Torstensson  <p@rxc.se>
20902
20903     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
20904
20905 2003-12-08  Martin Baulig  <martin@ximian.com>
20906
20907         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
20908         a MonoReflectionGenericParameter, also take the parameter index
20909         and name as arguments.
20910         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
20911         (ves_icall_MonoGenericParam_initialize): New interncall.
20912         (ves_icall_Type_make_byref_type): New interncall.
20913
20914         * reflection.h (MonoReflectionGenericParam): Derive from
20915         MonoReflectionType, not just from MonoObject.  Added `refobj' and
20916         `index' fields.
20917
20918         * reflection.c (mono_reflection_define_generic_parameter): Create
20919         and return a new MonoReflectionGenericParam; don't initialize the
20920         constraints here.
20921         (mono_reflection_initialize_generic_parameter): New public method;
20922         initializes the constraints and creates the `param->pklass'.
20923
20924 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
20925
20926         * reflection.h reflection.c: Use the new fields 'num_types', 
20927         'num_fields' and 'num_methods' to track the number of types etc.
20928
20929         * verify.c (check_corlib): Check corlib version number.
20930
20931 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
20932
20933         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
20934         function works on all methods.
20935
20936 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
20937
20938         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
20939         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
20940         the custom_type_info flag of the transparent proxy.
20941         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
20942         objects that supports IRemotingTypeInfo.
20943         * object.h: Added custom_type_info field in transparent proxy.
20944
20945 2003-12-06  Martin Baulig  <martin@ximian.com>
20946
20947         * class.c (mono_class_create_from_generic): Removed.
20948         (mono_class_from_generic): Check `ginst->klass' before doing
20949         anything else.  This is important to fully support "recursive"
20950         generic types.
20951
20952         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
20953         empty `generic_inst->klass' before doing anything else.
20954
20955 2003-12-06  Dick Porter  <dick@ximian.com>
20956
20957         * verify.c: 
20958         * object.h:
20959         * icall.c:
20960         * locales.c: Use C structs to access class fields.  Don't do a
20961         conversion between MonoString and UChar because both are
20962         platform-endian UTF-16.  Compare now takes startindex and count
20963         parameters.  Add a char overload for IndexOf.  Speed up the
20964         invariant string IndexOf.
20965
20966 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
20967
20968         * Makefile.am (monosn_LDADD): Fix parallel build.
20969
20970 2003-12-04  Martin Baulig  <martin@ximian.com>
20971
20972         * icall.c
20973         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
20974         (ves_icall_Type_make_array_type): New interncall.       
20975
20976 2003-12-04  Martin Baulig  <martin@ximian.com>
20977
20978         * locales.c: also change it in the !HAVE_ICU case.
20979
20980 2003-12-04  Dick Porter  <dick@ximian.com>
20981
20982         * icall.c:
20983         * locales.c: construct_compareinfo is now in CompareInfo, not
20984         CultureInfo.
20985
20986 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
20987
20988         * image.c (mono_image_load_file_for_image): Cache loaded images in the
20989         image->files array.
20990
20991         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
20992         table as well.
20993
20994         * assembly.c (mono_assembly_load_references): Only load references
20995         once.
20996
20997         * class.c (mono_class_from_name): Avoid linear search of the 
20998         EXPORTEDTYPE table.
20999
21000         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
21001
21002 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
21003
21004         * image.h (MonoImage): Add 'field_cache' field.
21005
21006         * loader.c (mono_field_from_token): Cache field lookups.
21007         
21008         * reflection.c (mono_module_get_object): Fix name property.
21009
21010         * icall.c (ves_icall_get_enum_info): Update after changes to 
21011         mono_metadata_get_constant_index ().
21012
21013         * icall.c: Get rid of get_type_info icall, use a separate icall for
21014         each type property to avoid needless memory allocations. Fixes #51514.
21015
21016         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
21017         to avoid needless binary searches.
21018
21019         * class.c (class_compute_field_layout): Move the initialization of
21020         field->def_value to mono_class_vtable ().
21021
21022         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
21023         non-corlib types.
21024
21025         * object.c (mono_object_allocate): Make it inline.
21026
21027         * object.c (mono_object_allocate_spec): Make it inline.
21028         
21029 2003-12-02  Dick Porter  <dick@ximian.com>
21030
21031         * locales.c (create_NumberFormat): NumberFormatInfo construction.
21032         Patch by Mohammad DAMT (mdamt@cdl2000.com).
21033
21034 2003-12-01  Dick Porter  <dick@ximian.com>
21035
21036         * threads.c: Fix signature and call in CreateMutex and
21037         CreateEvent.
21038
21039 2003-12-01  Dick Porter  <dick@ximian.com>
21040
21041         * icall.c: 
21042         * locales.c: Implement string compares and searching
21043
21044         * object.h: Add extra Thread field
21045
21046 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
21047
21048         * reflection.c (fixup_method): Add support for MonoCMethod.
21049
21050 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
21051
21052         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
21053
21054         * reflection.c (assembly_name_to_aname): Allow extra characters in
21055         assembly names. Fixes #51468.
21056
21057 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
21058
21059         * exception.c (mono_exception_from_name_domain): New helper function.
21060
21061         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
21062         exception object in the correct domain.
21063
21064         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
21065         formatting + make a copy a the input data.
21066
21067         * loader.c (mono_get_method_from_token): Methods which contain
21068         native code do not have entries in the ImplMap.
21069
21070         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
21071         Thanks to Gonzalo for spotting this.
21072         
21073         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
21074         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
21075
21076         * assembly.h (mono_assembly_load_from): Split the second part of 
21077         assembly loading into a new public function.
21078
21079         * exception.h (mono_get_exception_bad_image_format): New function.
21080
21081 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
21082
21083         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
21084         Enumerate all modules inside a dynamic assembly. Fixes #51293.
21085         
21086         * icall.c: Add new icall for creating dynamic methods.
21087
21088         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
21089
21090         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
21091
21092         * reflection.c (mono_reflection_create_dynamic_method): New icall to
21093         create a dynamic method.
21094
21095         * reflection.c (resolve_object): New helper function.
21096
21097         * reflection.c: Generalize ReflectionMethodBuilder and the functions
21098         which manipulate it so they can also work on dynamic methods.
21099
21100         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
21101         creating the MonoReflectionMethodAux structure if it is not needed.
21102         
21103         * reflection.h verify.c: Update after changes to object layout.
21104
21105         * reflection.c (method_builder_encode_signature): Fix compilation on
21106         gcc 2.95.x.
21107
21108 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
21109
21110         * appdomain.h: Added support for context static fields. Added static_data
21111           field to MonoAppContext and renamed thread_static_fields to a more
21112           generic special_static_fields in MonoAppDomain, since it can now contain
21113           context static fields.
21114         * domain.c: Updated hashtable name.
21115         * object.c: Replaced field_is_thread_static() for a more generic
21116           field_is_special_static() which also checks for context static attribute.
21117           In mono_class_vtable(), added support for static context fields.
21118         * threads.c: Changed methods that manage thread static fields to more
21119           generic methods so they can be reused both for thread and context static
21120           data.
21121         * threads.h: Declared some new methods.
21122
21123 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
21124
21125         * reflection.h: Update after changes to the managed types.
21126
21127         * reflection.c (encode_custom_modifiers): New helper function.
21128
21129         * reflection.c (method_encode_signature): Emit custom modifiers.
21130
21131         * reflection.c (field_encode_signature): Emit custom modifiers.
21132
21133 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
21134
21135         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
21136
21137         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
21138         implementation.
21139
21140         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
21141         icall.
21142
21143         * object.c (mono_field_get_value_object): New function.
21144
21145         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
21146         specific.
21147
21148 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
21149
21150         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
21151         return a preallocated out-of-memory exception instance.
21152
21153         * object.c (out_of_memory): Use the new function.
21154
21155         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
21156         flag is before the custom modifiers. Fixes #49802.
21157
21158 2003-11-16  Martin Baulig  <martin@ximian.com>
21159
21160         * class.c (mono_class_is_open_constructed_type): Implemented the
21161         MONO_TYPE_GENERICINST case.
21162
21163 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
21164
21165         * assembly.c (mono_assembly_fill_assembly_name): New function to
21166         fill out the MonoAssemblyName structure.
21167         (mono_assembly_open): Use the new function.
21168
21169         * icall.c (fill_reflection_assembly_name): New helper function.
21170
21171         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
21172         new function.
21173
21174         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
21175
21176 2003-11-15  Martin Baulig  <martin@ximian.com>
21177
21178         * class.c (mono_class_is_open_constructed_type): New public
21179         function; checks whether a type is an open constructed type,
21180         ie. whether it still contains type parameters.
21181         (mono_class_inflate_generic_type): If we're a type parameter and
21182         the inflated type is also a MONO_TYPE_(M)VAR, return the original
21183         type.
21184
21185         * class.h (MonoGenericInst): Added `guint32 is_open'.
21186
21187         * loader.c (method_from_methodspec): Check whether we're an open
21188         or closed constructed type and set `ginst->is_open'.
21189
21190         * reflection.c (mono_reflection_bind_generic_parameters): Check
21191         whether we're an open or closed constructed type and set
21192         `ginst->is_open'.
21193         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
21194         from open constructed types.
21195
21196 2003-11-15  Martin Baulig  <martin@ximian.com>
21197
21198         * reflection.c (mono_reflection_bind_generic_parameters): If we're
21199         a generic instance (instead of a generic type declaration) with
21200         unbound generic parameters, bind them to our actual types.
21201
21202 2003-11-14  Martin Baulig  <martin@ximian.com>
21203
21204         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
21205
21206         * reflection.c (mono_reflection_bind_generic_parameters): If we're
21207         an interface type, populate `res->interfaces' with instantiated
21208         versions of all the interfaces we inherit.
21209
21210 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
21211
21212         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
21213         when MONO_PATH is set but doesn't contain the install dir.
21214
21215 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21216
21217         * icall.c:
21218         (ves_icall_Type_GetInterfaces): don't return an interface twice when
21219         it's also implemented in base classes. Fixes bug #50927.
21220
21221 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
21222
21223         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
21224         if this method is called from a finalizer. Fixes #50913.
21225
21226 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
21227
21228         * threads.c: Implement VolatileRead/VolatileWrite
21229
21230         * icall.c: Add new icalls for VolatileRead/VolatileWrite
21231
21232 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
21233
21234         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
21235         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
21236         2.95.3.
21237
21238         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
21239         from Peter Ross (pro@missioncriticalit.com).
21240         
21241 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
21242
21243         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
21244
21245 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
21246
21247         * assembly.c (mono_assembly_load_references): Disable check because it
21248         triggers on older corlibs which lots of people have.
21249
21250 2003-11-12  Jackson Harper  <jackson@ximian.com>
21251
21252         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
21253         load corlib.dll if mscorlib.dll is not found.
21254         * assembly.h: Remove corlib name define.
21255         * class.c:
21256         * domain.c:
21257         * image.c: Change corlib name to mscorlib.
21258         
21259 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
21260
21261         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
21262
21263 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
21264
21265         * appdomain.h: Added loader_optimization here to sync with the C#
21266         code, and add disallow_binding_redirects field.
21267
21268 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
21269
21270         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
21271
21272         * reflection.c (mono_image_build_metadata): Fix crash on modules
21273         with no types.
21274
21275         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
21276
21277         * icall.c (ves_icall_get_method_info): Return callingConvention as
21278         well.
21279
21280         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
21281         namespaces from the EXPORTEDTYPE table as well.
21282
21283         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
21284         from all modules inside the assembly.
21285         
21286 2003-11-11  Martin Baulig  <martin@ximian.com>
21287
21288         * reflection.c (mono_reflection_bind_generic_parameters): Make
21289         this work for interfaces.
21290
21291 2003-11-11  Martin Baulig  <martin@ximian.com>
21292
21293         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
21294
21295 2003-11-11  Martin Baulig  <martin@ximian.com>
21296
21297         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
21298         "MonoInflatedMethod" and "MonoInflatedCtor".
21299
21300 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
21301
21302         * reflection.c (resolution_scope_from_image): Use the assembly table
21303         from the manifest module, since other modules don't have it.
21304
21305         * debug-helpers.c (mono_type_full_name): New helper function.
21306
21307         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
21308
21309         * image.c (mono_image_load_file_for_image): New public function which
21310         is a replacement for the load_file_for_image in class.c.
21311
21312         * assembly.c (mono_assembly_load_module): A wrapper for the function
21313         above which does assembly association and reference loading too.
21314
21315         * class.c (mono_class_from_name): Call mono_assembly_load_module.
21316
21317 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21318
21319         * appdomain.c: not all of the attributes for the full assembly name
21320         are required and the order doesn't matter. Fixes bug #50787.
21321
21322 2003-11-10  Dick Porter  <dick@ximian.com>
21323
21324         * locales.c: Use platform-endian UTF16
21325
21326 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
21327
21328         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
21329         
21330 2003-11-10  Martin Baulig  <martin@ximian.com>
21331
21332         * metadata.c
21333         (mono_metadata_load_generic_params): Make this actually work.
21334
21335         * reflection.c (mono_reflection_bind_generic_parameters): If our
21336         parent is a generic instance, pass all the `types' to it, no
21337         matter whether it has the same number of type parameters or not.
21338
21339 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
21340
21341         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
21342
21343         * assembly.c (mono_assembly_load_references): Move the image<->assembly
21344         assignment code to this function so it gets called recursively for all
21345         modules.
21346
21347         * image.c (load_modules): Remove the assembly assignment since it is
21348         now done by mono_assembly_load_references.
21349         
21350         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
21351         Add 'module' argument.
21352         (mono_module_get_types): New helper function.
21353         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
21354
21355 2003-11-08  Martin Baulig  <martin@ximian.com>
21356
21357         * class.c (mono_class_inflate_generic_method): Interface method
21358         don't have a header.
21359
21360         * reflection.c (mono_image_get_methodspec_token): Take an
21361         additional `MonoGenericInst *' argument instead of reading it from
21362         the header; this is necessary to support interfaces.
21363         (mono_image_create_token): Pass the `MonoGenericInst *' from the
21364         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
21365         (inflated_method_get_object): Take an additional `MonoGenericInst *'
21366         argument.
21367
21368         * reflection.h (MonoReflectionInflatedMethod): Added
21369         `MonoGenericInst *ginst'.
21370
21371 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
21372
21373         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
21374
21375 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
21376
21377         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
21378
21379 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
21380
21381         * reflection.c 
21382         (reflection_methodbuilder_from_method_builder):
21383         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
21384         initialize a ReflectionMethodBuilder structure.
21385         (mono_image_get_methodbuilder_token):
21386         (mono_image_get_ctorbuilder_token): New functions to emit memberref
21387         tokens which point to types in another module inside the same assembly.
21388
21389         * reflection.c: Use the new helper functions.
21390         
21391         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
21392
21393         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
21394         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
21395
21396         * reflection.c (resolution_scope_from_image): Emit a moduleref if
21397         neccesary.
21398
21399         * reflection.c (mono_image_build_metadata): Emit metadata only for the
21400         current module. Emit the manifest only for the main module.
21401
21402         * reflection.c (mono_image_create_token): Add assertion when a 
21403         memberref needs to be created.
21404
21405         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
21406
21407         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
21408         larger buffer for the custom attribute blob. Fixes #50637.
21409         
21410 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21411
21412         * threadpool.c: notify listener on async processing handles after
21413         invoking the async callback. Thanks to Zoltan.
21414
21415 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
21416
21417         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
21418         avoid code duplication.
21419
21420         * reflection.h (MonoDynamicImage): New type which is currently unused,
21421         but will be used through the ref.emit code in place of 
21422         MonoDynamicAssembly.
21423
21424         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
21425         object layout.
21426
21427         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
21428         a MonoDynamicImage instead of just a MonoImage.
21429         
21430         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
21431         icalls to ModuleBuilder but keep their semantics, so they will work
21432         with moduleb->assemblyb. This will change later.
21433         
21434 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
21435
21436         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
21437         object layout.
21438
21439         * reflection.c (mono_image_build_metadata): Avoid creation of a default
21440         main module, since it is now done by the managed code.
21441
21442 2003-11-03  Martin Baulig  <martin@ximian.com>
21443
21444         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
21445         `ginst->klass' here.
21446         (method_encode_methodspec): Don't use the `ginst->generic_method's
21447         klass if it's a generic instance, use `ginst->klass' in this case.
21448
21449 2003-11-03  Martin Baulig  <martin@ximian.com>
21450
21451         * reflection.c (mono_image_get_generic_method_param_info):
21452         Removed, use mono_image_get_generic_param_info() instead.
21453         (mono_image_get_type_info): Write the GenericParam table before
21454         the Method table.  This is neccessary because in the GenericParam
21455         table, type parameters of the class (ie. '!0' etc.) must come
21456         before the ones from its generic methods (ie. '!!0' etc).
21457
21458 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
21459
21460         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
21461
21462 2003-11-02  Martin Baulig  <martin@ximian.com>
21463
21464         * reflection.c (create_generic_typespec): Take a
21465         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
21466         the generic parameters from it.
21467
21468 2003-11-02  Martin Baulig  <martin@ximian.com>
21469
21470         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
21471         instead of a `MonoClassField *' since we just need the type.
21472         (create_generic_typespec): New static function.  Creates a
21473         TypeSpec token for a generic type declaration.
21474         (mono_image_get_generic_field_token): New static function.
21475         (mono_image_create_token): If we're a FieldBuilder in a generic
21476         type declaration, call mono_image_get_generic_field_token() to get
21477         the token.
21478
21479 2003-11-02  Martin Baulig  <martin@ximian.com>
21480
21481         * reflection.h
21482         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
21483         `MonoReflectionGenericInst *declaring_type' and
21484         `MonoReflectionGenericInst *reflected_type' fields.
21485
21486         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
21487         `MonoReflectionGenericInst *declaring_type' and a
21488         `MonoReflectionGenericInst *reflected_type' argument instead of a
21489         single `MonoReflectionGenericInst *type' one.  Set
21490         `res->declaring_type' and `res->reflected_type' from them.
21491         (mono_reflection_inflate_field): Likewise.      
21492
21493 2003-11-02  Martin Baulig  <martin@ximian.com>
21494
21495         * class.c (mono_class_setup_vtable): Don't store generic methods
21496         in the vtable.  
21497
21498 2003-11-02  Martin Baulig  <martin@ximian.com>
21499
21500         * reflection.h (MonoReflectionGenericInst): Added
21501         `MonoReflectionType *declaring_type'.
21502
21503         * reflection.c (mono_reflection_bind_generic_parameters): Use
21504         `if (tb->parent)' instead of `klass->parent'.
21505
21506 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
21507
21508         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
21509         with an empty ASSEMBLY table.
21510
21511         * reflection.c (mono_image_build_metadata): Avoid using the same loop
21512         variable in the inner and outer loops.
21513
21514 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
21515
21516         * metadata.h (mono_metadata_make_token): Put parentheses around macro
21517         argument.
21518
21519         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
21520         
21521         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
21522         icalls. Instead, do everything in managed code. This is needed since
21523         it is hard to restore the original domain etc. in unmanaged code in the
21524         presence of undeniable exceptions.
21525
21526         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
21527         New icalls to push and pop appdomain refs.
21528
21529 2003-10-31  Martin Baulig  <martin@ximian.com>
21530
21531         * class.c (inflate_generic_type): Renamed to
21532         mono_class_inflate_generic_type() and made it public.
21533
21534         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
21535         New interncall.
21536
21537         * loader.c (mono_field_from_memberref): Also set the retklass for
21538         typespecs.
21539
21540         * fielder.c (mono_image_get_inflated_field_token): New static
21541         method; creates a metadata token for an inflated field.
21542         (mono_image_create_token, fixup_method): Added support for
21543         "MonoInflatedField".
21544         (fieldbuilder_to_mono_class_field): New static function.
21545         (mono_reflection_inflate_field): New public function.
21546
21547         * reflection.h
21548         (MonoReflectionGenericInst): Added `MonoArray *fields'.
21549         (MonoReflectionInflatedField): New typedef.     
21550
21551 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
21552
21553         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
21554         for Solaris and other platforms without s6_addr16
21555
21556 2003-10-30  Martin Baulig  <martin@ximian.com>
21557
21558         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
21559         argument instead of two.
21560         (mono_class_inflate_generic_signature): Likewise.
21561         (inflate_generic_header): Likewise.
21562         (mono_class_inflate_generic_method): Likewise.  In addition, if
21563         `ginst->klass' is set, it becomes the new `method->klass'.
21564
21565         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
21566         field.
21567
21568         * reflection.c (encode_generic_method_sig): Write a 0xa as the
21569         first byte. [FIXME]
21570         (method_encode_methodspec): If we have generic parameters, create
21571         a MethodSpec instead of a MethodRef.
21572         (fixup_method): Added support for "MonoInflatedMethod" and
21573         "MonoInflatedCtor".
21574         (mono_image_create_token): Added support for "MonoInflatedMethod"
21575         and "MonoInflatedCtor".
21576         (inflated_method_get_object): New static function; returns a
21577         managed "System.Reflection.MonoInflatedMethod" object.
21578         (mono_reflection_bind_generic_method_parameters): Return a
21579         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
21580         (mono_reflection_inflate_method_or_ctor): Likewise.
21581         (mono_image_get_generic_method_param_info): Initialize unused
21582         fields to zero.
21583         (mono_image_get_generic_param_info): Likewise.
21584
21585         * reflection.h (MonoReflectionInflatedMethod): New public
21586         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
21587         "S.R.MonoInflatedCtor" classes.
21588
21589         * loader.c (method_from_memberref): If we're a TypeSpec and it
21590         resolves to a generic instance, inflate the method.
21591
21592 2003-10-28  Dick Porter  <dick@ximian.com>
21593
21594         * object.c (mono_runtime_run_main): Convert command-line arguments
21595         into utf8, falling back to the user's locale encoding to do so.
21596
21597 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
21598
21599         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
21600         at this time.
21601
21602         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
21603
21604         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
21605         up icalls at method definition time. Partially fixes #33569.
21606
21607 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
21608
21609         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
21610         marshalling of arrays. Fixes #50116.
21611
21612         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
21613
21614         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
21615         points to a vtable in the dying appdomain.
21616
21617         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
21618         listeners into unmanaged code inside the lock.
21619
21620         * object.c (mono_class_vtable): Turn off typed allocation in non-root
21621         domains and add some comments.
21622
21623 2003-10-25  Martin Baulig  <martin@ximian.com>
21624
21625         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
21626
21627         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
21628
21629         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
21630         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
21631         currently parsing.  Create the generic class and store it in
21632         `generic_inst->klass' before parsing the type arguments.  This is
21633         required to support "recursive" definitions; see mcs/tests/gen-23.cs
21634         for an example.
21635         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
21636         to support recursive typespec entries.
21637
21638         * class.c (mono_class_setup_parent): If our parent is a generic
21639         instance, we may get called before it has its name set.
21640         (mono_class_from_generic): Splitted into
21641         mono_class_create_from_generic() and mono_class_initialize_generic().
21642
21643 2003-10-25  Martin Baulig  <martin@ximian.com>
21644
21645         * icall.c (ves_icall_Type_BindGenericParameters): Return a
21646         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
21647         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
21648         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
21649
21650         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
21651         (create_typespec): Likewise.
21652         (mono_reflection_bind_generic_parameters): Return a
21653         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
21654         (mono_reflection_inflate_method_or_ctor): New public function.
21655
21656         * reflection.h (MonoReflectionGenericInst): New typedef.        
21657
21658 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
21659
21660         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
21661         inside the domain lock. Fixes #49993.
21662         
21663         * object.c (mono_class_vtable): When typed allocation is used, 
21664         allocate vtables in the GC heap instead of in the mempool, since the
21665         vtables contain GC descriptors which are used by the collector even
21666         after the domain owning the mempool is unloaded.
21667
21668         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
21669
21670         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
21671         reflect what it does. Also invalidate mempools instead of freeing
21672         them if a define is set.
21673
21674         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
21675         of the appdomain.
21676         
21677         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
21678         hold the finalizable objects in this domain.
21679
21680         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
21681         appdomain.
21682
21683         * appdomain.c (mono_domain_set): New function to set the current
21684         appdomain, but only if it is not being unloaded.
21685
21686         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
21687         appdomain which is being unloaded.
21688         
21689         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
21690         unloading of the root appdomain.
21691
21692         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
21693         icall to execute a method in another appdomain. Intended as a 
21694         replacement for InternalSetDomain, which can confuse the code 
21695         generation in the JIT.
21696
21697         * appdomain.c (mono_domain_is_unloading): New function to determine
21698         whenever an appdomain is unloading.
21699
21700         * appdomain.c (mono_domain_unload): New function to correctly unload
21701         an appdomain.
21702
21703         * assembly.c (mono_assembly_load_references): Check that an assembly
21704         does not references itself.
21705
21706         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
21707         domain manually, it asks the finalizer thread to do it, then waits for
21708         the result. Also added a timeout.
21709
21710         * icall.c: Register the new icalls.
21711
21712         * threads.h threads.c: Export the mono_gc_stop_world and 
21713         mono_gc_start_world functions.
21714         
21715         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
21716         function to fill out the mempool with 0x2a.
21717
21718 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
21719
21720         * reflection.h (MonoReflectionMethodAux): New structure to store
21721         information which is rarely used, thus is not in the MonoMethod
21722         structure.
21723
21724         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
21725         store the aux info.
21726
21727         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
21728         and marshalling info into the aux structure.
21729
21730         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
21731         from the aux structure.
21732
21733         * loader.c (mono_method_get_param_names): Retrieve the param names from
21734         the aux structure.
21735         
21736 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
21737
21738         * exception.h exception.c: Add AppDomainUnloadedException && fix 
21739         warning.
21740
21741 2003-10-21  Dick Porter  <dick@ximian.com>
21742
21743         * socket-io.c
21744         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
21745         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
21746
21747 2003-10-21  Martin Baulig  <martin@ximian.com>
21748
21749         * reflection.c (mono_reflection_bind_generic_parameters):
21750         `klass->parent' is NULL for interfaces.
21751
21752 2003-10-21  Martin Baulig  <martin@ximian.com>
21753
21754         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
21755
21756 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
21757
21758         * exception.c (mono_exception_from_name_msg): New helper function for
21759         creating exceptions and initializing their message field.
21760
21761         * exception.c: Simplify functions using the new helper.
21762
21763         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
21764         New function.
21765
21766         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
21767         mono_raise_exception, since otherwise gcc doesn't generate the function
21768         epilog for raise_exception, confusing the stack unwinding in the JIT.
21769         Fixes #45043.
21770
21771         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
21772         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
21773         Fixes #49499.
21774
21775 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21776
21777         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
21778         utf8.
21779
21780 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
21781
21782         * icall.c: Removed GetUninitializedObject method because
21783           AllocateUninitializedClassInstance does the same.
21784
21785 2003-10-18  Martin Baulig  <martin@ximian.com>
21786
21787         * class.c (inflate_generic_signature): Renamed to
21788         mono_class_inflate_generic_signature() and made it public.
21789         (my_mono_class_from_generic_parameter): New static function; if we
21790         don't already have the generic parameter's MonoClass, create a
21791         very simple one which is just used internally in the runtime and
21792         not passed back to managed code.
21793
21794         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
21795
21796         * metadata.h (MonoMethodSignature): Moved the
21797         `MonoGenericParam *gen_params' to the MonoMethodHeader.
21798         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
21799
21800         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
21801         ves_icall_MonoMethod_GetGenericArguments(); this is now an
21802         interncall on the MonoMethod class, not on MethodInfo.
21803         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
21804         calling mono_reflection_bind_generic_method_parameters() directly.
21805
21806         * loader.c (mono_method_get_signature): If this is a MethodSpec;
21807         return the already computed `method->signature'.
21808         (method_from_methodspec): New static function to load a method
21809         from a MethodSpec entry.
21810         (mono_get_method_from_token): Call the new method_from_methodspec()
21811         for MethodSpec tokens.  
21812         (mono_get_method_from_token): If we're a generic method, load the
21813         type parameters.
21814
21815         * reflection.c (mono_image_get_memberref_token): Allow
21816         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
21817         table.
21818         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
21819         (mono_image_create_token): First check whether it's a generic
21820         method (so we'd need to create a MethodSpec), then do the other
21821         two alternatives.
21822         (mono_reflection_bind_generic_method_parameters): Return a
21823         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
21824         called directly from the interncall.
21825
21826 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
21827
21828         * reflection.c (load_public_key): Move loading of the public key
21829         into managed code.
21830
21831         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
21832
21833         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
21834         fields.
21835
21836         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
21837         culture, hash_alg and public_key. Fixes #49555.
21838
21839 2003-10-17  Martin Baulig  <martin@ximian.com>
21840
21841         * class.h (MonoGenericInst): Moved this declaration here and added
21842         `MonoMethod *generic_method'.
21843
21844         * icall.c
21845         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
21846         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
21847
21848         * metadata.c (mono_metadata_type_equal): Two types of
21849         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
21850         index; ie. don't compare the address of the `MonoGenericParam'
21851         structure.
21852         (mono_metadata_load_generic_params): Removed the `MonoMethod
21853         *method' argument.
21854
21855         * metadata.h (MonoGenericInst): Moved declaration to class.h.
21856         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
21857
21858         * reflection.c (method_encode_signature): Encode the number of
21859         generic parameters.
21860         (encode_generic_method_sig): New static function.
21861         (method_encode_methodspec): New static function; creates an entry
21862         in the MethodSpec table for a generic method.
21863         (mono_image_get_methodspec_token): New static function.
21864         (mono_image_create_token): Call mono_image_get_methodspec_token()
21865         for generic methods.
21866         (mono_reflection_bind_generic_method_parameters): New public
21867         function.  Instantiates a generic method.
21868
21869 2003-10-16  Martin Baulig  <martin@ximian.com>
21870
21871         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
21872         *gen_params' here from MonoMethodHeader.
21873
21874         * metadata.c (mono_metadata_parse_method_signature): If we have
21875         generic parameters, initialize `method->gen_params' and then set
21876         the correct `type->data.generic_param' in all the parameters.
21877
21878 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
21879
21880         * threads.c (mono_threads_get_default_stacksize): New function to 
21881         return the default stacksize.
21882
21883         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
21884         termination of the finalizer thread, since the previous method had
21885         race conditions. Fixes #49628.
21886
21887         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
21888         as for the other managed threads.
21889
21890 2003-10-16  Martin Baulig  <martin@ximian.com>
21891
21892         * class.c (inflate_generic_signature): Copy `generic_param_count'
21893         and `gen_params'.
21894
21895         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
21896         New interncall.
21897
21898         * metadata.c (mono_metadata_parse_method_signature): Actually set
21899         the `method->generic_param_count' here.
21900         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
21901
21902 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
21903
21904         * object.h: Add a new field to TypedRef to simplify the implementation
21905         of the REFANY opcodes in the JIT.
21906
21907         * icall.c: Make use of the new field.
21908
21909         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
21910         dynamically.
21911
21912 2003-10-15  Martin Baulig  <martin@ximian.com>
21913
21914         * class.c (mono_class_from_gen_param): Renamed to
21915         mono_class_from_generic_parameter() and moved most of the
21916         functionality from mono_reflection_define_generic_parameter()
21917         here; ie. we create a "real" class here.
21918         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
21919         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
21920         previously been called.
21921
21922         * class.h (MonoGenericParam): Moved the declaration of this struct
21923         here from metadata.h and added `MonoMethod *method'.
21924
21925         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
21926         interncall.
21927
21928         * loader.c (mono_get_method_from_token): If we have any generic
21929         parameters, call mono_metadata_load_generic_params() to read them
21930         from the MONO_TABLE_GENERICPAR.
21931
21932         * metadata.c (mono_metadata_load_generic_params): Added
21933         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
21934
21935         * metadata.h (MonoMethodSignature): Replaced
21936         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
21937         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
21938
21939         * reflection.c (mono_reflection_define_generic_parameter): Moved
21940         most of the functionality into the new
21941         mono_class_from_generic_parameter(); set the `method' field if
21942         we're a method parameter.       
21943
21944 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
21945
21946         * marshal.c (emit_struct_conv): if native size is 0
21947         emit no code.
21948
21949 2003-10-14  Martin Baulig  <martin@ximian.com>
21950
21951         * icall.c: The generics API has changed in the spec since it was
21952         added to System.Type; these modifications make it match the spec
21953         again.
21954         (ves_icall_Type_GetGenericParameters): Renamed to
21955         `ves_icall_Type_GetGenericArguments'.
21956         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
21957         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
21958         `ves_icall_MonoType_get_HasGenericArguments'.
21959         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
21960         `ves_icall_MonoType_get_IsGenericParameter'.
21961         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
21962         this is no interncall anymore.
21963         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
21964         `ves_icall_TypeBuilder_get_IsGenericParameter'.
21965
21966 2003-10-14  Martin Baulig  <martin@ximian.com>
21967
21968         * reflection.c (mono_reflection_bind_generic_parameters): Also
21969         inflate generic methods if we're reading the class from IL.
21970
21971 2003-10-13  Martin Baulig  <martin@ximian.com>
21972
21973         * reflection.c (mono_reflection_define_generic_parameter): This
21974         method isn't called directly from the icall anymore; take a
21975         `MonoReflectionAssemblyBuilder *' so we can use this for type and
21976         method generic parameters.
21977         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
21978         (method_builder_encode_signature): Encode generic parameters.
21979         (mono_image_get_method_info): Write generic params to the
21980         MONO_TABLE_GENERICPARAM table.
21981
21982         * reflection.h (MonoReflectionMethodBuilder): Added
21983         `MonoArray *generic_params'.
21984
21985         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
21986
21987         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
21988         wrapper for mono_reflection_define_generic_parameter().
21989         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
21990
21991 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
21992
21993         * marshal.h: Add missing function to fix build.
21994
21995         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
21996         the SetLastError pinvoke attribute.
21997
21998         * marshal.c (mono_marshal_set_last_error): New helper function called
21999         by the generated code.
22000         
22001         * marshal.c (mono_mb_emit_branch): New helper function.
22002
22003         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
22004
22005         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
22006         classes as parameters and return values of delegates. Fixes #29256. 
22007
22008 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
22009
22010         * locales.c: use gint32 in non HAVE_ICU case
22011
22012 2003-10-11  Martin Baulig  <martin@ximian.com>
22013
22014         * mono-debug.c (mono_debug_add_method): Added a workaround for
22015         bug #48591.
22016
22017 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
22018
22019         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
22020         delegates passed to native code must use the STDCALL calling 
22021         convention. Fixes #35987.
22022
22023 2003-10-10  Martin Baulig  <martin@ximian.com>
22024
22025         * class.c (inflate_generic_type): If we're inflating for a generic
22026         type instance (and not for a generic method), return
22027         MONO_TYPE_MVAR unchanged.
22028
22029 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22030
22031         * string-icalls.c: Join ignores null strings in the source array.
22032         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
22033         * threads.c: GetAvailableTheads is slightly more accurate.
22034
22035 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
22036
22037         * threads.h threads.c : add mono_threads_set_default_stacksize
22038         and pass default to CreateThread calls.
22039
22040 2003-10-09  Dick Porter  <dick@ximian.com>
22041
22042         * icall.c:
22043         * locales.h:
22044         * locales.c: Internal calls for constructing CultureInfo and
22045         related objects from libicu (if its available.)
22046
22047 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
22048
22049         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
22050
22051 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22052
22053         * threadpool.c: added an argument to async_invoke_thread that is the
22054         item to process, pass the MonoAsyncResult to the thread start function
22055         when creating a new thread. This way we don't need to acquire any lock
22056         when we're creating a new thread. Readded a semaphore for faster
22057         response times (instead of that Sleep i added).
22058
22059 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
22060
22061         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
22062         get daylight change dates better on Windows, fix handling
22063         of platforms without tm_gmtoff.
22064
22065 2003-10-06  Martin Baulig  <martin@ximian.com>
22066
22067         * class.c (inflate_generic_method): Renamed to
22068         mono_class_inflate_generic_method() and made public.
22069         (mono_class_init): Don't inflate the generic methods here.
22070         (mono_class_from_generic): Added `gboolean inflate_methods'
22071         argument.  Inflate the methods here.
22072
22073         * loader.c (mono_method_get_param_names): Ignore instances of
22074         generic types for the moment.
22075
22076         * reflection.c (fixup_method): Added support for inflated methods.
22077         (mono_image_create_token): Use mono_image_get_methodref_token()
22078         for inflated methods.
22079         (mono_custom_attrs_from_param): Ignore instances of generic types
22080         for the moment.
22081         (mono_reflection_bind_generic_parameters): New public function.
22082         Moved all the functionality from
22083         ves_icall_Type_BindGenericParameters() here and added support for
22084         dynamic types.
22085         (mono_reflection_define_generic_parameter): Initialize
22086         `klass->methods' here.
22087
22088         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
22089         functionality into mono_reflection_define_generic_parameter().
22090         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
22091         TypeBuilder, return that TypeBuilder.
22092
22093 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22094
22095         * appdomain.c: removed mono_delegate_semaphore.
22096
22097         * threadpool.c:
22098         (mono_thread_pool_add): moved hash table creation inside and the thread 
22099         creation outside of the critical region.
22100         (mono_thread_pool_finish): removed obsolete code.
22101         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
22102         continue or exit the thread depending on the queue.
22103
22104 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
22105
22106         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
22107         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
22108         handle more bool marshalling options
22109
22110 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
22111
22112         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
22113         arrays of structs. Also add a more descriptive error message when
22114         a structure member is marshalled as LPArray.
22115
22116 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
22117
22118         * marshal.c (mono_marshal_get_native_wrapper): Add support for
22119         marshalling arrays of complex types. Fixes #29098. Also remove an
22120         usused and incomplete function.
22121
22122 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
22123
22124         * gc.c: report heap_size - free_bytes as total memory allocated
22125         (bug#49362).
22126
22127 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
22128
22129         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
22130         fix timezone handling problems on Windows.
22131         
22132         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
22133         asserts when the year is outside the range handled by ms the functions.
22134
22135         * class.c (setup_interface_offsets): If the class is an interface,
22136         fill out its interface_offsets slot.
22137
22138 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22139
22140         * threadpool.c: mark threadpool threads as background.
22141
22142 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
22143
22144         * decimal.c - define DECINLINE to nothing if not using GCC
22145
22146 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
22147
22148         * assembly.c: More refcount fixes.
22149
22150 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22151
22152         * string-icalls.c: if we're not trimming, return the same string.
22153         When not splitting, don't create a new string.
22154
22155 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22156
22157         * image.c:
22158         (mono_image_open): increment the ref_count inside the critical section.
22159
22160 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
22161
22162         * image.c (mono_image_open): Fix reference counting bug.
22163
22164 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
22165
22166         * marshal.c (mono_marshal_type_size) struct alignment changed for 
22167         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
22168         64bits. Avoid leak in mono_marshal_get_native_wrapper when
22169         mono_lookup_pinvoke_call throws.        
22170
22171 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
22172
22173         * reflection.c (mono_reflection_parse_type): Fix #49114.
22174
22175         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
22176         temporary workaround for cygwin header problem.
22177
22178         * object.c (mono_object_isinst): Synchronize this with the code
22179         generated by the JIT for casts.
22180
22181 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
22182
22183         * reflection.c (encode_type): Fix #38332.
22184
22185 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
22186
22187         * marshal.c (mono_marshal_method_from_wrapper): New function to return
22188         the original method from the wrapper method.
22189
22190 2003-09-25  Martin Baulig  <martin@ximian.com>
22191
22192         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
22193         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
22194         (ves_icall_Type_get_IsGenericInstance): New interncall.
22195
22196 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
22197
22198         * object.c: fix cast warning in big endian code.
22199
22200 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
22201
22202         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
22203         
22204 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22205
22206         * assembly.c: don't call check_env from mono_assembly_load. It's
22207         already done once in mono_assemblies_init and may cause headaches when
22208         multiple threads are loading assemblies.
22209
22210 2003-09-19  Martin Baulig  <martin@ximian.com>
22211
22212         * reflection.c (mono_reflection_define_generic_parameter): Don't
22213         allocate `klass->methods', set `klass->flags' to
22214         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
22215
22216 2003-09-18  Martin Baulig  <martin@ximian.com>
22217
22218         * class.c (mono_class_init): Don't create `class->methods' if it's
22219         already initialized.
22220
22221         * metadata.c (mono_metadata_load_generic_params): Make this
22222         actually work.
22223
22224         * reflection.c (mono_reflection_define_generic_parameter): Set
22225         parent class and interfaces from the constraints.
22226
22227         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
22228         to keep this struct in sync with the declaration in TypeBuilder.cs.
22229
22230 2003-09-17  Martin Baulig  <martin@ximian.com>
22231
22232         * metadata.h (MonoType): Replaced the data's `int type_param'
22233         field with `MonoGenericParam *generic_param'.
22234         (MonoGenericParam): Added `MonoClass *klass'.
22235
22236         * class.c (mono_class_from_gen_param): Removed the
22237         `MonoImage *image' and `int type_num' arguments.
22238
22239         * metadata.c (mono_metadata_parse_generic_param): New static
22240         method; creates a MonoGenericParam which just contains the index.
22241         (do_mono_metadata_parse_type): Call
22242         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
22243         MONO_TYPE_MVAR.
22244
22245         * reflection.c (mono_image_typedef_or_ref): Generic type
22246         parameters may be in the same assembly, but never use a typedef
22247         for them.
22248         (mono_reflection_define_generic_parameter): We're now creating a
22249         "real" class for the type parameter; it's now safe to call
22250         mono_class_from_mono_type() on the class'es type, it'll do the
22251         right thing.
22252
22253 2003-09-16  Martin Baulig  <martin@ximian.com>
22254
22255         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
22256         `symfile->range_entry_size' and `symfile->class_entry_size' here;
22257         the `symfile' data structure must be fully initialized before it
22258         gets added to the table.
22259
22260 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
22261
22262         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
22263
22264         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
22265         class init trampolines.
22266
22267 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
22268
22269         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
22270         to the built-in profiler to turn off time and allocation profiling
22271         respectively.
22272
22273 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
22274
22275         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
22276         g_direct_equal.
22277
22278         * debug-helpers.c (mono_method_full_name): Print the wrapper type
22279         in human readable form.
22280
22281 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
22282
22283         * reflection.c icall.c: Fixed warnings.
22284
22285         * image.c (load_class_names): Use a temporary hash table to hold the
22286         namespaces in order to avoid doing many string comparisons.
22287
22288         * image.h: Fix typo.
22289
22290         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
22291         Pass NULL instead of g_direct_equal to the GHashTable constructor 
22292         since the NULL case is short-circuited inside g_hash_table_lookup, 
22293         leading to better performance.  
22294
22295         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
22296         obtain the first custom attribute for a given index. Depends on the
22297         CustomAttribute table being sorted by the parent field.
22298
22299         * reflection.c (mono_custom_attrs_from_index): Use the new function 
22300         for better performance.
22301
22302 2003-09-07  Martin Baulig  <martin@ximian.com>
22303
22304         * class.c (mono_class_init): If we're a generic instance, inflate
22305         all our methods instead of loading them from the image.
22306         (mono_class_from_generic): Set `class->methods = gklass->methods'.
22307
22308 2003-09-07  Martin Baulig  <martin@ximian.com>
22309
22310         * mono-debug-debugger.c: Added support for constructors.
22311
22312 2003-09-06  Martin Baulig  <martin@ximian.com>
22313
22314         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
22315         New interncall.
22316
22317         * reflection.c (mono_reflection_setup_generic_class): Call
22318         ensure_runtime_vtable() to create the vtable.
22319
22320 2003-09-05  Martin Baulig  <martin@ximian.com>
22321
22322         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
22323         MONO_TYPE_MVAR.
22324
22325 2003-09-04  Martin Baulig  <martin@ximian.com>
22326
22327         * reflection.c (mono_reflection_define_generic_parameter): Generic
22328         parameters start with zero.
22329
22330 2003-09-04  Martin Baulig  <martin@ximian.com>
22331
22332         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
22333
22334         * reflection.h (MonoReflectionGenericParam): New typedef.
22335         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
22336         the generic parameters from the managed TypeBuilder.
22337
22338         * reflection.c (mono_reflection_define_generic_parameter): New function.
22339         (mono_reflection_create_runtime_class): Encode generic parameters.
22340         (mono_reflection_setup_generic_class): New function; this is
22341         called after adding adding all generic params to the TypeBuilder.
22342         (encode_type): Added MONO_TYPE_VAR.
22343
22344 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
22345
22346         * class.h class.c (mono_class_needs_cctor_run): Moved this method
22347         here from the JIT.
22348
22349         * assembly.h assembly.c: Moved the AOT loading code into an assembly
22350         load hook.
22351
22352 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
22353
22354         * reflection.h reflection.c class.h class.c: Delete duplicate 
22355         definition of mono_type_get_name () from reflection.c and export the
22356         one in class.c.
22357
22358         * class.c: Class loading fixes from Bernie Solomon 
22359         (bernard@ugsolutions.com).
22360
22361         * reflection.c: Endianness fixes from Bernie Solomon 
22362         (bernard@ugsolutions.com).
22363         
22364 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
22365
22366         * assembly.h assembly.c: Define a file format version for AOT
22367         libraries.
22368         
22369         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
22370
22371         * appdomain.h (MonoJitInfo): New field to determine whenever the
22372         code is domain neutral.
22373         
22374 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
22375
22376         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
22377
22378 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
22379
22380         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
22381         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
22382         Avoid caching the result since strings must be domain specific. Fixes
22383         #48050.
22384
22385 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
22386
22387         * marshal.c (mono_marshal_init): Make this callable multiple times
22388         since it is hard to find a correct place to call it.
22389
22390         * object.c (mono_runtime_class_init): Execute static constructors in
22391         the correct appdomain.
22392
22393         * image.c (build_guid_table): Handle the case when multiple images have
22394         the same GUID.
22395
22396 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22397
22398         * icall.c: added a couple of icalls for System.Web.
22399
22400 2003-08-28  Martin Baulig  <martin@ximian.com>
22401
22402         * icall.c (ves_icall_Type_BindGenericParameters): Use
22403         `klass->generic_inst' instead of `&klass->byval_arg' in the
22404         mono_type_get_object() call.  The returned type must be
22405         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
22406
22407 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
22408
22409         * NOTES: New file.
22410
22411         * object.c (mono_class_proxy_vtable): Make it thread safe.
22412
22413         * pedump.c: Fix warning.
22414
22415         * object.c appdomain.h: Get rid of metadata_section. 
22416         It is no longer needed and it was causing deadlocks with domain->lock.
22417
22418         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
22419
22420 2003-08-26  Martin Baulig  <martin@ximian.com>
22421
22422         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
22423
22424 2003-08-26  Martin Baulig  <martin@ximian.com>
22425
22426         * pedump.c (main): Call mono_metadata_init(),
22427         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
22428         and mono_loader_init().
22429
22430 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
22431
22432         * loader.h: Add missing include to fix build.
22433
22434         * image.h: mono_image_load_references is no more.
22435
22436         * assembly.c: Reworked assembly loading to make it really thread safe.
22437         After these changes, the assembly returned by mono_assembly_open is
22438         fully initialized, i.e. all its references assemblies are loaded.
22439
22440         * assembly.c (mono_image_load_references): Renamed to 
22441         mono_assembly_load_references, and made private, since clients no
22442         longer need to call it.
22443
22444         * class.c: Removed calls to mono_assembly_load_references, since it was
22445         a source of deadlocks.
22446
22447         * loader.h loader.c class.h class.c: Protect data structures using a 
22448         new lock, the loader lock.
22449
22450         * class.c (mono_class_setup_vtable): Create temporary hash tables and
22451         GPtrArrays only when needed.
22452
22453         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
22454         into empty structures by mcs. Fixes pinvoke7.cs.
22455         
22456         * domain.c (mono_init): Call a new initialization function.
22457
22458         * appdomain.c (mono_runtime_init): Call the new initializer function
22459         of the marshal module.
22460
22461         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
22462         inserted into empty structures by mcs. Fixes pinvoke7.cs.
22463
22464         * marshal.h marshal.c: Added locks around the wrapper caches to make
22465         this module thread safe.
22466
22467         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
22468         this argument. Fixes pinvoke1.exe.
22469
22470 2003-08-25  Lluis Sanchez <lluis@ximian.com>
22471
22472         * object.h: Added call_type field to MonoMethodMessage and the corresponding
22473         enumeration of values. Removed fields to store remote call output values in
22474         MonoAsyncResult. Not needed any more.
22475         * object.c: Initialize call_type and async_result fields in mono_message_init.
22476         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
22477         dispatching the message.
22478         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
22479         async call to finish. To do it use a message with EndInvoke call type.
22480
22481 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
22482
22483         * loader.h loader.c (mono_method_hash_marhal_info): New function which
22484         determines whenever a method has marshalling info.
22485
22486 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22487
22488         * assembly.c: fix the build on windows.
22489
22490 2003-08-22 Lluis Sanchez <lluis@ximian.com>
22491
22492         * object.cs: Fixed bug #47785.
22493
22494 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
22495
22496         * string-icalls.c (StringReplace): If their are no occurances of
22497         the old string found return a reference to the supplied
22498         string. This saves some memory and matches MS behavoir.
22499         
22500 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22501
22502         * socket-io.c: fixed compilation for systems that define AF_INET6
22503         and don't define SOL_IP/SOL_IPV6.
22504
22505 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
22506
22507         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
22508         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
22509
22510         * rawbuffer.c rawbuffer.h: Make this module thread safe.
22511
22512         * domain.c: Make this module thread safe.
22513
22514         * domain.c (mono_init): Call new initialization function.
22515
22516         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
22517         reference types too. Fixes #38812.
22518
22519         * image.c (mono_image_init): Fixed warnings.
22520
22521         * class.c (mono_class_from_typeref): Handle assembly load failure
22522         correctly.
22523
22524         * appdomain.c (add_assemblies_to_domain): Handle the case when
22525         the references of an assembly are not yet loaded.
22526
22527         * metadata.c image.c assembly.c: Moved initialization of global
22528         variables to a separate function called at startup since lazy 
22529         initialization of these variables is not thread safe.
22530         
22531         * image.c assembly.c: Made this module thread safe by adding locks in 
22532         the appropriate places.
22533
22534         * domain.c (mono_init): Call the new initialization functions of the
22535         three modules.
22536
22537 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
22538
22539         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
22540           make a direct call. It is proxy's work to make the call asynchronous.
22541           mono_delegate_end_invoke(): If the targe is a proxy, just collect
22542           the return values.
22543         * object.cs: mono_method_call_message_new(): read AsyncResult and
22544           state object from parameters list, if this info is requested.
22545         * object.h: Added fields to store remote call output values in
22546           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
22547
22548 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
22549
22550         * object.h: add needed fields to MonoThread.
22551         * threads.c, threads.h: allow registering a function to cleanup data
22552         allocated per thread by the JIT.
22553
22554 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
22555
22556         * loader.h: portability fix by Bernie Solomon
22557         * <bernard@ugsolutions.com>.
22558
22559 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
22560
22561         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
22562         return a MonoArray. This simplifies the code and also ensures that
22563         the cache allways contains an object reference as a value.
22564
22565         * icall.c (ves_icall_get_parameter_info): Simplified using the new
22566         function.
22567
22568 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22569
22570         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
22571         fixes a problem with byte ordering when getting the address family for
22572         a socket.
22573
22574 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
22575
22576         * .cvsignore: Added monosn.
22577
22578         * reflection.h reflection.c loader.c: Added support for parameter
22579         marshalling to dynamically created types. Fixes #47295.
22580
22581 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
22582
22583         * rand.c: remove useless warnings.
22584
22585 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
22586
22587         * class.c: implemented ldtoken for methods and fieldrefs.
22588
22589 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22590
22591         * threadpool.c: when mono_async_invoke was called, no one took care of
22592         monitoring the queue. So if the method invoked took some time and we
22593         got new async invoke requests after 500 ms (the thread created waited
22594         that long in WaitForSingleObject), the new async invoke was not called
22595         until the previous one finished.
22596
22597         This is fixed now. Thanks to Totte for helping with it.
22598
22599 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22600
22601         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
22602
22603 2003-08-11  Martin Baulig  <martin@ximian.com>
22604
22605         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
22606
22607 2003-08-06  Martin Baulig  <martin@ximian.com>
22608
22609         * mono-debug-debugger.c: Added support for static fields,
22610         properties and methods.
22611
22612 2003-08-06  Martin Baulig  <martin@ximian.com>
22613
22614         * mono-debug-debugger.c: Don't store the MonoString's vtable to
22615         make this work for applications with multiple application domains.
22616
22617 2003-08-04  Martin Baulig  <martin@ximian.com>
22618
22619         * mono-debug-debugger.c: Completely reworked the type support; the
22620         most important thing is that we're now just using one single
22621         `MonoType' instance per type.
22622
22623 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
22624
22625         * mono-endian.h, mono-endian.c, icall.c: Added icall
22626         ves_icall_System_Double_AssertEndianity to assert double word endianity
22627         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
22628
22629 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
22630
22631         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
22632         support, icalls and fixes.
22633
22634 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
22635
22636         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
22637         classes that are a punctuation character in .NET is not the same a
22638         g_unichar_ispunct.
22639
22640 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
22641
22642         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
22643
22644 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
22645
22646         * icall.c: Add new MemCopy internalcall.
22647         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
22648         Simplified code; It is not necessary to handle all the cases here,
22649         as the C# code takes care of it.  Only handle the case of the name
22650         resource embedded into the assembly.
22651
22652         Changed signature to return the data pointer and the size of the
22653         data. 
22654
22655 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
22656
22657         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
22658         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
22659
22660 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
22661
22662         * socket-io.c: ignore EINTR error in select.
22663
22664 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
22665
22666         * class.h, class.c: removed unused subclasses field in MonoClass.
22667
22668 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
22669
22670         * icall.c: improve fix of get_base_definition(). If the parent class
22671           doesn't have the mehod, look at the parent of the parent.
22672         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
22673           to check if a parameter is an in or out parameter
22674           (PARAM_ATTRIBUTE_IN is not set by default).
22675           mono_method_return_message_restore(): Use mono_class_value_size to
22676           get the size of a value type. mono_type_stack_size (parameterType)
22677           does not return the correct value if parameterType is byRef.
22678           mono_load_remote_field(), mono_load_remote_field_new(),
22679           mono_store_remote_field(), mono_store_remote_field_new():
22680           raise exception if the remote call returns an exception.
22681
22682 2003-07-28  Martin Baulig  <martin@ximian.com>
22683
22684         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
22685         method.  This is a wrapper around mono_runtime_invoke() which
22686         boxes the instance object if neccessary.
22687
22688 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
22689
22690         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
22691         metadata.h, row-indexes.h, verify.c: first cut of generics support.
22692
22693 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
22694
22695         * icall.c: disable mcs bug workaround.
22696
22697 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
22698
22699         * object.c (mono_runtime_class_init): Take the metadata_section
22700         mutex before obtaining the domain mutex.
22701
22702         * appdomain.h: Added definition of metadata_section mutex here. 
22703
22704         * object.c: define metadata_mutex here.
22705
22706 2003-07-24  Ravi Pratap  <ravi@ximian.com>
22707
22708         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
22709         fixed.
22710
22711 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
22712
22713         * reflection.c: Fix bug #46669
22714
22715 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22716
22717         * exception.c:
22718         * exception.h:
22719         * icall.c:
22720         * object.h: fill in the type name for TypeLoadException.
22721
22722 2003-07-23  Ravi Pratap  <ravi@ximian.com>
22723
22724         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
22725         relationship between TypeBuilders while compiling corlib) and bug
22726         45993 (Array types returned from the runtime while compiling
22727         corlib were from the loaded corlib).
22728
22729 2003-07-22  Martin Baulig  <martin@ximian.com>
22730
22731         * mono-debug-debugger.c: Reworked the type support a bit more;
22732         distinguish between types and classes.
22733
22734 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
22735
22736         * icall.c: add IsArrayImpl icall.
22737
22738 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
22739
22740         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
22741         initializing real_size only once. Also fix bug #46602.
22742
22743 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
22744
22745         * object.c: Renamed mono_metadata_section to metadata_section.
22746
22747 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
22748
22749         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
22750           empty array if the type is an array. Fixed.
22751           ves_icall_MonoMethod_get_base_definition: if the base method
22752           is abstract, get the MethodInfo from the list of methods of
22753           the class.
22754         * reflection.c: ParameterInfo.PositionImpl should be zero-based
22755           and it was 1-based. Fixed in mono_param_get_objects.
22756
22757 2003-07-20  Martin Baulig  <martin@ximian.com>
22758
22759         * mono-debug.h: Set version number to 31.
22760         (mono_debug_init): Added `MonoDomain *' argument.
22761
22762         * mono-debug-debugger.c: Reworked the type support; explicitly
22763         tell the debugger about builtin types; pass the `klass' address to
22764         the debugger.
22765
22766 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
22767
22768         * image.c: Allow new metadata tables to be loaded without a
22769         warning. Also update the warning message to give the new constant value.
22770                 
22771 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
22772
22773         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
22774         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
22775         array type representation changes.
22776
22777 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
22778
22779         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
22780         on Environment.Exit () call.
22781
22782 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
22783
22784         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
22785         requires a matching corlib.
22786
22787 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
22788
22789         * Changelog: My editor decided to add a CR to each line. Sorry about that.
22790           Committed again without the CRs.
22791         
22792 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
22793
22794         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
22795           getting it from the "this" socket instance. Did not work
22796           if the socket is a subclass of Socket.
22797           Also fixed bug #35371.
22798
22799 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
22800
22801         * metadata.c: fixed size for TypedByRef.
22802         * loader.c: when searching for a method, consider the vararg amrker.
22803         * unicode.c, decimal.c: constify some arrays.
22804
22805 2003-07-15  Dick Porter  <dick@ximian.com>
22806
22807         * socket-io.c: Fixed compilation for gcc < 3.2.
22808
22809         Fixed compilation for machines that don't have AF_INET6 (thanks to
22810         Bernie Solomon <bernard@ugsolutions.com> for that part.)
22811
22812         Fixed compile warnings.
22813         
22814         Fixed formatting and line endings.
22815
22816 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
22817
22818         * socket-io.h:
22819         * socket-io.c: Added IPv6 support.
22820
22821 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
22822
22823         * class.c (mono_class_is_assignable_from): New function to implement
22824         the is_assignable_from logic. Used by mono_object_isinst, 
22825         Type::IsAssignableFrom () and the interpreter.
22826
22827         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
22828         Object, even interfaces.
22829         
22830         * object.c (mono_object_isinst): Implement in terms of 
22831         is_assignable_from.
22832
22833         * icall.c (ves_icall_type_is_assignable_from): New icall.
22834
22835 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
22836
22837         * domain.c (foreach_domain): fix compiler warning.
22838
22839 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
22840
22841         * image.c (load_metadata_ptrs): use g_strndup because strndup is
22842         not available on all plattforms
22843
22844 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
22845
22846         * image.h image.c: Store the metadata version string in MonoImage.
22847         * icall.c: New icall to retrieve the image version.
22848         * reflection.c (create_dynamic_image): Fill in the image version field
22849         * reflection.c (build_compressed_metadata): Use the image version
22850         from the image structure.
22851
22852 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22853
22854         * appdomain.c: modified comment.
22855         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
22856         That will be its last iteration when mono_gc_cleanup is called from
22857         mono_runtime_cleanup and before the domain is unloaded.
22858
22859         Fixes bug #45962.
22860
22861 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
22862
22863         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
22864         attributes.
22865
22866 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
22867
22868         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
22869         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
22870         Bernie Solomon <bernard@ugsolutions.com>.
22871
22872 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
22873
22874         * object.c, object.h: provide mono_object_new_fast() for faster
22875         allocation in some special cases.
22876
22877 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
22878
22879         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
22880         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
22881
22882 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
22883
22884         * threadpool.c: fix leaks.
22885
22886 2003-07-01  Dick Porter  <dick@ximian.com>
22887
22888         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
22889         using MonoGHashTables.  Fixes threadpool bug posted to list.
22890
22891 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
22892
22893         * image.h, image.c: added support to load an assembly from a byte array.
22894         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
22895         assembly bundle support.
22896
22897 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
22898
22899         * threadpool.c (mono_thread_pool_add): keep a reference to the
22900         AsyncResult to prevent GC
22901
22902 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
22903
22904         * class.c: leak fix.
22905
22906 2003-06-25  Dick Porter  <dick@ximian.com>
22907
22908         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
22909         for the async object, the WaitHandle object will close the handle.
22910         Fixes bug 45321.
22911
22912 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
22913
22914         * class.c: in mono_array_class_get (), lookup from the hash with the
22915         same type we insert: this works around a bug in
22916         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
22917         lluis. The real fix will have to wait for after the release.
22918
22919 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
22920
22921         * icall.c: fix memory leak when getting type members.
22922
22923 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
22924
22925         * reflection.c: added more pubtoken special cases.
22926
22927 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
22928
22929         * class.c: handle field offset correctly when class size
22930         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
22931
22932 2003-06-20  Martin Baulig  <martin@ximian.com>
22933
22934         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
22935         *image' field.
22936
22937 2003-06-20  Martin Baulig  <martin@ximian.com>
22938
22939         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
22940
22941 2003-06-20  Martin Baulig  <martin@ximian.com>
22942
22943         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
22944         just distinguish between variables in registers and variables at
22945         an offset relative to a register.
22946
22947 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22948
22949         * icall.c: #ifdef out latest changes until mcs is fixed.
22950
22951 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
22952
22953         * icall.c: return members in metadata order.
22954
22955 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
22956
22957         * icall.c: avoid infinite loop in GetTimeZoneData.
22958
22959 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
22960
22961         * icall.c: added Marshal.Prelink/All icalls.
22962
22963 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
22964
22965         * object.c, object.h: fix warnings and do some overflow checking
22966         when creating arrays.
22967
22968 2003-06-17  Dick Porter  <dick@ximian.com>
22969
22970         * file-io.h:
22971         * file-io.c: File attributes need to be tweaked slightly when
22972         passed from the managed to the w32 world.
22973
22974 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
22975         * profiler.h profiler-private.h profiler.c: Rework last patch
22976         based on suggestion by Paolo.
22977         
22978 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
22979
22980         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
22981         instruction level coverage data collection.
22982         * profiler.h profiler.c (: Added new callback function which can be
22983         used by the profiler to limit which functions should have coverage
22984         instrumentation.
22985         * profiler.c (mono_profiler_load): Call g_module_build_path to
22986         generate the file name of the profiler library.
22987
22988 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
22989
22990         * profiler.c, profiler.h, profiler-private.h: added basic block 
22991         coverage profiling API.
22992
22993 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
22994
22995         * reflection.c (mono_reflection_create_runtime_class): Add support
22996         for events in dynamically generated code.
22997
22998         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
22999         not allocated.
23000
23001 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
23002
23003         * icall.c: when getting timezone info, return reasonable values if we
23004         can't get the actual data.
23005
23006 2003-06-14  Dick Porter  <dick@ximian.com>
23007
23008         * threads.c (start_wrapper): Remove the reference to the thread
23009         object in the TLS data, so the thread object can be finalized.
23010         This won't be reached if the thread threw an uncaught exception,
23011         so those thread handles will stay referenced :-( (This is due to
23012         missing support for scanning thread-specific data in the Boehm GC
23013         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
23014
23015 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
23016
23017         * reflection.c: ensure streams and tables are first allocated with
23018         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
23019
23020 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
23021
23022         * icall.c: fixed GetElementType for byrefs (bug# 44792).
23023
23024 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
23025
23026         * reflection.c (mono_reflection_create_runtime_class): Add support for
23027         properties to dynamically created classes.
23028         * reflection.c: Fix a few places where non-MonoObjects were inserted
23029         into the tokens hashtable.
23030
23031 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23032
23033         * object.c: some support to handle out of memory exceptions.
23034
23035 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
23036
23037         * marshal.c (mono_marshal_get_native_wrapper): support reference
23038         return types
23039
23040 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
23041
23042         * object.h, object.c: more portability stuff from Bernie Solomon.
23043         Unexport mono_object_allocate(). Added mono_object_unbox ().
23044         Set exitcode when an unhandled exception is thrown.
23045
23046 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
23047
23048         * marshal.c (mono_marshal_get_native_wrapper): use custom
23049         marshaler for return types.
23050
23051 2003-06-10  Dick Porter  <dick@ximian.com>
23052
23053         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
23054         ip_mreq is available
23055
23056 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
23057
23058         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
23059         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
23060         by Bernie Solomon <bernard@ugsolutions.com>.
23061
23062 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
23063
23064         * gc.c (mono_gc_init): Avoid error message on shutdown when
23065         GC_DONT_GC=1 is used.
23066
23067         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
23068         New icall to return the GUID of a module.
23069
23070 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
23071
23072         * class.c: ensure instance size always includes the parent's size
23073         even whem class size is set explicitly (fixes bug#44294).
23074
23075 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
23076
23077         * profiler.h, profiler.c: made the simple profiler thread-safe,
23078         get more accurate timing info. Allow the loading of an
23079         externally-developed profiler module.
23080
23081 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
23082
23083         * marshal.c (mono_marshal_get_native_wrapper): improved
23084         class/byref arguments.
23085         (mono_marshal_get_native_wrapper): better string marshaling support.
23086
23087 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
23088
23089         * class.c: ensure .pack and .size are handled correctly and
23090         simplified layout of static fields.
23091
23092 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
23093
23094         * appdomain.c
23095         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
23096
23097         * loader.c (mono_lookup_pinvoke_call): look for modules in the
23098         current directory (fix bug 44008)
23099
23100 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
23101
23102         * marshal.c (mono_marshal_get_native_wrapper): started support for
23103         custom marshalers.
23104         (mono_delegate_to_ftnptr): consider marshalling specifications
23105
23106 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
23107
23108         * reflection.c, reflection.h: emit custom marshal info.
23109
23110 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23111
23112         * object.c: free the GError.
23113         * icall.c: added CloseEvent_internal.
23114         * threads.[ch]:
23115         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
23116         call.
23117
23118 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
23119
23120         * loader.c (mono_method_get_signature): Add support for dynamic
23121         assemblies.
23122
23123 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
23124
23125         * reflection.c: fixed bug #43905.
23126
23127 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
23128
23129         * class.c, domain.c, icall.c, metadata.h, object.h: support for
23130         handling TypedReference and ArgIterator.
23131         * loader.c, loader.h: added function to get signature at call site.
23132
23133 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23134
23135         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
23136         data readonly. Buglets and warning fixes. Some MethodSpec support.
23137
23138 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
23139
23140         * class.h, class.c, object.c: remove relative numbering support.
23141
23142 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
23143
23144         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
23145         free the string, until we get a chance to fix Gtk#
23146
23147 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23148
23149         * marshal.c: revert last patch.
23150
23151 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
23152
23153         * icall.c: updates for new mono_class_vtable() not calling
23154         the type constructor anymore.
23155
23156 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
23157
23158         * object.h, object.c: separate vtable creation from type
23159         initialization. Make running the .cctor thread safe.
23160
23161 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
23162
23163         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
23164
23165 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
23166
23167         * loader.c (mono_get_method): consider calling convention
23168
23169 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
23170
23171         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
23172         to return the invisible global type for a module.
23173
23174         * reflection.c (mono_image_build_metadata): Emit global fields too.
23175
23176 2003-05-20  Peter Williams  <peterw@ximian.com>
23177
23178         * loader.c (mono_lookup_internal_call): Add a few newlines.
23179
23180 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
23181
23182         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
23183         literal strings.
23184
23185         * appdomain.c (set_domain_search_path): Recalculate search path when
23186         AppDomainSetup.PrivateBinPath changes.
23187
23188         * object.c (mono_class_compute_gc_descriptor): It turns out some
23189         parts of the class libs (like System.Thread) holds pointers to
23190         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
23191         to treat native int a pointer type here.
23192         
23193 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
23194
23195         * appdomain.h, domain.c: add hashtable for jump target resolution.
23196
23197 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
23198
23199         * reflection.h reflection.c icall.c: Added new icalls 
23200         GetManifestResourceInfoInternal, GetModulesInternal and support
23201         infrastructure.
23202
23203 2003-05-16  Dick Porter  <dick@ximian.com>
23204
23205         * icall.c:
23206         * file-io.h:
23207         * file-io.c: Implement System.IO.MonoIO::GetTempPath
23208
23209 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
23210
23211         * object.c: mono_store_remote_field: little fix to previous patch.
23212
23213 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
23214
23215         * class.c: add constructors to array classes.
23216         * icall.c: special case array construction for InternalInvoke (),
23217
23218 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
23219
23220         * class.h class.c reflection.c object.c: Added support for field
23221         defaults in dynamically generated classes.
23222
23223 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
23224
23225         * reflection.c: properly encode charset for ddlimport.
23226
23227 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
23228
23229         * threads.c: allow compiling without GC.
23230
23231 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
23232
23233         * appdomain.h, object.c, object.h, threads.c, threads.h: added
23234         handling of thread static data.
23235
23236 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
23237
23238         * reflection.h, reflection.c: added mono_custom_attrs_free ().
23239
23240 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
23241
23242         * class.c (mono_array_class_get): always set the serializable flags
23243         (mono_array_class_get): always set the SEALED attribute for array types
23244
23245 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
23246
23247         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
23248         attributes (fix for bug 42021).
23249
23250 2003-05-12  Dick Porter  <dick@ximian.com>
23251
23252         * gc.c: Don't run finalizers when the finalizer thread is
23253         finishing up, because the default domain has already been
23254         destroyed.
23255
23256 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
23257
23258         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
23259         value is null, we should throw an exception.   This is slightly
23260         different than the other conventions used for the constructor.
23261
23262 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23263
23264         * socket-io.c: fixed windows build.
23265
23266 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23267
23268         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
23269
23270 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
23271
23272         * object.c (mono_string_new_wrapper): Compatibility fix for MS
23273         compilers.
23274
23275 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
23276
23277         * class.c (mono_class_layout_fields): Add experimental GC aware
23278         auto layout facility. Requires class library changes to work correctly.
23279
23280         (mono_class_setup_vtable): Avoid overriding explicit interface
23281         method implementations. Fixes iface3.exe test.
23282
23283         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
23284         object reference.
23285         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
23286         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
23287
23288         * metadata.h: Add new type classification macro which determines
23289         whenever the type holds an object reference.
23290
23291 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
23292
23293         * marshal.c (mono_marshal_get_native_wrapper): cleanups
23294
23295 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
23296
23297         * gc.c (finalizer_thread): Work around a GC bug.
23298
23299 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
23300
23301         * marshal.c (emit_struct_conv): allow unions
23302
23303         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
23304
23305 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
23306
23307         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
23308
23309 2003-05-06  Martin Baulig  <martin@ximian.com>
23310
23311         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
23312
23313 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23314
23315         * socket-io.c:
23316         (Select_internal): allow NULLs, don't create arrays if not needed.
23317         Coupled with Socket.cs changes.
23318
23319         * threadpool.c:
23320         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
23321         register a finalizer for it that will close the semaphore handle. This
23322         fixes the leak and make Lupus' test run with > 4080 loops.
23323
23324 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
23325
23326         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
23327         Jerome Laban (bug #42287)
23328
23329 2003-05-02  Martin Baulig  <martin@ximian.com>
23330
23331         * debug-mono-symfile.h
23332         (MonoSymbolFile): Moved declaration into mono-debug.h.
23333         (MonoDebugMethodJitInfo): Likewise.
23334         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
23335         argument.
23336         (_mono_debug_address_from_il_offset): Take a
23337         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
23338
23339         * mono-debug.h
23340         (MonoDebugDomainData): New struct.
23341         (mono_debug_get_domain_data): New function.
23342         (mono_debug_add_method): Take an additional `MonoDomain *'
23343         argument.
23344         (mono_debug_source_location_from_address): Likewise.
23345         (mono_debug_il_offset_from_address): Likewise.
23346         (mono_debug_address_from_il_offset): Likewise.
23347
23348 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
23349
23350         * reflection.c: one more check for null type in custom attrs.
23351
23352 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23353
23354         * reflection.c: avoid warning (comparison is always false due to limited
23355         range of data type).
23356
23357 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23358
23359         * icall.c: throw an exception in Type.GetField if the argument 'name'
23360         is NULL.
23361
23362 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
23363
23364         * reflection.c: fixed handling of enums in named arguments to custom
23365         attributes (bug #42123).
23366
23367 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
23368
23369         * reflection.c: use the right array element type and handle
23370         a null for a Type argument, too.
23371
23372 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
23373
23374         * reflection.c: handle arrays as arguments to custom attributes.
23375
23376 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
23377
23378         * reflection.c: handle a string value in a custom attr
23379         ctor that takes an object.
23380
23381 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
23382
23383         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
23384         (fix bug #42063)
23385
23386 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
23387
23388         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
23389
23390 2003-04-27  Martin Baulig  <martin@ximian.com>
23391
23392         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
23393         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
23394         MONO_DEBUGGER_EVENT_BREAKPOINT.
23395         (mono_breakpoint_trampoline_code): Removed.
23396         (mono_debugger_event_handler): The last argument is now a
23397         `guint32'.
23398         (mono_debugger_insert_breakpoint_full): Removed the
23399         `use_trampoline' argument.
23400         (mono_debugger_method_has_breakpoint): Likewise.
23401         (mono_debugger_trampoline_breakpoint_callback): Renamed to
23402         mono_debugger_breakpoint_callback(); take the method and
23403         breakpoint number as arguments.
23404
23405 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
23406
23407         * metadata.c: fix off by one when loading parameters attributes.
23408
23409 2003-04-24  Martin Baulig  <martin@ximian.com>
23410
23411         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
23412
23413 2003-04-24  Martin Baulig  <martin@ximian.com>
23414
23415         * mono-debug-debugger.c: Moved all code which interacts with the
23416         Mono Debugger here.
23417
23418         * debug-mono-symfile.c: This code now just deals with the symbol
23419         file itself, the debugger code is now in mono-debug-debugger.c.
23420
23421 2003-04-23  Martin Baulig  <martin@ximian.com>
23422
23423         * mono-debug.c (mono_debug_source_location_from_il_offset):
23424         New method; like mono_debug_source_location_from_address(), but
23425         takes an IL offset instead of a machine address.
23426
23427 2003-04-23  Martin Baulig  <martin@ximian.com>
23428
23429         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
23430         `line' field; this is now computed by the debugger.
23431
23432 2003-04-23  Martin Baulig  <martin@ximian.com>
23433
23434         * mono-debug.[ch]: New files.  This is the new debugging interface.
23435
23436         * mono-debug-debugger.[ch]: New files.  Moved all code which
23437         interacts with the Mono Debugger here.
23438
23439 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
23440
23441         * domain.c (mono_init): initialize mono_defaults.monitor_class
23442
23443 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
23444
23445         * reflection.c (method_encode_code): Add a spicy exception to help
23446         future compiler authors.
23447
23448 2003-04-21  Martin Baulig  <martin@ximian.com>
23449
23450         * icall.c
23451         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
23452         Make this work with relative pathnames; g_filename_to_uri() needs
23453         an absolute filename.
23454
23455 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
23456
23457         * icall.c: Track name changes in Object and ValueType.
23458
23459 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
23460
23461         * metadata.c (mono_type_stack_size): size should be a multiple of
23462         sizeof (gpointer)
23463
23464 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23465
23466         * gc.c:
23467         (internal_domain_finalize): moved into mono_domain_finalize. No need
23468         to create another thread because the finalizers will be run in the
23469         finalizer thread.
23470         
23471         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
23472         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
23473         to be run (MS does this too).
23474
23475 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
23476
23477         * object.c (mono_class_compute_gc_descriptor): Update comment.
23478
23479         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
23480
23481         * image.h: Add synchronized wrapper cache.
23482
23483         * image.c (do_mono_image_open): Initialize cache.
23484
23485         * reflection.c (create_dynamic_mono_image): Initialize cache.
23486
23487 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23488
23489         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
23490         ves_icall_System_Buffer_ByteLengthInternal.
23491
23492 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23493
23494         * reflection.c: setup klass->nested_in earlier. Allow
23495         a dash in the assembly name.
23496
23497 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
23498
23499         * metadata.c (mono_type_to_unmanaged): dont access
23500         type->data.klass for MONO_TYPE_OBJECT
23501         (mono_type_to_unmanaged): consider System.Delegate class
23502
23503 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
23504
23505         * class.c: just setup supertypes in the proper place instead of
23506         initializing the full element class for arrays.
23507
23508 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
23509
23510         * class.c: ensure the element class of arrays is initialized.
23511         Setup the supertype info for array classes, too.
23512
23513 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
23514
23515         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
23516
23517 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23518
23519         * Makefile.am: re-added -m option when running cygpath. This way,
23520         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
23521         separator.
23522         * mono-config.c: same codepath for locating mono config file for WIN32
23523         and the rest.
23524         * assembly.c: if mono_assembly_setrootdir is called, don't override
23525         the value set.
23526
23527 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23528
23529         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
23530         MONO_ASSEMBLIES variable.
23531
23532 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
23533
23534         * icall.c: added Assembly::GetNamespaces() icall.
23535
23536 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23537
23538         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
23539
23540 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
23541
23542         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
23543         * object.c: fixed bug in the construction of vtable for proxies
23544
23545 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
23546
23547         * object.c (mono_array_new): Mark mono_array_new as an icall.
23548
23549 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23550
23551         * class.c: fixed test for public method when overriding interfaces.
23552         Closes bug #40970.
23553
23554 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
23555
23556         * appdomain.h, domain.c: added mono_domain_foreach() to
23557         be able to access the currently loaded appdomains.
23558         * object.c: make string interning work across sppdomains.
23559         Mark some functions for use as icalls.
23560
23561 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
23562
23563         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
23564
23565         * reflection.h reflection.c: Allocate long living data using 
23566         GC_MALLOC_ATOMIC so the collector does not need to scan it.
23567
23568         * reflection.c: Double the allocation size in streams instead of
23569         increasing it, to prevent unneccesary copying on large assemblies.
23570         
23571         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
23572         creation if the assembly does not have the Run flag set.
23573
23574 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
23575
23576         * class.h: avoid the C++ keywords in header files (Jerome Laban
23577         spotted and fixed this).
23578
23579 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23580
23581         * object.c:
23582         (mono_unhandled_exception): fill in the arguments for the
23583         UnhandledException event. Only trigger that event for the default
23584         domain (as MS does).
23585
23586 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
23587
23588         * object.c: Improve typed allocation stuff based on suggestions from
23589         Paolo. Also turn it on if the GC library supports it.
23590
23591 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
23592
23593         * object.c object.h class.h: Added experimental typed allocation
23594         facility using the interfaces in gc_gcj.h.
23595
23596         * os/gc_wrapper.h: Added new include files.
23597         
23598 2003-04-03  Martin Baulig  <martin@ximian.com>
23599
23600         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
23601         which is not yet enabled by default.
23602
23603         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
23604         functions.
23605         (mono_gc_lock, mono_gc_unlock): New static functions.
23606
23607         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
23608         functions; stop/start the world for the garbage collector.  This
23609         is using the windows API; we need to complete the SuspendThread()/
23610         ResumeThread() implementation in the io-layer to make this work on Unix.
23611         (mono_gc_push_all_stacks): New public function; tells the garbage
23612         collector about the stack pointers from all managed threads.
23613
23614 2003-04-03  Martin Baulig  <martin@ximian.com>
23615
23616         * object.h (MonoThread): Added `gpointer stack_ptr'.
23617
23618         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
23619
23620 2003-04-03  Martin Baulig  <martin@ximian.com>
23621
23622         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
23623
23624 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
23625
23626         * reflection.c (typebuilder_setup_fields): Initialize field.first and
23627         field.last.
23628
23629 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
23630
23631         * loader.c (mono_lookup_internal_call): Report the corlib that is
23632         out of sync.
23633
23634 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
23635
23636         * icall.c (ves_icall_type_GetTypeCode): fixed check for
23637         System.DBNull (it's class not valuetype).
23638
23639 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
23640
23641         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
23642         if the array method was already assigned a token (fixes bug#40646).
23643
23644 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
23645
23646         * reflection.c (mono_reflection_get_type): Attempt type resolve even
23647         if no assembly is given.
23648
23649 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
23650
23651         * metadata.h: Added the new tables.
23652
23653         * row-indexes.h: Added definitions for new tables.
23654
23655         * metadata.c: Add schemas for new tables, and add support for
23656         computing the sizes of them.
23657
23658         * class.c: Update for handling the new type cases.
23659
23660 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
23661
23662         * metadata.h (MONO_TYPE_IS_VOID): new macro
23663
23664 2003-03-31  Martin Baulig  <martin@ximian.com>
23665
23666         * threads.h (MonoThreadCallbacks): Added `thread_created'.
23667
23668         * threads.c (mono_thread_new_init): Call `thread_created' in the
23669         mono_thread_callbacks.
23670
23671 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
23672
23673         * loader.h: added marshalbyrefobject_class to mono_defaults
23674         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
23675         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
23676           generation of output parameters.
23677           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
23678         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
23679           contextbound and the target object belongs to the context of the caller.
23680         * object.h: added context and unwrapped_server variables in MonoRealProxy.
23681         * object.c: Implemented support for interfaces and abstract classes
23682           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
23683           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
23684
23685 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
23686
23687         * class.h class.c (mono_class_is_subclass_of): New function.
23688         
23689         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
23690         routines for most common case (calls from ArrayList::ToArray).
23691
23692         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
23693         routine so programs which call Environment::Exit() can be profiled.
23694
23695         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
23696         Added MONO_ARCH_SAVE_REGS.
23697
23698         * icall.c (ves_icall_type_is_subtype_of): Use new function.
23699
23700 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
23701
23702         * blob.h: Add a couple of new MonoType types definitions.
23703
23704         * tabledefs.h: Add a couple of new call convs.
23705
23706 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
23707
23708         * reflection.h (MonoReflectionDynamicAssembly): track changes in
23709         the layout of the class.
23710
23711         * reflection.c (alloc_table): double the size on overflow to avoid
23712         unnecessary copying.
23713
23714         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
23715         avoid filling out metadata tables and blobs. Also set mb->ilgen to
23716         null so it can be garbage collected.
23717         
23718 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
23719
23720         * reflection.c (mono_reflection_get_type): Return the resolved type
23721         only if it is in the assembly we searched.
23722
23723         * reflection.c (ensure_runtime_vtable): Initialize method slots.
23724
23725         * class.c (mono_class_setup_vtable): Set the slot of the overriding
23726         method.
23727
23728 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23729
23730         * appdomain.c:
23731         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
23732         the right one is 'file:///blah', but MS allows it.
23733         * assembly.c:
23734         (mono_assembly_open): allow 'file://blah'
23735
23736         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
23737
23738 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
23739
23740         * socket-io.c: fixes bug #40310.
23741
23742 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
23743
23744         * reflection.c (mono_reflection_parse_type): handle deeply nested
23745         types correctly.
23746
23747         * reflection.c (mono_image_create_token): Use unique token values
23748         since they will be put into a hash table.
23749
23750         * class.c (mono_class_setup_vtable): If a method occurs in more than
23751         one place in the vtable, and it gets overriden, then change the
23752         other occurances too.
23753
23754         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
23755         object as return type.
23756
23757 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
23758
23759         * icall.c: Deleted "ToString" implementation for double and float
23760         because they are full implemented in managed code.
23761
23762 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
23763
23764         * reflection.c, reflection.h: implemented and exported functions
23765         to retrieve info about custom attributes.
23766
23767 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23768
23769         * appdomain.c: moved Uri handling to assembly.c
23770         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
23771         work when using a file Uri in *nix and windows.
23772
23773         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
23774         GetReferencedAssemblies.
23775
23776 2003-03-18  Dick Porter  <dick@ximian.com>
23777
23778         * icall.c: Rename a couple of internal calls
23779
23780         * threads.c: Set the thread state to Stopped when a thread exits.
23781         Fixes bug 39377.
23782
23783 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
23784
23785         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
23786         New icall.
23787
23788         * object.c (mono_class_vtable): fix warning.
23789
23790 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
23791
23792         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
23793
23794         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
23795         memory.
23796         (method_encode_clauses): Create exception info structures in the right
23797         order.
23798         (mono_reflection_setup_internal_class): Initialize supertypes field.
23799
23800         * class.c object.c: Handle interfaces which implement other interfaces 
23801         correctly.
23802
23803         * class.h class.c: Move the supertypes array initialization code into 
23804         a separate function so it can be used for dynamic types too. Also call
23805         it earlier, in mono_class_init(), since it can be used before the
23806         type is initialized.
23807
23808 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23809
23810         * Makefile.am:
23811         * assembly.c:
23812         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
23813
23814         * appdomain.c:
23815         * appdomain.h:
23816         * marshal.c:
23817         * object.c: remove warnings.
23818
23819 2003-03-13  Martin Baulig  <martin@ximian.com>
23820
23821         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
23822         (MonoDebugLexicalBlockEntry): New types.
23823
23824         * debug-mono-symfile.c
23825         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
23826
23827 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23828
23829         * process.c: ret can be any non-zero value accroding to MS doc.
23830
23831 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
23832
23833         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
23834         fixing a warning for a miss-used prototype, would have cause
23835         random memory corruption.
23836
23837 2003-03-07  Martin Baulig  <martin@ximian.com>
23838
23839         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
23840         getting really annoying ....
23841
23842 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
23843
23844         * reflection.c (fixup_method): added support for array methods.
23845
23846 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
23847
23848         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
23849         (pointed out by Michael Adams).
23850
23851 2003-03-04  Dick Porter  <dick@ximian.com>
23852
23853         * icall.c: Temporarily reverted the Double and Single ToString()
23854         change, because it broke nunit.
23855
23856 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
23857
23858         * object.h, threads.h: make include files compatible with C++
23859         (patch by Jerome Laban <jlaban@wanadoo.fr>).
23860
23861 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
23862
23863         * icall.c: Erased ToString helper functions for Double and Single.
23864         Now, that implementations ar all in managed code (Double and Single
23865         Formatters).
23866
23867 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
23868
23869         * appdomain.c: Added method for initializing the default context of
23870         a domain. Added internal call for getting the default context.
23871         * appdomain.h: Added context variable in MonoDomain struct.
23872         * domain.c: mono_domain_set also sets the default context of the domain
23873         * icall.c: Mapped internal method InternalGetDefaultContext.
23874         * object.c: mono_object_get_virtual_method returns always a remoting
23875         wrapper if the object is a transparent proxy.
23876         mono_runtime_invoke_array: when creating an object by calling the
23877         constructor, if the created object is a proxy, then the constructor should
23878         be called using the a remoting wrapper.
23879
23880 2003-03-03  Dick Porter  <dick@ximian.com>
23881
23882         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
23883         variable so it compiles on solaris.  Problem spotted by
23884         Christopher Taylor <ct@cs.clemson.edu>
23885
23886 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23887
23888         * appdomain.c:
23889         (get_info_from_assembly_name): don't leak value.
23890
23891         * icall.c:
23892         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
23893         result.
23894
23895 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
23896
23897         * assembly.c: export mono_image_load_references ().
23898         * class.c: handle function pointers. mono_class_from_name() now
23899         supports nested type names directly.
23900
23901 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
23902
23903         * reflection.h reflection.c: Encode already created dynamic methods 
23904         and fields correctly as a DEF instead of a REF.
23905
23906         * reflection.c: Get rid of the force_ref argument to 
23907         mono_image_typedef_or_ref since it was wrong in the first place.
23908
23909         * string-icalls.c: add error checking to string constructors according
23910         to the MSDN docs.
23911
23912         * reflection.c: Emit types in the order their TypeBuilders were 
23913         created. Previously, a new table index was assigned to each type before
23914         the tables were emitted. This was wrong because the signature blob
23915         might already refer to a type by its original table index.
23916
23917 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
23918
23919         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
23920         change.
23921         
23922 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23923
23924         * Makefile.am: make assemblies dir have \ instead of / on windows.
23925
23926 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
23927
23928         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
23929         iterate over the NESTEDCLASS table using a linear search since the
23930         table is not guaranteed to be sorted by the secondary key.
23931
23932         * class.c (mono_class_create_from_typedef): fixed up call to
23933         mono_metadata_nesting_typedef.
23934         
23935 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
23936
23937         * marshal.c (mono_string_to_byvalstr): clear the memory as
23938         suggested by Jerome Laban <jlaban@wanadoo.fr>
23939
23940 2003-02-26  Dick Porter  <dick@ximian.com>
23941
23942         * process.c: Cope with padding in .rsrc blocks
23943
23944 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
23945
23946         * metadata.h: reverted the filter_len change, it breaks reflection
23947         
23948 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
23949
23950         * metadata.h: added a new field to store the filter_len
23951         
23952
23953 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
23954
23955         * reflection.c: handle custom attributes for types and members
23956         created with Reflection.Emit (bug#38422).
23957
23958 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
23959
23960         * reflection.c: define RTSpecialName automatically for constructors for
23961         compatibility with MS.NET.
23962
23963         * reflection.c (mono_reflection_create_runtime_class): initialize
23964         nested_in field of dynamically created classes.
23965
23966 2003-02-22  Martin Baulig  <martin@ximian.com>
23967
23968         * debug-mono-symfile.h: Incremented version number.
23969
23970 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
23971
23972         * object.h icall.c process.c: fix warnings.
23973
23974 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
23975
23976         * appdomain.h appdomain.c:
23977         (mono_domain_try_type_resolve): split the 
23978         name_or_tb argument into a name and a tb argument.
23979         (mono_domain_has_type_resolve): new function to check whenever the
23980         application has registered a TypeResolve event handler.
23981         
23982         * icall.c reflection.h reflection.c: move the type resolve logic into
23983         mono_reflection_get_type () so it will be invoked when 
23984         Assembly::GetType () is called.
23985
23986         * reflection.c:
23987         (mono_reflection_get_type): renamed to get_type_internal.
23988         (mono_reflection_get_type): fixed type name generation so it works 
23989         for nested types too.
23990         (mono_reflection_get_type): call has_type_resolve () to avoid the 
23991         costly type name generation if there is no resolve event handler.
23992
23993 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
23994
23995         * class.c, image.c: load exported types from file references.
23996
23997 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
23998
23999         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
24000           used to cache the managed methods used to create proxies and make 
24001           remote invocation of methods.
24002         * class.h: Added in MonoVTable a flag to indicate that a class needs 
24003           to be remotely created.
24004         * object.c: Modified the method mono_class_vtable(). It now initializes 
24005           the remote flag of the vtable. Modified mono_object_new_specific(), 
24006           so now it checks the remote flag.
24007         * icall.c: Added a couple of internal methods, one for enabling instance 
24008           creation interception for a type, and one for creating objects bypassing
24009           the remote check.
24010
24011 2003-02-18  Martin Baulig  <martin@ximian.com>
24012
24013         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
24014         New interncall to get a method's metadata token.
24015
24016         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
24017         New interncall for the debugger.
24018
24019 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
24020
24021         * class.c (mono_class_setup_vtable): allocate supertype array
24022
24023 2003-02-18  Martin Baulig  <martin@ximian.com>
24024
24025         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
24026
24027 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24028
24029         * reflection.c:
24030         (assembly_name_to_aname): jump over unknown properties (i've found
24031         something like: 'type, assembly, version=xxx, custom=null, public...',
24032         so now will ignore custom=null and still get the rest of the values).
24033
24034 2003-02-17  Dick Porter  <dick@ximian.com>
24035
24036         * threads.c: Have Thread.Start() wait for a semaphore to signal
24037         that the thread has set up all its local data.  This fixes bug
24038         34323, where Abort() raced the new thread's TLS data.
24039
24040         Also removes the handle_store() call from start_wrapper, because
24041         threads are now always created suspended and there is no longer a
24042         race between the parent and child threads to store the info.
24043
24044 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
24045
24046         * image.c: explain the #- heap issue in a message, hopefully
24047         avoiding FAQs on mono-list.
24048
24049 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24050
24051         * icall.c:
24052         (GetEntryAssembly): if the domain has not invoked
24053         AppDomain.ExecuteAssembly yet, return the assembly of the default
24054         AppDomain.
24055
24056 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
24057
24058         * class.c (mono_ldtoken): make it work in dynamic assemblies.
24059
24060 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
24061
24062         * metadata.c, reflection.c: simple speedup to type hash
24063         and equals code.
24064
24065 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
24066
24067         * image.c, image.h, class.c, assembly.c: move module loading
24068         to MonoImage. When loading metadata, consider alignemnet from
24069         the start of metadata, not from the metadata address in memory.
24070
24071 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
24072
24073         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
24074         AssemblyBuilder objects. Factored out custom attribute creation into
24075         a separate function.
24076         (create_custom_attr): new function to create custom attributes.
24077
24078 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
24079
24080         * Makefile.am: Got tired of typing the full pathname to pedump.
24081         Until there is another option, am installing this.
24082
24083 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
24084
24085         * class.c (class_compute_field_layout): always set field->parent 
24086         (mono_ldtoken): use mono_defaults.fieldhandle_class;
24087
24088 2003-02-11  Dick Porter  <dick@ximian.com>
24089
24090         * threads-types.h:
24091         * monitor.c: Rewrote Monitor, making lock much faster and
24092         Pulse/Wait work as specified.  Also uses much fewer handles, and only
24093         creates them as needed.
24094
24095         * exception.c: Added SynchronizationLockException
24096
24097         * threads.c: Deleted old Monitor implementation.  The new one is
24098         in a new file.
24099
24100 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
24101
24102         * class.c: handled TypedReference type code. Set the correct size for
24103         class data. Setup interface_offsets for interface classes, too.
24104
24105 2003-02-09  Martin Baulig  <martin@ximian.com>
24106
24107         * debug-mono-symfile.h: Reflect latest symbol writer changes.
24108
24109 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
24110
24111         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
24112         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
24113         * object.c: fixed mono_object_get_virtual_method () for interfaces.
24114         * verify.c: check for code that runs after the end of the method.
24115
24116 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
24117
24118         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
24119         "System.Math::Round2".
24120         * sysmath.h: Added Floor, Round and Round2 definitions.
24121         * sysmath.c: Modified certain functions that were not 100% compliant
24122         with MS.NET (math precision) and added the implementation of Floor,
24123         Round and Round2.
24124
24125 2003-02-07  Martin Baulig  <martin@ximian.com>
24126
24127         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
24128
24129 2003-02-07  Martin Baulig  <martin@ximian.com>
24130
24131         * debug-mono-symfile.c: Reflected latest symwriter changes.
24132         (mono_debug_create_mono_symbol_file): Removed.
24133         (mono_debug_open_mono_symbol_file): Take an argument which
24134         specifies whether to create a dynamic symbol file.
24135
24136 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
24137
24138         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
24139
24140 2003-02-05  Martin Baulig  <martin@ximian.com>
24141
24142         * reflection.c (mono_image_build_metadata): Make this public,
24143         protect it against being called multiple times, don't create
24144         resources and don't build the compressed metadata here.
24145         (mono_image_create_pefile): Do this here.
24146
24147         * icall.c
24148         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
24149
24150 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24151
24152         * socket-io.c: fixed bug #36322.
24153
24154 2003-02-06  Piers Haken <piersh@friskit.com>
24155
24156         * appdomain.[ch]:
24157         * class.h:
24158         * debug-mono-symfile.c:
24159         * icall.c:
24160         * loader.c:
24161         * mono-config.c:
24162         * monosn.c:
24163         * reflection.c:
24164         * socket-io.c: warning cleanups
24165
24166 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
24167
24168         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
24169         function. works like remoting invoke, but does a check for the Proxy first.
24170
24171 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
24172
24173         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
24174
24175 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
24176
24177         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
24178         array of pointers.
24179         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
24180         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
24181
24182         * object.c (mono_store_remote_field_new): used by the new jit
24183         instead of mono_store_remote_field
24184         (mono_load_remote_field_new): used by the new jit
24185         instead of mono_load_remote_field
24186
24187 2003-02-05  Patrik Torstensson
24188
24189         * appdomain.c: changed unload to take the domain id instead
24190         of domain
24191         
24192         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
24193
24194
24195 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24196
24197         * appdomain.c: don't look for assemblies in ApplicationBase if
24198         PrivateBinPathProbe is set.
24199
24200 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24201
24202         * object.c: make the first argument in main_args contain the absolute
24203         path to the assembly. Fixes bug #37511.
24204
24205 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24206
24207         * icall.c: get correct UTC offset for countries not using daylight
24208         time saving. Fixes bug #30030.
24209
24210 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24211
24212         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
24213         and 1 are the family).
24214
24215 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
24216
24217         * icall.c (ves_icall_InternalExecute): removed wrong assertion
24218
24219         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
24220
24221 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
24222
24223         * reflection.c: added support for SignatureHelper tokens, which is
24224         needed by the Calli opcode.
24225
24226         * reflection.h: track changes to SignatureHelper class.
24227
24228         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
24229
24230 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24231
24232         * appdomain.c: fixed loading assemblies from PrivateBinPath.
24233
24234 2003-02-03  Patrik Torstensson
24235         * appdomain.[c|h], domain.c : 
24236          - Added support for getting a domain via domain id
24237          - Support for setting and getting domain from System.AppDomain 
24238            (used in cross appdomain channel)
24239          - Added support for get/set for a MonoAppContext on a thread 
24240            (Context class in System.Runtime.Remoting.Contexts),
24241          - Removed hack in Get/SetData and ExecuteAssembly.
24242         
24243         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
24244         the managed world to get control when a proxy is created.
24245
24246         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
24247         
24248 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
24249
24250         * icall.c
24251         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
24252         Populate the codebase field as well.
24253
24254 2003-02-02  Martin Baulig  <martin@ximian.com>
24255
24256         * debug-mono-symfile.c
24257         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
24258         (mono_debug_symfile_add_method): Allow interncalls.
24259
24260 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24261
24262         * icall.c: throw parse exception if strtod fails or the string is empty.
24263
24264 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
24265
24266         * marshal.c: handle object type separately from defined
24267         class types.
24268
24269 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
24270
24271         * marshal.c: handle NATIVE_LPSTR for strings when it's
24272         explicitly specified.
24273
24274 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
24275
24276         * reflection.c, reflection.h, icall.c: setup the reflection
24277         handle cache for ModuleBuilders and AssemblyBuilders.
24278
24279 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
24280
24281         * reflection.c (reflection_methodbuilder_to_mono_method): set
24282         pinvoke flag
24283
24284 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24285
24286         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
24287
24288 2003-01-29  Dick Porter  <dick@ximian.com>
24289
24290         * threads.c: No need for the fake_thread kludge now that Thread
24291         doesn't run a class constructor
24292         
24293 2003-01-29  Dick Porter  <dick@ximian.com>
24294
24295         * threads.c: Use g_direct_hash instead of the rather bogus
24296         g_int_hash
24297
24298 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
24299
24300         * marshal.c (mono_marshal_get_native_wrapper): add check for null
24301         (fix pinvoke12.exe)
24302         (mono_marshal_get_struct_to_ptr): generate valid IL code
24303         (mono_marshal_get_ptr_to_struct): generate valid IL code
24304         (*): correctly set sig->pinvoke, we need to memdup the signature
24305         to do that
24306
24307 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
24308
24309         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
24310         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
24311
24312 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
24313
24314         * profiler.c: provide more callers information.
24315
24316 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
24317
24318         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
24319
24320         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
24321
24322         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
24323
24324 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24325
24326         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
24327         exception instead of going into an infinite loop on dates which it 
24328         can't yet handle.
24329
24330         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
24331         out-of-range exception if needed.
24332
24333         * class.c (mono_class_setup_vtable): allow a virtual method to provide
24334         an implementation for an interface method and to override an inherited
24335         method at the same time. 
24336         Imagine a scenario when a virtual method is used to override a
24337         virtual abstract method in a parent class, and this same method 
24338         provides an implementation for an method inherited from an interface. 
24339         In this case, the interface resolution code will set im->slot, which 
24340         means that the virtual method override pass will skip this method 
24341         which means a pointer to the abstract method inherited from the parent
24342         will remain in the vtable of this non-abstract class.
24343
24344         * class.c: (mono_class_setup_vtable): continue search for a real 
24345         method if only an abstract method is found.     
24346
24347 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
24348
24349         * reflection.c: add size to encoding for ByValStr and ByValArray
24350         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
24351
24352 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24353
24354         * class.c (mono_class_setup_vtable): pass the override info as an
24355         argument.
24356
24357         * class.c (mono_class_setup_vtable): set the slot of overriding methods
24358         correctly.
24359         
24360         * reflection.c (ensure_runtime_vtable); add support for method 
24361         overrides.
24362         
24363 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24364
24365         * reflection.c (resolution_scope_from_image): Hack to work to work with
24366         dynamic assemblies.
24367
24368         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
24369         added a 'force_ref' argument to force this function to allways return 
24370         a TypeRef. This is needed by mono_image_get_memberref_token ().
24371         
24372 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24373
24374         * reflection.c (mono_image_get_type_info): interfaces really don't have
24375         a parent.
24376
24377         * reflection.c (mono_image_basic_init): fill out missing fields of
24378         image structure.
24379
24380         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
24381         dynamic assemblies. This is required so dynamic assemblies show up in
24382         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
24383         Type::GetType() etc. This is consistent with MS behaviour.
24384
24385         * image.c image.h reflection.c: add newly created classes to the name 
24386         cache so mono_class_get () will find them.      
24387
24388 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24389
24390         First part of changes to get IKVM.NET running under mono.
24391         
24392         * appdomain.h, appdomain.c: added new function 
24393         mono_domain_try_type_resolve() which will emit TypeResolve events. 
24394         This function will call AppDomain::DoTypeResolve to do the actual work.
24395
24396         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
24397         moved existing code dealing with dynamic tokens to a new function 
24398         called mono_reflection_lookup_dynamic_token (). This function will 
24399         raise TypeResolve events when appropriate. Since reflection.c is not 
24400         part of libmetadata, a new hook function called 
24401         mono_lookup_dynamic_token() is added to class.c which will call this.
24402
24403         * assembly.h assembly.c: make the invoke_load_hook function public,
24404         so it can be called for dynamic assemblies.
24405
24406         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
24407
24408         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
24409         type isn't found.
24410
24411         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
24412         MonoGHashTable, since it contains pointers to objects which the GC 
24413         needs to track.
24414
24415         * assembly.c (search_loaded): remove unused variable.
24416         
24417 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
24418
24419         * object.c: fixed issue exposed by gcc-generated IL programs
24420         that use RVA data for pointers.
24421
24422 2003-01-25  Martin Baulig  <martin@ximian.com>
24423
24424         * threads.c (start_wrapper): Moved the initialization of
24425         `start_func' above the mono_new_thread_init() call to which we
24426         pass it as argument.
24427
24428 2003-01-24  Martin Baulig  <martin@ximian.com>
24429
24430         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
24431         the MonoThread pointer.
24432
24433 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
24434
24435         * icall.c: Rename `PowImpl' to Pow.
24436
24437 2003-01-23  Dick Porter  <dick@ximian.com>
24438
24439         * threads.c (start_wrapper): Create a Thread object if needed, so
24440         the Main() thread can do the class initialisation in a subthread
24441         that has been set up to allow managed code execution.
24442
24443         Pass the thread ID instead of the MonoThread pointer to the thread
24444         start and attach callbacks.  This change is required, because the
24445         jit thread start callback must be called _before_ the Thread
24446         object can be created.
24447         
24448         (mono_thread_init): Removed much object creation code that is no
24449         longer needed.  No managed code is called from here now.
24450
24451         * object.c (mono_runtime_exec_managed_code): Create a subthread
24452         for Main, and call back to the runtime to use it.
24453         Set the exit code when Main exits.
24454
24455         * gc.c: Make sure domain finalisation happens in a subthread.
24456         Re-enable threaded GC, fixing bug 31333 (again).
24457
24458         * environment.c: System.Environment internall calls (so far just
24459         ExitCode is here, the others are still in icall.c)
24460
24461         * appdomain.c (mono_runtime_cleanup): All threads running managed
24462         code should have finished before mono_runtime_cleanup() is
24463         reached, so no need to clean up threads.
24464
24465 2003-01-22  Martin Baulig  <martin@ximian.com>
24466
24467         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
24468         `gpointer func' arguments.      
24469         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
24470         but added `MonoThread *thread' argument.
24471         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
24472
24473         * threads.c (mono_new_thread_init): Added `gpointer func' argument
24474         and pass it to the mono_thread_start_cb callback.
24475         (mono_install_thread_callbacks): New public function to install a
24476         set of callbacks which are set by the debugger.
24477         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
24478
24479 2003-01-22  Martin Baulig  <martin@ximian.com>
24480
24481         * Makefile.am: Install debug-mono-symfile.h.
24482
24483 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
24484
24485         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
24486
24487 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
24488
24489         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
24490         * class.c (mono_ptr_class_get): correctly set access levels of pointers
24491         (mono_array_class_get): correctly set access levels of arrays
24492
24493 2003-01-20      Patrik Torstensson
24494         * image.h (MonoAssemblyName): changed major, minor, build, revision
24495         from signed to unsigned.
24496
24497 2003-01-20  sean kasun <skasun@azstarnet.com>
24498
24499         * reflection.c (load_cattr_value): Now this handles
24500         MONO_TYPE_SZARRAY.  Fixes bug #35629
24501
24502 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
24503
24504         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
24505         integer value
24506
24507 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24508
24509         * decimal.c: fixed bug #26056.
24510
24511 2003-01-17  Martin Baulig  <martin@ximian.com>
24512
24513         * gc.c: Raise an ExecutionEngineException instead of using g_error().
24514
24515 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24516
24517         * exception.[ch]:
24518         (mono_get_exception_type_initialization): new function.
24519
24520         * object.c: throw a TypeInitializationException when an exception is
24521         thrown invoking the class constructor.
24522
24523 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24524
24525         * reflection.c: fixed attribute reading.
24526
24527 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24528
24529         * icall.c:
24530         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
24531         provided, look for the type in the calling assembly and then in
24532         mscorlib; if the assembly name is provided, only try that one.
24533
24534 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
24535
24536         * object.c: register the vtable before there is a chance it's
24537         queried again recursively.
24538
24539 2003-01-13  Duncan Mak  <duncan@ximian.com>
24540
24541         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
24542         gc-internal.h. 
24543         
24544 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
24545
24546         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
24547
24548 2003-01-11  Martin Baulig  <martin@ximian.com>
24549
24550         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
24551         this to 20 for the release.
24552
24553 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
24554
24555         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
24556
24557         * loader.c (mono_method_get_marshal_info): bug fix
24558
24559         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
24560         structures with explicit layout
24561
24562 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
24563
24564         * profiler.c: made the output more readable (and sorted). 
24565         Added caller information for the allocation profiler.
24566
24567 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
24568
24569         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
24570
24571 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24572
24573         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
24574         to get value types.
24575         
24576 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
24577
24578         * object.c, profiler.h, profiler.c, profiler-private.h:
24579         Added object allocation profiler.
24580
24581 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
24582
24583         * reflection.h, reflection.c: handle global methods.
24584         Compress blob entries.
24585
24586 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
24587
24588         * marshal.c: fix compilation.
24589
24590 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
24591
24592         * loader.c (mono_method_get_marshal_info): impl.
24593
24594         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
24595
24596 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24597
24598         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
24599         for reference types.
24600
24601 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
24602
24603         * loader.c: fixed off by one error in loaded parameter names.
24604
24605 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
24606
24607         * marshal.c (mono_marshal_get_icall_wrapper): like
24608         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
24609         instead of a MonoMethod.
24610
24611 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24612
24613         * decimal.c: fixed bug #36537.
24614
24615 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
24616
24617         * marshal.c: throw a missing method exception if a
24618         P/Invoke method is not found.
24619
24620 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
24621
24622         * icall.c: allow a null this for constructors.
24623
24624 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
24625
24626         * icall.c: raise the proper exceptions if the arguments to the
24627         internal Invoke are incorrect.
24628
24629 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
24630
24631         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
24632
24633 2003-01-03  Martin Baulig  <martin@ximian.com>
24634
24635         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
24636
24637 2002-12-31  Martin Baulig  <martin@ximian.com>
24638
24639         * debug-mono-symfile.c: Completely rewrote the type section.
24640         Instead of using individual malloc()ed fields, we use one big
24641         continuous memory area and offsets into this area.
24642         See the comments in the source code for details.
24643
24644 2002-12-30  Martin Baulig  <martin@ximian.com>
24645
24646         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
24647
24648 2002-12-30  Martin Baulig  <martin@ximian.com>
24649
24650         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
24651         line number table in this data blob instead of using an external
24652         pointer.
24653
24654 2002-12-28  Martin Baulig  <martin@ximian.com>
24655
24656         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
24657
24658 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
24659
24660         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
24661         as a boxed return type.
24662
24663 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
24664
24665         * appdomain.c
24666         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
24667         g_build_filename to properly get separators on the filename created.
24668
24669         * object.h: Small change, introduce MonoMarshalByRefObject to
24670         track the layout of that structure in the C# universe as we make
24671         changes there.
24672
24673 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
24674
24675         * object.c: removed assert to allow static fields on interfaces.
24676         * loader.c: a TypeSpec may be used for any type, not just arrays.
24677
24678 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
24679
24680         * class.c, class.h: added mono_class_array_element_size ().
24681         Ignore static methods in interfaces.
24682
24683 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24684
24685         * threads.c: fixed the build under cygwin.
24686
24687 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
24688
24689         * reflection.c: handle nullref constants. Allocate keys for
24690         reflection handles with the GC.
24691
24692 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
24693
24694         * threads.c, threads.h: added mono_thread_get_abort_signal()
24695         to get a suitable signal for thread abort.
24696
24697 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
24698
24699         * metadata.c: fix handling of ExportedType table.
24700
24701 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24702
24703         * icall.c: added WriteWindowsDebugString internal call.
24704
24705 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24706
24707         * reflection.h: added fields to match C# implementation.
24708
24709 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24710
24711         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
24712
24713 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
24714
24715         * gc.h, gc-internal.h: Rename header for GC internal calls to
24716         gc-internal.h from gc.h as to not clash with Boehm GC having its
24717         header installed as <gc.h> in outside include paths.
24718         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
24719         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
24720
24721 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24722
24723         * icall.c: assign minor, build and revision in FillName.
24724
24725 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
24726
24727         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
24728         Added support for running code generated by Reflection.Emit.
24729
24730 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24731
24732         * appdomain.c: check for NULL argument in LoadFrom.
24733
24734 2002-12-10  Dick Porter  <dick@ximian.com>
24735
24736         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
24737
24738 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24739
24740         * appdomain.c: fix buglet when building exe file name.  Handle full
24741         assembly name (needed after latest changes to AssemblyName).
24742         * image.c:
24743         (mono_image_close): free some hashtables.
24744
24745 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
24746
24747         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
24748         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
24749         on some systems (redhat 7.3) 
24750
24751 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
24752
24753         * threads.c: delete the critical section of a sync block,
24754         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
24755
24756 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
24757
24758         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
24759
24760 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24761
24762         * appdomain.[ch]: handle the assembly preload event to try loading the
24763         assemblies using the paths we have in the current domain.
24764
24765         * assembly.[ch]: created an assembly preload hook that is called to try
24766         loading the assembly by other means that the ones provided here.
24767
24768         * domain.c: initialize the domain search path.
24769
24770         From now on, assemblies (TODO: except corlib and System) are loaded
24771         according to these rules when using mono_assembly_load ():
24772
24773                 1. It tries to load the assembly from the ApplicationBase
24774                 of the current domain appending .dll and .exe (TODO: have to
24775                 try loading from name/name.dll and name/name.exe).
24776
24777                 2. It tries the search path specified in PrivateBinPath for the
24778                 current domain (if any).
24779
24780                 3. Previous behavior.
24781
24782 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
24783
24784         * icall.c: implemented GetInterfaceMap() related icall.
24785         * domain.c, loader.h: load MethodInfo in mono_defaults.
24786
24787 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
24788
24789         * gc.c: disable the finalizer thread for now, untill all the issues
24790         with it are resolved.
24791
24792 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
24793
24794         * string-icalls.c: handle embedded nulls in string ctor when the
24795         length is specified.
24796
24797 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
24798
24799         * class.c: look for explicit interface implementation in parent
24800         classes, too.
24801
24802 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
24803
24804         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
24805
24806 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
24807
24808         * gc.c: protect handles with a critical section.
24809
24810 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24811
24812         * icall.c:
24813         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
24814         parameters. If no assembly specified, try getting the type from all
24815         the assemblies in the current domain, else, load the assembly and get
24816         the type from it.
24817
24818 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24819
24820         * marshal.c: applied patch from Aleksey Demakov that fixes
24821         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
24822
24823 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24824
24825         * icall.c: fixed get_location.
24826
24827 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
24828
24829         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
24830         declarations to make it work with older gcc. 
24831
24832         * loader.c (mono_get_method): set signature->pinvoke for native calls
24833
24834 2002-11-20  Dick Porter  <dick@ximian.com>
24835
24836         * threads.c (mono_thread_init): Set the main thread's handle
24837
24838 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
24839
24840         * gc.c: allow compilation without GC support. Changed to match the
24841         mono coding style.
24842
24843 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
24844
24845         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
24846
24847 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
24848
24849         * reflection.c: set a public key token on the core assemblies.
24850
24851 2002-11-18  Dick Porter  <dick@ximian.com>
24852
24853         * threads.c: Split out some thread initialisation so that other
24854         files can set the start callback function.
24855
24856         * gc.c: Run finalisers in a separate thread, to avoid stack
24857         overflow.  Fixes bug 31333.
24858
24859         * appdomain.c: Set up GC finalisation thread.
24860
24861         * reflection.c: 
24862         * object.c: 
24863         * domain.c: Use gc.h macros for GC_malloc
24864         
24865 2002-11-15  Dick Porter  <dick@ximian.com>
24866
24867         * threadpool.c: 
24868         * threads.c:
24869         * appdomain.c: Removed mono_runtime_init_with_attach(),
24870         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
24871         merging the extra parameter with the existing function.  Removed
24872         unneeded code in mono_thread_attach().
24873
24874 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
24875
24876         * image.c (mono_image_loaded_by_guid): a method to get loaded
24877         images by guid. 
24878         (load_metadata_ptrs): we store the guid as string.
24879
24880 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
24881
24882         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
24883
24884         * metadata.c (mono_guid_to_string): imported method form Zoltan
24885         Varga (slightly modified)
24886
24887         * assembly.c (mono_assembly_open): load precompiled code
24888
24889         * loader.h (MonoMethod): we store the method token for use in the
24890         aot compiler. 
24891
24892 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24893
24894         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
24895         the hook function called when an assembly is loaded.
24896         
24897         * domain.c: Modified file.
24898         (mono_domain_assembly_load): removed hash table insertion of assemblies.
24899
24900         Fixes bug #33196.
24901
24902 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
24903
24904         * reflection.c: Map PEFileKind to the value expected by the WinNT
24905         image loader. 
24906
24907 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24908
24909         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
24910         Read until the buffer is filled completely.
24911
24912 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24913
24914         * icall.c: implemented MonoType.InternalGetEvent ().
24915
24916 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24917
24918         * appdomain.c: implemented InitAppDomainSetup. Delayed
24919         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
24920         the entry_assembly.
24921
24922         * assembly.c: base_dir is now an absolute path ending with
24923         G_DIR_SEPARATOR.
24924
24925         * icall.c: modified get_location according to the above changes.
24926
24927         * object.c: init AppDomain.SetupInformation for the default domain after
24928         we have the entry assembly.
24929
24930         * domain.c: when unloading a domain, setup = NULL.
24931
24932 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
24933
24934         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
24935
24936 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
24937
24938         * object.h, object.c: introduced mono_object_get_virtual_method ()
24939         to lookup the method invoked on an object when a callvirt is done on
24940         a method.
24941         * icall.c: make MethodInfo::Invoke() always do a virtual call.
24942
24943 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24944
24945         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
24946         current domain when loaded an assembly and failed to load it.
24947
24948         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
24949
24950 2002-10-31  Dick Porter  <dick@ximian.com>
24951
24952         * icall.c: 
24953         * file-io.h: 
24954         * file-io.c: Return the error status in a parameter, as the
24955         GetLastError() value has long since been blown away if we try and
24956         look it up in a subsequent internal call invocation.  Delete the
24957         GetLastError() internal call, because it's useless.
24958
24959 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
24960
24961         * class.[ch]: added cast_class to fix bug 29517
24962
24963 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
24964
24965         * marshal.c: create valid IL code in the filter clause:
24966         the new JIT is less forgiving:-)
24967
24968 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24969
24970         * icall.c: removed get_property internal call.
24971
24972 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
24973
24974         * appdomain.h domain.c: Added an ID to appdomains.
24975         
24976         * threads.c threads.h icall.c: Implement icall
24977         Thread:GetDomainID(), and remove unused icall 
24978         CurrentThreadDomain_internal.
24979
24980 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24981
24982         * icall.c: Don't recurse through the base types in GetConstructor.
24983         Fixes bug #32063. 
24984
24985 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
24986
24987         * mempool.h, mempool.c: added mono_mempool_empty() and
24988         mono_mempool_stats().
24989
24990 2002-10-23  Dick Porter  <dick@ximian.com>
24991
24992         * file-io.c: 
24993         * file-io.h: 
24994         * icall.c: Added MonoIO.GetFileType internal call
24995
24996 2002-10-17  Dick Porter  <dick@ximian.com>
24997
24998         * appdomain.c (mono_runtime_cleanup): Don't signal the async
24999         delegate semaphore before waiting for all threads to finish,
25000         because new threads can also call async delegates.  Fixes bug
25001         32004.
25002
25003         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
25004         of 3 seconds, in case another async job is queued.  (This part is
25005         needed because the bug fix reintroduced the 3s exit lag.)  This
25006         makes the mono_runtime_shutdown flag superfluous.
25007
25008 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
25009
25010         * reflection.c: include ehader size in method section headers.
25011         Really check for suplicated modules entries.
25012
25013 2002-10-17  Martin Baulig  <martin@gnome.org>
25014
25015         * debug-mono-symfile.c: Added back support for locals.
25016
25017 2002-10-14  Martin Baulig  <martin@gnome.org>
25018
25019         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
25020         MONO_TYPE_VOID.
25021
25022 2002-10-14  Martin Baulig  <martin@gnome.org>
25023
25024         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
25025         mono_class_get() instead of looking in the class cache. 
25026
25027 2002-10-13  Martin Baulig  <martin@gnome.org>
25028
25029         * debug-mono-symfile.c: Set version number to 28, include the
25030         signature in method names.
25031
25032 2002-10-13  Martin Baulig  <martin@gnome.org>
25033
25034         * debug-mono-symfile.h: Set version number to 27.
25035
25036 2002-10-11  Martin Baulig  <martin@gnome.org>
25037
25038         * gc.c: Don't register/unregister NULL pointers as disappearing links.
25039
25040 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
25041
25042         * metadata.c, metadata.h: added helper function to allocate signatures.
25043
25044 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25045
25046         * icall.c: added internal call to get the location of machine.config.
25047
25048 2002-10-08  Martin Baulig  <martin@gnome.org>
25049
25050         * debug-mono-symfile.c: Ignore classes with a pending init for the
25051         moment.
25052
25053 2002-10-03  Dick Porter  <dick@ximian.com>
25054
25055         * threads.c: Freebsd pthread_t is a pointer
25056
25057 2002-10-03  Dick Porter  <dick@ximian.com>
25058
25059         * socket-io.c: Implemented GetHostName_internal
25060
25061 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25062
25063         * mono-config.c:
25064         (mono_config_parse_file): don't leak the text.
25065
25066 2002-10-02  Martin Baulig  <martin@gnome.org>
25067
25068         * debug-mono-symfile.c: Added support for methods.
25069
25070 2002-10-01  Martin Baulig  <martin@gnome.org>
25071
25072         * debug-mono-symfile.c: Don't emit methods and line numbers for
25073         the dynamic symbol file, just write the type table.  We can easily
25074         have an external helper program which creates a symbol file for an
25075         IL file.        
25076
25077 2002-10-01  Dick Porter  <dick@ximian.com>
25078
25079         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
25080         Only add the handle to the cleanup array when we're about to
25081         launch the thread.  Bug 31425 deadlocked when the test was run on
25082         mono under w32.
25083
25084 2002-10-01  Martin Baulig  <martin@gnome.org>
25085
25086         * debug-mono-symfile.c: Added support for properties.
25087
25088 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
25089
25090         * reflection.c: unaligned store fix from Mark Crichton
25091         <crichton@gimp.org>.
25092
25093 2002-09-27  Martin Baulig  <martin@gnome.org>
25094
25095         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
25096         New interncall.
25097
25098 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
25099
25100         * assembly.h, assembly.c: use a sane API to hook into the assembly
25101         loading process instead of a useless special-purpouse hack
25102         (ngen needs a hook, too, for example).
25103
25104 2002-09-27  Dick Porter  <dick@ximian.com>
25105
25106         * threads.c (mono_thread_init): Call GetCurrentProcess() so
25107         io-layer can set up some process handle info.  Not needed on w32,
25108         but doesn't hurt either.
25109
25110         * process.c: Pass the program name in the second parameter to
25111         CreateProcess, so the path is searched.  Include the working
25112         directory. Implemented process name, process enumeration, and some
25113         process detail internal calls.
25114         
25115         * icall.c: Added internal calls for process lookup, and some
25116         process details
25117
25118 2002-09-26  Martin Baulig  <martin@gnome.org>
25119
25120         * assembly.c (mono_install_open_assembly_hook): New global
25121         function to install a function to be invoked each time a new
25122         assembly is loaded.
25123         (mono_assembly_open): Run this callback function if set.
25124
25125         * debug-mono-symfile.c: Put back line numbers for the dynamic
25126         symbol file and also record the .il file as source file.  This
25127         allows us to install the temporary symbol file as `file.dbg' just
25128         like a compiler-generated one.
25129
25130 2002-09-26  Nick Zigarovich <nick@chemlab.org>
25131
25132         * Corrected typo in gc.c (BOHEM vs BOEHM).
25133
25134 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25135
25136         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
25137         GetProperties. Also avoid calling g_slist_length in GetProperties and
25138         GetMethods.
25139
25140 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
25141
25142         * reflection.c: avoid unaligned stores (bug spotted by
25143         Mark Crichton  <crichton@gimp.org>).
25144
25145 2002-09-25  Martin Baulig  <martin@gnome.org>
25146
25147         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
25148         instead of guint64 for addresses and added prologue/epilogue info.
25149
25150 2002-09-25  Martin Baulig  <martin@gnome.org>
25151
25152         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
25153         store line number info.  For the dynamic symbol file, we only need
25154         to provide the JIT generated dynamic line number info for the dynamic
25155         symbol file.
25156
25157 2002-09-25  Martin Baulig  <martin@gnome.org>
25158
25159         * debug-mono-symfile.h: Incremented version number.
25160
25161 2002-09-24  Martin Baulig  <martin@gnome.org>
25162
25163         * class.c (mono_debugger_class_init_func): New global function
25164         pointer variable.
25165         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
25166         call it.
25167
25168         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
25169         function.  This is called via the mono_debugger_class_init_func
25170         hook to add all types to the dynamic type table.
25171         (ves_icall_MonoDebugger_GetType): New interncall to get a class
25172         from its metadata token.
25173
25174         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
25175         New interncall for the debugger.
25176
25177 2002-09-24  Nick Drochak <ndrochak@gol.com>
25178
25179         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
25180         before using it in case it is null.
25181         
25182 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
25183
25184         * metadata.c: allow custom modifiers in local var signatures
25185         (bug spotted by Zoltan Varga).
25186
25187 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
25188
25189         * class.c: deal with the <Module> class that may have a NULL vtable.
25190         Eliminate warnings.
25191
25192 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
25193
25194         * image.c, image.h: more strong name helpers.
25195         * monosn.c: more work: convert pem keys to cryptoapi format.
25196
25197 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
25198
25199         * string-icalls.c: speedup IndexOf.
25200
25201 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25202
25203         * icall.c: updates from Zoltan.2.Varga@nokia.com.
25204
25205 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
25206
25207         * icall.c: cleanup: use mono_object_domain ().
25208
25209 2002-09-23  Martin Baulig  <martin@gnome.org>
25210
25211         * debug-mono-symfile.c: Improved type support.
25212
25213 2002-09-22  Martin Baulig  <martin@gnome.org>
25214
25215         * debug-mono-symfile.c: Added support for reference types and strings.
25216
25217 2002-09-22  Martin Baulig  <martin@gnome.org>
25218
25219         * debug-mono-symfile.c: Started to work on the type table.
25220
25221 2002-09-21  Martin Baulig  <martin@gnome.org>
25222
25223         * debug-mono-symfile.c: Largely reworked the symbol table format.
25224         The symbol table is now incrementally updated each time a new
25225         method is added.  We're now also using our own magic and version
25226         so that you don't need to recompile all your classes if the
25227         dynamic table changes.
25228         (mono_debug_update_mono_symbol_file): Removed.
25229         (mono_debug_symfile_add_method): New function to add a method.
25230
25231 2002-09-21  Martin Baulig  <martin@gnome.org>
25232
25233         * icall.c
25234         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
25235         New interncall.
25236
25237         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
25238         New interncall to get a method from its metadata token.
25239
25240 2002-09-21  Martin Baulig  <martin@gnome.org>
25241
25242         * debug-mono-symfile.c: Create type table.
25243
25244 2002-09-20  Martin Baulig  <martin@gnome.org>
25245
25246         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
25247
25248 2002-09-20  Martin Baulig  <martin@gnome.org>
25249
25250         * debug-mono-symfile.c: Provide information about params and locals.
25251
25252 2002-09-20  Martin Baulig  <martin@gnome.org>
25253
25254         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
25255         New interncall.
25256
25257         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
25258         interncall to get a method from its metadata token.
25259
25260 2002-09-20  Martin Baulig  <martin@gnome.org>
25261
25262         * debug-mono-symfile.c: Added a few checks for method->header
25263         being non-NULL.  This should never happen, but for the moment
25264         let's use a g_warning() rather than a g_assert().
25265
25266 2002-09-19  Mark Crichton  <crichton@gimp.org>
25267
25268         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
25269         even if support for it isn't present.  Added an #ifdef to fix this.
25270
25271         * socket-io.c: Added checks back for Solaris support.
25272
25273 2002-09-19  Martin Baulig  <martin@gnome.org>
25274
25275         * debug-mono-symfile.c (read_string, write_string): Reflect latest
25276         changes in the symbol file format.
25277
25278 2002-09-18  Martin Baulig  <martin@gnome.org>
25279
25280         * debug-mono-symfile.c: Set version number to 21.
25281
25282 2002-09-18  Dick Porter  <dick@ximian.com>
25283
25284         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
25285         on netbsd.  Fixes bug 30051.
25286
25287 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25288
25289         * reflection.c:
25290         (set_version_from_string): little fix.
25291
25292 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25293
25294         * monosn.c, Makefile.am: added strong name utility.
25295         * reflection.h, reflection.c: implemented delayed signing,
25296         locale, version and hash id assembly attributes.
25297
25298 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
25299
25300         * loader.c, metadata.c: load param attributes in signatures.
25301
25302 2002-09-16  Martin Baulig  <martin@gnome.org>
25303
25304         * debug-mono-symfile.c: Added string table with all method names.
25305
25306 2002-09-14  Martin Baulig  <martin@gnome.org>
25307
25308         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
25309         fast method lookup.
25310
25311 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
25312
25313         * reflection.c: record the public key token of referenced assemblies.
25314
25315 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
25316
25317         * image.c, image.h: added functions to get the strong name and the
25318         public key of an assembly.
25319         * pedump.c: use them.
25320
25321 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
25322
25323         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
25324
25325 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
25326
25327         * marshal.c (mono_marshal_get_managed_wrapper): Added
25328         MONO_TYPE_BOOLEAN 
25329
25330 2002-09-11  Martin Baulig  <martin@gnome.org>
25331
25332         * gc.c: Call GC_unregister_disappearing_link() on all links when
25333         finalizing them, this is necessary to aviod a crash in boehm's
25334         finalize handler.
25335
25336 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
25337
25338         * gc.c: handle GetTarget for finalized objects spotted and fixed by
25339         nick@chemlab.org.
25340
25341 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
25342
25343         * icall.c: implemented MonoType::Module.
25344         * reflection.c, reflection.h: mono_module_get_object () from
25345         Tomi Pakarinen <tomi.pakarinen@welho.com>.
25346
25347 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
25348
25349         * icall.c: ignore overridden methods in GetMethods ().
25350         Fix for FieldInfo::SetValue().
25351         * object.c: handle float/double in runtime invoke.
25352
25353 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
25354
25355         * object.c: allow a constructor to be called again on an object.
25356
25357 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
25358
25359         * class.h, class.c: move field layout code to it's own function and
25360         export it. Get an interface id earlier. Move fields in MonoClass
25361         so they are more cache friendly and align the bitfields.
25362         * loader.c: temporary handle get_param_names() for a runtime method.
25363         * reflection.c, reflection.h: more code to handle runtime creation of
25364         types.
25365
25366 2002-09-09  Martin Baulig  <martin@gnome.org>
25367
25368         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
25369         signature with the pinvoke field being set for the actual call.
25370
25371 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
25372
25373         * icall.c: removed some unused icalls. Start of map of glib charsets
25374         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
25375
25376 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
25377
25378         * debug-helpers.c: break infinite loop (found and fixed by
25379         Holger Arnold <harnold@gmx.de>).
25380
25381 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
25382
25383         * icall.c: target may be null in create_delegate.
25384
25385 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25386
25387         * marshal.c: handle a boolean return type.
25388
25389 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
25390
25391         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
25392
25393 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
25394
25395         * gc.c: fix weakreferences.
25396
25397 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
25398
25399         * icall.c: added icall to get default codepage.
25400
25401 2002-09-03  Dick Porter  <dick@ximian.com>
25402
25403         * threads.h: 
25404         * threads.c: Use MonoThread instead of MonoObject where
25405         apropriate.
25406
25407         Store running thread objects in a hash table, so that we have all
25408         the info to hand when waiting for them to finish
25409         (means we don't need OpenThread() any more, so mingw builds should
25410         be fully functional again.)
25411
25412         * verify.c:
25413         * object.h: Added thread ID to MonoThread
25414
25415 2002-09-03  Martin Baulig  <martin@gnome.org>
25416
25417         * icall.c (System.Reflection.Assembly::get_location): New interncall.
25418
25419 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25420
25421         * icall.c: fixed leak in get_temp_path. Thanks lupus.
25422
25423 2002-09-03  Martin Baulig  <martin@gnome.org>
25424
25425         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
25426         argument to store the end address of the disassembled instruction.
25427
25428         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
25429         here from debug-symfile.h.
25430         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
25431         JIT into this struct.
25432         (MonoSymbolFile): Added `char *image_file' field.
25433         (MonoDebugGetMethodFunc): Removed.
25434         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
25435         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
25436         (mono_debug_find_method): New method.
25437
25438         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
25439         create a full symbol file.
25440         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
25441         and static symbol files.
25442         (mono_debug_find_method): The symbol file keeps an internal method hash,
25443         call this to get a MonoDebugMethodInfo from a MonoMethod.
25444
25445         * debug-symfile.[ch]: Removed.
25446
25447 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
25448
25449         * image.c (do_mono_image_open): Remove linker version check.
25450
25451 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
25452
25453         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
25454         wrappers for instance methods.
25455         
25456 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25457
25458         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
25459
25460 2002-08-28  Dick Porter  <dick@ximian.com>
25461
25462         * Makefile.am: Export HOST_CC for w32 builds
25463
25464 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
25465
25466         * file-io.c process.c: MonoString are null terminated, no
25467         need for mono_string_to_utf16() anymore.
25468
25469 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
25470
25471         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
25472
25473 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
25474
25475         * icall.c, reflection.h: speedup System.MonoType.
25476
25477 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
25478
25479         * reflection.c: allow null as the value of a string argument in
25480         custom attributes constructors.
25481
25482 2002-08-27  Martin Baulig  <martin@gnome.org>
25483
25484         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
25485         `trampoline_address' field.
25486
25487 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
25488
25489         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
25490         check (fixes bug #29486) 
25491
25492 2002-08-27  Martin Baulig  <martin@gnome.org>
25493
25494         * debug-mono-symfile.c: Changed the file format in a way that allows us
25495         open it read-only and to use a specially malloced area for all the
25496         dynamic data.  We can now also generate a symbol file on-the-fly if we're
25497         debugging IL code and there is no MCS generated symbol file for it.
25498
25499 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
25500
25501         * object.c: added a define for a good string and array
25502         creation speedup (not enabled by default because we need to deal with
25503         the synch stuff).
25504
25505 2002-08-26  Martin Baulig  <martin@gnome.org>
25506
25507         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
25508         function to create a dynamic symbol file.  This is used by the
25509         debugger to create a symbol file for IL code on-the-fly.
25510
25511 2002-08-26  Martin Baulig  <martin@gnome.org>
25512
25513         * loader.c (mono_lookup_pinvoke_call): Include the error message
25514         from g_module_error() in the error message.
25515
25516 2002-08-24  Martin Baulig  <martin@gnome.org>
25517
25518         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
25519         function to update the symbol file.  The symbol file is mmap()ed
25520         writable, but private.  This allows us to install the symbol file
25521         together with the assembly.
25522
25523 2002-08-24  Martin Baulig  <martin@gnome.org>
25524
25525         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
25526         but they can read the new symbol file format which mcs is now creating.
25527
25528         * debug-symfile.c (mono_debug_find_source_location): Moved to
25529         debug-mono-symfile.c; this is now operating on the new symbol file.
25530
25531 2002-08-23  Martin Baulig  <martin@gnome.org>
25532
25533         * debug-helpers.c (mono_method_desc_from_method): New function to get
25534         a MonoMethodDesc from a MonoMethod.
25535
25536 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
25537
25538         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
25539         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
25540
25541 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
25542
25543         * string-icalls.[ch]: make helper methods static.
25544
25545 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25546
25547         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
25548         types to it and to SetValueInternal.
25549
25550         * object.c: Moved handle_enum label to its proper place. This was the
25551         f... bug! ;-)
25552
25553         This time i compiled mcs and gtk-sharp and they both work.
25554
25555 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25556
25557         * icall.c: reverted partially my previous patch until 
25558         object.c:set_value handles enums correcly.
25559
25560 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25561
25562         * icall.c:
25563         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
25564         (ves_icall_System_Environment_get_MachineName): removed warning when
25565         compiling under cygwin.
25566
25567 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
25568
25569         * object.c: fixed field_get_value() for reference types.
25570
25571 2002-08-22  Dick Porter  <dick@ximian.com>
25572
25573         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
25574         Don't free a buffer while it's still needed.  Patch from Jonathan
25575         Liger <Jonathan.liger@wanadoo.fr>
25576
25577 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
25578
25579         * icall.c (ves_icall_System_Environment_get_Platform): Add new
25580         internal call.
25581
25582 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
25583
25584         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
25585         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
25586
25587         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
25588         we call unmanaged code which throws exceptions.
25589
25590 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
25591
25592         * appdomain.h: added per-domain entry_assembly.
25593         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
25594         arguments.
25595         * icall.c: Assembly::GetEntryAssembly icall.
25596         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
25597         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
25598
25599 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
25600
25601         * appdomain.h, gc.c: added mono_domain_finalize ().
25602
25603 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25604
25605         * object.c:
25606         (mono_print_unhandled_exception): changed g_warning by g_printerr
25607         because g_log has a 1024 characters limit (yeah, i got a big stack
25608         trace). Don't print exception name, that should be in ToString 
25609         returned string.
25610
25611 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25612
25613         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
25614         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
25615
25616 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25617
25618         * object.c:
25619         (mono_print_unhandled_exception): after previous commit, i realized
25620         that MS calls ToString on the exception. I changed this function to
25621         do that. This way we get stack_trace for free.
25622
25623 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25624
25625         * object.c:
25626         (mono_print_unhandled_exception): invoke Message property instead of
25627         getting 'message' field from Exception. Don't allocate memory for
25628         'trace' and 'message' if not needed.
25629
25630 2002-08-18  Dick Porter  <dick@ximian.com>
25631
25632         * unicode.c: Fix asserts to match Encoder.cs checks
25633
25634 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25635
25636         * marshal.c: fix unaligned store issue and a few wrong
25637         opcode argument types.
25638
25639 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25640
25641         * icall.c: added GetUninitializedObjectInternal internal call.
25642
25643 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
25644
25645         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
25646         to the right domain.
25647
25648 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
25649
25650         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
25651
25652         * class.c (class_compute_field_layout): set blittable to false for Strings
25653
25654         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
25655
25656 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
25657
25658         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
25659         first chunk of code to create types at runtime. Code to
25660         handle ReflectedType/DeclaringType. Make reflection handles
25661         domain specific.
25662
25663 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
25664
25665         * class.c: set correct name in arrays.
25666
25667 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
25668
25669         * appdomain.c (mono_domain_transfer_object): make it work with
25670         valuetypes. bug fixes.
25671
25672 2002-08-12  Dick Porter  <dick@ximian.com>
25673
25674         * object.h: Rename some parameters to avoid c++ keywords (Patch
25675         from Joseph Wenninger <kde@jowenn.at>)
25676
25677 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
25678
25679         * icall.c: added icall to implement Assembly.GetFile*.
25680
25681 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
25682
25683         * reflection.h, reflection.c: code to embed managed resources.
25684
25685 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
25686
25687         * class.c: move all the type size stuff into
25688         class_compute_field_layout().
25689
25690 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
25691
25692         * class.c: ensure enums have always the correct instance size.
25693         * unicode.c: remove wrong assert.
25694
25695 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
25696
25697         * assembly.c: fix mem corruption issue.
25698         * image.h, image.c: added mono_image_get_resource () to access
25699         managed resources.
25700         * icall.c: implemented Assembly.EntryPoint property and some
25701         Managed Resources related internalcalls.
25702
25703
25704 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
25705
25706         * image.c, image.h: impemented mono_image_get_entry_point ().
25707         * appdomain.c: use mono_image_get_entry_point.
25708
25709 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
25710
25711         * reflection.c: support the object type argument when loading
25712         custom attributes.
25713
25714 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
25715
25716         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
25717         String as return type.
25718
25719 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
25720
25721         * reflection.c: fix encoding of named args for custom attrs to match
25722         the ms implementation. Read them back when instantiating custom
25723         attributes.
25724
25725 2002-08-02  Radek Doulik  <rodo@ximian.com>
25726
25727         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
25728         by Dietmar as quick fix
25729         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
25730         16 as stack size, used on more places as quick fix before Dietmar
25731         will fix it properly
25732
25733 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
25734
25735         * object.h, object.c: added accessors for fields and properties.
25736
25737 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
25738
25739         * class.c, class.h: made mono_class_get_field_from_name ()
25740         loop on parent types.
25741         Added mono_class_get_property_from_name ().
25742
25743 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
25744
25745         * class.c, class.h: move the code to setup the type vtable in its own
25746         function so that it can be reused also for types created at runtime.
25747         Eliminate the "class" identifier from the header file.
25748         * reflection.c: setup the vtable for enums so that we can create
25749         objects for use in SetConstant ().
25750
25751 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
25752
25753         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
25754         instead of the delegate itself as this pointer (bug #28383)
25755
25756 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
25757
25758         * marshal.c (mono_marshal_get_managed_wrapper): added return type
25759         conversions.
25760
25761 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
25762
25763         * loader.c: don't set the pinvoke bit on icalls.
25764
25765 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
25766
25767         * debug-helpers.c (mono_method_full_name): only print a number to
25768         indicate wrapper type (so that the output is more readable in traces).
25769
25770 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
25771
25772         * class.c (mono_class_init): include method override patch from Paolo
25773
25774 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
25775
25776         * icall.c: fixed GetTypeCode().
25777
25778 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
25779
25780         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
25781         use real delegate invoke function to make it work with multicast
25782         delegates (fix bug# 28291).
25783
25784 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
25785
25786         * object.c: load constant strings.
25787
25788 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
25789
25790         * reflection.c: no magic numbers.
25791         * tabledefs.h: security action enum.
25792
25793 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
25794
25795         * assembly.c: fix possible memory corruption.
25796
25797 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
25798
25799         * reflection.h, reflection.c: added support for linking resources.
25800         * verify.c: check we have an updated corlib.
25801
25802 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
25803
25804         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
25805         string arrays.
25806         (mono_marshal_string_array): null terminate unmanaged string arrays.
25807         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
25808
25809 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
25810
25811         * icall.c: Type.GetType () can now return also types from the
25812         calling assembly.
25813
25814 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
25815
25816         * loader.h, loader.c: stack walking support.
25817         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
25818         GetCallingAssembly.
25819
25820 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
25821
25822         * marshal.c: added optimisations for blittable types 
25823
25824         * class.c (mono_array_class_get): do not set blittable attribute on arrays
25825         (mono_class_setup_mono_type): set blittable attribute for single
25826         and double.
25827
25828         * marshal.c (mono_string_utf8_to_builder): impl.
25829         (mono_string_builder_to_utf8): impl.
25830         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
25831
25832 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
25833
25834         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
25835         (mono_marshal_get_managed_wrapper): impl. byref types
25836
25837 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25838
25839         * icall.c:
25840         (search_method): don't display debug message. 
25841
25842 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
25843
25844         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
25845
25846 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
25847
25848         * appdomain.c: set the missing filename when throwing exception.
25849
25850 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
25851
25852         * metadata.c (mono_type_size): code cleanup
25853         (mono_type_stack_size): removed some test code
25854
25855 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
25856
25857         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
25858         mono_get_exception_file_not_found now.
25859
25860         * exception.c (mono_exception_from_name_two_strings): New version
25861         that will call a constructor with two string arguments. 
25862         (mono_get_exception_file_not_found): New helper routine, used to
25863         report file-not-found errors.
25864
25865 2002-07-20  Dick Porter  <dick@ximian.com>
25866
25867         * process.h:
25868         * process.c: Pass file handles to CreateProcess
25869         
25870         * icall.c:
25871         * file-io.h:
25872         * file-io.c: Implemented CreatePipe
25873
25874 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
25875
25876         * metadata.c (mono_get_param_info): set alignment for value types
25877
25878 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
25879
25880         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
25881         Constify mono_domain_assembly_open().
25882         * loader.c: handle null namespace in icalls.
25883
25884 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
25885
25886         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
25887         (emit_str_to_ptr_conv): marshal object as structs
25888
25889         * metadata.c (mono_type_to_unmanaged): marshal object as structs
25890
25891         * marshal.c (mono_marshal_get_runtime_invoke): support value types
25892
25893 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
25894
25895         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
25896         (mono_marshal_get_native_wrapper): we an now return value types
25897
25898 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
25899
25900         * verify.c: more checks implemented.
25901
25902 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
25903
25904         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
25905         (fix bug #27695)
25906         (mono_marshal_get_native_wrapper): allow byref arguments
25907         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
25908         impl. PtrToStringXXX methods
25909         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
25910         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
25911         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
25912         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
25913         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
25914
25915 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25916
25917         * reflection.c: fix buglet in parsing an assembly name.
25918
25919 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
25920
25921         * marshal.c (emit_ptr_to_str_conv): first impl.
25922
25923 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
25924
25925         * object.c, class.h: cache the vtable in the class as suggested by
25926         vargaz@freemail.hu (Zoltan Varga).
25927
25928 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25929
25930         * class.h, loader.c: added mono_field_from_token().
25931         * verify.c: first cut of type checking code.
25932
25933 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
25934
25935         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
25936
25937 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
25938
25939         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
25940         (fix bug #27782)
25941         (mono_marshal_get_remoting_invoke): impl.
25942         (mono_delegate_begin_invoke): impl.
25943         (mono_mb_emit_save_args): impl.
25944         (mono_delegate_end_invoke): impl.
25945         (mono_marshal_get_delegate_begin_invoke):
25946         (mono_marshal_get_delegate_end_invoke):
25947         (mono_marshal_get_delegate_invoke): generate a special name for
25948         those methods (including the signature) and associate them whith
25949         the delegate class. 
25950
25951 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
25952
25953         * reflection.[ch]: 
25954         (mono_reflection_type_from_name): now it has a MonoImage parameter
25955         which is used as the default image to search the type in. If the image
25956         is NULL or getting the type from it fails, it defaults to corlib.
25957
25958         * icall.c: changed 1 call to mono_reflection_type_from_name to match
25959         new parameter.
25960
25961 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
25962
25963         * reflection.c: update the parameter table index.
25964
25965 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
25966
25967         * domain.c: don't include the mark byte in the string hash.
25968
25969 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
25970
25971         * icall.cs: icall for Type.GetTypeCode ().
25972         * verify: a couple of fixes and disabled local initialization checks.
25973
25974 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
25975
25976         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
25977
25978         * debug-helpers.c (mono_method_full_name): print the type of the
25979         runtime wrapper
25980
25981         * metadata.c (mono_signature_hash): a hash function for signatures
25982         (mono_signature_hash): better hash algorithm
25983
25984         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
25985
25986         * debug-helpers.c (mono_method_full_name): this can now generate
25987         method names with signatures
25988
25989         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
25990         method dont have this pointers.
25991
25992 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
25993
25994         * reflection.c: fixup typebuilder tokens.
25995         * image.c: fix buglet.
25996         * marshal.h: remove whitespace.
25997         * metadata.h, metadata.c: reinstate code that was removed.
25998         * verify.c: handle catch directives and fix another couple of bugs.
25999
26000 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
26001
26002         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
26003         (mono_marshal_get_native_wrapper): make it comp. with the old code
26004         (mono_marshal_get_native_wrapper): support boolean
26005         (mono_marshal_get_managed_wrapper): support more types
26006
26007 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
26008
26009         * class.c (class_compute_field_layout): compute class->blittable attribute.
26010
26011 2002-07-09  Dick Porter  <dick@ximian.com>
26012
26013         * threads.c: Make the thread cleaning up cope with threads that
26014         call ExitThread()
26015
26016 2002-07-08  Radek Doulik  <rodo@ximian.com>
26017
26018         * reflection.c (method_encode_code): use non-translated values to
26019         compute finally_start, this fixes exception handling on ppc, yay!
26020
26021         * decimal.h (struct signscale): fix endianess
26022
26023 2002-07-07  Radek Doulik  <rodo@ximian.com>
26024
26025         * reflection.c: swap box_val and not val
26026
26027 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
26028
26029         * reflection.c, reflection.h: handle full assembly info in type name.
26030         Handle Type arguments when loading custom attributes.
26031         * icall.c: updated to use new mono_reflection_type_from_name () method.
26032
26033 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26034
26035         * loader.c:
26036         (method_from_memberref): also print assembly name when method not found.
26037
26038 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26039
26040         * icall.c:
26041         (ves_icall_TypeGetProperties): fixed bug #27473. 
26042
26043 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26044
26045         * reflection.c: display image name and token when cannot find the
26046         .ctor for an attribute.
26047
26048 2002-07-05  Martin Baulig  <martin@gnome.org>
26049
26050         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
26051
26052 2002-07-04  Dick Porter  <dick@ximian.com>
26053
26054         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
26055         compile on mingw.  This will cause mingw builds to not wait for
26056         subthreads to terminate after the main thread does.  I've lodged a
26057         bug with the mingw developers for them to wrap OpenThread().
26058
26059 2002-07-03  Dick Porter  <dick@ximian.com>
26060
26061         * threads.c: Store thread IDs instead of handles, because
26062         GetCurrentThread() returns a pseudohandle and therefore stores
26063         useless values.  mono_thread_cleanup() continues checking the
26064         array of threads until it is empty, to cope with subthreads
26065         spawning new threads after the main thread has finished.
26066
26067         * profiler.h:
26068         * profiler.c:
26069         * profiler-private.h: Pass the thread ID to thread profiler
26070         functions, instead of a handle
26071
26072 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26073
26074         * verify.c: fixes to make it more usable.
26075         * pedump.c: added --verify code to verify IL code in an assembly.
26076
26077 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26078
26079         * reflection.c: turn errors into warnings to allow compiling corlib.
26080
26081 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
26082
26083         * reflection.c: add special cases to compile corlib.
26084
26085 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26086
26087         * reflection.c: handle properties with only a set method.
26088
26089 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26090
26091         * opcodes.h: add enum with opcodes in opval order.
26092
26093 2002-07-01  Dick Porter  <dick@ximian.com>
26094         
26095         * object.h:
26096         * object.c (mono_runtime_run_main): Removed unneeded argument
26097
26098 2002-06-28  Martin Baulig  <martin@gnome.org>
26099
26100         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
26101
26102 2002-06-27  Dick Porter  <dick@ximian.com>
26103
26104         * threads.c: Store the handle in both the parent thread and in the
26105         subthread, to minimise the time between starting a new thread and
26106         storing its ID.
26107
26108 2002-06-26  Dick Porter  <dick@ximian.com>
26109
26110         * appdomain.c (mono_runtime_cleanup): Close the socket library
26111         after all the threads have finished, not before
26112
26113 2002-06-26  Martin Baulig  <martin@gnome.org>
26114
26115         * debug-symfile.c (mono_debug_find_source_location): Added
26116         `guint32 *line_number' argument.  If it's not NULL, store the line number
26117         there and return the file name without the line number.
26118
26119 2002-06-25  Dick Porter  <dick@ximian.com>
26120
26121         * icall.c:
26122         * process.h:
26123         * process.c: Process forking and other support functions
26124
26125 2002-06-25  Dick Porter  <dick@ximian.com>
26126
26127         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
26128         things dont happen when the image is closed.
26129         (mono_image_lookup_resource): Walk the resource section looking
26130         for a particular entry
26131
26132         * cil-coff.h: PE resource section decoding
26133
26134 2002-06-25  Dick Porter  <dick@ximian.com>
26135         
26136         * assembly.h:
26137         * assembly.c: 
26138         (mono_assembly_foreach): Accessor functions to walk the list of
26139         loaded assemblies
26140         (mono_assembly_set_main):
26141         (mono_assembly_get_main): Process methods need to know which
26142         assembly is the "main" one
26143
26144         * object.c (mono_runtime_run_main): Record the main assembly
26145
26146         * debug-helpers.c: Fix typo
26147
26148 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
26149
26150         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
26151         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
26152
26153 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
26154
26155         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
26156
26157 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
26158
26159         * image.c (do_mono_image_open): Initialize reference count,
26160         otherwise we leak the MonoImage.
26161
26162 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
26163
26164         * reflection.c: small tweak to handle self-hosting.
26165
26166 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
26167
26168         * reflection.c: fix type name parse code.
26169
26170 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26171
26172         * reflection.c: break out of the loop.
26173         * image.c: special case corlib.
26174
26175 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26176
26177         * reflection.c: add all the custom attrs at the end to ensure the
26178         ctors have been properly initialized when the attributes are defined
26179         in the current assembly.
26180
26181 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26182
26183         * reflection.c: handle correctly multiple-nested types.
26184
26185 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
26186
26187         * row-indexes.h: fix typos.
26188         * reflection.c: adjust for typos and fix method_def_or_ref
26189         encoding in MethodImpl table.
26190
26191 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26192
26193         * reflection.c: fix entry point patching (thanks Serge!).
26194
26195 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
26196
26197         * verify.c: add check for System.Exception
26198
26199 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
26200
26201         * image.c, class.c: minifix for code just c&p'ed.
26202         * reflection.c: warning fix.
26203         * object.h, loader.h, domain.c: load also StringBuilder.
26204
26205 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26206
26207         * marshal.h, marshal.c: some support code to handle complex marshaling.
26208
26209 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26210
26211         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
26212         Better signatures with vtable error dump.
26213
26214 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
26215
26216         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
26217
26218 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
26219
26220         * icall.c (ves_icall_Type_GetField): impl.
26221
26222 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26223
26224         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
26225         to retrieve a marshal description blob for a field or param.
26226
26227 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
26228
26229         * reflection.h, reflection.c: change order of nested type emission
26230         to avoid table corruption. The NestedTypes table is sorted.
26231         * icall.c: change order of GetConstructor results to workaround mcs bug.
26232
26233 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26234
26235         * reflection.h, reflection.c: handle field and param marshal
26236         information.
26237
26238 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26239
26240         * icall.c, marshal.c marshal.h: more Marshal class implementation.
26241
26242 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26243
26244         * reflection.c: fix call convention.
26245
26246 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26247
26248         * reflection.h, reflection.c: mono_image_get_memberref_token()
26249         takes a type instead of a class, now. Added
26250         mono_image_get_array_token() to create tokens for the special
26251         multi-dim array methods.
26252
26253 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
26254
26255         * assembly.c: handle modules (no assembly table). Split
26256         loading references in its own function.
26257         * class.c: handle moduleref resolution scope.
26258         * image.c, image.h: cache module name in image.
26259
26260 2002-06-07  Martin Baulig  <martin@gnome.org>
26261
26262         * reflection.c (mono_image_get_type_info): Only add a class layout entry
26263         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
26264
26265 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
26266
26267         * icall.c: more signature fixes that used uint instead of int.
26268
26269 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26270
26271         * reflection.c: fixed signature of field refs.
26272
26273 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26274
26275         * class.c, reflection.c: handle typerefs of nested types
26276         (both on read and when writing files).
26277
26278 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
26279
26280         * icall.c: fix method signatures that tried to workaround the previous
26281         typo, d'oh!
26282
26283 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
26284
26285         * debug-helpers.c: fix typo.
26286
26287 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
26288
26289         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
26290         rewrote the PE/COFF writing code (our programs are understood by the
26291         ms runtime, now).
26292
26293 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
26294
26295         * gc.c, gc.h, icall.c: weakreference support.
26296
26297 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26298
26299         * Makefile.am, mono-config.c: use $(sysconfdir).
26300
26301 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26302
26303         * icall.c: changed default precision of Double.ToString() to 15.
26304         Fixed memory leak. Unified with Single.ToString.
26305
26306 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
26307
26308         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
26309
26310 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
26311
26312         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
26313         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
26314         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
26315         and myself.
26316
26317 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26318
26319         * debug-symfile.c, sysmath.c: yet more compilation fixes.
26320
26321 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26322
26323         * reflection.c, socket-io.c: more compilation fixes.
26324
26325 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
26326
26327         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
26328         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
26329         unicode.c: warning and compiler compatibility fixes.
26330
26331 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
26332
26333         * class.h, metadata.c: fixed warnings/compilation errors.
26334
26335 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
26336
26337         * Makefile.am, mono-config.c, mono-config.h: configuration file
26338         support routines.
26339         * loader.c, loader.h: make Dll mapping configurable at runtime in the
26340         config file. Export methods to insert and lookup mappings.
26341
26342 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
26343
26344         * reflection.c: handle types and boxed objects in custom attr
26345         constructors.
26346
26347 2002-05-30  Martin Baulig  <martin@gnome.org>
26348
26349         * debug-symfile.c
26350         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
26351
26352 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
26353
26354         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
26355         to lookup the implmap row for a P/Invoke method.
26356         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
26357         P/Invoke method from the runtime on an as needed basis.
26358
26359 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
26360
26361         * metadata.c (mono_metadata_parse_signature): impl.
26362
26363 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26364
26365         * class.c: handle .pack directive.
26366
26367 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
26368
26369         * object.c: initialize static fields with RVA data.
26370
26371 2002-05-25  Martin Baulig  <martin@gnome.org>
26372
26373         * debug-symfile.c
26374         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
26375
26376 2002-05-24  Martin Baulig  <martin@gnome.org>
26377
26378         * debug-symfile.c
26379         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
26380         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
26381         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
26382
26383 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
26384
26385         * object.c: special case string ctros in invoke.
26386         * gc.c: silly whitespace changes.
26387
26388 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
26389
26390         * threadpool.[ch]: impl. a threadpool that can
26391         be used by mint and mono.
26392
26393 2002-05-22  Martin Baulig  <martin@gnome.org>
26394
26395         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
26396         The first argument is now a `MonoReflectionModuleBuilder *', the return
26397         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
26398         `methods' field to get the method builder.  The `token' argument is the
26399         unfixed token.
26400
26401         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
26402         invalid characters instead of g_assert_not_reached()ing.  This seems
26403         to be the behaviour of mscorlib.
26404
26405 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
26406
26407         * object.c (mono_runtime_invoke_array): applied patch from Rachel
26408         Hestilow to fix bug #25104
26409
26410 2002-05-21  Martin Baulig  <martin@gnome.org>
26411
26412         * debug-symfile.c (mono_debug_find_source_location): New function.
26413         Looks up an IL offset in the line number table and returns the source
26414         location as a string.
26415
26416 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26417
26418         * icall.c:
26419         (mono_double_ToStringImpl): changed %f by %g until we have something
26420         better.
26421
26422 2002-05-21  Nick Drochak  <ndrochak@gol.com>
26423
26424         * icall.c : Use different name for Math.Pow's icall.  Needed to check
26425         parameters first in C#.
26426
26427 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26428
26429         * icall.c, reflection.h: added icall to get info about an event.
26430
26431 2002-05-20  Radek Doulik  <rodo@ximian.com>
26432
26433         * object.c (mono_value_box): don't use memcpy for boxing on BIG
26434         endian
26435         (mono_value_box): don't use memcpy for small sizes on
26436         architectures with unaligned access
26437
26438 2002-05-20  Martin Baulig  <martin@gnome.org>
26439
26440         * reflection.c (mono_reflection_setup_internal_class): Don't crash
26441         if `tb->parent == NULL'.
26442         (mono_reflection_create_internal_class): New function.  This is
26443         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
26444         for enum types.
26445
26446         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
26447         New interncall.
26448
26449 2002-05-19  Martin Baulig  <martin@gnome.org>
26450
26451         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
26452         argument to get the length, don't default to the array length.
26453
26454 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
26455
26456         * assembly.c (mono_assembly_setrootdir): New function used to
26457         override the MONO_ASSEMBLIES directory.
26458
26459 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
26460
26461         * icall.c: ValueType_GetHashCode() initialize local var.
26462
26463 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
26464
26465         * reflection.c: sort custom attributes table.
26466
26467 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
26468
26469         * reflection.c: support named args in custom attributes (write support).
26470
26471 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
26472
26473         * reflection.c: fix finally position calculation.
26474
26475 2002-05-15  Radek Doulik  <rodo@ximian.com>
26476
26477         * reflection.c: fixed endianess at many places
26478
26479         * icall.c (ves_icall_InitializeArray): comment out debug msg
26480
26481 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
26482
26483         * object.c (mono_unhandled_exception): new function to handle
26484         unhandled exceptions.
26485         (mono_unhandled_exception): call the UnhandledException event.
26486         (mono_runtime_delegate_invoke): impl.
26487
26488 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
26489
26490         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
26491         returns the RVA, not the direct pointer to the data. Handle the case
26492         when the class size is fixed.
26493
26494 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
26495
26496         * reflection.c: fix some endianess issues.
26497
26498 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
26499
26500         * object.c (mono_runtime_invoke): is now able to catch exceptions.
26501
26502         * threads.c (mono_thread_init): added a callback which is invoked
26503         at thread start.
26504
26505 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
26506         
26507         * icall.c: make GetHashCode return non-negative values.
26508
26509 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
26510
26511         * object.c, icall.c, gc.c: revert to address-based hashcode.
26512
26513 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
26514
26515         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
26516
26517 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26518
26519         * icall.c, class.c: special case <Module>.
26520
26521 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
26522
26523         * icall.c: fix bug in GetNow().
26524
26525 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
26526
26527         * object.c (mono_runtime_class_init): make sure that we call all
26528         static class constructors.
26529
26530 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
26531
26532         * reflection.c: sort methodsemantics table.
26533
26534 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
26535
26536         * reflection.h, reflection.c: honour init locals setting.
26537
26538 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
26539
26540         * icall.c: copied Double ToStringImpl for Single ToStringImpl
26541
26542 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
26543
26544         * reflection.c: support ContructorBuilders in attribute blob creation.
26545
26546 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26547
26548         * reflection.c: some changes to build a binary that can be run
26549         directly in windows.
26550
26551 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
26552
26553         * loader.c: print a big message when an icall can't be found.
26554
26555 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26556
26557         * string-icalls.c: fix bug 24248.
26558
26559 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
26560
26561         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
26562         icall.c, reflection.h: separate assembly loading by pathname and by
26563         assembly name. Use the MONO_PATH env var to search for assemblies.
26564
26565 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26566
26567         * assembly.c, image.h: add some support for assemblies
26568         with multiple modules.
26569         * class.c, class.h: export mono_class_from_typeref().
26570         * loader.c: remove duplicated code and use mono_class_from_typeref(),
26571         instead.
26572
26573 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26574
26575         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
26576         documentation says (the ECMA one is correct).
26577
26578 2002-05-02  Dick Porter  <dick@ximian.com>
26579
26580         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
26581         Don't name the synchronisation mutex.
26582
26583 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
26584
26585         * rand.c
26586         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
26587         Make the prototypes match.
26588         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
26589         Same.
26590
26591         * icall.c
26592         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
26593         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
26594         all systems have tm.tm_zone, so use strftime() with %Z to print
26595         the timezone abreviation into a temp string.
26596
26597         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
26598         rather than mono_array_addr() on a MonoString on Big Endian
26599         machines.
26600
26601 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
26602
26603         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
26604         fix bug 24041
26605
26606 2002-04-30  Dick Porter  <dick@ximian.com>
26607
26608         * socket-io.c: Cope with SOCKET being an integer rather than a
26609         pointer now.
26610
26611         * threads.c: Added Thread_free_internal, to deal with thread
26612         handle cleanup.  Moved calls to handle_store() and handle_remove()
26613         to start_wrapper(), so each can only be called once.  Allocate
26614         synchronisation blocks with GC_malloc(), and use GC finalisation
26615         to close the handles.
26616
26617         * icall.c: added System.Threading.Thread::Thread_free_internal
26618
26619 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26620
26621         * icall.c: support Environment.Exit, CommandLineArgs().
26622
26623 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26624
26625         * object.c, object.h: added mono_runtime_run_main () and
26626         mono_runtime_get_main_args () for use in System.Environment.
26627
26628 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26629
26630         * gc.c: fix thinko, enable actual finalization since the jit is now
26631         fixed.
26632
26633 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26634
26635         * gc.c, object.c: take into account that an object may be offset wrt the address
26636         returned by GC_malloc().
26637
26638 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
26639
26640         * image.c: handle files without entries in the assembly table (modules).
26641
26642 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
26643
26644         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
26645         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
26646         allowed to be null when it's System.Object class setup.
26647
26648 2002-04-27  Martin Baulig  <martin@gnome.org>
26649
26650         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
26651         if `tb->parent == NULL' rather than crashing.
26652
26653 2002-04-28  Nick Drochak  <ndrochak@gol.com>
26654
26655         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
26656         calling acos() where asin() should have been called.
26657
26658 2002-04-26  Martin Baulig  <martin@gnome.org>
26659
26660         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
26661         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
26662         there's a subdirectory called `System', but we don't want to read that
26663         subdirectory as an assembly.
26664
26665 2002-04-25  Martin Baulig  <martin@gnome.org>
26666
26667         * debug-symfile.c: Reflect latest MonoString changes.
26668
26669 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
26670
26671         * rand.c, rand.h: instance method icalls need to have an explicit
26672         this pointer as first argument in the C implementation.
26673
26674 2002-04-25  Nick Drochak <ndrochak@gol.com>
26675
26676         * icall.c: Fix typo in map for GetNonZeroBytes
26677
26678 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
26679
26680         * string-icalls.c : String does now passes unit tests without any 
26681         errors, the following changes has been made:
26682         
26683         Implemented replace methods.
26684         Renaming of methods to (try) follow the standard.
26685         Fixed compare ordinal
26686         Made all memory allocated directly to function instead of via icall function.
26687         Small performance fix in is_in_array function
26688                         
26689  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
26690
26691         c (mono_string_Internal_ctor_charp_int_int):
26692         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
26693         sindex < 0, throw ArgumentOutOfRangeException instead of
26694         ArgumentNullException.
26695
26696         Added new check for length == 0, however
26697         I need to make it return String.Empty from the C code.
26698         
26699         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
26700         that calculate the length for us here.
26701         
26702         (mono_string_Internal_ctor_sbytep_int_int): Replaced
26703         mono_string_new_utf16 with mono_string_new, since value is utf8.
26704
26705 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26706
26707         * object.c: register the object for finalization if needed.
26708         Allocate one more char in the string for the terminating 0 char.
26709
26710 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26711
26712         * class.c, class.h, image.c: check if a type implemenst a destructor.
26713         Use the proper key for array class lookups.
26714         * icall.c: register the icalls in the System.GC class.
26715         * gc.c, gc.h: GC-related functions and icalls.
26716
26717 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26718
26719         * icall.c:
26720         * socket-io.c:
26721         * unicode.c: free some strings gotten from mono_string_to_utf8 and
26722         changed a couple of free () by g_free ().
26723
26724         * decimal.c: one-liner in the comments for decimal2string ().
26725
26726 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
26727
26728         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
26729
26730 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
26731
26732         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
26733         * object.c (mono_runtime_invoke_array) : handle null in params
26734
26735 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
26736
26737         * string-icalls.c: fixed bug in split (one off bug)
26738
26739 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
26740
26741         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
26742         * icalls.c: added String::Equals as internal method
26743
26744 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
26745
26746         * threads.c: fixed bug in the double interlocked functions
26747
26748 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
26749
26750         * threads.c: implemented all of the new interlocked icalls.
26751         * string-icalls.c: fix a bug in insert.
26752         * icalls.c: added the icalls for interlocked, removed old string functions.
26753         
26754 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
26755
26756         * loader.c: fix off-by-one error when reading argument names.
26757
26758 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26759
26760         * profiler.c: win32 counter implementation (untested).
26761         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
26762         (the latter needs testing and more complete impl. from win32 folks).
26763
26764 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
26765
26766         * object.c: mono_array_new_full workaround mono_array_class_get
26767         problem.
26768
26769 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26770
26771         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
26772         * object.h (mono_string_chars): Changed casting type.
26773
26774 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26775
26776         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
26777                            method signatures to use gunichar2 instead of gint16.
26778
26779 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
26780
26781         * object.h, object.c: domain-specific versions of mono_object_new and
26782         mono_array_new.
26783
26784 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
26785
26786         * object.c: changed String layout
26787
26788         * string-icalls.c (mono_string_Internal_ctor_chara): added
26789         internal string constructors.
26790
26791 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
26792
26793         * threads.c: pass 'this' to the thread start routine.
26794
26795 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26796
26797         * string-icalls.c: fix IndexOf and LastIndexOf. Now
26798         InternalCompareStr don't call twice mono_string_cmp_char for the last
26799         character. Improved performance in mono_string_cmp_char.
26800
26801 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
26802
26803         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
26804         code into its own library: libmonoruntime.
26805
26806 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
26807
26808         * object.h, object.c: changed array format so that szarrays do not
26809         require a bounds structure.
26810         * icall.c, appdomain.c: support for new szarray format.
26811
26812 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
26813
26814         * metadata.c: compare also the retuns type when comparing signatures:
26815         we didn't do this as an optimization since really overloaded methods
26816         must differ also in the arguments, but this doesn't work with
26817         low-level IL code (or when using explicit conversion operators: see
26818         bug#23498 for an example).
26819
26820 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26821
26822         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
26823
26824 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
26825
26826         * icall.c: make MonoType::GetElementType its own icall.
26827
26828 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26829
26830         * icall.c: remove MonoMethod_get_Name().
26831         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
26832         object.
26833
26834 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26835
26836         * string-icalls.c: optimized a few methods.
26837
26838 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26839
26840         * icall.c: added all new string internal calls
26841         * string-icalls.c: added, new string internal call implementation.
26842         * object.c: added mono_string_new_size for allocating a string a size
26843
26844 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
26845
26846         * object.c (mono_object_isinst): use the same code as in the
26847         optimized x86 version.
26848
26849 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26850
26851         * profiler.c: TSC-based timer code (faster and more accurate).
26852         Not hooked up in configure, yet (set USE_X86TSC to 1).
26853
26854 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
26855
26856         * profiler.c, profiler.h: track time spent compiling methods.
26857         * threads.c: track thread creation/destruction.
26858
26859 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
26860
26861         * profiler.c, profiler.h, profiler-private.h: profiling interface
26862         and sample implementation. Moved here so that it can be used also by
26863         the jit.
26864
26865 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
26866
26867         * reflection.c, reflection.h: keep types and other handles separate in
26868         the hash tables for referred tokens. Add guid for modules.
26869
26870 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
26871
26872         * assembly.c: fix bugs found with valgrind.
26873         * metadata.h, metadata.c: added mono_metadata_guid_heap().
26874
26875 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
26876
26877         * threads: added icall support for getting current domain for
26878                    the thread.
26879  
26880 2002-04-13  Martin Baulig  <martin@gnome.org>
26881
26882         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
26883         (MonoDebugVarInfo): Added `index' field for register based addresses.
26884         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
26885         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
26886         `MonoDebugVarInfo *params' and `guint32 this_offset' with
26887         `MonoDebugVarInfo *this_var'.
26888
26889         * debug-symfile.c (relocate_variable): New static function to write
26890         a location description for a local variable or method parameter.
26891
26892 2002-04-12  Martin Baulig  <martin@gnome.org>
26893
26894         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
26895         stack offset and begin/end scope address of a local variable.
26896         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
26897         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
26898         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
26899
26900         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
26901         Added new relocation types for start/end scope of a local variable.
26902
26903 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26904
26905         * object.h: add mono_object_domain() macro.
26906         * reflection.c: handle typespecs.
26907         * icall.c: MonoMethod::get_Name() implementation.
26908
26909 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26910
26911         * icall.c: String::GetHashCode() icall implementation.
26912
26913 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26914
26915         * icall.c: String::IndexOfAny icall.
26916         * object.c, object.h: make array->max_length more useful.
26917         Intrduced mono_object_class() and mono_string_length() macros.
26918
26919 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26920
26921         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
26922         instead of g_unichar_isdigit.
26923
26924 2002-04-11  Nick Drochak  <ndrochak@gol.com>
26925
26926         * icall.c: Implement a simple Double.ToString().
26927
26928 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
26929
26930         * appdomain.h: only io-layer.h is supposed to be included.
26931         * icall.c: explicitly import environ. Fix warning.
26932
26933 2002-04-10  Nick Drochak  <ndrochak@gol.com>
26934
26935         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
26936                 return true even if it's not Daylight Savings time.
26937                 Only return false for the case where the function isn't
26938                 implemented for a plaform (read Windows).
26939
26940 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26941
26942         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
26943         data with a mutex.
26944
26945 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
26946
26947         * mempool.c (mono_mempool_alloc): only use g_malloc when
26948         absolutely necessary.
26949
26950 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
26951
26952         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
26953
26954         * class.c (mono_class_vtable): use domain mempool to allocate vtable
26955         (mono_class_proxy_vtable): use domain mempool
26956
26957 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
26958
26959         * appdomain.h, appdomain.c: split initialization that requires the
26960         execution engine support into mono_runtime_init().
26961
26962 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
26963
26964         * class.c (mono_class_init): don't include vtable inside MonoClass
26965         to save some memory, gather some statistics.
26966         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
26967
26968 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
26969
26970         * icall.c: internalcall implementation for ValueType.Equals().
26971
26972 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
26973
26974         * object.c (mono_message_init): moved 
26975         (mono_runtime_exec_main): new arch. independent impl.
26976         (mono_runtime_invoke_array): new method - like
26977         mono_runtime_invoke, but you can pass an array of objects.
26978         (mono_remoting_invoke): new arch. independent impl.
26979         (mono_message_invoke): new arch. independent impl.
26980         (mono_runtime_class_init): new arch. independent impl.
26981         (mono_runtime_object_init): new arch. independent impl.
26982
26983 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26984
26985         * metadata.c, object.c, reflection.c: documented the exported
26986         functions.
26987
26988 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
26989
26990         * icall.c: simpler code to pass the assembly builder data to corlib.
26991         Implement GetNestedTypes() internalcall.
26992
26993 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
26994
26995         * class.c: warn if a type can't be loaded.
26996
26997 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
26998
26999         * image.h: typedef MonoImageOpenStatus
27000         * types.h: removed unused file
27001         
27002 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
27003
27004         * icall.c: Enum_ToObject accepts enum value arguments.
27005
27006 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
27007
27008         * class.c: move initialization of properties, events and nested
27009         classes, so that they happen for interfaces, too.
27010
27011 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
27012
27013         * icall.c: cleanup some ugly casts in Array_SetValue*.
27014
27015 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
27016
27017         * icall.c: the values array fro enums is of the correct type, now.
27018         Implement (correctly) getFullName instead of assQualifiedName for
27019         MonoType.
27020         * reflection.h, reflection.c: added mono_type_get_name ().
27021
27022 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
27023
27024         * assembly.c, image.h: for each MonoImage, record from wich assembly
27025         it was loaded.
27026         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
27027         Make Type.Assembly work.
27028
27029 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
27030
27031         * debug-symfile.h: use char* instead of gpointer to avoid
27032         unnecessary casts.
27033
27034         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
27035
27036         * icall.c (ves_icall_InternalExecute): impl. FielSetter
27037         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
27038
27039 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
27040
27041         * icall.c (mono_message_init): impl. (code cleanup)
27042         (ves_icall_InternalExecute): impl. FieldGetter
27043
27044         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
27045         defined we call all (non-static)methods through the vtable. 
27046
27047 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
27048
27049         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
27050         finalizer even though the memory is still referenced (and the chunk of
27051         memory is not freed).
27052
27053 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
27054
27055         * assembly.c: fix brokeness.
27056
27057 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
27058
27059         * class.c: kill some warnings. Check explicit interface method
27060         implementation also without considering the namespace.
27061         Load also literal strings in static class data.
27062
27063 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
27064
27065         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
27066         (default_assembly_name_resolver): Make the resolver take the
27067         "base" directory where the assembly was originally defined, so we
27068         can load DLLs that are in the same directory as the assembly that
27069         is being referenced.
27070
27071 2002-03-28  Dick Porter  <dick@ximian.com>
27072
27073         * file-io.h: 
27074         * file-io.c:
27075         * socket-io.c: 
27076         * unicode.h: 
27077         * unicode.c: Warning cleanups
27078
27079 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
27080
27081         * object.h, reflection.h: use the correct type instead of MonoObject.
27082
27083 2002-03-28  Martin Baulig  <martin@gnome.org>
27084
27085         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
27086         (mono_debug_update_symbol_file): Initialize classes if necessary.
27087
27088 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
27089
27090         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
27091         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
27092
27093 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
27094
27095         * assembly.h: fix function prototype.
27096         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
27097         * mono-endian.h: use const cast.
27098
27099 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
27100
27101         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
27102
27103 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
27104
27105         * loader.c: don't assert when a typeref can't be loaded, give
27106         a chance to the runtime to trow an exception instead.
27107         * loader.h: fix warning.
27108
27109 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
27110
27111         * class.c (mono_class_proxy_vtable): added proxy support
27112
27113 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
27114
27115         * icall.c: removed last of PAL calls, added System.Environment
27116         * file-io.h, file-io.c: MonoIO implementation
27117         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
27118
27119 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
27120
27121         * appdomain.c: do not use the byte marker in ldstr table lookup.
27122         * debug-helpers.c: allow two ':' to separate class and method name.
27123         * object.c: allocate arrays bounds with the GC, too.
27124         * verify: add a few more checks.
27125
27126 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
27127
27128         * reflection.c: output also literal strings. Allocate parameter data
27129         with GC_malloc() (thanks, Martin, for catching this!).
27130
27131 2002-03-26  Martin Baulig  <martin@gnome.org>
27132
27133         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
27134         include the `this' offset in the `param_offsets'.
27135
27136 2002-03-25  Martin Baulig  <martin@gnome.org>
27137
27138         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
27139         mono_debug_get_class() function to get the classes. Added new
27140         relocation types for arrays and strings.
27141         (mono_debug_get_class): New static function to search in all
27142         referenced assemblies for a metadata token.
27143
27144         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
27145
27146 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
27147
27148         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
27149         hold gc-allocated objects. Make the string heap a stream like the
27150         others. Removed duplicated code when writing stream info.
27151         Added asserts to catch possible buffer overflows. Set the sorted map
27152         for tables that need sorting. Added some documentation.
27153
27154 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
27155
27156         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
27157         for interned strings and vtables.
27158
27159 2002-03-24  Martin Baulig  <martin@gnome.org>
27160
27161         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
27162         it in the array since it was created with g_slist_prepend().
27163
27164 2002-03-24  Martin Baulig  <martin@gnome.org>
27165
27166         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
27167         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
27168         (mono_debug_method_from_token): Renamed to
27169         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
27170         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
27171
27172         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
27173         relocation types.
27174
27175         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
27176
27177 2002-03-24  Martin Baulig  <martin@gnome.org>
27178
27179         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
27180         (mono_debug_method_from_token): New func.
27181
27182         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
27183         New interncall, calls mono_debug_local_type_from_signature().
27184         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
27185         calls mono_debug_method_from_token().
27186
27187 2002-03-23  Martin Baulig  <martin@gnome.org>
27188
27189         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
27190         specifies the number of bytes to be converted, not the array size.
27191         Return the number of chars, not the number of bytes.
27192         (ves_icall_iconv_get_chars): The `byteCount' argument
27193         specifies the number of bytes to be converted, not the array size.
27194
27195 2002-03-23  Martin Baulig  <martin@gnome.org>
27196
27197         * reflection.h (MonoReflectionSigHelper): New type.
27198
27199         * reflection.c (mono_reflection_sighelper_get_signature_local),
27200         (mono_reflection_sighelper_get_signature_local): New functions.
27201
27202         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
27203         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
27204         interncalls.
27205
27206 2002-03-23  Martin Baulig  <martin@gnome.org>
27207
27208         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
27209         is_writeable is set.
27210         (mono_raw_buffer_update): New function to write the modified map
27211         back to disk.
27212
27213         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
27214
27215         * debug-symfile.c (mono_debug_update_symbol_file): Call
27216         mono_raw_buffer_update() when done writing.
27217
27218 2002-03-23  Martin Baulig  <martin@gnome.org>
27219
27220         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
27221
27222         * debug-symfile.c: Added support for arguments and local variables.
27223
27224 2002-03-23  Dick Porter  <dick@ximian.com>
27225
27226         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
27227         protected by ifdefs, hence breaking the w32 build.
27228
27229 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27230
27231         * object.c: implement is_interned() the right way.
27232
27233 2002-03-21  Martin Baulig  <martin@gnome.org>
27234
27235         * debug-symfile.[ch]: New files to handle debugging information
27236         files. There's also support to dynamically update these symbol
27237         files to include machine dependent information.
27238
27239 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
27240
27241         * threads.c (mono_thread_create): new function to create thread
27242         from C
27243
27244 2002-03-20  Martin Baulig  <martin@gnome.org>
27245
27246         * icall.c (ves_icall_InternalInvoke): Create a new object if the
27247         method is a constructor.
27248         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
27249         points to ves_icall_InternalInvoke().
27250
27251 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
27252
27253         * file-io.c: Flush shouldn't throw exceptions.
27254
27255 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
27256
27257         * file-io.c: FileStream flush support; FileSetLength now
27258         restores file pointer.
27259
27260 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
27261
27262         * class.c: set image for pointer classes.
27263
27264 2002/03/19  Nick Drochak <ndrochak@gol.com>
27265
27266         * sysmath.c: Forgot one.
27267
27268 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
27269
27270         * sysmath.c: Avoid redefining existing names.
27271
27272 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
27273
27274         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
27275         handled by runtime as icall rather than dllimport from libm.so
27276         * file-io.c, file-io.h: fixed handle argument type.
27277
27278 2002-03-18  Dick Porter  <dick@ximian.com>
27279
27280         * reflection.c (mono_image_get_type_info): rename interface to
27281         iface, because of "#define interface struct" on windows.
27282
27283 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
27284
27285         * class.c, class.h: rename and export mono_ptr_class_get().
27286         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
27287         * reflection.c, reflection.h, icall.c: better/saner type name
27288         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
27289         method signatures.
27290
27291 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
27292
27293         * class.c (mono_class_init): removed hardcoded GHC_SLOT
27294
27295         * icall.c (ves_icall_InternalInvoke): impl.
27296
27297 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
27298
27299         * reflection.c: output the interface map table, too.
27300
27301 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
27302
27303         * class.c (class_compute_field_layout): separate computation of 
27304         static field layout
27305
27306 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
27307
27308         * icall.c: added System.Buffer support.
27309         * file-io.c: moved file icalls from PAL to FileStream.
27310
27311 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
27312
27313         * icall.c (ves_icall_System_Object_GetHashCode): impl.
27314
27315 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
27316
27317         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
27318
27319 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27320
27321         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
27322
27323 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
27324
27325         * debug-helpers.{c,h}: moved here from monograph some useful functions
27326         to locate a method by name/signature in a class or image. Included
27327         also a small and flexible IL disassembler.
27328
27329 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
27330
27331         * reflection.c: fixup tokens in methods with small header size, too.
27332
27333 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
27334
27335         * object.c (mono_string_to_utf8): remove assert(!error), instead
27336         print a warning. 
27337
27338 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
27339
27340         * icall.c: update to the new mono_Array_class_get interface.
27341
27342 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
27343
27344         * appdomain.c, object.c: Boehm-GC enable.
27345         * icall.c: make get_data_chunk() support split data requests.
27346         Ensure a class is initialized in more cases. Return only the first
27347         property found in GetProperties() or the compiler gets confused. 
27348         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
27349         * reflection.h, reflection.c: add fixup mechanism for field and method
27350         tokens. Initialize assembly->typeref in a single place. Output
27351         properties after events. Support custom attributes for events, too.
27352         Typo fix for paramter custom attrs.
27353
27354 2002-03-07  Martin Baulig  <martin@gnome.org>
27355
27356         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
27357
27358 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
27359
27360         * class.c (mono_array_class_get): fix. for multi. dim. arrays
27361
27362 2002-03-06  Martin Baulig  <martin@gnome.org>
27363
27364         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
27365         non-zero lower bounds. See testcases #F10-#F13.
27366
27367 2002-03-05  Martin Baulig  <martin@gnome.org>
27368
27369         * exception.c (mono_get_exception_argument_out_of_range): New exception.
27370
27371         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
27372         ves_icall_System_Array_GetValue(), only calculate the absolute array position
27373         here.
27374         (ves_icall_System_Array_SetValue): Likewise.
27375         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
27376         as argument and does the actual work. This function is used when copying a
27377         multi-dimensional array.
27378         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
27379         now do all the widening conversions of value types.
27380         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
27381
27382 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27383
27384         * class.c: remove some magic numbers and use the smbolic names,
27385         instead. Added init_events() to load event info at class init time.
27386         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
27387         and mono_metadata_methods_from_event().
27388         * reflection.h, reflection.c: added support for writing out the evnets
27389         related information.
27390
27391 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
27392
27393         * reflection.h, icall.c: use a different method (GetInterfaces)
27394         to gather interface info and add isbyref, isprimitive and
27395         ispointer to the ves_icall_get_type_info() return value.
27396
27397 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
27398
27399         * class.h: stared adding support for events.
27400         * icall.c: split find_members implementation. Added debug icall to get
27401         the address of an object.
27402         * reflection.c: handle TypeBuilders in mono_type_get_object().
27403
27404 2002-03-01  Martin Baulig  <martin@gnome.org>
27405
27406         * icall.c (ves_icall_System_Array_GetLength): This must throw an
27407         ArgumentOutOfRangeException(), not an ArgumentException().
27408         (ves_icall_System_Array_GetLowerBound): Likewise.
27409         (ves_icall_System_Array_GetValue): Improved argument checking.
27410         (ves_icall_System_Array_SetValue): Improved argument checking.
27411
27412 2002-03-01  Martin Baulig  <martin@gnome.org>
27413
27414         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
27415         called with invalid arguments rather than just dying with g_assert().
27416         (ves_icall_System_Array_SetValue): Likewise.
27417         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
27418         raise a NotImplementedException instead.
27419         (ves_icall_System_Array_GetLength): Added argument checking.
27420         (ves_icall_System_Array_GetLowerBound): Added argument checking.
27421
27422 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
27423
27424         * object.h (mono_assert): new macros mono_assert and
27425         mono_assert_not_reached
27426
27427 2002-02-28  Martin Baulig  <martin@gnome.org>
27428
27429         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
27430         and "System::String::IsInterned" to "System::String::_IsInterned".
27431
27432 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
27433
27434         * icall.c: remove hacks for typebuilder. Added icall to create a
27435         modified type from a tybebuilder.
27436         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
27437         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
27438         to create a backing MonoClass for a TypeBuilder.
27439
27440 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
27441
27442         * class.c, class.h: more refactoring of class init.
27443         Export mono_class_setup_mono_type() and mono_class_setup_parent().
27444
27445 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
27446
27447         * marshal.c, marshal.h: start of marshaling interface.
27448
27449 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
27450
27451         * icall.c: fix order in assembly qualified name icall.
27452
27453 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
27454
27455         * class.c: do not free str, since we store it in the hash table.
27456         * reflection.h: add label field to MonoILExceptionInfo.
27457         * reflection.c: handle references to more than one assembly. Handle
27458         case when there isn't a module created in the assembly.
27459
27460 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
27461
27462         * class.c: Fix typo. Start refactoring of class init code.
27463
27464 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
27465
27466         * appdomain.c: exit with 1 on error.
27467         * class.c: we already have the name in MonoClassField.
27468         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
27469         MonoStreamHeader instead of an offset of image->raw_metadata.
27470
27471 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
27472
27473         * appdomain.c (mono_init): Be even more descriptive about the error.
27474
27475 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
27476
27477         * appdomain.c: give the user an informative message when corlib can't
27478         be loaded.
27479
27480 2002-02-26  Martin Baulig  <martin@gnome.org>
27481
27482         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
27483         New icall to get the time zone data.
27484
27485 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
27486
27487         * reflection.c: set virtual and raw size of section correctly.
27488         * threads.c: transfer domain information to newly created threads.
27489
27490 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
27491
27492         * class.c: when instancing a class in a domain, load the default
27493         vaules for static fields from the constant table. Fix System.Enum to
27494         not be an enum.
27495         * icall.c: implement Object::GetType() internalcall. Implemented
27496         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
27497         Fixed checking of binding flags in find_members().
27498         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
27499         * reflection.c: handle enumerations when writing to the constant
27500         table. Use a different object cache for types.
27501
27502
27503 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
27504
27505         * object.c (mono_object_isinst): fix for arrays
27506
27507         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
27508
27509 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
27510
27511         * object.c: don't use mprotect ()  and fix intern pool hash table
27512         lookup for big endian systems.
27513
27514 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
27515
27516         * icall.c: change type_is_subtype_of () signature.
27517
27518 2002-02-21  Mark Crichton  <crichton@gimp.org>
27519
27520         * rand.c, rand.h: Added random number generator for
27521         System.Security.Cryptography classes.
27522
27523         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
27524
27525         * icall.c: Added System.Security.Cryptography calls.
27526
27527 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
27528
27529         * class.c, icall.c, metadata.c: better support for pointer types.
27530         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
27531         * reflection.c: Add support for getting custom attrs for properties
27532         and simplify some code.
27533
27534 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
27535
27536         * icall.c: change getToken () and add custom attribute GetBlob()helper
27537         method.
27538         * reflection.h: add custom attrs array to the reflection builder structures.
27539         * reflection.c: encode and emit custom attributes for all the relevant
27540         reflection objects. Cache fieldref and methodref tokens. Change
27541         mono_image_create_token() interface to take a MonoDynamicAssembly.
27542         More complete custom attributes decoder. Load custom attributes for
27543         Assembly, Field, Method and Constructor objects, too. Make the
27544         returned array an Attribute[] one, not object[]. Added
27545         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
27546         custom attribute constructor.
27547
27548 2002-02-20  Dick Porter  <dick@ximian.com>
27549
27550         * icall.c:
27551         * rawbuffer.c:
27552         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
27553         problem code out for now).
27554
27555 2002-02-19  Radek Doulik  <rodo@ximian.com>
27556
27557         * object.c (mono_ldstr): use hash table to avoid multiple swapping
27558
27559 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
27560
27561         * icall.c: register the GetCustomAttributes method.
27562         * object.c, object.h: add mono_string_new_len ().
27563         * reflection.h, reflection.c: added mono_runtime_invoke(),
27564         mono_install_runtime_invoke(). Added
27565         mono_reflection_get_custom_attrs () to load custom attributes and
27566         create the attribute objects.
27567
27568 2002-02-19  Dick Porter  <dick@ximian.com>
27569         * threads-dummy-types.c:
27570         * threads-dummy-types.h:
27571         * threads-dummy.c:
27572         * threads-dummy.h:
27573         * threads-pthread-types.c:
27574         * threads-pthread-types.h:
27575         * threads-pthread.c:
27576         * threads-pthread.h:  Deleted obsolete files
27577
27578 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
27579
27580         * class.c (mono_class_vtable): runtime init the class when we
27581         allocate static class data.
27582
27583         * icall.c (ves_icall_System_Array_SetValue): check for null values.
27584
27585         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
27586         and String - but we will need generic marshalling support in the
27587         future. 
27588         (mono_init): set the domain name in a ms compatible way
27589
27590         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
27591         String[].
27592
27593 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
27594
27595         * object.c (mono_array_clone): use alloca() instead of g_malloc  
27596         for sizes
27597
27598         * appdomain.c (mono_domain_unload): impl.
27599
27600 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
27601
27602         * appdomain.c, object.c: fix intern pool implementation.
27603         * class.c: fix alignment code.
27604
27605 2002-02-16  Radek Doulik  <rodo@ximian.com>
27606
27607         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
27608         and s2 > s1, just copy lower bytes to be compatible with little
27609         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
27610         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
27611
27612         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
27613         force big_endian to be 1 for big endian machines 
27614         (ves_icall_iconv_new_decoder): ditto
27615
27616 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
27617
27618         * socket-io.c (convert_sockopt_level_and_name): If the system
27619         doesn't define SOL_IP or SOL_TCP, get them by hand using
27620         getprotobyname() and caching the values (because this could be a
27621         slow operation).
27622         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
27623         Use the appropriate struct when the system does support it. Ie,
27624         not all systems have struct ip_mreqn so use struct ip_mreq when
27625         appropriate.
27626
27627 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
27628
27629         * reflection.c: handle finally clauses.
27630
27631 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
27632
27633         * socket-io.c: use g_snprintf() instead of snprintf.
27634
27635 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
27636
27637         * reflection.c (mono_param_get_objects): Cast second argument to
27638         mono_method_get_param_names to a const char** to silence the
27639         compiler warning.
27640
27641         * appdomain.c (mono_domain_assembly_open): Put parens around the
27642         truth statement in the for-loop.
27643
27644         * unicode.c (iconv_convert): Got rid of a compiler warning about
27645         int i being unused when the system has a new iconv.
27646         (iconv_get_length): Same.
27647
27648         * image.c (load_class_names): Cast the second argument to
27649         g_hash_table_insert() to char* to hush compiler warnings about the
27650         arg being a const.
27651         (mono_image_open): Same here.
27652
27653         * socket-io.c: Don't conditionally include sys/filio.h or
27654         sys/sockio.h here anymore since we now get them from
27655         io-layer/io-layer.h
27656         (inet_pton): If the system doesn't support inet_aton, implement
27657         using inet_addr and also #define INADDR_NONE if it isn't defined
27658         by the system.
27659
27660 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
27661
27662         * metadata.c, metadata.h: added function to get packing and size info
27663         of a typedef.
27664         * reflection.h, reflection.c: handle field RVA data. Save info about
27665         the table layout if needed. Assign typedef indexes to all the types
27666         before dumping the info about them to avoid forward reference problems.
27667
27668 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
27669
27670         * socket-io.c (convert_sockopt_level_and_name): ifdef
27671         SO_ACCEPTCONN because it is not defined on my system (old debian)
27672
27673 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
27674
27675         * opcode.c: use stddef.h to get NULL.
27676
27677 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
27678
27679         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
27680         for FIONBIO, FIONREAD and SIOCATMARK.
27681         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
27682         define INADDR_NONE and besides, inet_addr() is deprecated and
27683         should not be used. Use inet_pton() instead - it also has the
27684         added bonus that it can easily handle IPv6 addresses as well.
27685         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
27686
27687 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
27688
27689         * decimal.c: remove _MSC_VER conditional.
27690
27691 2002-02-13  Dick Porter  <dick@ximian.com>
27692
27693         * socket-io.c: 
27694         * icall.c: Internal calls for Blocking, Select, Shutdown,
27695         GetSocketOption and SetSocketOption
27696
27697 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27698
27699         * assembly.cs: better resolver: use it instead of some kludgy
27700         code.
27701
27702 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
27703
27704         * reflection.c: the best way to speed-up the compiler is to avoid
27705         infinite loops.
27706
27707 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
27708
27709         * class.c (mono_class_vtable): changed the object layout
27710         (obj->vtable->class). 
27711         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
27712
27713 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27714
27715         * assembly.c: look for assemblies in the assembly dir, too.
27716
27717 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27718
27719         * class.c: fix thinko in mono_class_from_type().
27720
27721 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
27722
27723         * exception.h, exception.c: added TypeLoadException.
27724         * object.h, object.c: added mono_array_clone ().
27725         * icall.c: handle throwOnError in AssemblyGetType().
27726         Added Array.Clone().
27727         * opcode.h, opcode.c: use a single value for the opcode val.
27728         Compile fix for non-gcc compilers.
27729
27730 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
27731
27732         * opcodes.c, opcodes.h: export interesting info about opcodes.
27733
27734 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
27735
27736         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
27737         icalls. 
27738
27739         * class.c (class_compute_field_layout): set element_class for enums
27740         (mono_class_create_from_typedef): set element_class for normal classes
27741
27742         * icall.c (ves_icall_System_Enum_get_value): impl.
27743
27744         * class.c (mono_class_create_from_typedef): do not set valuetype
27745         flag for System.ValueType and System.Enum
27746
27747 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
27748
27749         * unicode.c (iconv_convert): fix big endian problem.
27750
27751 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
27752
27753         * class.c: add asserts if we are ever going to scribble over memory.
27754         * socket-io.c: not all systems have AF_IRDA defined.
27755
27756 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
27757
27758         * class.c (class_compute_field_layout): do not consider static
27759         fields to compute alignment
27760
27761 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
27762
27763         * appdomain.c (mono_appdomain_get): impl.
27764         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
27765
27766 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
27767
27768         * icall.c: ignore "file://" prefix when loading an assembly.
27769
27770 2002-01-23  Dick Porter  <dick@ximian.com>
27771
27772         * socket-io.c:
27773         * icall.c:
27774         * Makefile.am: Added socket support
27775
27776 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
27777
27778         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
27779         code back.  This should return the assemblies that are loaded by
27780         the runtime on behalf of an application domain. 
27781
27782         The current implementation is still broken, it just returns every
27783         assembly loaded, but until we get real applications domain this
27784         will do.
27785
27786 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
27787
27788         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
27789         AppDomain object.
27790
27791 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
27792
27793         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
27794         the mono_class_from_name lookup.
27795         (ves_icall_get_parameter_info): ditto.
27796         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
27797         method.
27798         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
27799
27800 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
27801
27802         * class.c: load also nested classes on class init.
27803         System.ValueType instance methods gets passed boxed
27804         values, unless methods in derived classed that get a pointer to the
27805         data.
27806         * icall.c: use better name parsing code in GetType().
27807         * image.c, image.h: add mono_image_loaded ().
27808         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
27809         * reflection.c, reflection.h: added mono_reflection_parse_type().
27810
27811 2002-01-22  Veronica De Santis <veron78@interfree.it>
27812
27813         * icall.c : Added mapping of internal calls for Manual and Auto reset events
27814         * threads.c : Added the implementation of internal calls for events
27815         * threads.h : Added prototypes of internal calls for events
27816         
27817 2002-01-21  Radek Doulik  <rodo@ximian.com>
27818
27819         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
27820
27821 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
27822
27823         * class.c (mono_class_init): set min_align to 1 (instead of 0)
27824         (mono_class_value_size): use min_align
27825
27826 2002-01-20  Dick Porter  <dick@ximian.com>
27827
27828         * threads.h:
27829         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
27830         so it compiles on w32.
27831
27832 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
27833
27834         * metadata.c (mono_type_stack_size): impl.
27835
27836         * class.c (mono_class_get_field): impl. memberref token
27837
27838 2002-01-16 Veronica De Santis <veron78@@interfree.it>
27839
27840         * icall.h : Added the internal calls mapping for CreateMutex_internal
27841                     and ReleaseMutex_internal.
27842         * threads.h : Added the prototype of mutexes internal calls.
27843         * threads.c : Added the implementations of mutexes internal calls.
27844
27845 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
27846
27847         * metaparse.h: removed unused file.
27848         * reflection.c, reflection.h: added stream_data_align () function 
27849         to align data in streams and keep stream aligned. Add support for
27850         exception support in method headers.
27851
27852 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
27853
27854         * unicode.c: make iconv_convert () return the number of bytess written
27855         in the output buffer.
27856
27857 2002-01-15  Dick Porter  <dick@ximian.com>
27858         * threads.c: Make the runtime's idea of infinite timeouts coincide
27859         with the class library's
27860
27861         Fix a particularly egregious bug in mono_thread_cleanup(). That
27862         code was so utterly bogus it must have been written on a Monday.
27863
27864 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
27865
27866         * reflection.h: add subtypes field to TypeBuilder.
27867         * reflection.c: encode constants for literal fields.
27868         Handle subtypes. Fix user string token (and add a zero byte)
27869         at the end.
27870         
27871 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
27872
27873         * class.c (mono_class_init): bug fix: assign slot numbers for
27874         abstract methods.
27875
27876 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27877
27878         * reflection.c: don't try to output a code RVA for abstract methods.
27879         Small fixes for method header format. Output parameter info to the
27880         ParamDef table. Save method overriding info to MethodImpl table.
27881         Fix property support. Allow typedef.extends to be a type in the
27882         building assembly.
27883         * verify.c: fix off-by-one error.
27884
27885 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
27886
27887         * class.c: fix mono_class_from_mono_type () for szarray types.
27888         Remove unused cache check in mono_class_from_type_spec().
27889         * icall.c: *type_from_name () functions handle simple arrays and byref.
27890         * reflection.c: handle byref and szarray types. Handle methods without
27891         body (gets P/Invoke compilation working). Handle types and fields in
27892         get_token ().
27893         * reflection.h: add rank to MonoTypeInfo.
27894
27895 2002-01-10  Dick Porter  <dick@ximian.com>
27896
27897         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
27898         internal calls
27899
27900 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
27901
27902         * icall.c: initialize class in type_from_handle ().
27903         Loop also in parent classes for get_method ().
27904         * reflection.c: properly encode class and valuetype types.
27905         Start on encoding TypeBuilder types. Handle fieldrefs.
27906         Use correct length when registering a user string.
27907         Handle ConstructorBuilder and MonoMethod in get_token ().
27908         Make mono_type_get_object () aware of cached types.
27909         * object.c: back out change to mono_string_new ().
27910
27911 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
27912         * object.c: mono_string_new should return a NULL when the string 
27913         passed in is NULL -- not try to deference it.
27914         
27915 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
27916
27917         * icall.c: hack to make IsSubType work for TypeBuilders.
27918         * reflection.c: emit constructors before methods.
27919         Retrieve param names in mono_param_get_objects().
27920
27921 2002/01/05  Nick Drochak  <ndrochak@gol.com>
27922
27923         * Makefile.am: fix list of headers and sources so automake 1.5
27924         doesn't complain. Removed \# at end of list.
27925
27926 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
27927
27928         * reflection.c: get token for a method ref. Set return type of
27929         constructor to void.
27930         * loader.c: debug message.
27931         * class.c: typo fix.
27932
27933 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
27934
27935         * icall.c: fix array init with rank > 1. FindMembers
27936         loops in parent class as well.
27937         * image.c: do not insert nested types in name cache.
27938         * reflection.c: warning fix.
27939         * reflection.h: add override method (for interface impl).
27940
27941 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
27942
27943         * metadata.c: fix customattr decoding.
27944
27945 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
27946
27947         * rawbuffer.cs: Added native Win32 implementation, avoids using
27948         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
27949
27950 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
27951
27952         * class.c: make the low-level routines handle the cache.
27953
27954 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
27955
27956         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
27957
27958 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
27959
27960         * class.c: fix mono_array_element_size() for objects.
27961         * class.h, class.c: add properties to MonoClass and load them
27962         at init time.
27963         * icall.c: check with isinst() when assigning a value to an array
27964         instead of requiring the classes to match exactly.
27965         Implemented icall for System.Type::GetType().
27966         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
27967         enums. Handle bindingflags when looking for methods and fields.
27968         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
27969         and mono_metadata_methods_from_property().
27970         * reflection.h, reflection.c: added structures for propreties,
27971         parameters and enums. Implemented mono_property_get_object() and
27972         mono_param_get_objects().
27973
27974 2001-12-18  Dick Porter  <dick@ximian.com>
27975
27976         * file-io.c: Use mono_string_to_utf16() instead of
27977         mono_string_chars()
27978
27979         * object.c: Added mono_string_to_utf16(), which copies the non
27980         NULL-terminated MonoString into a new double-null-terminated
27981         buffer.
27982
27983 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
27984
27985         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
27986
27987 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
27988
27989         * file-io.c: raise exceptions if handle is invalid.
27990
27991 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
27992
27993         * assembly.c: yet another check for mscorlib.
27994         * class.c, class.h: load nesting info for classes.
27995         * icall.c: many new functions to support the Reflection classes.
27996         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
27997         * reflection.h, reflection.c: mono_image_create_token(),
27998         mono_assembly_get_object(), mono_type_get_object(),
27999         mono_method_get_object(), mono_field_get_object(): methods to return
28000         objects that parallel the C representation of assemblies, types,
28001         methods, fields.
28002
28003 2001-12-11  Dick Porter  <dick@ximian.com>
28004
28005         * icall.c:
28006         * file-io.c: Internal calls for file IO.
28007
28008 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
28009
28010         * tabledefs.h: missing FileAttributes.
28011         * verify.h, verify.c: use is_valid_string () to simplify and check for
28012         valid strings more correctly. Fix warnings and speeling.
28013         Check more tables: Filed, File, ModuleRef, StandAloneSig.
28014         Check code: branches, maxstack, method calls.
28015
28016 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
28017
28018         * object.c (mono_object_allocate): removed static, so that the jit
28019         can allocate value types.
28020
28021         * icall.c (ves_icall_System_DateTime_GetNow): impl.
28022
28023 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28024
28025         * class.c: init enum types right away and register the
28026         token->MonoClass map in mono_class_create_from_typedef ().
28027         * verify.h, verify.c: first cut of the verifier.
28028         * pedump.c: add --verify switch to verify metadata tables.
28029         * tabledefs.h: add some missing enums.
28030
28031 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
28032
28033         * class.c (mono_install_runtime_class_init): impl.
28034         (mono_class_init): renamed mono_class_metadata_init to
28035         mono_class_init, also removed the metadata_inited flag
28036
28037         * object.c (mono_object_isinst): use faster algorithm
28038
28039 2001-11-30  Radek Doulik  <rodo@ximian.com>
28040
28041         * mono-endian.h: reverted last change
28042         added function prototypes
28043
28044         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
28045         add mono-endian.c back
28046
28047         * mono-endian.c: returned back, as Paolo pointed out, it's needed
28048         for unaligned access, I've mistaked it with endianess. I am
28049         sorry.
28050         (mono_read16): fix reverted endianess
28051         (mono_read64): ditto
28052         (mono_read32): ditto
28053
28054 2001-11-30  Dick Porter  <dick@ximian.com>
28055
28056         * exception.c: Implement mono_exception_from_name()
28057
28058 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
28059
28060         * metadata.h, metadata.c: remove params_size and locals_size and their
28061         calculation from the metadata code: they are only usefult to the
28062         interp.
28063
28064 2001-11-29  Radek Doulik  <rodo@ximian.com>
28065
28066         * object.c (mono_ldstr): swap bytes here, it's probably not the
28067         best place, but works for me now, I'll redo it once I know mono
28068         better, also note that I add PROT_WRITE and don't reset back, also
28069         note that it's only affects big endians, so x86 should be OK
28070
28071         * mono-endian.h (read16): use just glib macros for both endians
28072
28073         * mono-endian.c: removed as glib macros are used in in
28074         mono-endian.h so we don't need to care about endianess for read
28075         macros as glib does that for us already
28076
28077 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
28078
28079         * class.h, class.h: take minimum alignment into consideration so
28080         that the fields of a class remain aligned also when in an array.
28081
28082 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28083
28084         * loader.h, loader.c: add mono_method_get_param_names().
28085         * class.c: 0-init class fields.
28086
28087 2001-11-26  Dick Porter  <dick@ximian.com>
28088
28089         * icall.c:
28090         * threads-types.h:
28091         * threads.c: New file that handles System.Threading on all platforms
28092
28093         * object.c: 
28094         * object.h: Remove the synchronisation struct from MonoObject,
28095         replace it with a pointer that gets initialised on demand
28096
28097         * Makefile.am: Replace all the system-specific threading code with
28098         a single file that uses the new wrapper library
28099
28100 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
28101
28102         * class.c, class.h: add mono_install_trampoline() so that the runtime
28103         can register a function to create a trampoline: removes the ugly
28104         requirement that a runtime needed to export arch_create_jit_trampoline.
28105         * object.h, object.c: added mono_install_handler() so that the runtime
28106         can install an handler for exceptions generated in C code (with
28107         mono_raise_exception()). Added C struct for System.Delegate.
28108         * pedump.c: removed arch_create_jit_trampoline.
28109         * reflection.c: some cleanups to allow registering user strings and
28110         later getting a token for methodrefs and fieldrefs before the assembly
28111         is built.
28112         * row-indexes.h: updates and fixes from the new ECMA specs.
28113
28114 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
28115
28116         * class.h, class.c: add enum_basetype field to MonoClass.
28117         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
28118         to get index in the constant table reated to a field, param or
28119         property.
28120         * reflection.h, reflection.c: handle constructors. Set public-key and
28121         version number of the built assembly to 0.
28122         * row-indexes.h: update from new ECMA spec.
28123
28124 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
28125
28126         * class.h, class.c: add a max_interface_id to MonoClass.
28127         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
28128         since it's used to do that. Added mono_type_type_from_obj().
28129         Make GetType() return NULL instead of segfaulting if the type was not
28130         found. Handle simple arrays in assQualifiedName.
28131         * object.h: add a struct to represent an Exception.
28132         * reflection.c: output call convention in method signature.
28133         Add code to support P/Invoke methods and fixed offsets for fields.
28134
28135 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
28136
28137         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
28138         the value.
28139         * icall.c: use mono_array_addr instead of array->vector: fixes the
28140         reflection image writing.
28141         * reflection.c: init call convention byte to 0 in method signature.
28142         Encode the property signature. Don't output property-related methods
28143         twice. Really process the properties for a type (don't cast a field to
28144         a property, my mom always told me that).
28145         Fix 64 bit issues in pointer alignment in a different and more
28146         readable way.
28147
28148 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
28149
28150         * loader.h: Removed type class from MonoDefaults, added monotype
28151
28152         * loader.c: Loaded MonoType, removed loading of Type
28153
28154         * icall.c (my_mono_new_object): Now returns a System.MonoType,
28155         and fills in System.Type._impl with a RuntimeTypeHandle rather
28156         than the actual MonoClass *
28157
28158         (ves_icall_type_from_handle): change from type_class to
28159         monotype_class
28160
28161         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
28162         implemented
28163
28164         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
28165         implemented
28166
28167         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
28168
28169         (ves_icall_System_Reflection_Assembly_GetType): implemented
28170
28171         (ves_icall_System_MonoType_assQualifiedName): implemented
28172
28173         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
28174
28175 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
28176
28177         * assembly.c (mono_assembly_open): Implement a cache for the
28178         assemblies. 
28179
28180         (mono_assembly_close): only destroy the assembly when the last
28181         reference is gone.
28182         
28183 2001-11-09  Dick Porter  <dick@ximian.com>
28184
28185         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
28186
28187 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
28188
28189         * class.c (mono_class_metadata_init): bug fix: compute the right slot
28190
28191 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
28192
28193         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
28194         from Martin Weindel.
28195         * object.h: add mono_string_chars ().
28196
28197 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
28198
28199         * reflection.c (build_compressed_metadata): Eliminates warnings
28200         and uses 64-bit clean code.
28201
28202         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
28203         (mono_type_equal): Change signature to eliminate warnings.
28204
28205 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28206
28207         * icall.c, loader.c: remove the internalcall array constructors.
28208         Changes to match the new MonoArray structure.
28209         * object.h, object.c: an array object doesn't allocate an extra
28210         vector. Add mono_array_new_full () to create jagged arrays easily.
28211
28212 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
28213
28214         * metadata.h, metadata.c: add mono_metadata_field_info () to
28215         retreive all the info about a field from vairous tables.
28216         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
28217         * class.h, class.c: augment MonoClassField with more info.
28218         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
28219         policy and load a field's RVA if needed.
28220
28221 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
28222
28223         * class.c (mono_class_metadata_init): create a trampoline for all
28224         virtual functions instead of actually compiling them.
28225
28226 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
28227
28228         * class.h, class.c: include name in MonoClassField.
28229         * class.c: fix fundamental type of System.Object and System.String.
28230         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
28231         tokens in ldtoken.
28232         * icall.c: remove internalcalls for the Reflection stuff that is now
28233         done in C# code.
28234         * loader.c: mono_field_from_memberref () implementation.
28235         * mono-endian.c: thinko (s/struct/union/g).
28236         * object.c, object.h: make the mono_string_* prototypes actually use
28237         MonoString instead of MonoObject.
28238         * reflection.c, reflection.h: updates for changes in the reflection
28239         code in corlib: we use C structures that map to the actual C# classes.
28240         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
28241         fat method header if needed and use the info from the ILGenerator for
28242         methods. Handle fields in types. Misc fixes.
28243
28244 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
28245
28246         * class.c (mono_class_metadata_init): bug fix: always allocate
28247         space for static class data
28248
28249 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
28250
28251         * class.c (mono_compute_relative_numbering): use relative
28252         numbering to support fast runtime type checks.
28253
28254 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
28255
28256         * class.c (mono_class_create_from_typeref): added debugging output
28257         to print class name when MonoDummy is returned instead of real class
28258
28259 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
28260
28261         * class.c (mono_class_metadata_init): interface offset table now
28262         contains pointers into the vtable - this is more efficient for the jit
28263
28264 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
28265
28266         * class.c (mono_class_metadata_init): use a temporary vtable (the
28267         old algorithm only worked for the interpreter, but not for the jit)
28268
28269 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
28270
28271         * loader.c (method_from_memberref): use mono_class_get to get the
28272         class of an array instead of using System.Array directly.
28273         (mono_get_method): also add MEMBERREF methods to the method cache
28274         which usefull for arrays.
28275
28276 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
28277
28278         * pedump.c (arch_compile_method): added to compute vtable entry
28279
28280         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
28281         number of interfaces.
28282         
28283         * class.h: merged MonoArrayClass into MonoClass
28284
28285         * class.c (mono_class_create_from_typedef): compute the vtable size and
28286         allocate space to include the vtable inside MonoClass
28287         (mono_class_metadata_init): initialize the vtable
28288
28289 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
28290
28291         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
28292         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
28293         * image.c: endian fixes by Laurent Rioux.
28294         * object.h, object.c: rename MonoStringObject to MonoString and
28295         MonoArrayObject to MonoArray. Change some function names to conform to
28296         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
28297         guint16* as first argument, so don't use char*.
28298         Provide macros to do the interesting things on arrays in a portable way.
28299         * threads-pthread.c: updates for the API changes and #include <sched.h>
28300         (required for sched_yield()).
28301         * icall.c: updates for the API changes above.
28302         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
28303         platforms that need them.
28304
28305 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
28306
28307         * class.c: set the correct type for all the fundamental
28308         type when loading the class.
28309
28310 2001-10-05  Dick Porter  <dick@ximian.com>
28311
28312         * threads-pthread.c (pthread_mutex_timedlock): Simple
28313         compatibility version for C libraries that lack this call.
28314
28315 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
28316
28317         * class.c: MonoTypes stored in MonoClass are stored as
28318         fundamental MonoTypes when the class represents a
28319         fundamental type (System.Int32, ...).
28320         The TypeHandle return by ldtoken is a MonoType*.
28321         * icall.c: ves_icall_get_data_chunk () write out all the
28322         PE/COFF stuff. Implement ves_icall_define_method (),
28323         ves_icall_set_method_body (), ves_icall_type_from_handle ().
28324         * image.c: properly skip unknown streams.
28325         * loader.h, loader.c: add type_class to mono_defaults.
28326         * metadata.c, metadata.h: export compute_size () as
28327         mono_metadata_compute_size () with a better interface.
28328         Typo and C&P fixes.
28329         * pedump.c: don't try to print the entry point RVA if there is no entry point.
28330         * reflection.c, reflection.h: many cleanups, fixes, output method
28331         signatures and headers, typedef and typeref info, compress the metadata
28332         tables, output all the heap streams, cli header etc.
28333         * row-indexes.h: typo fixes.
28334
28335 2001-10-04  Dick Porter  <dick@ximian.com>
28336
28337         * object.h: Add a synchronisation mutex struct to MonoObject
28338
28339         * object.c (mono_new_object): Initialise the object
28340         synchronisation mutexes
28341
28342         * icall.c: System.Threading.Monitor internal calls
28343         
28344         * threads-pthread.h:
28345         * threads-pthread.c: System.Threading.Monitor internal calls
28346
28347         * threads-types.h: New file, includes the system-specific thread
28348         structures
28349         
28350         * threads-pthread-types.h:
28351         * threads-pthread-types.c: New files, handle pthread-specific
28352         synchronisation types
28353
28354         * threads-dummy-types.h: 
28355         * threads-dummy-types.c: New files of dummy support for
28356         thread-specific types
28357
28358         * metadata.c:
28359         * image.c:
28360         * pedump.c: include mono-endian.h not endian.h
28361         
28362         * Makefile.am: More threads files.
28363         Name mono-endian.h not endian.h
28364
28365 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
28366
28367         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
28368         stuff and implement a few more bits.
28369         * icall.c: a field needs to be dereferenced twice. Do not use the same
28370         name for two variables in the same scope.
28371         * image.c, image.h: cleanups.
28372
28373 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
28374
28375         * class.c (mono_class_metadata_init): bug fix: compute the right size
28376
28377 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
28378
28379         * icall.c: implemented some of the Reflection internalcalls.
28380         * image.c, image.h: start writing out the PE/COFF image.
28381         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
28382         that does the reverse than decode_blob_size ().
28383         * object.c: use mono_metadata_encode_value (). Move here
28384         temporary implementation of mono_string_to_utf8 ().
28385         * rawbuffer.c: make malloc_map static.
28386
28387 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
28388
28389         * metadata.c: fix type comparison for arrays.
28390         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
28391         Added a couple of new classes to monodefaults.
28392         * icall.c: added a couple of Reflection-related internalcalls.
28393         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
28394         Added a byval_arg MonoType to MonoClass.
28395
28396 2001-09-28  Dick Porter  <dick@ximian.com>
28397
28398         * icall.c:
28399         * threads-pthread.h: 
28400         * threads-pthread.c: Implemented internal calls for
28401         LocalDataStoreSlot operations.  Applied mutexes around all shared
28402         data.  Reworked the thread creation and Start() operations to
28403         avoid a race condition.
28404         
28405         * threads-dummy.h:
28406         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
28407
28408 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
28409
28410         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
28411
28412 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
28413
28414         * class.c, loader.c: warn and return NULL instead of erroring out.
28415         * icall.c: added System.AppDomain::getCurDomain().
28416         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
28417
28418 2001-09-25  Dick Porter  <dick@ximian.com>
28419
28420         * threads-pthread.h:
28421         * threads-pthread.c: Implemented timed thread joining and added
28422         System.Threading.Thread::Join_internal internal call
28423
28424         * icall.c: Added System.Threading.Thread::Join_internal internal call
28425
28426         * threads-dummy.h:
28427         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
28428
28429 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
28430
28431         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
28432         mono_string_intern () to implement the semantics of the ldstr opcode
28433         and the interning of System.Strings.
28434         * icall.c: provide hooks to make String::IsIntern and String::Intern
28435         internalcalls.
28436
28437 2001-09-23  Dick Porter  <dick@ximian.com>
28438
28439         * threads-dummy.c: 
28440         * threads-dummy.h: New files of dummy threading routines
28441
28442         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
28443         support code based on system specifics
28444
28445         Rename PTHREAD_LIBS to THREAD_LIBS
28446         
28447 2001-09-23  Dick Porter  <dick@ximian.com>
28448
28449         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
28450         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
28451         internal calls.
28452         (mono_thread_init): Set up a Thread object instance to return when
28453         the main thread calls Thread.CurrentThread
28454         (mono_thread_cleanup): Wait for all subthreads to exit
28455
28456         * icall.c: New internal calls for System.Threading.Thread::Sleep
28457         (including Schedule) and CurrentThread
28458
28459         * threads.h: New file, to insulate thread-specific stuff from the
28460         rest of the code
28461
28462 2001-09-21  Dick Porter  <dick@ximian.com>
28463
28464         * threads-pthread.h: 
28465         * threads-pthread.c: New file, for handling pthreads-style
28466         threading support.  Start() now starts a new thread and executes
28467         the ThreadStart delegate instance.
28468
28469         * icall.c: Added the internalcall for
28470         System.Threading.Thread::Start_internal
28471
28472         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
28473
28474 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
28475
28476         * loader.c: work around the different signatures for delegates
28477         constructors csc generates in compiled code vs the ones compiled in mscorlib.
28478
28479 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
28480
28481         * class.h, class.c: add mono_class_get_field_from_name ().
28482         * *: Fix C comments and other ANSI C issues.
28483
28484 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
28485
28486         * endian.h, assembly.c: fix some endianness issues.
28487
28488 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
28489
28490         * loader.h, load.c: add delegate_class to mono_defaults.
28491         Handle runtime provided methods in mono_get_method ().
28492
28493 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
28494
28495         * loader.c (mono_get_method): use pinvoke for internal call
28496
28497         * icall.c: use pinvoke for internal call
28498
28499         * loader.c (method_from_memberref): set the method name
28500
28501 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
28502
28503         * metadata.c: help the compiler generate better code for
28504         mono_class_from_mono_type ().
28505
28506 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
28507
28508         * class.c (mono_class_metadata_init): delayed computing of the
28509         class size to mono_class_metadata_init ()
28510
28511 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
28512
28513         * class.c, class.h: add an interfaces member to MonoClass.
28514         * image.c, image.h: add assembly_name field to MonoImage
28515         from the assembly table.
28516         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
28517
28518 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
28519
28520         * class.c: Handle Array in mono_class_from_mono_type ().
28521         * metadata.c, pedump.c: some endian fixes.
28522
28523 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
28524
28525         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
28526         * metadata.c: fix small problem introduced with the latest commit.
28527
28528 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
28529
28530         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
28531         We don't need a MonoMetadata pointer anymore to compare signatures in
28532         mono_metadata_signature_equal (), update callers.
28533         Reduced memory usage an number of allocations for MonoMethodHeader and
28534         MonoMethodSignature.
28535
28536 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
28537
28538         * metadata.c: added compare for szarray.
28539
28540 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
28541
28542         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
28543         and add a couple more types to it and mono_defaults. Give an hint on
28544         classes that need implementing in our corlib and are referenced
28545         in mscorlib.
28546
28547 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
28548
28549         * class.h, class.c: keep track if a class is also an Enum.
28550         * loader.c: Implement a couple more types for use in libffi
28551         marshalling. Gives better diagnostics when failing to dlopen
28552         a library. Set method->klass for P/Invoke methods, too.
28553
28554 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
28555
28556         * class.c, class.h: add a MonoType this_arg to MonoClass that
28557         represents a pointer to an object of the class' type that
28558         can be used by the interpreter and later the type cache.
28559         Add best guess alignment info for valuetype objects.
28560
28561 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
28562
28563         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
28564         into MonoType: one less level of indirection and allocation and
28565         simplifies quite a bit of code. Added cache for MonoTypes that are
28566         used frequently, so that we don't need to allocate them all the time.
28567
28568 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
28569
28570         * class.c (mono_class_create_from_typedef): System.Enum is also a
28571         value type, although it does not derive from System.ValueType
28572         (maybe a bug in the ms compiler?)
28573
28574         * metadata.c (mono_type_size): return the right size for value types
28575
28576         * loader.c (mono_get_method): only initialize method header if not abstract
28577
28578         * class.c (mono_class_from_mono_type): use mono_default values. 
28579
28580 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
28581
28582         * *: use MonoClass pointers instead of <type_tokens>
28583         
28584         * class.h: new flag: metadata_inited.
28585
28586         * class.c (mono_class_metadata_init): impl.
28587         (mono_class_instance_size): impl.
28588         (mono_class_data_size): impl.
28589
28590 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
28591
28592         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
28593         MonoClass now has the name and name_space fields. 
28594         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
28595         mono_get_method () takes and optional MonoClass as argument.
28596         Removed mono_typedef_from_name() and added mono_class_token_from_name()
28597         instead that takes advantage of a map from class names to typedef
28598         tokens in MonoImage.
28599
28600 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
28601
28602         * metadata.c: zero is not a valid alignment boundary.
28603         Merge MONO_TYPE_VOID in default decoding code.
28604
28605 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
28606
28607         * image.h: merged MonoMetadata into MonoImage
28608
28609         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
28610         identify the type of elements.
28611
28612 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
28613
28614         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
28615         * cil-coff.h: split MonoMSDOSHeader and add size info.
28616         * image.c: add some consistency checks.
28617         * metadata.c: fix row size computation: one programmer
28618         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
28619         add explanation for the locator routine.
28620         Fix decoding of size in method header.
28621         
28622 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
28623
28624         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
28625         (g_concat_dir_and_file): Bring g_concat_dir_and_file
28626         function from gnome-libs.  This uses the right path separator
28627         based on the OS, and also works around a bug in some systems where
28628         a double slash is not allowed. 
28629         (default_assembly_name_resolver): Use g_concat_dir_and_file
28630         (mono_assembly_open): ditto.
28631
28632 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
28633
28634         * metadata.c (mono_metadata_signature_equal): impl.
28635
28636         * *: void is now a realy MonoType (instead of using NULL)
28637         
28638         * metadata.c (do_mono_metadata_parse_type): use
28639         mono_metadata_parse_type to parse void value.
28640
28641 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
28642
28643         * metadata.c, metadata.h: in the signature and method header store
28644         only the space required for holding the loca vars and incoming arguments.
28645
28646 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
28647
28648         * metadata.c (do_mono_metadata_parse_type): treat void like any
28649         other type (instead of assigning NULL);
28650
28651 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
28652
28653         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
28654
28655 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
28656
28657         * image.c (do_mono_image_open): added a cache for arrays.
28658
28659 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
28660
28661         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
28662         decode a single column from a row in a metadata table and changes
28663         to take advantage of it in the typedef locator (gives a nice speed up).
28664         Store offset info for function params.
28665
28666 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
28667
28668         * image.h (MONO_IMAGE_IS_CORLIB): removed 
28669
28670 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
28671
28672         * assembly.c: how could mono_assembly_close () had ever worked?
28673         * metadata.c, metadata.h: provide offset info for local vars.
28674         Implement mono_type_size () to take care of alignment as well
28675         as size (it was mono_field_type_size in cli/class.c before).
28676
28677 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
28678
28679         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
28680
28681         * assembly.h (CORLIB_NAME): set to corlib.dll
28682
28683         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
28684
28685 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
28686
28687         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
28688         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
28689         tokentype.h: massive namespace cleanup.
28690
28691 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
28692
28693         * metadata.h, metadata.c: decode exception clauses when parsing method header.
28694
28695 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
28696
28697         * metadata.c (mono_metadata_free_type): added check for type !=
28698         NULL (void) before calling mono_metadata_free_type()
28699
28700 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
28701
28702         * metadata.h, row_indexes.h: added header with enumerations to use
28703         to index in the columns from tables in metadata and to decode coded
28704         tokens: we should start using this instead of embedding magic numbers
28705         all over the code.
28706
28707 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
28708
28709         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
28710         Move metadata_t info from cli_image_info_t to MonoImage, where
28711         it's easily accessible. Changed all the uses accordingly.
28712         Added the method and class caches to MonoImage.
28713         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
28714         and mono_metadata_decode_value () signature to be more consistent
28715         with the other parse functions (and simplify code). Taken advantage
28716         of zero-length array allocation with GCC. Removed reduntant (and
28717         wrong) MonoFieldType struct and use MonoParam instead. Changed
28718         mono_metadata_parse_field_type () to use common code for parsing.
28719         Added mono_metadata_typedef_from_field () and
28720         mono_metadata_typedef_from_method () to lookup a typedef index from a
28721         field or method token.
28722         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
28723
28724 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
28725
28726         * metadata.c (mono_metadata_parse_field_type): Implement. 
28727         (do_mono_metadata_parse_type): Split engine from
28728         mono_metadata_parse_type, so that we can create smaller structures
28729         for things that just have one pointer to the MonoType (look at
28730         the MonoFieldType)
28731
28732 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
28733
28734         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
28735         as Jan Gray found out, it is incorrect. 
28736
28737 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
28738
28739         * assembly.c: Implement asssembly loading.  This loads an image
28740         and loads all the referenced assemblies.  Come to think of it, we
28741         could always do lazy loading of the assemblies. 
28742
28743         * image.c (mono_image_open): Keep loaded images in a hashtable.
28744
28745         * image.h (MonoImage): Add reference count.
28746
28747 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
28748
28749         * assembly.c (mono_assembly_open): Keep track of the file name in
28750         case the assembly has no ASSEMBLY table.
28751
28752         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
28753         from get.c here.
28754
28755 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
28756
28757         * metadata.c, metadata.h: decode local vars in method header
28758         parse function. Change callers accordingly.
28759
28760 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
28761
28762         * metadata.h, cil-coff.h: protect against multiple inclusion.
28763         Added some new structures to hold information decoded from metadata:
28764         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
28765         and relevant decoding/free functions.
28766         * metadata.c: implement decoding functions. Add warning for out of bounds
28767         index in mono_metadata_locate(). Implement mono_get_method () to retreive
28768         all the info about a method signature and invocation. Remove check on
28769         uninitialized local var in parse_mh() and fix memory leak.
28770
28771 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
28772
28773         * metadata.h: More macros.
28774
28775         * tokentype.h: New file.
28776
28777 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
28778
28779         * assembly.c: added a consistency check and initialize
28780         some structures with g_new0().
28781         * metadata.c: fixed a couple more bugs in table size computation
28782         and add other checks for out-of bound access to metadata.
28783
28784 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
28785
28786         * metatada.c: fix bugs computing table sizes. Spew a
28787         warning when index in string heap is out of bounds.
28788
28789 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
28790
28791         * metadata.h: Add a couple of macros to manipulate tokens. 
28792
28793 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
28794
28795         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
28796         cli_section_tables).
28797
28798 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
28799
28800         * metadata.c (mono_metadata_user_string): New function, provides
28801         access to the UserString heap. 
28802
28803 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
28804
28805         * metadata.c: Add inline documentation.
28806
28807 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
28808
28809         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
28810         files. 
28811
28812 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
28813
28814         * typeattr.h: New file, TypeAttribute flags. 
28815
28816 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
28817
28818         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
28819         mono_assembly_ensure_section): Section loading code.
28820         (load_section_tables): Load the sections.
28821
28822         * mono/metadata/metadata.c (mono_metadata_locate_token,
28823         mono_metadata_locate): Functions to locate the information
28824         definition given a token or a table and an index.
28825         (mono_metadata_compute_table_bases): New.
28826         (compute_size): New function to compute the sizes of the various
28827         tables.
28828
28829         * mono/metadata/metadata.h: Finish listing the different index
28830         types. 
28831
28832         * mono/metadata/pedump.c: Improve to dump new information.
28833
28834 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
28835
28836         * mono/metadata/metadata.c: Entered all the tables matching
28837         Beta2. 
28838
28839         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
28840
28841
28842