2008-12-09 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / metadata / ChangeLog
1 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
2
3         * marshal.h: Fix a warning.
4
5 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
6
7         * marshal.c : Adding cominterop_release_all_rcws to release all
8           runtime callable wrappers held by the runtime.
9
10         * marshal.h : Adding declaration for cominterop_release_all_rcws.
11           
12         Code is contributed under MIT/X11 license.
13
14 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
15
16         * metadata.c (mono_image_alloc_lock): New helper function.
17         (mono_image_alloc0_lock): Ditto.
18
19         * metadata.c: Use the alloc_lock () helper functions for allocating
20         memory from the image mempool.
21
22 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
23
24         * class.c (mono_class_from_generic_parameter): Document it's
25         locking behavior. Fix double checked locking here, we stored in
26         param->pklass a partially initialized MonoClass and no membar was used.
27
28 2008-12-05  Marek Habersack  <mhabersack@novell.com>
29
30         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
31         (3) functions are present in the C library use them to do the
32         job. If they are absent, make sure that the sum of int_part and
33         dec_part is rounded before returning. This is necessary due to the
34         division of dec_part by the power of 10 before the final addition
35         is performed - if the result is not rounded in some cases it will
36         yield invalid results.
37
38 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
39
40         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
41         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
42         instruction instead of a pointer constant.
43
44 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
45
46         * loader.c (mono_method_get_header): Do most of the work outside the
47         loader lock, to avoid assembly load hook deadlocks.
48
49         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
50         (mono_metadata_parse_type_full): Ditto.
51
52 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
53
54         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
55         Make the stack depth fixed. Ensure proper argument passing to the backtrace
56         funtions. Finally, use a lock to produce well ordered output.
57
58         The lock looks silly, as all calls to the corlib mempool should be guarded
59         with the loader lock, but for some reason this fact doesn't help. 
60
61         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
62
63 2008-12-02  Mark Probst  <mark.probst@gmail.com>
64
65         * socket-io.c: 64 bit big-endian fixes.
66
67 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
68
69         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
70         targets that require strict compatibility between the types.
71
72         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
73         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
74         Kill the strict argument and create a new one valuetype_must_be_boxed.
75
76         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
77         state that all valuetypes must be boxed.
78
79         Fixes #448560.
80
81 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
82
83         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
84         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
85
86         Contributed under MIT/X11 license.
87
88 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
89
90         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
91         the inflate_generic_type machinery should handle it.
92
93         This avoids a crash when the field's flags is zero and it's type is
94         a primitive.
95         What happens is that mono_metadata_parse_type_full will see that opt_attrs
96         is zero and will return one of the cached built-in primitive types. Since
97         those types live in read-only memory, the code that copies it crashes.  
98
99 2008-11-28  Mark Probst  <mark.probst@gmail.com>
100
101         * object.c: Don't put function descriptors into generalized IMT
102         thunks.
103
104 2008-11-28  Mark Probst  <mark.probst@gmail.com>
105
106         * class.c: Enable generic code sharing on PPC64.
107
108 2008-11-27  Mark Probst  <mark.probst@gmail.com>
109
110         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
111         from mini/mini.c.
112
113         * generic-sharing.c: Allocate the method template slists from the
114         image mempool so it doesn't leak.
115
116 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
117
118         * class.c (generic_array_methods): Release the linked list.
119
120 2008-11-27  Mark Probst  <mark.probst@gmail.com>
121
122         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
123         invocation to g_utf16_to_utf8().
124
125 2008-11-26  Mark Probst  <mark.probst@gmail.com>
126
127         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
128         arguments on big endian archs.
129
130 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
131
132         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
133         the type name (test added in corlib).
134
135 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
136
137         * pedump.c: initialize perf. counters. Fixes a segv.
138
139 2008-11-25  Martin Baulig  <martin@ximian.com>
140
141         * mono-debug-debugger.c
142         (mono_debugger_runtime_invoke): Return the exception object if an
143         exception was thrown.  Visual Studio displays the exception object
144         in the locals window.
145
146 2008-11-24  Mark Probst  <mark.probst@gmail.com>
147
148         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
149         ftnptr.
150
151 2008-11-24  Mark Probst  <mark.probst@gmail.com>
152
153         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
154         MONO_TYPE_U are sizeof (gpointer), too.
155
156 2008-11-24  Mark Probst  <mark.probst@gmail.com>
157
158         * marshal.c (mono_type_native_stack_size): Fixed size and
159         alignment for reference types.
160
161 2008-11-23  Mark Probst  <mark.probst@gmail.com>
162
163         * class.c (mono_class_generic_sharing_enabled): Disable generic
164         code sharing for PPC64.
165
166 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
167
168         * icall.c (mono_method_get_equivalent_method): Make sure
169         method->klass->methods is inited before looping over it.
170
171 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
172
173         * object.c: when calling ExecuteAssembly in a newly created domain,
174         the configuration file and application base are already set up.
175         Bug #446353 take 2 fixed.
176
177 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
178
179         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
180         Fixes #444715. Fix a warning.
181
182 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
183
184         * appdomain.c: write the full path of the assembly to the .ini file
185         created when "shadow-copying"
186         Bug #446353 fixed.
187
188 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
189
190         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
191         if signature==FALSE.
192
193 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
194
195         * marshal.h : Fix the cygwin build.
196            marshal.c:12442: undefined reference to `_IID_IMarshal'
197           
198         Code is contributed under MIT/X11 license.
199
200 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
201
202         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
203           free threaded marshaler when QueryInterface is called on a COM callable
204           wrapper requesting the IMarshal interface.
205           
206         Code is contributed under MIT/X11 license.
207
208 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
209
210         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
211
212         * reflection.c (mono_type_get_object): Special case the very common
213         void type.
214
215         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
216         hold typeof(void).
217
218 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
219
220         * process.h : Adding method declaration for
221           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
222           
223         * process.c : Adding implementation for
224           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
225           
226         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
227           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
228
229         Code is contributed under MIT/X11 license.
230
231 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
232
233         * appdomain.c (unload_thread_main): Clean up threadpool by
234         calling mono_thread_pool_remove_domain_jobs.
235
236         * domain-internals.h (struct _MonoDomain): Add new fields to
237         help coordinate the cleanup of the threadpool.
238
239         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
240         that cleans up the threadpool of all jobs associated with an appdomain.
241         It does that by cleaning up the queues and making sure all active
242         threads are accounted.
243
244         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
245         unloaded or in the process of. Take this is such way that there is
246         no race condition between another thread starting the unload and the
247         current thread acknowledging it.
248
249         * threadpool.c (async_invoke_thread): Same.
250
251         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
252         firing the new thread.
253
254         * threadpool.c (start_tpthread): Same.
255
256         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
257
258         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
259
260 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
261
262         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
263         Add support for DuplicateHandle.
264         
265         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
266         Add support for DuplicateHandle.
267         
268         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
269         Add support for DuplicateHandle.
270
271         Code is contributed under MIT/X11 license.
272
273 2008-11-06  Mark Probst  <mark.probst@gmail.com>
274
275         * class-internals.h: Make min_align into a whole byte.
276
277         * class.c: Set min_align for SIMD types to 16.
278
279 2008-11-05  Geoff Norton  <gnorton@novell.com>
280
281         * attach.c: Default the attacher to enabled for all cases including
282         embedded.
283
284 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
285
286         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
287         change r117650.
288
289 2008-11-04  Mark Probst  <mark.probst@gmail.com>
290
291         * monitor.c, monitor.h: New function for querying offsets of
292         members of MonoThreadsSync.
293
294 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
295
296         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
297         to speed up this function and to avoid the boundless memory growth caused by
298         the signature_dup () calls.
299
300 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
301
302         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
303         wrapper.
304
305         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
306         by 1 bit.
307
308         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
309
310 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
311
312         * appdomain.c:
313         * domain-internals.h: made mono_set_private_bin_path_from_config()
314         "internal".
315         * object.c: call the above function after setting the configuration
316         file path for the root domain.
317         Fixes bug #314478.
318
319 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
320
321         * assembly.c: when the assembly is loaded from an absolute path, end
322         basedir with a directory separator.
323         Bug #440781 fixed.
324
325 2008-10-30  Mark Probst  <mark.probst@gmail.com>
326
327         * monitor.c (mono_monitor_get_fast_enter_method): If
328         CompareExchange is not available, don't create the fastpath
329         instead of asserting.  (The method is missing in the 1.1 profile.)
330
331 2008-10-30  Mark Probst  <mark.probst@gmail.com>
332
333         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
334
335         * monitor.c, monitor.h: Code for generating Monitor.Enter and
336         Monitor.Exit IL fastpaths.
337
338 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
339
340         * class.c (mono_class_create_from_typedef): Added Vector2ul.
341
342 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
343
344         * class.c (mono_class_create_from_typedef): Added Vector2l.
345
346 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
347
348         * class.c (mono_class_create_from_typedef): Added Vector2d.
349
350 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
351
352         * appdomain.c: translate \ into / for cache_path.
353         * domain-internals.h: new mono_is_shadow_copy_enabled().
354         * icall.c: (fill_reflection_assembly_name) do the same path
355         manipulations that get_code_base does.
356         (get_code_base) use mono_is_shadow_copy_enabled.
357
358 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
359
360         * appdomain.c: shadow-copied assemblies go to CachePath +
361         ApplicationName when both are set. DynamicBase has nothing to do with
362         shadow copies.
363         Bug #406877 fixed.
364
365 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
366
367         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
368         STANDALONESIG table.
369
370         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
371         standalone signatures.
372
373         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
374         comparison code: instead of comparing the signatures using a custom
375         equals function, transform them to a common signature and compare that. This
376         works better with AOT.
377
378 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
379
380         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
381
382         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
383         call for generic instances.
384         (mono_class_setup_properties): Call setup_properties () before accessing
385         gklass->properties.
386
387         * class.c (mono_class_get_virtual_methods): New helper function to iterate
388         over the virtual methods of a class using metadata if possible, avoiding the
389         creation of MonoMethod's for non-virtual methods.
390         
391         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
392         get_virtual_methods () to iterate over the virtual methods of classes.
393
394 2008-10-25  Martin Baulig  <martin@ximian.com>
395
396         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
397
398 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
399
400         * class.c (mono_class_create_from_typedef): Added Vector4i.
401
402 2008-10-24  Mark Probst  <mark.probst@gmail.com>
403
404         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
405         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
406         special-casing applies to eliminate the call completely.
407
408 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
409
410         * class.c (mono_class_create_from_typedef): Added Vector8s.
411
412 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
413
414         * class.c (mono_class_create_from_typedef): Added Vector16sb.
415
416 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
417
418         * icall.c: get rid of annoying warning.
419
420 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
421
422         * threadpool.c: in 1.x, if you change the background status of the
423         threadpool thread, it's not reset.
424         Remove unnecessary calls to SetState.
425
426 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
427
428         * threadpool.c: asynchronously create a set of idle threads upon first
429         use of the threadpool. SetMinThreads will now start the appropriate
430         number of idle threads if they are not already running. The default is
431         1 threadpool thread per CPU. Increased the maximum number of threads
432         per CPU to 10.
433
434 2008-10-22  Martin Baulig  <martin@ximian.com>
435
436         Revert r116521 from Zoltan, it breaks the debugger:
437
438         * class.c (mono_class_get_virtual_methods): New helper function to iterate
439         over the virtual methods of a class using metadata if possible, avoiding the
440         creation of MonoMethod's for non-virtual methods.
441         
442         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
443         get_virtual_methods () to iterate over the virtual methods of classes.
444
445 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
446
447         * threads.c: when creating a threadpool thread, set its state to
448         'background'.
449         * threadpool.c: reset the background state of a threadpool thread
450         after finishing each work item
451         Bug #437888 fixed.
452
453 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
454
455         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
456         
457         * class.c (mono_class_setup_vtable_general): Add an optimized version for
458         generic instances which works by inflating the methods in the container
459         class's vtable.
460
461         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
462         variant which doesn't make a copy if no inflation was done.
463         (mono_class_setup_fields): Use it.
464
465         * metadata.c (mono_metadata_get_shared_type): New helper function to
466         return a shared instance of a given MonoType.
467
468         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
469         a copy of most non-generic types.
470
471 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
472
473         * threadpool.c: remove one more GetSystemInfo () call.
474
475 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
476
477         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
478         use the code in mono-proclib.h to get processor information.
479
480 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
481
482         * appdomain.c: fixed the logic that determines whether assemblies in a
483         directory are "shadow-copied" or not. Bug #433483 fixed.
484
485 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
486
487         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
488         warning.
489
490 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
491
492         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
493         returning a vtype.
494
495         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
496         reflection.c: Use mono_field_get_name () for accessing a field's name.
497
498         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
499         class.c
500
501         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
502         field.
503
504         * loader.c (find_method_in_class): Reenable the metadata optimization by
505         not using it for generic instances.
506
507         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
508         data/def_type fields from MonoClassField into a separate structure.
509         (struct MonoClassField): Remove data/def_type fields.
510         (struct _MonoClass): Add a 'field_def_values' array to store the default
511         values/RVA for fields.
512
513         * class.c reflection.c: Update after the changes.
514         
515         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
516         for accessing field->data.
517
518         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
519
520         * loader.c (find_method_in_class): Revert the last change for now as
521         it breaks Mono.C5 unit tests.
522
523         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
524         'field_generic_types' and 'field_objects' which contain the information
525         previously stored in MonoInflatedField.
526         (MonoInflatedField): Delete.
527         (struct _MonoClassField): Delete 'generic_info' field.
528
529         * reflection.c: Store the information which was previously in 
530         field->generic_info in MonoDynamicGenericClass instead.
531
532         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
533         MonoClassField changes.
534
535 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
536
537         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
538         store the value inside the data array of the MonoMethodWrapper.
539         This saves memory, is faster and fixes the lifetime issues (methods
540         were never removed from the hash previously). May also fix bug#436996.
541
542 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
543
544         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
545         generic instances, compute the type from the generic definition instead of
546         looking in field->generic_info.
547
548         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
549         for inflated fields, the only user was get_fieldref_token () which no
550         longer needs it.
551
552         * class.c (mono_class_init): Revert the last change as it seems to cause
553         crashes.
554
555         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
556         bytes on 64 bit platforms.
557
558         * object.c (mono_class_create_runtime_vtable): Fix a warning.
559         
560         * object.c (mono_class_create_runtime_vtable): Don't initalize
561         field->data/field->def_type here, it is done lazily by 
562         mono_class_get_field_default_value ().
563
564         * icall.c (ves_icall_get_enum_info): Call 
565         mono_class_get_field_default_value () instead of directly accessing
566         field->data and field->def_type.
567
568         * object.c (get_default_field_value): Ditto.
569
570         * class.c (mono_field_get_data): Ditto.
571         
572         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
573         call for generic instances.
574
575         * loader.c (find_method_in_class): If klass != from_class, then inflate
576         the method with the context of from_class, since the caller assumes this.
577
578 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
579
580         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
581         for accessing method->slot.
582
583 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
584
585         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
586
587 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
588
589         * class.c (mono_method_get_vtable_index): Use
590         mono_method_get_vtable_slot () for accessing method->slot.
591
592         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
593         accessing klass->methods.
594
595         * class.c (mono_method_get_vtable_slot): New helper function.
596         (mono_class_get_vtable_entry): Ditto.
597         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
598         accessing method->slot.
599
600         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
601         method to get_inflated_method ().
602
603         * class.c (mono_class_get_inflated_method): New helper method to obtain
604         a method of an inflated class without calling setup_methods ().
605         (mono_class_get_cctor): Use get_inflated_method.
606
607         * generic-sharing.c (mono_class_get_method_generic): Ditto.
608         
609         * marshal.c image.c: Lazily create all the marshal caches.
610
611         * image.c (mono_image_init): Move initialization of runtime_invoke
612         caches to marshal.c.
613
614         * marshal.c (get_cache): New helper function to lazily initialize a 
615         wrapper cache.
616         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
617
618         * debug-helpers.c (mono_method_full_name): Include generic arguments.
619
620 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
621
622         * loader.c: fixed check for interface type.
623
624 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
625
626         * appdomain.c: check for NULL setup before it's referenced.
627
628 p
629 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
630
631         * class.c: remove the unused old vtable setup code.
632
633 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
634
635         * class.c: don't depend on interface order in
636         setup_interface_offsets (bug #435777).
637         * reflection.c: sort the InterfaceImpl table (patch from
638         Jb Evain  <jbevain@novell.com>).
639
640 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
641
642         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
643         the low level assemblies lock.
644
645 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
646
647         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
648         object.c, reflection.c, socket-io.c, threads.c: introduced
649         mono_framework_version () to return the major framewrok version,
650         changed the code that was using more complex patterns to use it.
651         Return the correct value for PlatformID for OSX.
652
653 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
654
655         * icall-def.h, process.h, process.c: added an icall to get info about
656         processes using mono-proclib.
657
658 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
659
660         * mono-perfcounters.c: use the mono-proclib functions to
661         access process information.
662
663 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
664
665         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
666         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
667         reflection.c: remove rawbuffer usage: mmap support is more sanely
668         provided by utils/mono-mmap.
669
670 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
671
672         * gc.c: use posix semaphores when possible so that
673         mono_gc_finalize_notify() is signal safe.
674
675 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
676
677         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
678         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
679         be #ifdef-ed out, the linker will remove the rest.
680
681         * marshal.c: Implement DISABLE_COM.
682
683         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
684
685 2008-10-11  Miguel de Icaza  <miguel@novell.com>
686
687         * locales.c (string_invariant_compare_char): Optimization: do not
688         call g_unichar_type unless we actually need the information.
689
690 2008-10-10  Mark Probst  <mark.probst@gmail.com>
691
692         * object.c, class-internals.h: Also create remoting trampolines
693         for generic methods.  Pass the domain to the remoting trampoline
694         creation function, too.
695
696 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
697
698         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
699
700 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
701
702         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
703         Vector4ui.
704
705 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
706
707         * assembly.c:
708         * locales.c: remove the use of g_strdown. Fixes bug #322313.
709
710 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
711
712         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
713         for the least possible amount of time (extending the fix in r113458).
714
715 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
716
717         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
718
719 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
720
721         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
722         as possible simd intrinsic types.
723         Optimized the test to check for the common prefix first.
724
725 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
726
727         * class.c: back out part of a broken optimization committed on
728         May 23th (bug #433908).
729
730 2008-10-09  Mark Probst  <mark.probst@gmail.com>
731
732         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
733         Win32.  Should fix #432388 for most cases until we have the new
734         profiler on Win32.
735
736 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
737
738         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
739         instead of using inst->id so the hash is stable for AOT.
740
741 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
742
743         * appdomain.c:
744         * icall.c: create a .ini file for shadow-copied assemblies that
745         contains the location of the original assembly. Use this to return the
746         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
747         Also fix the number of '/' for windows when returning the CodeBase.
748         Fixes bug #430920.
749
750 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
751
752         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
753
754         Code is contributed under MIT/X11 license.
755
756 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
757
758         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
759           if if the class vtable needs initialized.
760
761         Code is contributed under MIT/X11 license.
762
763 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
764
765         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
766           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
767           STRING->BSTR, and CLASS->INTERFACE.
768
769         Code is contributed under MIT/X11 license.
770
771 2008-10-07  Marek Habersack  <mhabersack@novell.com>
772
773         * sysmath.h: changed the declaration of the
774         ves_icall_System_Math_Round2 icall by adding an extra
775         away_from_zero parameter.
776
777         * sysmath.c (ves_icall_System_Math_Round2): added support for
778         away from zero rounding. The icall now takes an extra boolean
779         parameter to signal that away from zero operation is requested.
780
781 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
782
783         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
784         the delegate klass so it can work with full-aot.
785         (mono_marshal_get_delegate_end_invoke): Ditto.
786         (mono_marshal_get_delegate_invoke): Ditto.
787
788 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
789
790         * gc.c, attach.h, attach.c: remove a bad pattern:
791         add_finalizer_callback () is not implemented correctly, it can't
792         without adding more overhead to the finalizer loop and it's not
793         even needed, since we know exactly what we need to call, so there is
794         no need to do so through an expensive function pointer.
795
796 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
797
798         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
799         for the no-gc case.
800         * attach.c (mono_attach_init): Remove the #ifdef.
801
802 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
803
804         * attach.c (mono_attach_init): Don't use
805         mono_gc_add_finalizer_thread_callback when compiling without GC.
806         Fixes #432306.
807         
808         Code is contributed under MIT/X11 license.
809
810 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
811
812         * class.c (mono_class_create_from_typedef): Remove the 
813         #ifndef DISABLE_SIMD stuff.
814
815 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
816
817         * class-internals.h (MonoClass): Added simd_type bit field.
818
819         * class.c (mono_class_create_from_typedef): Check if type is a simd
820         intrinsic.
821
822 2008-10-03  Mark Probst  <mark.probst@gmail.com>
823
824         * object.c (mono_method_add_generic_virtual_invocation): Only add
825         instantiations to the thunk whose count is at least as large as
826         the threshold.
827
828 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
829
830         * icall.c: changed the Type of the exception thrown when trying to
831         invoke a constructor on an abstract class. Part of the fix for bug
832         #324185.
833
834 2008-10-02  Mark Probst  <mark.probst@gmail.com>
835
836         * class.c, class-internals.h (mono_method_get_vtable_index): New
837         function which returns the index into the vtable and properly
838         handles inflated virtual generic methods.
839
840 2008-10-01  Mark Probst  <mark.probst@gmail.com>
841
842         * object.c, domain.c, object-internals.h, domain-internals.h:
843         Generalize IMT thunk machinery to also handle thunks for virtual
844         generic method invokes.  When a virtual generic method is invoked
845         more than a number of times we insert it into the thunk so that it
846         can be called without lookup in unmanaged code.
847
848         * generic-sharing.c, class-internals.h: Fetching a
849         MonoGenericInst* for a method from an (M)RGCTX.
850
851 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
852
853         * marshal.c (emit_marshal_string): Applied a variant of a patch by
854         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
855         marshalling. Fixes #431304.
856
857 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
858
859         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
860           handle when ref is specified without In or Out.
861
862         Code is contributed under MIT/X11 license.
863
864 2008-09-30  Mark Probst  <mark.probst@gmail.com>
865
866         * loader.c (mono_get_method_constrained): Don't expand method with
867         the class's context, because it's already a method of that class.
868
869 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
870
871         * attach.c : should be correct build fix.
872
873 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
874
875         * attach.c: Fix the previous change.
876
877 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
878
879         * attach.c : quick w32 build fix.
880
881 2008-09-27  Miguel de Icaza  <miguel@novell.com>
882
883         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
884         crashes MonoDevelop: #430455.
885
886 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
887
888         * domain-internals.h (struct _MonoDomain): Move most fields used only by
889         the JIT do MonoJitDomainInfo in ../mini/mini.h.
890
891         * domain.c: Remove initialization/cleanup of the removed fields.
892
893 2008-09-27  Mark Probst  <mark.probst@gmail.com>
894
895         * class.c (mono_class_generic_sharing_enabled): Enable generic
896         code sharing for PPC.
897
898 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
899
900         * attach.c : Fixing the Windows builds.
901
902         Code is contributed under MIT/X11 license.
903
904 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
905
906         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
907         the default generic sharing mode to 'all'.
908
909 2008-09-25  Mark Probst  <mark.probst@gmail.com>
910
911         * generic-sharing.c, class-internals.h: New function for checking
912         whether a method needs a static RGCTX invoke wrapper.  A few
913         funtions moved from mini/generic-sharing.c.
914
915         * icall.c: New function used.
916
917 2008-09-25  Mark Probst  <mark.probst@gmail.com>
918
919         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
920         Static RGCTX invoke wrapping applies to value type methods, too.
921
922         * class.c (mono_class_setup_vtable_general): In generic-shared
923         value types, wrap methods with a static RGCTX invoke wrapper.
924
925 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
926
927         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
928         osx build.
929
930 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
931
932         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
933         register a callback which is called when the finalizer thread is woken
934         up.
935         (finalizer_thread): Call the callback if it exists.
936
937         * attach.h attach.c: New files, implementing the attach mechanism.
938
939         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
940         
941         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
942         by the previous change.
943
944 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
945
946         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
947         loader.c, marshal.c, metadata-internals.h, metadata.c,
948         method-builder.c, object.c, reflection.c: introduced specific functions
949         to allocate from the domain and image mempools and cleaned up most of
950         the code to use them (still missing a few in reflection.c).
951         Keep the loader bytes counter updated.
952
953 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
954
955         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
956         loader-related counters.
957
958 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
959
960         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
961         added more MS-compatible counters.
962
963 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
964
965         * class.c (mono_class_setup_fields): Call setup_fields before accessing
966         class->blittable. Fixes #428217.
967
968 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
969
970         * reflection.c (mono_image_get_field_on_inst_token): Call 
971         field_encode_signature () since that handles custom modifiers too.
972         Fixes #424663.
973
974 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
975
976         * reflection.c (add_custom_modifiers): New helper function to merge custom
977         modifiers stored in objects to a MonoType.
978         (fieldref_encode_signature): Encode custom modifiers.
979         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
980         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
981
982 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
983
984         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
985         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
986         64-bit IL only images because imports are not resolved for IL only images.
987         Special thanks to Bill Holmes for finding this bug and testing the patch.
988         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
989
990         Contributed under MIT/X11 license.
991
992 2008-09-19  Miguel de Icaza  <miguel@novell.com>
993
994         * mono-config.c (dllmap_start): Add support for the bits keyword
995         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
996
997 2008-09-19  Mark Probst  <mark.probst@gmail.com>
998
999         * reflection.c (inflate_mono_method): When the class the method is
1000         to be inflated for is itself not inflated, just return the method.
1001
1002 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
1003
1004         * mono-perfcounters.c: use more user friendly process instance names.
1005
1006 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
1007
1008         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
1009           handle "[in] ref" and "[in][out] ref" cases.
1010
1011         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
1012           to mono_mb_create_method.  This was causing problems calling native to
1013           managed passing Variants by value.
1014
1015         Code is contributed under MIT/X11 license.
1016
1017 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
1018
1019         * class.c (can_access_internals): Call mono_assembly_load_friends ()
1020         before accessing the friend_assembly_names field.
1021
1022         * assembly.c (mono_assembly_load_friends): Make this callable multiple
1023         times.
1024         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
1025         called lazily when it is needed.
1026
1027         * metadata-internals.h (struct _MonoAssembly): Add 
1028         'friend_assembly_names_inited' flag.
1029
1030 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
1031
1032         * mono-perfcounters-def.h: fix the types of a few counters.
1033         * mono-perfcounters.c: implemented the instance names getter
1034         and a few bugfixes.
1035
1036 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
1037
1038         * culture-info-table.h : regenerated.
1039
1040 2008-09-17  Robert Jordan  <robertj@gmx.net>
1041
1042         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
1043         context bound objects. Fixes #415577.
1044
1045         Code is contributed under MIT/X11 license.
1046
1047 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
1048
1049         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
1050         implementation (bug #423582).
1051
1052 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
1053
1054         * object.c (mono_object_get_virtual_method): Handle the case method->slot
1055         is not set. Fixes #426309.
1056
1057 2008-09-16  Jb Evain  <jbevain@novell.com>
1058
1059         * class.c (mono_class_from_name): fix the exported type look up
1060         when the type is defined in a referenced assembly.
1061
1062 2008-09-16  Jb Evain  <jbevain@novell.com>
1063
1064         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
1065         increment the next index counter on each iteration to make that work
1066         for more than one type forwarder. Unmanaged part to fix #422929.
1067
1068 2008-09-15  Mark Probst  <mark.probst@gmail.com>
1069
1070         * object-internals.h: enum ComInterfaceType in
1071         MonoInterfaceTypeAttribute is guint32, not guint16.
1072
1073 2008-09-12  Mark Probst  <mark.probst@gmail.com>
1074
1075         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
1076         writing code.
1077
1078 2008-09-11  Mark Probst  <mark.probst@gmail.com>
1079
1080         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
1081         not gboolean.
1082
1083 2008-09-11  Mark Probst  <mark.probst@gmail.com>
1084
1085         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
1086         Endianness fixes for MonoSymbolFileOffsetTable.
1087
1088 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
1089
1090         * process.c (complete_path) : Removing quotes from the 
1091           input path.  The glib file routines do not handle file paths
1092           that have quotes around them.
1093
1094         Code is contributed under MIT/X11 license.
1095
1096 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
1097
1098         * socket-io.h : Adding a comment to provide locations where 
1099           changes to MonoSocketAsyncResult need to be synced.
1100
1101         Code is contributed under MIT/X11 license.
1102
1103 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
1104
1105         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
1106         parameters as well. Fixes #425001.
1107
1108 2008-09-08  Miguel de Icaza  <miguel@novell.com>
1109
1110         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
1111         windows build.
1112
1113 2008-09-07  Miguel de Icaza  <miguel@novell.com>
1114
1115         * console-io.c: Add support for tracking the window size if it
1116         changes.
1117
1118         The setup is very simple: the TtySetup function will now return a
1119         pointer to a location in memory that tracks the current console
1120         size.  The managed code checks its current value every time its
1121         queried against the last value set, and updates accordingly.
1122
1123         With this setup we can work with multiple consoles, and we do not
1124         require to poke into managed code from a signal handler.
1125
1126         Additionally, the environment for COLUMNS and LINES is now handled
1127         in unmanaged code.
1128
1129         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
1130
1131 2008-09-07  Mark Probst  <mark.probst@gmail.com>
1132
1133         * marshal.c (mono_type_native_stack_size): Treat
1134         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
1135
1136 2008-09-04  Jb Evain  <jbevain@novell.com>
1137
1138         * class.c (mono_class_is_assignable_from): fix assignability of nullables
1139         to nullables.
1140
1141 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
1142
1143         * verify.c (verify_type_compatibility_full): Revert change
1144         to allow converting a native int to unmanaged pointer be verifiable
1145         under non-strict mode.
1146         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
1147
1148         * verify.c: Added some TODOs.
1149
1150 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
1151
1152         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
1153           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
1154           Changed to use GlobalAlloc for the memory returned on Windows platforms.
1155
1156         Code is contributed under MIT/X11 license.
1157
1158 2008-09-02  Jb Evain  <jbevain@novell.com>
1159
1160         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
1161
1162 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
1163
1164         reflection.c (typebuilder_setup_fields): Handle classes with
1165         explicit size.
1166
1167 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
1168
1169         class.c (mono_class_setup_events): Add memory barrier due to
1170         double checked locking.
1171         
1172         class.c (mono_class_setup_properties): Same.
1173
1174 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
1175
1176         * class.c (mono_class_is_assignable_from): Fix the build.
1177         
1178         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
1179         before accessing klass->interface_bitmap. Fixes #421744.
1180
1181 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
1182
1183         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
1184         the runtime into no-exec mode, useful when running the AOT compiler.
1185
1186         * appdomain.c gc.c object.c: Avoid executing managed code when running
1187         in no-exec mode.
1188         
1189         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
1190
1191         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
1192         special case when the mono_assembly_loaded () returns NULL because the 
1193         search hook is not installed.
1194
1195 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
1196
1197         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
1198         crashes in bstr marshalling on linux.
1199
1200 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
1201
1202         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
1203         with more than one parameter.
1204
1205 2008-08-24  Miguel de Icaza  <miguel@novell.com>
1206
1207         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
1208         start/stop flow control as well when turning off ICANON (allows
1209         C-s and C-q to be read by Console.ReadKey).
1210
1211 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
1212
1213         * class.c (mono_class_init): Move the initialization of nested classes
1214         into mono_class_get_nested_types (). Fixes #418433.
1215
1216         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
1217         flag.
1218
1219         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
1220         iterating tough the nested classes of a class.
1221
1222 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
1223
1224         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
1225         on arm.
1226
1227 2008-08-22  Miguel de Icaza  <miguel@novell.com>
1228
1229         * console-io.c (sigcont_handler): Support signal chaining for
1230         SIGCONT.
1231
1232         (console_set_signal_handlers): Use best practices with sigaction,
1233         clear the structure before using it. 
1234
1235 2008-08-22  Robert Jordan  <robertj@gmx.net>
1236
1237         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
1238         Fix the Windows build.
1239
1240 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
1241
1242         * class.c (mono_class_generic_sharing_enabled): Make the default
1243         sharing mode 'corlib'.
1244
1245 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
1246
1247         * console-io.c (console_set_signal_handlers): Fix a warning.
1248
1249         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
1250         method normally, the JIT will take care of avoiding recursion.
1251
1252 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
1253
1254         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
1255
1256         Code is contributed under MIT/X11 license.
1257
1258 2008-08-20  Miguel de Icaza  <miguel@novell.com>
1259
1260         * console-io.c (sigcont_handler): We need to restore the entire
1261         termios state, not only the original settings, as things like echo
1262         can be controlled after this (Booish exposes this issue with its
1263         own ReadLine implementation).
1264
1265         Additionally, we need to set the terminal back into keypad_xmit
1266         mode.
1267         
1268         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
1269         string as a paramter as well.   Otherwise we get different
1270         keyboard sequences.
1271
1272 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
1273
1274         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
1275         delegates with byref out parameter passing. Fixes #351520.
1276
1277         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
1278         a generic context.
1279         (mono_type_get_desc): Add the type arguments for GENERICINST.
1280         (mono_method_full_name): Stringify the class name using mono_type_full_name
1281         so it picks up generic arguments.
1282
1283 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
1284
1285         * console-io.c: Removed debug output.
1286
1287 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
1288
1289         reflection.c (mono_reflection_create_runtime_class): Alloc
1290         the nested classes linked list using the dynamic image mempool.
1291         Fixes leak in corlib compilation.
1292
1293 2008-08-19  Miguel de Icaza  <miguel@novell.com>
1294
1295         * console-io.c: Fix incredibly annoying behavior on the console
1296         after resuming execution after control-z.   This affected every
1297         console application.
1298
1299 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
1300
1301         * mempool-internals.h: Header for mono private mempool functions. The first
1302         two function are for allocating glib linked lists using pools.
1303
1304         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
1305
1306         * Makefile.am: Added mempool-internals.h.
1307
1308 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
1309
1310         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
1311         (mono_domain_free): Ditto.
1312
1313         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
1314         be used by the JIT to store its domain-specific information, instead of putting
1315         it directly into MonoDomain.
1316
1317         * domain.c (mono_install_create_domain_hook): New helper function to install
1318         a hook which initializes domain->runtime_info.
1319
1320         * domain.c (mono_install_free_domain_hook): Ditto.
1321         
1322 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
1323
1324         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
1325         asserting if the ares parameter is null.
1326
1327         * mono-perfcounters.c: Fix warnings.
1328
1329         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
1330         is not needed, don't check for interruptions either.
1331         (mono_marshal_get_delegate_end_invoke): Ditto.
1332
1333 2008-08-15  Marek Habersack  <mhabersack@novell.com>
1334
1335         * mono-perfcounters.c (predef_readonly_counter): added support for
1336         reading the ASP.NET Requests Queued counter from another process.
1337
1338 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
1339
1340         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
1341         MonoImage to simplify the AOT code.
1342
1343 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
1344
1345         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
1346         marshalling. Fixes #416078.
1347
1348 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
1349         
1350         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
1351         it is set, looking up the icall address is deferred to the JIT, since 
1352         in embedded scenarios, the icall might not be registered in the runtime
1353         doing the AOT compilation. Backported from the 2.0 branch.
1354
1355 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
1356
1357         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
1358         Fixes #415621.
1359
1360 2008-08-05  Marek Habersack  <mhabersack@novell.com>
1361
1362         * Makefile.am: added support for cross-compilation.
1363
1364 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
1365
1366         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
1367
1368 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
1369
1370         * mono-perfcounters.c: jitted methods and jitted bytes counters.
1371
1372 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
1373
1374         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
1375         mono-perfcounters.c: performance counters implementation.
1376
1377 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
1378
1379         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
1380         to gpointer, letting the AOT code decide what to store in it.
1381
1382 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
1383
1384         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
1385           mono_class_setup_methods if the methods are not initialized.
1386
1387         Code is contributed under MIT/X11 license.
1388
1389 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
1390
1391         * verify.c: Remove some debug code I commited by accident.
1392
1393         * verify.c (mono_method_is_valid_in_context): Change the return value
1394         to make possible to distinguish between invalid and unverifiable.
1395
1396         * verify.c (verifier_load_method): Don't return NULL for unverifiable
1397         methods.
1398
1399 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
1400
1401         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
1402         constraints. Fixes regression in gtest-253.
1403
1404 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
1405
1406         * verify.c (mono_verifier_verify_class): Don't allow generic types
1407         with explicit layout.
1408
1409         * verify.c (mono_method_verify): Check locals and argument types.
1410
1411 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
1412
1413         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
1414         wait if the thread is in StopRequested state.
1415
1416         * class.c (mono_class_from_name): Refactor the module searching code into
1417         a separate function so it can be reused in the AOT case too.
1418
1419 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
1420
1421         * verify.c (mono_type_is_valid_in_context): Improve the error message.
1422         Check both the type and it's generic type definition for loader errors.
1423         
1424         * verify.c (mono_method_is_valid_in_context): Don't generate another
1425         error when a type errors occur, this leads to the wrong exception been
1426         thrown.
1427
1428 2008-07-28  Dick Porter  <dick@ximian.com>
1429
1430         * icall-def.h
1431         * process.c
1432         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
1433         New internal calls to duplicate and close a process handle.
1434
1435 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
1436
1437         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
1438
1439 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
1440
1441         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
1442
1443 2008-07-27  Robert Jordan  <robertj@gmx.net>
1444
1445         * class.c (mono_class_init): Don't compute class.has_finalize for
1446         valuetypes. Fixes #412477.
1447
1448 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
1449
1450         * verify.c: Implement constraint equivalence checking.
1451         This is required when a generic parameter is used as
1452         argument to a constrained one.
1453
1454         Fixes #410637.
1455
1456 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
1457
1458         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1459
1460         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
1461
1462         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
1463         synch with managed object layout.
1464
1465 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
1466
1467         * verify.c (do_branch_op): Handle valuetypes and generic
1468         arguments properly.
1469
1470         * verify.c (do_cmp_op): Same.
1471
1472         Fixes #410383.
1473
1474 2008-07-24  Mark Probst  <mark.probst@gmail.com>
1475
1476         * generic-sharing.c: Fix memory leaks.
1477
1478         * class.c, class-internals.h: Make
1479         mono_class_inflate_generic_type_with_mempool() non-static.
1480
1481 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
1482
1483         * pedump.c (dump_verify_info): Dump full class name.
1484
1485 2008-07-24  Mark Probst  <mark.probst@gmail.com>
1486
1487         * generic-sharing.c: Removed some old code that didn't do anything.
1488
1489 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
1490         * profiler.c: Added runtime_initialized_event,
1491         mono_profiler_install_runtime_initialized and
1492         mono_profiler_runtime_initialized. This new hook tells the profiler
1493         when the runtime is sufficiently initialized to be able to call
1494         mono_thread_attach on the root appdomain.
1495         * profiler.h, profiler-private.h: Likewise.
1496
1497 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
1498
1499         * verify.c (do_cast): Do boxing for generic arguments as well.
1500
1501         * class.c (is_nesting_type): Drop generic instantiations before
1502         checking for nesting.
1503
1504         * class.c (can_access_instantiation): Allow access to generic
1505         arguments.
1506
1507 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
1508
1509         * verify.c (verify_class_for_overlapping_reference_fields):
1510         On some cases, the field size might be zero, guard against that.
1511         Fix the explicit layout check to work as expected.
1512
1513 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
1514
1515         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
1516         mono_thread_resume () during shutdown, since the thread we want to abort
1517         might be suspended.
1518
1519 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
1520
1521         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
1522         warning.
1523
1524         * debug-mono-symfile.c: Fix a warning.
1525
1526         * mono-perfcounters.c (get_cpu_times): Fix a warning.
1527
1528         * object.c (mono_class_vtable): Check if exception_type is set, and return
1529         NULL as defined by the function comments.
1530
1531 2008-07-22  Mark Probst  <mark.probst@gmail.com>
1532
1533         * mempool.c: Use malloc for every single mempool allocation if the
1534         configure option is set.  This makes it easier to track mempool
1535         allocations with tools like Valgrind.
1536
1537 2008-07-22  Jb Evain  <jbevain@novell.com>
1538
1539         * reflection.c (create_dynamic_mono_image): emit the same
1540         metadata version that SL2 does when creating a SL2 image.
1541
1542 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
1543
1544         * icall-def.h:
1545         * icall.c: New icall System.Enum:get_hashcode. This function
1546         avoids the overhead of boxing the enum to the underlying type.
1547
1548 2008-07-21  Mark Probst  <mark.probst@gmail.com>
1549
1550         * reflection.c (mono_method_get_object): Don't let static RGCTX
1551         invoke wrappers get into MonoReflectionMethods.
1552
1553 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
1554
1555         * object-internals.h:
1556         * object.c: New mono_runtime_class_init_full function
1557         that makes throwing the exception optinal.
1558
1559         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
1560         for the case where the exception object is supplied.
1561
1562 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
1563
1564         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
1565         old ld versions.
1566
1567         Contributed under MIT/X11 license.
1568
1569 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
1570
1571         * string-icalls.c (ves_icall_System_String_InternalSplit):
1572         Optimize array allocation by caching the MonoClass of the
1573         array type.
1574
1575         * icall.c (ves_icall_Type_GetMethodsByName): Same.
1576
1577         * reflection.c (mono_param_get_objects): Same.
1578
1579 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
1580
1581         * icall-def.h:
1582         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
1583         It inflates the given type using the class context.
1584
1585 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
1586
1587         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
1588         the vtable if it already exists.
1589
1590         * object-internals.h: Add mono_class_try_get_vtable as part of the
1591         internal API.
1592
1593         * reflection.c (mono_type_get_object): Use the MonoObject from the
1594         vtable when possible. Reduces locking contention on reflection heavy
1595         code.
1596
1597 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
1598
1599         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
1600         g_bit_nth_msf () since that macro is not implemented in eglib.
1601
1602 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
1603
1604         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
1605         on platforms which do not support it.
1606
1607 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
1608
1609         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
1610
1611 2008-07-11  Martin Baulig  <martin@ximian.com>
1612
1613         * mono-debug-debugger.h
1614         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
1615
1616         * mono-debug-debugger.c
1617         (_mono_debugger_interruption_request): New global volatile variable.
1618         (mono_debugger_check_interruption): New public function.
1619
1620         * threads.c
1621         (mono_thread_current_check_pending_interrupt): Call
1622         mono_debugger_check_interruption().
1623         (mono_thread_interruption_checkpoint_request): Likewise.
1624
1625 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1626
1627         * verify.c: Add more type checks for loaded types. Verify the result
1628         handle from ldtoken.
1629
1630 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1631
1632         * loader.c (field_from_memberref): Don't crash if the field
1633         wasn't found.
1634
1635 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1636
1637         * verify.c: Verify if type and method instantiations
1638         don't have invalid VAR or MVAR arguments.
1639
1640 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1641
1642         * verify.c: Fix double free of function pointer list.
1643
1644 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
1645
1646         * object.c (mono_string_to_utf8): Comment the new code as it
1647         breaks under eglib.
1648
1649 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
1650
1651         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
1652
1653 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
1654
1655         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
1656           is not throw too many times.
1657
1658         Code is contributed under MIT/X11 license.
1659
1660 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
1661
1662         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
1663         debugging is turned off.
1664
1665 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
1666
1667         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
1668
1669 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1670
1671         * class-internals.h, class.c: Added new generic sharing option:
1672         Share only stuff in System.Collections.Generic, which is now the
1673         default.
1674
1675 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1676
1677         * generic-sharing.c, class-internals.h: New function for getting a
1678         generic method in a generic class given the corresponding method
1679         for a different instantiation of the class.  Partly refactored
1680         from mini-trampolines.c.
1681
1682         * class.c: Make sure generic methods have a class_inst if they are
1683         part of a generic class.
1684
1685         * metadata.c (mono_type_stack_size_internal): Handle type
1686         variables.
1687
1688 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1689
1690         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
1691         Signifies whether information on the this/vtable/mrgctx variable
1692         is available.
1693
1694 2008-07-04  Mark Probst  <mark.probst@gmail.com>
1695
1696         * object.c, object-internals.h, icall.c: New function
1697         mono_delegate_ctor_with_method(), which does the same as
1698         mono_delegate_ctor(), but takes an explicit method argument
1699         instead of taking the method from the jit info.
1700
1701         * marshal.c: When creating a delegate with an inflated method take
1702         the "this" argument as the target class for the castclass.
1703
1704 2008-07-03  Mark Probst  <mark.probst@gmail.com>
1705
1706         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
1707         mono_jit_info_table_find() to perform very badly in some cases.
1708
1709 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
1710
1711         * icall.c (type_from_typename): Handle 'string'.
1712
1713         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
1714         wrappers into the wrapper_hash, since the key is not a MonoMethod.
1715
1716 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
1717
1718         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
1719
1720         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
1721         number of available managed allocator types.
1722
1723         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
1724         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
1725
1726 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
1727
1728         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
1729         which is a low level lock protecting just the 'jit_code_hash' hash table.
1730
1731         * domain.c: Initialize+cleanup jit_code_hash_lock.
1732         
1733 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
1734
1735         * coree.c (mono_load_coree): Set coree_module_handle global variable only
1736         after initialization.
1737
1738         * coree.h: Make MonoFixupExe internal.
1739
1740         Contributed under MIT/X11 license.
1741
1742 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
1743
1744         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
1745         because that is platform independent. Check NumberOfRvaAndSizes in PE32
1746         as well.
1747         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
1748         image being loaded is a CLI image and _CorValidateImage gets called.
1749
1750         * coree.h: Add MonoLoadImage.
1751
1752         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
1753         instead of LoadLibrary.
1754
1755         Contributed under MIT/X11 license.
1756
1757 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
1758
1759         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
1760         for any primitive type.
1761
1762 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
1763
1764         * object.c (mono_array_new_specific): Optimize this and the other allocation
1765         functions a bit.
1766         
1767         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
1768         domains too if mono_dont_free_domains is set.
1769
1770         * domain-internals.h (mono_dont_free_domains): New internal option controlling
1771         whenever to free appdomain data after it has been unloaded.
1772
1773         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
1774         
1775 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
1776
1777         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
1778         (mono_method_get_equivalent_method): Fix a warning.
1779
1780         * object.c (mono_message_init): Avoid looking up array types for each call.
1781
1782 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
1783
1784         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
1785         call.
1786
1787         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
1788         even more.
1789
1790         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
1791         each iteration.
1792
1793         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
1794         fields of an enum.
1795
1796 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
1797
1798         * object.c (mono_value_box): Fix boxing of nullables.
1799
1800 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
1801
1802         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
1803         mono_module_handle that is defined by the linker; no initialization required.
1804         * coree.h: Remove mono_module_handle, add __ImageBase, update
1805         mono_image_open_from_module_handle.
1806         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
1807         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
1808         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
1809         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
1810         to 4 GB away from image base address. IA64 version is not tested but was very
1811         easy to implement and should work if we ever need it.
1812         * domain.c (mono_init_internal): Avoid system error message boxes.
1813         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
1814         with has_entry_point. Handle do_mono_image_load fauilre correctly.
1815         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
1816         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
1817         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
1818
1819         Contributed under MIT/X11 license.
1820
1821 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1822
1823         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
1824         as part of the private mono API.
1825         
1826         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
1827         Do proper argument checking for methods that belong to generic classes.
1828         Do proper type resolution for GMFH/2.
1829         Fixes #377324.
1830         
1831 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1832
1833         * verify.c (do_switch): Fix a memory corruption bug with
1834         the jump index is out of bound.
1835
1836 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1837
1838         * verify.c: Disable debug code.
1839
1840 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1841
1842         * reflection.c (mono_image_get_methodbuilder_token): Use
1843         mono_image_get_methodspec_token_for_generic_method_definition
1844         instead of mono_image_get_memberref_token. We cache more memberef
1845         entries now.
1846
1847 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1848
1849         * verify.c: Inflate exception clause types.
1850         Fixes #402606.
1851         
1852 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1853
1854         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
1855         name.
1856
1857         * reflection.c (mono_image_get_ctorbuilder_token): Same.
1858
1859         * reflection.c (mono_image_create_method_token): Same.
1860
1861 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1862
1863         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
1864         It does the same as mono_image_get_methodref_token but works on
1865         MethodBuilder.
1866
1867         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
1868         and always generate a methodspec. This follows the old behavior and fixes
1869         the regressions in System.Core. 
1870
1871 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
1872
1873         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
1874         don't event mono_class_get () succeeds. Fixes #402182.
1875
1876 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
1877
1878         * metadata-internals.h: Added MonoDynamicImage::methodspec
1879         hashtable to store methodspec tokens created for MethodBuilders.
1880
1881         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
1882         MethodBuilders as open instantiations if a methodspec was requested.
1883
1884         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
1885
1886         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
1887
1888         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
1889
1890         Fixes bug #349190.
1891
1892 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
1893
1894         * loader.c (method_from_methodspec): Avoid crashing if the
1895         method lookup fails.
1896
1897 2008-06-20  Dick Porter  <dick@ximian.com>
1898
1899         * socket-io.c (get_socket_assembly): Cope with Moonlight network
1900         classes being in a different assembly.  Fixes bug 399184.
1901
1902 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
1903
1904         * loader.c (mono_loader_init): Make this callable multiple times.
1905         (mono_dllmap_insert): Call mono_loader_init () so this works even before
1906         the runtime is initialized. Fixes #401755.
1907
1908 2008-06-19  Dick Porter  <dick@ximian.com>
1909
1910         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
1911         Fixes bug 349688.
1912
1913 2008-06-19  Dick Porter  <dick@ximian.com>
1914
1915         * socket-io.c:
1916         * icall-def.h: Implement Socket generic Send() and Receive()
1917         methods.  Fixes bug 395168.
1918
1919 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
1920
1921         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
1922
1923         Contributed under MIT/X11 license.
1924
1925 2008-06-18  Martin Baulig  <martin@ximian.com>
1926
1927         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
1928         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
1929         set to 80.0.  The debugger <-> runtime interface is now frozen as
1930         well.   
1931
1932         * mono-debug.c
1933         (mono_debug_debugger_version): Bump to 4.
1934
1935 2008-06-18  Martin Baulig  <martin@ximian.com>
1936
1937         * debug-mono-symfile.c
1938         (load_symfile): Don't check the minor version.
1939
1940         * debug-mono-symfile.h: Bump the version number to 50.0.
1941
1942 2008-06-18  Martin Baulig  <martin@ximian.com>
1943
1944         * debug-mono-symfile.c
1945         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
1946         minimum required version.
1947
1948 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
1949
1950         * reflection.c (mono_custom_attrs_from_property): Fix support for
1951         retriveving cattrs of dynamic inflated generic types.
1952
1953         * reflection.c (mono_custom_attrs_from_event): Same.
1954
1955         * reflection.c (mono_custom_attrs_from_field): Same;
1956
1957         * reflection.c (typebuilder_setup_events): Same cattrs of events.
1958
1959         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
1960         Moved to metadata.c.
1961
1962         * metadata.c: New functions to retrive the equivalent field, event
1963         of property from the generic type definition.
1964
1965         * metadata-internals.h: Added new functions from metadata.c.
1966
1967 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
1968
1969         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
1970         to cached in a mempool is used.
1971
1972         * metadata.c (free_generic_class): In some situations field generic_info type
1973         is not properly dup'ed and leads to double free'ing.
1974
1975         Fixes #400643.
1976
1977 2008-06-17  Mark Probst  <mark.probst@gmail.com>
1978
1979         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
1980         this arguments (will be needed later for generic methods).
1981         Collect stats.
1982
1983 2008-06-17  Mark Probst  <mark.probst@gmail.com>
1984
1985         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
1986         Create a static RGCTX invoke wrapper for methods which require it.
1987
1988 2008-06-17  Mark Probst  <mark.probst@gmail.com>
1989
1990         * object.c, class-internals.h: New function for checking whether
1991         an individual field is special static.
1992
1993 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
1994
1995         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
1996         linear search since the table is sorted.
1997
1998         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
1999         Fixes #324180.
2000
2001 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
2002
2003         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
2004         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
2005
2006         * gc.c (mono_domain_finalize): Allow an infinite timeout.
2007
2008         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
2009         
2010         * threads.c (mono_thread_request_interruption): Get rid of locking, use
2011         InterlockedCompareExchange to query and modify 
2012         thread->interruption_requested.
2013
2014         * object-internals.h (struct _MonoThread): Change interruption_requested
2015         to a gint32 so it can be modified by atomic operations. Add 
2016         'critical_region_level' from the managed side, change small_id to a guint32,
2017         add new set of 'unused' fields.
2018
2019         * appdomain.c: Bump corlib version.
2020
2021 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
2022
2023         * class.c (mono_class_from_name): Search modules as well. Fixes
2024         #322332.
2025
2026 2008-06-13  Mark Probst  <mark.probst@gmail.com>
2027
2028         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
2029         templates.  Templates are generalized with an additional type_argc
2030         argument.  RGCTX templates have type_argc==0, MRGCTX templates
2031         have type_argc>0.
2032
2033         * domain-internals.h, domain.c: New hash table for looking up
2034         MRGCTXs.
2035
2036         * metadata.c, metadata-internals.h: Rename hash and equal
2037         functions for MonoGenericInst's and make them public.
2038
2039         * class-internals.h: New data structures for the MRGCTX.  Macros
2040         for distinguishing slots in the RGCTX and the MRGCTX.
2041
2042 2008-06-13  Mark Probst  <mark.probst@gmail.com>
2043
2044         * object.c (mono_method_get_imt_slot): Put the same methods of
2045         different instantiations of the same generic interface in the same
2046         IMT slots, to make generic sharing simpler.
2047
2048 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2049
2050         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
2051
2052         * metadata.c (mono_metadata_field_info_with_mempool): Added.
2053         This function works just like mono_metadata_field_info, but
2054         accept a mempool as argument to be used allocating memory.
2055
2056         * marshal.c (mono_marshal_load_type_info): Use new function
2057         to load marshal data into image mempool.
2058
2059 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2060
2061         * class.c (mono_class_inflate_generic_type_with_mempool):
2062         This function allows to inflate a generic type using
2063         a mempool.
2064
2065         * class.c (inflate_generic_type): Take a mempool as argument
2066         and use it to do type dup'ing.
2067
2068         * class.c (mono_class_setup_fields): Field type for generic
2069         generic classes are allocated from the image mempool.
2070
2071         * metadata.c (free_generic_class): Inflated field type is
2072         now allocated in the image mempool.
2073
2074 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2075
2076         * threads.c (thread_cleanup): Free MonoThread::name.
2077
2078 2008-06-12  Marek Habersack  <mhabersack@novell.com>
2079
2080         * appdomain.c (ensure_directory_exists): avoid unnecessary
2081         mkdir(2) calls when the shadow directory already exists.
2082         (mono_make_shadow_copy): copy also satellite assemblies from the
2083         private bin directories.
2084
2085 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
2086
2087         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
2088         
2089         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
2090         a page boundary. Fixes #396219.
2091
2092 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2093
2094         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
2095         due to double-checked locking.
2096
2097 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2098
2099         * assembly.c (build_assembly_name): Release memory on failure.
2100
2101         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
2102
2103 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2104
2105         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
2106         memory on failure.
2107
2108 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2109
2110         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
2111         memory on failure.
2112
2113 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2114
2115         * loader.c (field_from_memberref): Check if field signature type is equal
2116         to the non-inflated type of the field. Fixes #398980.
2117
2118 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
2119
2120         * assembly.c (mono_assembly_load_from_full): Call 
2121         mono_assembly_load_friends () outside the assemblies lock, since it can
2122         acquire the loader lock. Fixes #323696.
2123
2124         * reflection.c (resolve_object): Inflate the inst with the context for
2125         FieldOnTypeBuilderInst. Fixes #399010.
2126
2127 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2128
2129         * reflection.c (mono_image_get_field_on_inst_token): Don't
2130         inflate the field to encode it's signature. If it's a
2131         VAR or MVAR it should stay that way in the signature.
2132         Fixes #399047.
2133
2134 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2135
2136         * reflection.c (resolve_object): Release memory of inflated types.
2137
2138 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2139
2140         * loader.c (mono_method_get_signature_full): Remove assert about
2141         loading a methodspec to a generic method. We have such methods, such as
2142         System.Threading.Interlocked::CompareExchange<T>.
2143         This assert was removed since it crashes the verifier when it checks
2144         methods calling CompareExchange<T>.
2145
2146 2008-06-10  Marek Safar  <marek.safar@gmail.com>
2147
2148         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
2149         of Type array and not MonoType.
2150
2151 2008-06-10  Marek Habersack  <mhabersack@novell.com>
2152
2153         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
2154         <lupus@ximian.com>
2155
2156 2008-06-10  Martin Baulig  <martin@ximian.com>
2157
2158         * debug-mono-symfile.h
2159         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
2160         changes to the file format, but we were generating incorrect
2161         source file indices in the line number table due to a bug, which
2162         made backtraces report an incorrect source file.
2163
2164 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2165
2166         * mono-debug.c: Moved mono_debug_free_method_jit_info from
2167         mini/debug-mini.c to here.
2168
2169         * mono-debug.c (il_offset_from_address): Free memory from find_method.
2170
2171         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
2172         use it to release structs returned by mono_debug_find_method.
2173
2174 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
2175
2176         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
2177         since it needs to set method->slot for all interface methods.
2178
2179 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2180
2181         * class-internals.h: Forgot to add.
2182
2183 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2184
2185         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
2186
2187         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
2188         Lookup the custom attributes from property_hash.
2189
2190         * reflection.c (mono_save_custom_attrs): Save the custom attributes
2191         in property_hash. Allocate all data using the image mempool.
2192
2193         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
2194         for dynamic_custom_attrs to checks if the image is dynamic.
2195
2196 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
2197
2198         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
2199         assemblies array.
2200         
2201         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
2202         runtime functions while holding the domain assemblies lock.
2203
2204 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2205
2206         * verify.c: Reapplied the last bit of the reverted changes.
2207
2208 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2209
2210         * verify.c: Reapplied more of the reverted changes.
2211
2212 2008-06-09  Martin Baulig  <martin@ximian.com>
2213
2214         * debug-mono-symfile.c (load_symfile): Check the major version
2215         first; if it's wrong, don't print the minor version in the error message.
2216
2217 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
2218
2219         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
2220         lock instead of the domain lock to avoid deadlocks, since the thread might
2221         already hold the loader lock.
2222
2223         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
2224         (mono_thread_attach): Ditto.
2225
2226         * monitor.c: Use a TLS variable for holding the current thread id instead
2227         of calling pthread_self ().
2228         (mono_monitor_init_tls): New internal function to initialize the TLS
2229         variable.
2230         (mono_monitor_try_enter_internal): Put the owner == id check after the
2231         owner == 0 check.
2232
2233         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
2234         missed optimizations when using gcc-4.3.
2235
2236 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
2237
2238         * reflection.c (mono_dynamic_image_free): Free the memory
2239         used by MonoGenericParam in MonoDynamicImage::gen_param.
2240
2241         * reflection.c (mono_reflection_setup_generic_class): Allocate
2242         container from mempool.
2243
2244         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
2245         container from mempool.
2246
2247 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
2248
2249         * threads.c (mono_set_pending_exception): New internal function to set the
2250         pending exception of the current thread.
2251         (mono_thread_get_and_clear_pending_exception): Check for 
2252         thread->pending_exception as well.
2253
2254         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
2255
2256         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
2257         it can trigger a collection.
2258
2259 2008-06-06  Martin Baulig  <martin@ximian.com>
2260
2261         Merged the `debugger-kahalo' branch.
2262
2263         * mono-debug.h
2264         (MONO_DEBUGGER_VERSION): Bumped to 72.
2265
2266         * debug-mono-symfile.h
2267         (MonoSymbolFileMethodIndexEntry): Removed.
2268         (MonoSymbolFileMethodEntry): New public typedef.
2269         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
2270         (MonoSymbolFileSourceEntry): Remove everything except `index' and
2271         `data_offset'.
2272         (MonoSymbolFileMethodEntry): Removed.
2273         (MonoSymbolFileLexicalBlockEntry): Removed.
2274         (MonoSymbolFileLineNumberEntry): Removed.
2275         (MonoDebugLexicalBlockEntry): Removed.
2276         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
2277         removed `num_il_offsets' and `il_offsets'.
2278         (MonoSymbolFile): Replace `version' with `major_version' and
2279         `minor_version'.
2280         (MONO_SYMBOL_FILE_VERSION): Replace with
2281         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
2282         `MONO_SYMBOL_FILE_MINOR_VERSION'.
2283
2284         * debug-mono-symfile.c
2285         (mono_debug_symfile_lookup_location): Add support for the new line
2286         number table format.
2287
2288 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2289
2290         * metadata.c (free_generic_class): Release the inflated
2291         MonoClass of dynamic generic classes if it's not a generic
2292         type definition.
2293
2294 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2295
2296         * verify.c: Reapplied more of the reverted changes.
2297
2298 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2299
2300         * reflection.c (lookup_custom_attr): Clean the cached flag or
2301         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
2302         for SRE types.
2303
2304 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2305
2306         * verify.c: Reapplied a small part of the reverted changes.
2307
2308 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
2309
2310         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2311
2312         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
2313         previously in managed code.
2314         (mono_monitor_exit): Ditto.
2315         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
2316
2317         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
2318         the managed definition.
2319
2320 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
2321
2322         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
2323
2324 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
2325
2326         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
2327         
2328         * monitor.c: Add some micro optimizations.
2329
2330         * icall.c (type_from_typename): Handle 'bool'.
2331
2332 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
2333
2334         * verify.c: Implement constructor verification per P III 1.8.1.4.
2335         Fixes #396716.
2336
2337 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
2338
2339         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
2340         holding the assemblies lock here too.
2341
2342 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2343
2344         * verify.c: Kill stack_top function.
2345
2346 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2347
2348         * verify.c: Kill stack_get function.
2349
2350 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2351
2352         * verify.c (mono_method_verify): Last change broke the build. Fixed.
2353
2354 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2355
2356         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
2357         more reliable.
2358
2359         * verify.c (mono_method_verify): Inflate params and locals to avoid
2360         mismatch when checking for compatibility.
2361
2362 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
2363
2364         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
2365         Length prefix should be size in bytes. Fix bug #339530.
2366         
2367         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
2368         Length prefix should be size in bytes. Fix bug #339530.
2369
2370         Code is contributed under MIT/X11 license.
2371
2372 2008-06-05  Bill Holmes <billholmes54@gmail.com>
2373
2374         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
2375
2376         Contributed under MIT/X11 license.
2377
2378 2008-06-05  Martin Baulig  <martin@ximian.com>
2379
2380         * mono-debug-debugger.c
2381         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
2382
2383 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
2384
2385         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
2386         while holding the assemblies lock to prevent deadlocks. Handle the case
2387         where the search hook returns NULL but the assembly was still loaded.
2388         Fixes #323696.
2389
2390         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
2391         modify domain state.
2392
2393 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
2394
2395         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
2396         * Makefile.am (pedump_LDADD): Post-process object files and
2397         add dtrace-generated object file, if necessary.
2398
2399         Code is contributed under MIT/X11 license.
2400
2401 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2402
2403         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
2404
2405 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2406
2407         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
2408
2409 2008-06-04  Mark Probst  <mark.probst@gmail.com>
2410
2411         * threads.c: Try to free everything from the delayed free table
2412         when shutting down threads, and set the variable to NULL after the
2413         table is freed so that calling
2414         mono_thread_hazardous_try_free_all() when shutting down the root
2415         domain doesn't crash.
2416
2417 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2418
2419         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
2420         the caller if resulting type was inflated.
2421
2422         * class.c (mono_class_create_from_typespec): Free the MonoType if it
2423         was inflated.
2424
2425         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
2426
2427
2428 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
2429
2430         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
2431         class library tests.
2432
2433         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
2434         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
2435         #396989.
2436
2437 2008-06-04  Mark Probst  <mark.probst@gmail.com>
2438
2439         * domain.c, domain-internals.h: The JIT infos are now freed by the
2440         JIT info table code.  They are freed immediately if there only a
2441         single JIT info table in circulation.  If there is more, the free
2442         is delayed via a queue.
2443
2444         * threads.c, threads-types.h: New hazard pointer function for
2445         freeing all freeable delayed items in one sitting.
2446
2447 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2448
2449         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
2450
2451         * reflection.c (typebuilder_setup_properties): Same.
2452
2453         * reflection.c (typebuilder_setup_events): Same.
2454
2455 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2456
2457         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
2458         and use it for allocating memory.
2459
2460         * reflection.c (mono_marshal_spec_from_builder): Same.
2461
2462         * reflection.c: Change code to use new signatures.
2463
2464         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
2465
2466 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
2467
2468         * decimal.c (rescale128): Put back one line which was accidently commented
2469         out.
2470         
2471         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
2472         to cause crashes.
2473
2474 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2475
2476         * reflection.c (mono_reflection_generic_class_initialize): Name must
2477         be always malloc'ed so we can free it later on. Do this for field, property
2478         and event.
2479
2480         * metadata.c (free_generic_class): Free field, property and event names.
2481
2482 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2483
2484         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
2485         instead of g_memdup.
2486
2487         * reflection.c (typebuilder_setup_fields): Same.
2488
2489 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
2490
2491         * decimal.c (rescale128): Optimize this function a bit more.
2492
2493 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2494
2495         * metadata.c (free_generic_class): Release some memory from
2496         SRE generic classes.
2497
2498 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2499
2500         * reflection.c (mono_image_get_generic_field_token): No reference
2501         to name is kept, free it.
2502
2503         * reflection.c (mono_reflection_generic_class_initialize): Free
2504         more memory of the inflated field.
2505
2506 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
2507
2508         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
2509         code.
2510
2511 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
2512
2513         * reflection.c (mono_dynamic_image_free): Release memory used by
2514         MonoDynamicImage::array_methods elements.
2515
2516         * reflection.c (assembly_add_win32_resources): Release memory after
2517         encoding.
2518
2519 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
2520
2521         * decimal.c (log2_32): Use an optimized version for this function too.
2522         
2523         * decimal.c (log2_64): Fix this on 32 bit machines.
2524
2525 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
2526
2527         * class.c (mono_dup_array_type): Implement allocation using a mempool.
2528
2529         * class.c (mono_metadata_signature_deep_dup): Same.
2530
2531         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
2532         a mempool.
2533
2534         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
2535
2536         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
2537
2538         * metadata-internals.h: Added mono_metadata_signature_dup_full.
2539
2540         * class-internals.h: Update signatures to take a MonoMemPool.
2541
2542 2008-06-02  Dick Porter  <dick@ximian.com>
2543
2544         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
2545         * icall-def.h: Add
2546         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
2547         FormatMessage API to get the error text.  Fixes bug 321827.
2548
2549 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
2550
2551         * decimal.c: Add some micro optimizations to make decimal operations faster.
2552
2553 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2554
2555         * reflection.c (method_encode_clauses): Take a mempool
2556         as parameter and use it to allocate the clause array.
2557
2558         * reflection.c (mono_image_get_field_on_inst_token): Free
2559         the inflated type after encoding it.
2560
2561         * reflection.c (mono_dynamic_image_free): Free each element
2562         of MonoDynamicImage::gen_params.
2563
2564         * reflection.c (reflection_methodbuilder_to_mono_method):
2565         Allocate the generic param array from the mempool.
2566         Allocate signature params from the mempool.
2567
2568         * reflection.c (mono_reflection_generic_class_initialize):
2569         Free inflated fields after been used.
2570
2571 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
2572
2573         * icall.c: Reapply the memory leak fixes as they no
2574         longer make mono crash.
2575
2576 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
2577
2578         * reflection.c (mono_type_get_object): Don't store the suplied
2579         MonoType with type_hash. A caller which pass a type that
2580         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
2581         might end with a pointer to freed memory.
2582         The solution is to use byval_arg or this_arg from the associated
2583         MonoClass of the supplied type.
2584
2585 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
2586
2587         * icall.c: Revert the rest of the last change as it breaks the build too.
2588
2589 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2590
2591         * icall.c: Revert a leak fix as it's breaking the build.
2592
2593 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2594
2595         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
2596
2597 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2598
2599         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
2600
2601 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2602
2603         * icall.c: Fix some memory leaks.
2604
2605 2008-05-29  Dick Porter  <dick@ximian.com>
2606
2607         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
2608         async socket operations from the pending list when a socket
2609         closes.  Leaving it until the threadpool services the event
2610         exposes a race condition when a socket descriptor is reused.
2611         Fixes bug 377589.
2612
2613 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2614
2615         * object.c: Fix negative index check for array alocation.
2616
2617 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2618
2619         * icall.c, marshal.c: Delegate wrappers should skip visibility.
2620         This check is performed by the verifier for IL created delegates
2621         and by Delegate::CreateDelegate for programatically created ones.
2622         Fixes #372406.
2623
2624 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2625
2626         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
2627         Fix code to use mono_array_size_t instead of int.
2628
2629         Based on patch by Luis F. Ortiz.
2630         Contributed under X11 license.
2631         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2632
2633 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2634
2635         * icall.c: Added ves_icall_System_Array_GetLongLength and
2636         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
2637         arrays.
2638
2639         * icall.h: Export both new functions.
2640
2641         Based on patch by Luis F. Ortiz.
2642         Contributed under X11 license.
2643         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2644
2645 2008-05-28  Martin Baulig  <martin@ximian.com>
2646
2647         The debugger now requires exactly r103463.
2648
2649         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
2650         This version is not supported by the debugger, wait for 72.
2651
2652 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2653
2654         * object.h: Changed array related functions to use
2655         mono_array_size_t instead of guint32. Forgot to commit this file.
2656
2657         Patch by Luis F. Ortiz.
2658         Contributed under X11 license.
2659         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2660
2661
2662 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2663
2664         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
2665         don't define it. Use the number literal instead.
2666
2667 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2668
2669         * icall.c: Changed array related functions to use
2670         mono_array_size_t instead of guint32.
2671
2672         * icall.c (ves_icall_System_Array_GetLength): Check for length
2673         overflow under MONO_BIG_ARRAYS.
2674
2675         Based on 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 Rodrigo Kumpera  <rkumpera@novell.com>
2680
2681         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
2682
2683         Based on patch by Luis F. Ortiz.
2684         Contributed under X11 license.
2685         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2686
2687 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2688
2689         * object.c, object.h: Changed array related functions to use
2690         mono_array_size_t instead of guint32.
2691
2692         Patch by Luis F. Ortiz.
2693         Contributed under X11 license.
2694         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2695
2696 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2697
2698         * object.h: Introduced mono_array_size_t typedef. This must be used
2699         in all places an array length is expected. This is 64bits wide if
2700         MONO_BIG_ARRAYS is enabled.
2701
2702         Patch by Luis F. Ortiz.
2703         Contributed under X11 license.
2704         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
2705
2706 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
2707
2708         * security-manager.c class.c: Set the class exception info by calling
2709         mono_class_set_failure ().
2710
2711         * class.c (mono_class_get_exception_data): New accessor function.
2712         (mono_class_set_failure): Store exception_data in the property hash.
2713
2714         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
2715         the struct as a property.
2716
2717         * loader.c (mono_get_method_full): Store the lookup result for method
2718         tokens in method_cache, the others in methodref_cache to decrease the memory
2719         usage of hash tables.
2720
2721         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
2722         (mono_image_init): method_cache is lazy inited now.
2723
2724         * metadata-internals.h (struct _MonoImage): Change method_cache to
2725         a MonoValueHashTable, add a separate methodref_cache.
2726
2727 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
2728
2729         * number-formatter.h: Fix tables to avoid arithemtic overflow in
2730           Double.ToString as exposed by Bug #383531.
2731
2732 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
2733
2734         * number-formatter.h: Make some tables static.
2735
2736         * class.c (mono_method_set_generic_container): New accessor function.
2737         (mono_method_get_generic_container): Ditto.
2738
2739         * class-internals.h (struct _MonoMethod): Remove rarely used 
2740         'generic_container' field, store it in the property hash instead. Add 
2741         'is_generic' boolean field instead.
2742
2743         * image.c (mono_image_init): Initialize property_hash.
2744         (mono_image_close): Destroy property_hash.
2745
2746         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
2747         hold rarely used fields of runtime structures belonging to this image.
2748
2749         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
2750         to get/set method->generic_container.
2751
2752         * loader.c (mono_get_method_from_token): Avoid loading the method header for
2753         generic methods.
2754
2755 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
2756
2757         * class.c (mono_class_inflate_generic_method_full): Don't increase
2758         mono_stats.inflated_method_count for methods found in the cache.
2759
2760         * threads.c (mono_thread_request_interruption): Add a comment about 
2761         QueueUserAPC ().
2762
2763 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
2764
2765         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
2766         interface_offsets_packed table.
2767         
2768         * class.c (mono_class_init): Remove some dead code.
2769
2770         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
2771         mono_class_setup_vtable () when CAS is active to detect security problems.
2772
2773 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
2774
2775         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
2776
2777         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
2778         parameters as it's irrelevant for delegate checking.
2779
2780 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
2781
2782         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
2783
2784         * class.c (mono_class_init): Control the creation of a generic vtable using
2785         a global which is true by default, but set to false by the runtime startup code.
2786         
2787         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
2788         Disabled for now since it breaks the embedding API.
2789         Move the setup of class->methods for arrays to mono_class_setup_methods ().
2790         (mono_class_setup_methods): Add a memory barrier.
2791
2792         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
2793         when mono_class_init () doesn't compute the generic vtable.
2794         
2795 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
2796         * profiler.c: Added mono_profiler_install_statistical_call_chain,
2797         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
2798         to support call chains (backtrace) in the stat profiler.
2799         * profiler.c, profiler-private.h: Likewise.
2800
2801 2008-05-22  Mark Probst  <mark.probst@gmail.com>
2802
2803         * generic-sharing.c: Init generic class when a method of it is
2804         requested via a runtime generic context.
2805
2806 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
2807
2808         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
2809
2810         * reflection.c (mono_type_get_object): Add a FIXME.
2811
2812         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
2813
2814         * class.c (mono_class_get_method_by_index): New helper function, returning an
2815         entry in the class->methods array.
2816
2817 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
2818
2819         * class.c (mono_class_init): Only do the array optimization for szarrays. 
2820         Avoid creating a generic vtable for generic instances as well.
2821         (mono_class_get_method_from_name_flags): Don't search in the metadata for
2822         generic instances.
2823
2824 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
2825
2826         * loader.c (mono_get_method_constrained): Inflate the signature
2827         with class context. Fix #325283.
2828
2829 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
2830
2831         * object.c (mono_class_create_runtime_vtable): Add a comment.
2832
2833         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
2834         where needed.
2835         (setup_interface_offsets): Handle the case when this is called twice for arrays.
2836         (mono_class_setup_vtable_general): Add an assert.
2837         (mono_class_init): Avoid creating a generic vtable for arrays.
2838
2839         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
2840         here, let mono_class_init () do that.
2841
2842         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
2843         interfaces in mscorlib.
2844
2845         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
2846         interfaces. Add some comments.
2847         (mono_class_init): Call mono_class_setup_methods () here since it is no
2848         longer called by mono_class_setup_vtable ().
2849
2850         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
2851         not set in class->vtable.
2852         (mono_class_create_runtime_vtable): Reenable the disabled code.
2853
2854         * object.c (mono_class_create_runtime_vtable): Disable the last change for
2855         now as it causes some test failures.
2856
2857         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
2858         if using the vtable trampoline. Also remove some strange code which put the
2859         generic methods themselves into the vtable slots. Remove the AOT init_vtable
2860         stuff as it is no longer needed.
2861
2862 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2863
2864         * pedump.c: Give make --verify all option check code as well.
2865         Using --verify code won't check for metadata now.
2866
2867 2008-05-19  Martin Baulig  <martin@ximian.com>
2868
2869         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
2870
2871         * mono-debug.c
2872         (_mono_debug_using_mono_debugger): New global variable; it's set
2873         directly by the debugger, so mono_debug_using_mono_debugger() also
2874         works after attaching.
2875
2876 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
2877
2878         * object.c (mono_class_create_runtime_vtable): Use memory barriers
2879         as we do double checked locking on MonoClass::runtime_info and
2880         MonoClassRuntimeInfo::domain_vtables.
2881
2882 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
2883
2884         * debug-helpers.c (print_field_value): Fix a warning.
2885
2886 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
2887
2888         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
2889         set in the AOT case.
2890
2891 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
2892
2893         * class.c (mono_class_setup_vtable_general): Use memory barriers
2894         as we do double checked locking on MonoClass::vtable.
2895
2896 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
2897
2898         * reflection.c (resolve_object): Inflate only if the generic context
2899         is not null. Fixes #389886.
2900
2901 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
2902
2903         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
2904         instead of g_free.
2905
2906         Code is contributed under MIT/X11 license.
2907
2908 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
2909
2910         * class.c: Revert unrelated change.
2911
2912 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
2913
2914         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
2915         a generic instantiation, use mono_class_from_mono_type instead of playing
2916         with MonoType directly.
2917
2918 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
2919
2920         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
2921         checks must ignore generic instantiations, so mono_class_has_parent is not
2922         suitable. Fixes #390128.
2923
2924 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
2925
2926         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
2927         it to avoid registering tokens during metadata generation. Fixes #390023.
2928
2929 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
2930
2931         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
2932         consistent.
2933
2934         Contributed under MIT/X11 license.
2935
2936 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
2937
2938         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
2939         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
2940         to fixup the EXE image.
2941         (mono_cleanup): Use mono_close_exe_image.
2942         (mono_close_exe_image): New function.
2943         * image.c: Include "marshal.h".
2944         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
2945         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
2946         counting when the image is loaded outside of mono_image_open_full. Set status
2947         based on GetLastError.
2948         * coree.c: Include required headers. Add init_from_coree.
2949         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
2950         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
2951         (_CorExeMain): Set init_from_coree.
2952         (CorExitProcess): Only call ExitProcess for now.
2953         (CorBindToRuntimeEx): New stub implementation.
2954         (CorBindToRuntime): New function.
2955         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
2956         (MonoFixupExe): ILONLY executables require no fixups.
2957         (mono_set_act_ctx): New function to set activation context.
2958         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
2959         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
2960         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
2961         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
2962         as MONO_INTERNAL.
2963         * domain-internals.h: Add mono_close_exe_image.
2964
2965         Contributed under MIT/X11 license.
2966
2967 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
2968
2969         * metadata.c (mono_metadata_compute_size): Correctly calculate field
2970         size for generic param and event tables. Fixes #388977.
2971
2972 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
2973
2974         * loader.c (mono_method_signature): Use memory barriers because of the double
2975         checked locking pattern.
2976
2977         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
2978         aborting or aborted as well. Fixes #376391.
2979         
2980         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
2981         existing runtime state in the Suspend handler during shutdown.
2982
2983 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
2984
2985         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
2986
2987         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
2988         which are starting up or shutting down.
2989
2990         * threads.c (mono_threads_set_shutting_down): Don't return a value since
2991         this function never returns if the runtime is already shutting down.
2992
2993         * icall.c (ves_icall_System_Environment_Exit): Update after 
2994         mono_threads_set_shutting_down () signature change.
2995         
2996 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
2997
2998         * class.c: Added can_access_instantiation to verify if the instantiation
2999         is visible. Fix access check for nested types as they returned TRUE
3000         before doing type and generic instantiation visibility checks.
3001
3002 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
3003
3004         * reflection.c (mono_reflection_create_generic_class): The created type
3005         must have a different container from its TypeBuilder. Otherwise they
3006         will end sharing generic arguments, which is wrong.
3007
3008         Due to the sharing, making a generic instance of the created type using
3009         the TypeBuider generic arguments resulted in the generic type definition
3010         been returned, which is wrong as well.
3011
3012         As a bonus the code was leaking the type_params array. This memory should
3013         be allocated from the image mempool.
3014
3015         This fixes bug #354047.
3016
3017 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
3018
3019         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
3020         to here         as they are now used in assembly.c new code.
3021         Added a skipverification flag to MonoAssembly.
3022         New internal function mono_assembly_has_skip_verification.
3023
3024         * assembly.c: New function mono_assembly_has_skip_verification. It checks
3025         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
3026         part of #387274.
3027
3028 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
3029
3030         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
3031         needed. Fixes #387034.
3032
3033         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
3034
3035 2008-05-06  Miguel de Icaza  <miguel@novell.com>
3036
3037         * assembly.c (mono_assembly_load_reference): Prevent crash while
3038         disassembling Silverlight 2.0 executables while we still do not
3039         have GACed libraries.
3040
3041 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
3042
3043         * reflection.c: Special case generic type definitions as well. Fixes #383444.
3044
3045 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
3046
3047         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
3048         of the dynamic case. Fixes #387404.
3049
3050 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3051
3052         *verify.c (mono_verifier_is_class_full_trust): If under
3053         verify_all and the verifier mode was not set, only
3054         gac and corlib types are fulltrust. This makes --verify-all
3055         usable to detect unverifiable code, which is the expected
3056         use case.
3057
3058 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3059
3060         * verify.h: Ops, commited the header with debug
3061         enabled.
3062
3063 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3064
3065         * verify.c (merge_stack): Use the new value on unverifiable
3066         stack merges.
3067
3068         * verify.c (verify_type_compatibility_full): Comparison
3069         of nullable types can't use mono_class_is_assignable_from.
3070
3071         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
3072         that makes all verification errors be reported.
3073
3074         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
3075         mono_method_verify.
3076
3077 2008-05-05  Robert Jordan  <robertj@gmx.net>
3078
3079         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
3080         support for value types. See #386415.
3081
3082         * object.c: comments.
3083
3084         Code is contributed under MIT/X11 license.
3085
3086 2008-05-05  Martin Baulig  <martin@ximian.com>
3087
3088         * debug-mono-symfile.h
3089         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
3090         for old pre-terrania symbol files.
3091
3092 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
3093
3094         * mono-config.c: Add ppc64 architecture.
3095
3096         Code is contributed under MIT/X11 license.
3097
3098 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
3099
3100         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
3101           PPC64 uses function descriptors as well.
3102
3103         Code is contributed under MIT/X11 license.
3104
3105 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
3106
3107         * object.c (compute_class_bitmap): Ignore literal static fields.
3108
3109         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
3110         var has an invalid format.
3111         (describe_ptr): Add some sanity checks for the vtable.
3112         (add_nursery_frag): Clear unused nursery fragments.
3113         (major_collection): Clear all remaining nursery fragments.
3114
3115 2008-05-03  Robert Jordan  <robertj@gmx.net>
3116
3117         * image.c, metadata-internals.h: add thunk_invoke_cache.
3118
3119         * marshal.c, marshal.h: implement
3120         mono_marshal_get_thunk_invoke_wrapper ().
3121
3122         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
3123
3124         Code is contributed under MIT/X11 license.
3125
3126 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
3127
3128         * verify.c (do_leave): Empty the stack.
3129
3130 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
3131
3132         * class.c (mono_class_is_assignable_from): Variance
3133         doesn't work between reference and value types. For example,
3134         given type C<T+>, C<int32> is not assignable to C<object>.
3135         Break the argument checking loop on first error. 
3136
3137 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
3138
3139         * icall.c : base64_to_byte_array() needs some more strict
3140           check for sequence of '=' characters. Patch by Santa
3141           Marta (http://deee.g.hatena.ne.jp/santamarta).
3142
3143           Contributed under MIT/X11 license.
3144           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
3145
3146 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
3147
3148         * domain.c: Disable LoadLibrary support to fix Win32 build.
3149
3150         Code is contributed under MIT/X11 license.
3151
3152 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
3153
3154         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
3155         to help with cache behaviour.
3156
3157 2008-05-01  Miguel de Icaza  <miguel@novell.com>
3158
3159         * appdomain.c (mono_domain_from_appdomain): Add new accessor
3160         method. 
3161
3162 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
3163
3164         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
3165
3166 2008-05-01  Dick Porter  <dick@ximian.com>
3167
3168         * process.c (process_get_fileversion): Only pass 16 bits of
3169         language ID to VerLanguageName.  Fixes bug 381204.
3170
3171 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3172
3173         * verify.c (mono_method_verify): Fix the comparison
3174         operator for code bounds check.
3175
3176 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3177
3178         * verify.c (mono_method_verify): Check the bounds of
3179         all access of the code array.
3180
3181 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
3182
3183         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
3184
3185 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
3186
3187         * image.c (mono_image_strong_name_position): Fix return value when the rva is
3188         not valid.
3189
3190 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
3191
3192         * loader.c (mono_get_method_from_token, mono_method_signature): Add
3193         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
3194         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
3195         fixup main EXE images when using mono.exe for mixed-mode assembly support.
3196         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
3197         mono_runtime_load.
3198         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
3199         runtime initialization from metadata.
3200         * assembly.c: Remove obsolete ceGetModuleFileNameA.
3201         (mono_set_rootdir): Use mono_get_module_file_name.
3202         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
3203         handles.
3204         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
3205         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
3206         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
3207         MonoCLIImageInfo. Add support for module handles.
3208         (load_cli_header): Update mono_cli_rva_image_map signature.
3209         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
3210         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
3211         (mono_image_rva_map): Add support for module handles.
3212         (mono_image_ensure_section_idx): Add support for module handles.
3213         (mono_image_close): Add support for module handles.
3214         (do_load_header): Add support for module handles.
3215         (mono_image_open_from_module_handle): New function for internal use.
3216         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
3217         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
3218         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
3219         handles.
3220         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
3221         * image.h: Add mono_image_fixup_vtable.
3222         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
3223         support.
3224         * coree.h: New file.
3225         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
3226         unsupported native code.
3227         (mono_marshal_set_callconv_from_modopt): New function splitted from
3228         mono_marshal_get_managed_wrapper.
3229         (mono_marshal_get_managed_wrapper): Use
3230         mono_marshal_set_callconv_from_modopt.
3231         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
3232         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
3233         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
3234         that results in a deadlock when the runtime is loaded in _CorDllMain.
3235         * Makefile.am: Add coree.c and coree.h.
3236
3237         Contributed under MIT/X11 license.
3238
3239 2008-04-28  Mark Probst  <mark.probst@gmail.com>
3240
3241         * generic-sharing.c: Search for type arguments in array element
3242         types as well.
3243
3244 2008-04-28  Mark Probst  <mark.probst@gmail.com>
3245
3246         * class-internals.h, generic-sharing.c: New, small runtime generic context.
3247
3248         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
3249
3250         * object.c: Don't setup the RGCTX when the vtable is created,
3251         because we're setting it up lazily now.
3252
3253 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
3254
3255         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
3256         64 bit support.
3257
3258 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3259
3260         * verify.c (verify_class_for_overlapping_reference_fields): 
3261         If class is under fulltrust allow reference types to overllap
3262         if they have the same RVA.
3263
3264 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3265
3266         * pedump.c: Added new flag valid-only, that makes the verifier
3267         behaves just like --security=validil. It won't fail type load
3268         due to unverifiable restrictions.
3269
3270 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3271
3272         * class-internals.h (struct MonoMethod): Added a verification_success
3273         field to cache verifier executions. Reduced MonoMethod:slot size by
3274         one bit.
3275
3276 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
3277
3278         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
3279         instead of a 'vt' argument to save an indirection and to allow these to be used
3280         for valuetypes.
3281         (scan_vtype): New helper function to scan an area using a gc descriptor.
3282         (mono_gc_wbarrier_value_copy): Implement this.
3283         (handle_remset): Add support for REMSET_VTYPE.
3284         (find_in_remset_loc): Ditto.
3285         (mono_gc_base_init): Allow some debugging options to be controlled through the
3286         use of the MONO_GC_DEBUG env variable.
3287         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
3288         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
3289
3290 2008-04-23  Martin Baulig  <martin@ximian.com>
3291
3292         * domain.c (mono_domain_create): Move the call to
3293         mono_debug_domain_create() down, after allocating the domain id.
3294
3295 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3296
3297         verify.c (verify_class_for_overlapping_reference_fields): Skip
3298         static fields while verifying for overlapping fields as they
3299         don't matter at all.
3300
3301 2008-04-23  Marek Habersack  <mhabersack@novell.com>
3302
3303         * domain-internals.h: added a declaration of
3304         mono_make_shadow_copy.
3305
3306         * assembly.c (mono_assembly_open_full): shadow copying of
3307         assemblies moved to here, so that all the assemblies within the
3308         application domain's private binary directories can be
3309         processed. Fixes bug #380546
3310
3311         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
3312         mono_make_shadow_copy and made non-static. The decision whether
3313         to shadow-copy an assembly is made based on its location - it's
3314         copied if it's in one of the private application domain binary
3315         directories and its different to the target file in the shadow
3316         directory. Fixes bug #380546
3317
3318 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
3319
3320         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
3321
3322         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
3323         types.
3324
3325         * reflection.c (mono_image_create_token): Handle 
3326         Method/ConstructorOnTypeBuilderInst.
3327         (resolve_object): Ditto.
3328         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
3329         so it can be called from resolve_object. Also handle the case when the inflated
3330         class already has its methods setup.
3331
3332 2008-04-21  Martin Baulig  <martin@ximian.com>
3333
3334         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
3335
3336 2008-04-20  Geoff Norton  <gnorton@novell.com>
3337
3338         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
3339         pointer dereference.
3340
3341 2008-04-15  Marek Habersack  <mhabersack@novell.com>
3342
3343         * appdomain.c (try_load_from): if IOMAP is in effect, call the
3344         portability API to look up the assembly file. Fixes behavior in
3345         situations when the application has a bin/ directory, but the
3346         assembly search patch refers to Bin/ (and thus the requested file
3347         name is Bin/SomeLibrary.dll). Fixes bug #379888
3348
3349 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3350
3351         verify.c (mono_type_is_generic_argument): Extracted this check
3352         from a dozen places to here.
3353
3354         verify.c: Fixed all issues related to boxing generic arguments
3355         and their constraints.
3356
3357 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3358
3359         verify.c (mono_class_interface_implements_interface): Fix win32 build.
3360
3361 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
3362
3363         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
3364         isn't finished yet. Fixes #363447.
3365
3366 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
3367
3368         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
3369         Fixes #346419.
3370
3371 2008-04-13  Jb Evain  <jbevain@novell.com>
3372
3373         * domain.c: update the 2.1 profile versions.
3374         Merged from the Moonlight 2 branch.
3375
3376 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
3377
3378         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
3379         mscorlibs for the non-refonly case as well.
3380
3381         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
3382         in mono_assembly_load_from_full (). Fixes #378924.
3383
3384 2008-04-11  Geoff Norton  <gnorton@novell.com>
3385
3386         * icall.c: The global extern environ doesn't exist on Mac.  We
3387         need to call NSGetEnviron instead.
3388
3389 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3390
3391         verify.c: Add generic method constraint verification.
3392
3393 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3394
3395         class.c (mono_class_inflate_generic_method_full): Add a long
3396         explanation to the is_mb_open hack. Remove the FIXME.
3397
3398 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3399
3400         * verify.c (mono_method_verify): Mark all unknown opcodes
3401         as invalid. Mark jmp as unverifiable.
3402
3403 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3404
3405         * verify.c: Add code to do type constraint verification on class instances.
3406
3407         * verify.c (mono_verifier_verify_class): Use the type constraint 
3408         verification code.
3409
3410 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
3411
3412         * class.c (mono_class_get_field_default_value): Don't pass cindex
3413         as hint to mono_metadata_get_constant_index. The local is not initialized
3414         and should contain garbage most of the time. This could only work
3415         with a lot of luck.
3416
3417 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
3418
3419         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
3420
3421 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
3422
3423         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
3424
3425         * class.c (mono_class_from_generic_parameter): Save the token of the
3426         generic param in MonoClass::sizes.generic_param_token.
3427
3428         * reflection.c (mono_custom_attrs_from_class): If the class type is
3429         VAR or MVAR retrieve the attributes of the generic param.
3430
3431 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3432
3433         * class.c (mono_class_init): Do class verification if the verifier
3434         is enabled.
3435
3436 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3437
3438         * verify-internal.h: Added mono_verifier_verify_class.
3439
3440         * verify.c: Added mono_verifier_verify_class. It checks for
3441         classes with explicit layout that have overlapping reference fields.
3442
3443         * pedump.c: Init the verifier state prior to verification. Fixed
3444         command line arguments.
3445
3446 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3447
3448         * Makefile.am: Added verify-internals.h, hopefully fix the build.
3449
3450 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
3451
3452         * verify-internals.h: Fix a warning.
3453
3454 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
3455
3456         * verify-internals.h: New header with the verifier configuration
3457         extracted from mini.c.
3458
3459         * verify.c: Implemented the new functions exported by verify-internals.h.
3460
3461 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
3462
3463         * verify.c: Add proper verification of ckfinite.
3464
3465 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
3466
3467         * verify.c (do_conversion): Improved error message to something
3468         more meanfull.
3469
3470         * verify.c (check_is_valid_type_for_field_ops): Fix to work
3471         with primitive types.
3472
3473 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
3474
3475         * verify.c: Added tail prefix checking. Marked icall
3476         as unverifible.
3477
3478 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
3479
3480         * verify.c: Fix the detection of branches to the middle
3481         of an instruction.
3482
3483 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
3484
3485         * verify.c: Implemented verification of volatile. and
3486         unaligned. prefix. Check if a type is valid after retrieving it.
3487
3488 2008-04-01  Dick Porter  <dick@ximian.com>
3489
3490         * process.c (process_get_fileversion): If there's no string block,
3491         set the file language to en_US.  Fixes the other new part of bug
3492         374600.
3493
3494 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
3495
3496         * class.c: New functions mono_method_can_access_field_full and
3497         mono_method_can_access_method_full. They perform type visibility
3498         and type site check.
3499
3500         * class-internal.h: Added exported functions.
3501
3502         * verify.c: Use new functions to implement proper visibility checks.
3503
3504 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
3505
3506         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
3507
3508 2008-03-28  Dick Porter  <dick@ximian.com>
3509
3510         * process.c (process_get_fileversion): Use the first language ID
3511         we see, rather than insisting on an invariant language.  Fixes bug
3512         374600.
3513
3514 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
3515
3516         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
3517         the streams to fix reading of invalid memory later.
3518
3519         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
3520         to ease debugging.
3521
3522 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
3523
3524         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
3525         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
3526
3527 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
3528         * threads.h: Added MonoThreadManageCallback type and
3529         mono_thread_set_manage_callback prototype
3530         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
3531         (used to store the mono_thread_manage callback).
3532         * threads.c: Added mono_thread_set_manage_callback, and handle
3533         "MonoThread->manage_callback" in build_wait_tids.
3534
3535 2008-03-26  Dick Porter  <dick@ximian.com>
3536
3537         * process.c (process_get_fileversion): Set FileVersionInfo strings
3538         to Empty when the resource doesn't have the particular info.
3539         Fixes bug 355717.
3540
3541 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
3542
3543         * verify.c (mono_method_verify): Proper prefix validation.
3544
3545 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
3546
3547         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
3548         itself in a separate argument instead of throwing them. Fixes #373448.
3549
3550         * appdomain.c: Bump corlib version.
3551
3552 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
3553
3554         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
3555
3556 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
3557
3558         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
3559         version macros.
3560
3561 2008-03-20  Mark Probst  <mark.probst@gmail.com>
3562
3563         * generic-sharing.c, class-internals.h: Code for putting
3564         reflection types into the runtime generic context.
3565
3566 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
3567
3568         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
3569         Fixes #340662. 
3570
3571
3572 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
3573
3574         * verify.c (VerifyContext): Added instruction prefix data to the struct.
3575
3576         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
3577
3578         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
3579
3580         * verify.c (do_cast): Let the result value keep the boxed status.
3581
3582         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
3583
3584 2008-03-17  Jb Evain  <jbevain@novell.com>
3585
3586         * reflection.c: when running on a 2.0 runtime, emit
3587         unconditionally the #~ header version as 2.0, and the
3588         CLI header version as 2.5, for symmetry's sake with csc.
3589
3590 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
3591
3592         * class.c: Remove the unused cache_interface_offsets stuff.
3593
3594         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
3595         profiler.c: Fix warnings.
3596
3597 2008-03-16  Mark Probst  <mark.probst@gmail.com>
3598
3599         * generic-sharing.c, class-internals.h: Support for putting
3600         methods into the runtime generic context.
3601
3602 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
3603
3604         * class.c (mono_class_setup_fields): Ignore calls made to this function for
3605         classes which are generic instances of not-yet finished typebuilders. Fixes
3606         #351172.
3607
3608         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
3609
3610 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
3611
3612         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
3613
3614         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
3615         field, replace it with a hash table in MonoDynamicImage.
3616
3617         * reflection.c (inflate_mono_method): Access the generic definition object from
3618         image->generic_def_objects instead of imethod->reflection_info.
3619
3620         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
3621
3622         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
3623         
3624         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
3625         function in reflection.c so it is easier to keep in sync with the dynamic image
3626         creation code.
3627
3628         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
3629         mono_image_close ().
3630
3631 2008-03-15  Mark Probst  <mark.probst@gmail.com>
3632
3633         * class.c (mono_class_generic_sharing_enabled): Disable generic
3634         sharing for all architectures except AMD64 and x86 to fix build.
3635
3636 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
3637
3638         * verify.c: Use the generic definition MonoGenericContext when available.
3639         Remove code for checking generics instance compatibility in favor of
3640         mono_class_is_assignable_from.
3641
3642 2008-03-14  Mark Probst  <mark.probst@gmail.com>
3643
3644         * marshal.c, marshal.h, metadata-internals.h, image.c,
3645         wrapper-types.h: New wrapper for invoking a shared static method
3646         without having to pass the runtime generic context argument.
3647
3648 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
3649
3650         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
3651
3652 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
3653
3654         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
3655         
3656         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
3657         create a token from a FieldOnTypeBuilderInst.
3658         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
3659         (resolve_object): Ditto.
3660
3661         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
3662         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
3663
3664 2008-03-14  Martin Baulig  <martin@ximian.com>
3665
3666         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
3667
3668         * debug-mono-symfile.h
3669         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
3670         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
3671
3672 2008-03-10  Martin Baulig  <martin@ximian.com>
3673
3674         * debug-mono-symfile.h
3675         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
3676         `lexical_block_table_offset'.
3677         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
3678         `lexical_blocks'.
3679         (MonoSymbolFile): Added `version'.
3680
3681         * mono-debug.h
3682         (MonoDebugLexicalBlockEntry): Removed.
3683         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
3684         `lexical_blocks'.
3685
3686         * mono-debug.c (mono_debug_add_method): Don't compute lexical
3687         blocks here; the debugger now does this internally.
3688
3689 2008-02-27  Martin Baulig  <martin@ximian.com>
3690
3691         * object.c (mono_runtime_exec_main): Call
3692         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
3693         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
3694
3695 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
3696
3697         * verify.c (verify_type_compatibility_full): Allow native int to be converted
3698         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
3699
3700 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
3701
3702         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
3703         ldftn with a virtual method.
3704
3705 2008-03-13  Geoff Norton  <gnorton@novell.com>
3706
3707         * decimal.c:  Only include memory.h if the platform has it.
3708
3709 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
3710
3711         * assembly.c, class.c, metadata-internals.h: make sure public key
3712         tokesns are compared in a case-insensitive way. Also, all
3713         the lookups in the GAC use a lowercase public key token
3714         (gaacutil already does the lowercasing on install). Fixes
3715         bug #369541.
3716
3717 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
3718
3719         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
3720         and return value.
3721
3722 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
3723
3724         * image.c: when someone loads a mscorlib from a file, return the
3725         currently loaded mscorlib (fixes bug #369253).
3726
3727 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
3728
3729         * class.c: handle types with no parents by forcing them to have
3730         System.Object as a parent and marking them as broken (this currently
3731         allows the first part of bug #369173 to work as well, likely because
3732         we don't check for typeload exceptions everywhere yet).
3733
3734 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
3735
3736         * class.c: more complete check that types belong to corlib
3737         (fixes second part of bug #369173).
3738
3739 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
3740
3741         * generic-sharing.c:  Including glib.h for the MSVC builds to define
3742           "inline" to "__inline" before including mono-membar.h.
3743           
3744         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
3745           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
3746           MSVC builds.
3747
3748         Contributed under MIT/X11 license.
3749
3750 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
3751
3752         * verify.c (do_invoke_method): Remove return type validation.
3753
3754         * verify.c (do_ret): Do return type validation at return site instead of
3755         call site.
3756
3757 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
3758
3759         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
3760
3761         * verify.c: Some todos cleaned and improved a few error messages.
3762
3763 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
3764
3765         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
3766
3767 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
3768
3769         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
3770         system types correctly.
3771
3772         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
3773         function.
3774
3775 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
3776
3777         * assembly.c (build_assembly_name): Fix a warning.
3778
3779 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
3780
3781         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
3782         the called function takes an object type argument. Fixes storing or
3783         valuetypes across remoting as well as reducing memory usage.
3784         * image.c, metadata-internals.h: remove now unused ldfld_remote and
3785         stfld_remote wrapper caches.
3786
3787 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
3788
3789         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
3790         is not found.
3791
3792         * reflection.c (mono_image_register_token): New helper function to save
3793         a token->object mapping.        
3794
3795         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
3796         managed code.
3797
3798         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
3799         one dimension arrays. Fixes #367670.
3800         (mono_reflection_get_type_internal): Ditto.
3801
3802 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
3803
3804         * marshal.c: mono_load_remote_field_new() always returns object.
3805         so use the proper signature (fixes bug #366445).
3806
3807 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
3808         
3809         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
3810         add an 'inline_failure' flag instead.
3811
3812 2008-03-04  Mark Probst  <mark.probst@gmail.com>
3813
3814         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
3815         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
3816         contains the location of "this", used for exception handling.
3817
3818 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
3819
3820         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
3821         their size on all platforms for perf reasons.
3822
3823 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3824
3825         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
3826         object-internal.h
3827
3828         * object-internal.h: Same.
3829
3830 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3831
3832         * reflection.h: Fix the build I just broke.
3833
3834 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3835
3836         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
3837         Test if a token is valid, this remove explicit usage of 
3838         MonoDynamicImage::tokens from the verifier code.
3839
3840         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
3841
3842         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
3843         instead of direct access to MonoDynamicImage::tokens.
3844
3845 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3846
3847         * verify.c (token_bounds_check): Fix the build I just broke.
3848
3849 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3850
3851         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
3852
3853         * verify.c (verifier_load_method): Fixed the errors message.
3854
3855         * verify.c (mono_method_verify): Fixed a debug message.
3856
3857 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
3858
3859         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
3860         mono-perfcounters.h, class-internals.h: support for predefined
3861         writable counters, query of categories and counters, bugfixes.
3862
3863 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
3864
3865         * verify.c (do_refanytype): Verify the refanytype opcode.
3866
3867         * verify.c (mono_method_verify): Use do_refanytype.
3868
3869 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
3870
3871         * verify.c (do_mkrefany): Verify the mkrefany opcode.
3872
3873         * verify.c (mono_method_verify): Use do_mkrefany.
3874
3875 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
3876
3877         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
3878         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
3879         implementation.
3880
3881 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
3882
3883         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
3884         the type load exception.
3885
3886 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
3887
3888         * verify.c: Added a few FIXME for method signatures
3889
3890         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
3891         of mono_method_get_signature and get vararg call working. Removed unused
3892         checks for return value.
3893
3894         * verify.c (do_refanyval): Verify the refanyval opcode.
3895
3896         * verify.c (mono_method_verify): Implemented verification of arglist and
3897         use do_refanyval.
3898
3899 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
3900
3901         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
3902         vtypes to marshal.c.
3903
3904         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
3905         it works for AOT as well.
3906
3907 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
3908
3909         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
3910         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
3911         the system time is adjusted.
3912
3913 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
3914
3915         * icall.c, icall-def.h: use the new time functions (fixes the
3916         non-monotonic behaviour of TickCount).
3917
3918 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
3919
3920         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
3921         it breaks the build.
3922         
3923         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
3924         cattr is not finished yet.
3925
3926 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
3927
3928         * verify.c: Proper token validation for field, method and type.
3929
3930 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
3931
3932         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
3933
3934         * loader.c (method_from_memberref): Generate type load error instead of method missing
3935         if the type is not found.
3936
3937 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
3938
3939         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
3940         some of the conversions caused the generation of a marshal directive exception.
3941
3942 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
3943
3944         verify.c: Report which exception should be thrown by the JIT.
3945         Added a lot of FIXME notes.
3946
3947 2008-02-22  Mark Probst  <mark.probst@gmail.com>
3948
3949         * generic-sharing.c: Runtime generic context slots are not
3950         instantiated on init anymore.  Instead, provide function to do the
3951         instantiating on demand.
3952
3953         * class-internals.h: Added vtable to runtime generic context.
3954         Macros for encoding direct and indirect slot offsets in one
3955         guint32.
3956
3957 2008-02-21  Mark Probst  <mark.probst@gmail.com>
3958
3959         * object.c, generic-sharing.c: Moved some generic sharing code
3960         from object.c to generic-sharing.c.
3961
3962         * generic-sharing.c: Added support for extensible runtime generic
3963         context.
3964
3965         * metadata-internals.h: Two new hash tables in MonoImage for
3966         extensible runtime generic context support.
3967
3968         * domain.c: Unregister generic vtables upon domain unloading.
3969
3970         * image.c: Destroy new hash tables upon image unloading.
3971
3972         * metadata.c: Unregister generic subclasses upon image unloading.
3973
3974         * class-internals.h: New data structure for runtime generic
3975         context template.  New fields in the runtime generic context for
3976         extensible part.
3977
3978         * Makefile.am: Added generic-sharing.c.
3979
3980 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
3981
3982         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
3983         there is a pending loader exception, raise it.
3984
3985         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
3986         same.
3987
3988         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
3989         same.
3990
3991         Fixes #363450.
3992
3993 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
3994
3995         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
3996
3997         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
3998         
3999         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
4000         ref-only requests for compatibility with MS.
4001
4002 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
4003
4004         * reflection.c (mono_custom_attrs_from_method): Don't silently
4005         return an empty list for generic method instances.
4006         (mono_custom_attrs_from_param): Likewise.
4007
4008 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
4009             Raja R Harinath  <harinath@hurrynot.org>
4010
4011         Fix #354757
4012         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
4013         * class.c (mono_class_inflate_generic_method_full): Initialize it
4014         when a fully-open method is instantiated.
4015         * metadata.c (inflated_method_equal, inflated_method_hash): Update
4016         to new field.
4017         * reflection.c (inflate_mono_method): Don't create a temporary context.
4018
4019 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
4020
4021         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
4022         Compute correct value, to prepare for imethod->reflection_info going away.
4023
4024 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
4025
4026         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
4027
4028 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4029
4030         * verify.c: Implement skip visibility flag.
4031
4032 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4033
4034         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
4035         which contains an extra field to tell the kind of exception that should be thrown.
4036
4037         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
4038
4039 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
4040
4041         * loader.c (mono_method_get_param_names): Initialize 'klass' after
4042         'method' is updated.
4043
4044 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
4045
4046         * class.c (mono_class_layout_fields): Set class->min_align for classes using
4047         explicit layout as well. Fixes #360375.
4048
4049 2008-02-11  Geoff Norton  <gnorton@novell.com>
4050
4051         * loader.c: Guard and dereference against inflated generic methods
4052
4053 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
4054
4055         * class.c: Include Retargetable spec in assembly name.
4056         * assembly.c: Always include PublicKeyToken spec in assembly name
4057         (with value "null" if assembly is not signed), and include
4058         Retargetable spec.
4059         * icall-def.h: Added icall for Assembly.get_fullname.
4060         * icall.c: Added icall returning the fullname of an assembly.
4061
4062 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
4063
4064         * class.c (mono_class_setup_vtable_general): Add a missing call to
4065         mono_class_setup_methods () which is needed in the AOT case.
4066
4067 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
4068
4069         * verify.c (mono_type_get_stack_name): Added. Return the name for the
4070         stack type of the given MonoType.
4071
4072         * verify.c (verify_type_compatibility_full): Handle the void type.
4073
4074         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
4075         way stack merging works.
4076
4077         * verify.c (store_local): Improved verification message.
4078
4079         * verify.c (do_branch_op): If the merging is invalid, the method
4080         is unverifiable and not invalid. Improved error message.
4081
4082         * verify.c (merge_stacks): Properly merge a boxed valuetype and
4083         a reference type diferent than System.Object. Improved error
4084         message.
4085
4086 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
4087
4088         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
4089
4090         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
4091         type of an enum even if the argument is byref.
4092
4093         * verify.c: Replace all explicit uses of enumtype and enum_basetype
4094         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
4095
4096         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
4097
4098         *verify.c (verify_type_compatibility_full): Make enum types
4099         compatible with their base types.
4100
4101         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
4102         types are compatible for the special case of a boxed valuetype and
4103         System.Object.
4104
4105         * verify.c (verify_stack_type_compatibility): The function
4106         is_compatible_boxed_valuetype was extracted from here.
4107
4108         * verify.c (push_arg): Only set ctx->has_this_store if the method
4109         is not static.
4110
4111         * verify.c (do_ldelem): Fixed a typo in an error message and added
4112         strict check for mixing int32 and native int as the array type
4113         and ldelem type.
4114
4115         * verify.c (merge_stacks): Consider boxed valuetypes in the
4116         compatibility checks.
4117
4118 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
4119         * profiler.h: (MonoGCEvent): Added start-stop the world events.
4120
4121 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
4122         *class.c: use_new_interface_vtable_code: renamed the env var to have
4123         a "MONO_" prefix, and fix the logic to enable it by default.
4124
4125 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
4126         *class.c:
4127         mono_class_setup_vtable_general: rewrote the way in which interface
4128         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
4129         makes the code more maintainable.
4130         For now the old code is still there, and can be activated setting
4131         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
4132
4133 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
4134
4135         * verify.c: guarded some debug functions around and #ifdef.
4136
4137         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
4138
4139 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
4140
4141         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
4142         changes for now since they seem to break too many things.
4143
4144 2008-02-05  Mark Probst  <mark.probst@gmail.com>
4145
4146         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
4147         mono_marshal_find_nonzero_bit_offset): Added macro and function
4148         for finding the byte- and bit-offset of a bitfield within a
4149         struct.
4150
4151 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
4152
4153         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
4154         (mono_marshal_get_struct_to_ptr): Ditto.
4155
4156         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
4157         cctor_signature.
4158
4159 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
4160
4161         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
4162         between methods for non-corlib types.
4163
4164 2008-02-02  Geoff Norton  <gnorton@novell.com>
4165
4166         * loader.c (mono_method_get_param_names): Populate the parameter name for 
4167         generic parameters as well. (Fixes #342536)
4168
4169 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
4170
4171         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
4172
4173         * verify.c (do_invoke_method): Fix for calling with byref structs.
4174
4175         * verify.c (do_cast): push a boxed value type based on the type token and not
4176         the type of stack.
4177
4178 2008-01-31  William Holmes  <billholmes54@gmail.com>
4179
4180         * process.c (process_module_string_read): Check the size returned form 
4181           VerQueryValue to avoid out of memory exception. 
4182
4183 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
4184
4185         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
4186         Handle properly modules which are not in the moduleref table. Fixes
4187         #356938.
4188
4189 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
4190
4191         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
4192         the dynamic case which is now in managed code.
4193         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
4194
4195         * marshal.c (mono_string_to_bstr): Fix a warning.
4196         (init_com_provider_ms): Ditto.
4197
4198         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
4199
4200         * exception.c (mono_get_exception_out_of_memory): New helper function.
4201
4202 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
4203
4204         * marshal.c: Add support for BSTR marshalling
4205         using other COM systems.
4206
4207         Code is contributed under MIT/X11 license.
4208
4209 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
4210
4211         * object.c (mono_runtime_invoke_array): reverted previous
4212         commit as it breaks the build.
4213
4214 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
4215
4216         * object.c (mono_runtime_invoke_array): Verify arguments for
4217         invalid types. Fixes #348522.
4218
4219 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
4220
4221         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
4222         non-final virtual calls using call. 
4223
4224         * verify.c (do_invoke): fixed some TODOs.
4225
4226         * verify.c (push_arg): set has_this_store for "ldarga 0".
4227
4228 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
4229
4230         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
4231         which belong to an inflated class. Fixes #356531.
4232
4233 2008-01-26  Robert Jordan  <robertj@gmx.net>
4234
4235         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
4236         which resort to FindFirstFile when a certain error condition
4237         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
4238         Code is contributed under MIT/X11 license.
4239
4240 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
4241
4242         * marshal.c (emit_marshal_string): Fix out string marshalling
4243         to use specified encoding. Fixes #323900.
4244
4245         Code is contributed under MIT/X11 license.
4246
4247 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
4248
4249         * class.c (mono_class_inflate_generic_method_full): Don't modify
4250         iresult->context after cache check.
4251
4252 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
4253
4254         * class.c (mono_class_inflate_generic_method_full): Change the
4255         struct assignments to memcpy for better visibility and add some comments.
4256
4257 2008-01-23  Dick Porter  <dick@ximian.com>
4258
4259         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
4260         procedure, and make it work on windows.
4261
4262 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
4263
4264         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
4265         a MonoReflectionTypeBuilder since it is always of that type.
4266
4267         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
4268
4269         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
4270
4271         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
4272         
4273         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
4274
4275         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
4276
4277         * reflection.c (mono_reflection_create_runtime_class): Remove already created
4278         instantiations from the type cache.
4279
4280 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4281
4282         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
4283
4284         * verify.c (do_unbox_value): push a controled mutability managed pointer.
4285
4286 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4287
4288         * verify.c (do_ldstr): added, verifies if the #US token is valid.
4289
4290         * verify.c (mono_method_verify): removed old TODO
4291
4292 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4293
4294         * verify.c (do_newobj): add visibility check.
4295
4296 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4297
4298         * verify.c (do_load_function_ptr): add visibility check.
4299
4300 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
4301         *class.c:
4302         mono_generic_class_get_class: hook profiler events.
4303         mono_field_get_offset: added to support heap-shot in the new profiler.
4304         *class.h: exported mono_field_get_offset.
4305         * reflection.c:
4306         mono_reflection_setup_internal_class: hook profiler events.
4307
4308 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
4309
4310         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
4311         argument here too and use it to avoid checking for pending exceptions if 
4312         possible.
4313
4314 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
4315
4316         * assembly.c (build_assembly_name): add arg for passing the assembly
4317         flags. Do not consider a PublicKey with value "null" valid.
4318         (mono_assembly_name_parse_full): added boolean argument that will be
4319         set if the assembly name contains a PublicKeyToken spec. Added support
4320         for the Retargetable spec for which only Yes or No are allowed as valid
4321         value. Consider assembly name invalid if Retargetable spec is set, but
4322         either version, culture or public key (token) are not specified.
4323         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
4324         with implementation in assembly.c.
4325         * icall.c (fill_reflection_assembly_name): also copy assembly flags
4326         from MonoAssemblyName.
4327         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
4328         introduced argument for mono_assembly_name_parse_full to know if the
4329         assembly name has a PublicKeyToken spec, and if it has instruct
4330         fill_reflection_assembly_name to use default value for keyToken (if
4331         PublicKeyToken is null).
4332
4333 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
4334
4335         * verify.c (mono_method_verify): fixed ovf ops with
4336         float values. They are unverifiable now.
4337
4338 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
4339
4340         * class.c (set_failure_from_loader_error): add BadImageException to the
4341         list of exceptions that can cause a type to fail to load.
4342
4343         * class.c (mono_class_get_exception_for_failure): same.
4344
4345 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
4346
4347         * verify.c (in_any_exception_block): added, check if offset
4348         is part of any exception handling clause.
4349
4350         * verify.c (get_stack_type): added VAR and MVAR types.
4351
4352         * verify.c (do_stobj): better error messages.
4353
4354         * verify.c (do_cpobj): added, check cpobj.
4355
4356         * verify.c (do_initobj): added, check initobj.
4357
4358         * verify.c (do_sizeof): added, check sizeof.
4359
4360         * verify.c (do_localloc): added, check localloc.
4361
4362         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
4363
4364 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
4365
4366         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
4367         save_lmf/restore_lmf opcodes.
4368
4369         * threads.c (mono_threads_install_notify_pending_exc): New function to
4370         install a callback notifying the JIT there is a pending exception on a thread.
4371         (mono_thread_request_interruption): Call the new callback.
4372         (mono_thread_get_and_clear_pending_exception): New function to return the
4373         exception pending on a thread.
4374
4375         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
4376         to turn off checking for pending exceptions.
4377         (mono_marshal_get_native_wrapper): Ditto.
4378
4379 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
4380
4381         * threads-types.h: Get rid of the unnecessary extern declarations.
4382
4383 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
4384
4385         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
4386         return field from parent class if not private.
4387         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
4388         returns fields from parent class if they are not private.
4389         (method_nonpublic): added function to determine if a given method
4390         should be considered non-public. Returns false for private methods
4391         on parent class, and internal methods from parent on the 1.0 profile.
4392         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
4393         use method_nonpublic function to determine whether method should be
4394         returned.
4395         (property_accessor_public): use newly introduced method_nonpublic
4396         function to determine whether accessor is non-public. 
4397         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
4398         event from parent class if not private. Only return static event if
4399         Static flag is set, and only return static event from parent class if
4400         FlattenHierarchy flag is set.
4401         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
4402         include non-private events from parent class.
4403
4404 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
4405
4406         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
4407         warning.
4408
4409 2008-01-16  Wade Berrier <wberrier@novell.com>
4410
4411         * security.c: Add assembly.h header to appease some warnings
4412
4413 2008-01-16  Dick Porter  <dick@ximian.com>
4414
4415         * process.c (process_module_string_read): Remove trailing null
4416         when saving string.
4417
4418 2008-01-16  Mark Probst  <mark.probst@gmail.com>
4419
4420         * class-internals.h: A new data structure describing the layout of
4421         a runtime generic context (MonoRuntimeGenericContextTemplate).
4422
4423         * metadata-internals.h: Added a hash table to MonoDomain that maps
4424         from open generic classes to their runtime generic context
4425         templates.
4426
4427         * object.c: Building of the runtime generic context, including
4428         proper handling of generic type arguments of superclasses.
4429         Building of the runtime generic context according to the template.
4430
4431 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
4432
4433         * class.c (mono_class_setup_fields): Set field.count for generic instances.
4434         Fixes #350856.
4435
4436         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
4437         mono_portability_find_file (). Fixes #325466.
4438         (mono_image_get_public_key): Fix a warning.
4439
4440 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
4441
4442         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
4443         Fixes #353550.
4444         (mono_class_from_name_case): Ditto.
4445
4446 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
4447
4448         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
4449           common storage for the tables used in the System/NumberFormatter class.
4450
4451 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
4452
4453         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
4454
4455 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
4456
4457         * verify.c (get_boxable_mono_type): check if the token is valid.
4458
4459         * verify.c (set_stack_value): changed to add an error if an
4460         invalid type is set on stack. Changed all callers due to signature change.
4461
4462         * verify.c (do_stobj): implement stobj validation.
4463
4464 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
4465
4466         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
4467         set container->is_method, it was set earlier.
4468
4469         * metadata.c (type_in_image): Handle MVARs which belong to not finished
4470         generic methods.
4471
4472         * reflection.c (mono_reflection_initialize_generic_parameter): Set
4473         is_method of the generic container to TRUE for methods.
4474
4475 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
4476
4477         * metadata.c (type_in_image): Handle type parameters properly.
4478
4479         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
4480         memory ownership of this structure.
4481
4482 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
4483
4484         * verify.c (get_boxable_mono_type): make typedref types been just
4485         unverifiable. check for void type.
4486
4487         * verify.c (do_unbox_any): added, verify opcode unbox.any.
4488
4489         * verify.c (do_load_function_ptr): accept method spec tokens.
4490
4491 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
4492
4493         * marshal.c (mono_class_native_size): Always set *align even if this is called
4494         recursively.
4495
4496 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
4497
4498         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
4499         out-of-date.
4500
4501 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
4502
4503         * verify.c: removed some old unused tables. A huge bunch of small fixes
4504         to things found while testing the verifier with mono basic.
4505
4506         * verify.c (dump_stack_value): dump null literal flag to.
4507
4508         * verify.c (verify_type_compatibility_full): fix comparison
4509         for types that have a generic super type.
4510
4511         * verify.c (verify_stack_type_compatibility): fix compatibility
4512         between null literals and reference types. fix compatibility between
4513         boxed valuetypes and object. fix corner case test for enums.
4514
4515         * verify.c (do_cmp_op): proper verification of cgt.un in case
4516         of reference types.
4517
4518         * verify.c (do_invoke_method): fix error message.
4519
4520         * verify.c (do_store_indirect
4521
4522         * verify.c (check_is_valid_type_for_field_ops): proper verification
4523         of managed pointers to valuetypes and boxed valuetypes. proper verification
4524         of null literals.
4525
4526         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
4527         allow token to be a reference type.
4528
4529         * verify.c (do_cast): proper handling of boxes valuetypes.
4530
4531         * verify.c (do_stelem): proper handling of storing a boxed valuetype
4532         in object[].
4533
4534         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
4535         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
4536         fixed the decoding of unbox_any
4537
4538 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
4539
4540         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
4541
4542 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
4543
4544         * verify.c (do_newobj): do delegate verification.
4545
4546         * verify.c (verify_delegate_compatibility): perform delegate
4547         verification.
4548
4549         * verify.c (verify_ldftn_delegate): perform tests related to
4550         ldftn delegates.
4551
4552         * verify.c (mono_delegate_signature_equal): perform the
4553         slightly diferent signature comparison required by delegates.
4554
4555         * metadata.c (mono_metadata_type_equal_full): added and exported
4556         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
4557         allows signature only comparison.
4558
4559         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
4560         as MONO_INTERNAL.
4561
4562 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
4563
4564         * verify.c: added a bunch of stack_slot_* functions to
4565         make access to stack slot type easier. This is required to
4566         allow optional flags, like null literal, boxed value and
4567         this pointer.
4568         All access paths to IlStackDesc::stype have been changed 
4569         to use these new funcions.
4570         Removed a bunch of unused functions and cleared all warnings.
4571         This patch introduces the usage of the this pointer and 
4572         boxed value flags.
4573
4574 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
4575
4576         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
4577
4578 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
4579
4580         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
4581         match managed version.
4582
4583         * appdomain.c: Bump corlib version.
4584         
4585         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
4586         argument.
4587
4588 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
4589
4590         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
4591         Set public key token to zero-length byte array if assembly is not
4592         strongnamed.
4593
4594 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
4595
4596         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
4597         writing a vtype array elem.
4598
4599 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
4600
4601         * assembly.c (build_assembly_name): return FALSE if length of token is
4602         not 16 (if not "null").
4603         (mono_assembly_name_parse_full): return FALSE if value of version,
4604         culture, token or key is 0.
4605         * icall.c (fill_reflection_assembly_name): add boolean arguments to
4606         specify whether public key and public key token must be set to default
4607         value (zero-length byte array) if not available. Set versioncompat to
4608         SameMachine. If public key is available or the default is set, then
4609         set PublicKey flag.
4610         (ves_icall_System_Reflection_Assembly_FillName): if no public key
4611         is available, use empty byte array as default value. On the 2.0
4612         profile, use default value for public key token if not set.
4613         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
4614         profile, use default value for public key if not set. On the 2.0
4615         profile, use default value for public key token if not set.
4616         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
4617         default values for public key and public key token.
4618
4619 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
4620
4621         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
4622         field to keep it in synch with the managed object.
4623
4624         * marshal.c (emit_marshal_object): Add support for byref marshalling of
4625         delegates. Fixes #351520.
4626
4627         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
4628         contains defined memory.
4629         
4630         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
4631
4632         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
4633         
4634         * sgen-gc.c (check_consistency): New helper function to do a consistency check
4635         of the GC data structures.
4636
4637         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
4638
4639         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
4640         
4641         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
4642         barrier.
4643         (mono_array_clone_in_domain): Ditto.
4644         (mono_array_clone_in_domain): Ditto.
4645
4646         * threads.c (start_wrapper): Register the thread start argument as a GC root.
4647         (cache_culture): Use a write barrier.
4648
4649         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
4650         (ves_icall_get_property_info): Ditto.
4651
4652         * object.h (MONO_STRUCT_SETREF): New macro.
4653
4654         * class-internals.h (MonoStats): Add some GC statistics.
4655
4656         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
4657
4658 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
4659
4660         * exception.c (mono_exception_from_name_two_strings):
4661         Break from loop after method is found.
4662
4663 2008-01-04  Dick Porter  <dick@ximian.com>
4664
4665         * process.c (process_module_string_read): Rename variable to
4666         reflect correct usage, after fixing bug 345972.
4667
4668 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
4669
4670         * verify.c (mono_type_create_fnptr_from_mono_method): 
4671         created a MonoType function pointer instance to be used during
4672         verification. The verifier releases this memory at end.
4673
4674         * verify.c (mono_method_is_constructor): extracted repeated
4675         checks for constructor into a single class.
4676
4677         * verify.c (do_push_field): use new extracted method
4678         for constructor check.
4679
4680         * verify.c (do_newobj): same.
4681
4682         * verify.c (do_ldftn): renamed to do_load_function_ptr
4683         and make it verify ldvirtftn too.
4684
4685         * verify.c (mono_method_verify: proper verification
4686         of ldvirtftn. release created MonoMethod instances.
4687
4688 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
4689
4690         * verify.c (token_bounds_check): added.
4691
4692         * verify.c (do_ldftn): added.
4693
4694         * verify.c (mono_method_verify): proper verificartion of ldftn.
4695
4696 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
4697
4698         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
4699         than the table row count. It's the resposibility of the caller to
4700         make the bounds check and raise the correct error.
4701
4702         * metadata.c (mono_metadata_decode_row_col): Same.
4703
4704         * loader.c (mono_get_method_from_token): perform bounds check
4705         on token for methoddef table.
4706
4707 2007-12-29  Miguel de Icaza  <miguel@novell.com>
4708
4709         * icall.c
4710         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
4711         assert into a negative result, the managed code already coped with
4712         that.
4713
4714         Some folks on Windows reported this error. 
4715
4716 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
4717
4718         * appdomain.c: Bump corlib version.
4719         * icall.c:
4720         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
4721         CultureInfo.CreateCulture to create CultureInfo for name.
4722         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
4723         create CultureInfo for name. Fixes bug #347174.
4724
4725 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
4726
4727         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
4728         flags.
4729
4730         * verify.c (is_valid_branch_instruction): allow branching to the
4731         first instruction of the protected block.
4732
4733         * verify.c (is_valid_cmp_branch_instruction): same.
4734
4735         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
4736         avoid double initialization.
4737
4738         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
4739         detect which cases the eval stack should just be copied.
4740
4741         * verify.c (mono_method_verify): check if the eval stack
4742         is empty when entering a protected block.
4743
4744 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
4745
4746         * verify.c: added is_clause_in_range, is_clause_inside_range,
4747         is_clause_nested and verify_clause_relationship. They perform
4748         the verifications stated in P1 12.4.2.7.
4749
4750         * verify.c (mono_method_verify): remove some unused variables,
4751         add the new exception clause checks, add instruction border
4752         checks for protected block start/end, improved some error 
4753         messages and fixed a bug in the way invalid instruction access
4754         is detected.
4755
4756 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
4757
4758         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
4759         from GC 7.0 if available.
4760
4761         * object.c: Remove an unused define.
4762         
4763         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
4764
4765         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
4766
4767         * null-gc.c (mono_gc_make_descr_for_array): Implement.
4768
4769         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
4770
4771         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
4772         to take the same arguments as the other make_descr functions.
4773
4774         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
4775
4776         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
4777         directly.
4778
4779         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
4780         mini.c.
4781
4782         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
4783         call to boehm-gc.c.
4784
4785         * boehm-gc.c (mono_gc_register_root): Fix a warning.
4786
4787         * null-gc.c (mono_gc_register_root): Fix a warning.
4788
4789         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
4790
4791         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
4792         (mono_gc_base_init): Call GC_init ().
4793
4794         * null-gc.c: Define mono_gc_register_root () as a no-op.
4795
4796         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
4797
4798 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
4799
4800         * verify.c: add prototype for merge_stacks at top
4801
4802         * verify.c (do_switch): added.
4803
4804         * verify.c (merge_stacks): on some cases the stack merging
4805         was not happening properly. Unequal stack sizes at merge
4806         points should be invalid.
4807
4808         * verify.c (mono_method_verify): added more debug info on stack state.
4809         verify switch properly.
4810
4811 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
4812
4813         * method-builder.h: New file, moved the mono_mb_ declarations here from 
4814         marshal.h.
4815
4816         * boehm-gc.c marshal.c: Include method-builder.h.
4817
4818         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
4819
4820         * marshal.c: Remove some code which is now in method-builder.c.
4821
4822 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
4823
4824         * method-builder.c: New file, extraction of the method builder functionality 
4825         from marshal.c.
4826
4827         * marshal.c: Move the mb functions into method-builder.c.
4828
4829         * marshal.h marshal.c: Export some mono_mb_... functions.
4830
4831         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
4832
4833         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
4834         the caller.
4835
4836         * class.c (mono_class_get_full): Check the token type in the dynamic case.
4837
4838         * loader.c (mono_field_from_token): Ditto.      
4839
4840         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
4841         type as well.
4842         
4843         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
4844         Fixes #342565.
4845
4846         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
4847         a helper function for setting it.
4848
4849         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
4850
4851         
4852         * assembly.c: Significally simplify code now that referenced assemblies are 
4853         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
4854
4855         * threads.h: Don't include  the internal threads-types.h header file. Fixes
4856         #349952.
4857
4858 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
4859
4860         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
4861         instructions that were target of branches or are at protected block boundaries.
4862
4863         * verify.c (in_same_block): handle filter clauses.
4864
4865         * verify.c (is_valid_branch_instruction): added. checks the target of
4866         instructions br or brtrue/false.
4867
4868         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
4869         binary branch instructions such as beq and bge.
4870
4871         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
4872         and made it pin the instruction as been part of the exception block.
4873
4874         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
4875         of in_same_block.
4876
4877         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
4878         of in_same_block.
4879
4880         * verify.c (do_ret): ret from a protected block is unverifiable and
4881         not invalid.
4882
4883         * verify.c (do_static_branch): verify br and br.s instructions.
4884
4885         * verify.c (merge_stacks): add extra param to support detection
4886         of branches in the middle of instructions.
4887         
4888         * verify.c (mono_method_verify): verify branches and exception blocks
4889         that target the middle of instructions. Proper verification of br and br.s.
4890
4891 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
4892
4893         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
4894         skip_visibility field.
4895         (reflection_methodbuilder_from_dynamic_method): Ditto.
4896
4897         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
4898         registrations. Fixes #348193.
4899
4900         * threads.h: Move the internal mono_thread_get_pending_exception () to
4901         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
4902
4903 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
4904
4905         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
4906         icall registration. Fixes #348193.
4907
4908         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
4909         for corlib classes into object. Fixes #349621.
4910
4911 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
4912
4913         * icall.c (property_accessor_nonpublic): new function to determine
4914         whether an accessor allows a property to be considered non-public.
4915         Returns false for private accessor(s) from parent class, and internal
4916         accessor(s) from parent on 2.0 profile (and higher).
4917         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
4918         to determine whether property should be included if NonPublic flag
4919         is set. Fixes bug #349078.
4920
4921 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
4922
4923         * verify.c (init_stack_with_value): added.
4924
4925         * verify.c (mono_method_verify): extracted common
4926         code for exception initialization into init_stack_with_value.
4927
4928         * verify.c (mono_method_verify): initialize the exception
4929         for handler clauses as well.
4930
4931         * verify.c (mono_method_verify): fix the exception clause
4932         ordering rules, it should use handler end offset and not
4933         start offset.
4934
4935 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
4936
4937         * rawbuffer.c: remove useless warning.
4938
4939 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
4940
4941         * threads.h, threads-types.h: move functions to the correct header
4942         (fixes bug#349952).
4943
4944 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
4945
4946         * verify.c (mono_method_verify): proper verification
4947         of exception handling clauses ranges and fallthru in
4948         and out of protected blocks.
4949
4950 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
4951
4952         * verify.c (mono_method_verify): fixed compilation issue.
4953
4954 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
4955
4956         * verify.c (mono_method_verify): a printf slipped in, changed
4957         to use verifier debug macro.
4958
4959 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
4960
4961         * verify.c (is_correct_leave): check for filter clauses.
4962
4963         * verify.c (do_filter): added.
4964
4965         * verify.c (mono_method_verify): property verification of leave.
4966
4967
4968 2007-12-18  Mark Probst  <mark.probst@gmail.com>
4969
4970         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
4971         Win32 build, until we figure out how to do the proper thing on
4972         Win32.
4973
4974 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
4975
4976         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
4977         by the previous patch.
4978         
4979         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
4980         the assembly resolve handler for refonly assemblies.
4981
4982 2007-12-17  Mark Probst  <mark.probst@gmail.com>
4983
4984         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
4985         Make sure only one thread is allowed to commence shutdown, and
4986         don't allow new threads to be started once shutdown is in
4987         progress.
4988
4989 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
4990
4991         * verify.c (is_correct_endfilter): added.
4992
4993         * verify.c (is_unverifiable_endfilter): added.
4994
4995         * verify.c (do_endfilter): added.
4996
4997         * verify.c (mono_method_verify): property verification of endfilter
4998         and fixed a corner case or endfinally.
4999
5000 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
5001
5002         * verify.h: new flags to support fail fast of unverifiable code and
5003         do non-strict verification. Non-strict verification is required to
5004         have MS runtime compatibility. There are a huge amount of unverifiable
5005         code that it accepts as verifiable. The strict mode verifies the code
5006         as the specs says.
5007         Non-strict mode will be required in cases where code needs to be
5008         accepted as verifiable but fails under strict mode.
5009
5010         * pedump.c: added support to fail fast and non-strict verification.
5011
5012         * verify.c: added support for both fail fast and non-strict verification.
5013
5014 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
5015
5016         * verify.c (is_correct_endfinally): added.
5017
5018         * verify.c (mono_method_verify): property verification of endfinally.
5019
5020 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
5021
5022         * verify.c (in_any_block): check for filter clauses.
5023
5024         * verify.c (is_correct_rethrow): added.
5025
5026         * verify.c (mono_method_verify): property verification of rethrow.
5027
5028         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
5029
5030 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
5031
5032         * verify.c (do_throw): added.
5033
5034         * verify.c (mono_method_verify): property verification of throw
5035
5036 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
5037
5038         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
5039         assemblies. Fixes #346425.
5040
5041 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
5042
5043         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
5044         FieldBuilders.
5045
5046         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
5047
5048         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
5049         prevent asserts when this is called with a token which might not be valid.
5050
5051         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
5052         lookup_dynamic_token_class with valid_token == FALSE.
5053
5054         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
5055
5056         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
5057
5058         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
5059         
5060 2007-12-10  Mark Probst  <mark.probst@gmail.com>
5061
5062         * gc.c: Don't delay threadpool thread finalization unless Mono is
5063         shutting down.
5064
5065 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
5066
5067         * threads.c: turn an assert into a non-fatal warning.
5068
5069 2007-12-09  Robert Jordan  <robertj@gmx.net>
5070
5071         * icall.c (GetVirtualMethod): Add missing argument validation.
5072
5073 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5074
5075         * verify.c (do_cast): added.
5076
5077         * verify.c (mono_method_verify): property verification of castclass and isinst.
5078
5079
5080 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5081
5082         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
5083
5084         * verify.c (do_stelem): added.
5085
5086         * verify.c (mono_method_verify): property verification of stelem.X.
5087
5088 2007-12-07  Mark Probst  <mark.probst@gmail.com>
5089
5090         * class.c, class-internals.h: Introduce an environment variable
5091         (MONO_GENERIC_SHARING) through which the extent of generic code
5092         sharing can be controlled (share all classes, share only corlib
5093         classes, or share nothing).
5094
5095         * object.c: Only create runtime generic context for classes for
5096         which sharing is enabled.
5097
5098 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5099
5100         * verify.c (do_ldelem): refactor it to work with ldelem.any.
5101
5102         * verify.c (mono_method_verify): property verification of ldelem.any.
5103
5104 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5105
5106         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
5107         added ldelem.X opcodes.
5108
5109         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
5110
5111         * verify.c: proper verification of ldelem.X 
5112
5113 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
5114
5115         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
5116
5117 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5118
5119         * verify.c (mono_method_verify): null literal requires special handling,
5120         the value pushed on stack need to be flagged as so.
5121
5122         * verify.c (do_ldelema): Verify ldelema properly.
5123
5124 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5125
5126         * verify.c: Verify ldlen properly.
5127
5128 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
5129
5130         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
5131         to the target object's type. Fixes #346160.
5132
5133 2007-12-05  Dick Porter  <dick@ximian.com>
5134
5135         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
5136         Solaris needs the same workaround as BSD-derived systems.  Fixes
5137         bug 323524, patch by Burkhard Linke
5138         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
5139
5140 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
5141
5142         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
5143         handle to use when error dialog is shown; otherwise, update mask
5144         to show no error dialog when an error occurs.
5145
5146 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
5147
5148         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
5149
5150         * class.c (mono_class_get_field_default_value): New helper function to initialize
5151         field->def_type and field->data.
5152
5153 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
5154
5155         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
5156         the general one.
5157
5158         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
5159
5160         * marshal.c: Avoid depending on delegate->method_info being set.
5161
5162         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
5163         
5164         * object.c (mono_delegate_ctor): Set delegate->method.
5165
5166         * object-internals.h (struct _MonoDelegate): Add 'method' field.
5167
5168         * appdomain.c: Bump corlib version.
5169
5170 2007-11-27  Raja R Harinath  <harinath@gmail.com>
5171
5172         * metadata.c (mono_generic_inst_equal_full): Short-circuit
5173         equality check if we're comparing canonicalized MonoGenericInsts.
5174
5175 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
5176
5177         * class.c (generic_array_methods): Call mono_class_setup_methods () before
5178         accessing class->methods.
5179
5180 2007-11-22  Dick Porter  <dick@ximian.com>
5181
5182         * threads.c: Ensure that the synch_cs is set before trying to use
5183         it.
5184
5185 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
5186
5187         * profiler.c: r89126 broke the statistial profiler, unbreak.
5188
5189 2007-11-22  Martin Baulig  <martin@ximian.com>
5190
5191         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
5192
5193         * mono-debug.c
5194         (mono_debug_debugger_version): Bump to 3.
5195         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
5196         -> mono_debugger_class_initialized().
5197
5198         * mono-debug-debugger.c
5199         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
5200
5201         * class.c
5202         (mono_debugger_start_class_init_func): Removed.
5203         (mono_debugger_class_loaded_methods_func): Added.
5204         (mono_class_setup_methods): Call it here.
5205
5206 2007-11-22  Martin Baulig  <martin@ximian.com>
5207
5208         * mono-debug.c
5209         (mono_debug_add_delegate_trampoline): New public method.
5210         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
5211
5212         * mono-debug.h
5213         (MonoSymbolTable): Added `global_data_table'.
5214         (MonoDebuggerTypeKind): Removed.
5215
5216 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
5217
5218         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
5219         these methods.
5220
5221         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5222         
5223 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
5224
5225         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
5226
5227 2007-11-20  Martin Baulig  <martin@ximian.com>
5228
5229         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
5230
5231         * mono-debug-debugger.c
5232         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
5233         (mono_debugger_remove_breakpoint): Likewise.
5234         (mono_debugger_check_breakpoints): Likewise.
5235         (mono_debugger_register_class_init_callback): New public method.
5236         (mono_debugger_remove_class_init_callback): Likewise.
5237         (mono_debugger_add_type): Likewise.
5238
5239         * mono-debug-debugger.h
5240         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
5241
5242 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
5243
5244         * class.c: more interface implementations needed for the
5245         array enumerator (fixes bug #341112).
5246
5247 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
5248
5249         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
5250         fix ParamName of ArgumentNullExceptions.
5251
5252 2007-11-17  Miguel de Icaza  <miguel@novell.com>
5253
5254         * reflection.c (mono_reflection_encode_sighelper): Generate the
5255         modopts and modreqs.   I have a useless test that crashes monodis,
5256         but that shows the code working.
5257
5258 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
5259
5260         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
5261         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
5262
5263 2007-11-15  Dick Porter  <dick@ximian.com>
5264
5265         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
5266         When joining a thread, it's the thread that's calling Join that
5267         gets WaitSleepJoin state not the target.  Fixes the standalone
5268         test case in bug 334740, and hopefully the whole bug too.
5269
5270 2007-11-15  Dick Porter  <dick@ximian.com>
5271
5272         * process.c: Read file version info from the files pointed at by
5273         process modules, not the current process.  Fixes bug 315969.
5274
5275         Use windows typedef names in some places to fix warnings on the
5276         windows build.
5277
5278 2007-11-15  Mark Probst  <mark.probst@gmail.com>
5279
5280         * image.c, metadata-internals.h: Added a generic_class_cache hash
5281         to MonoImage for looking up generic classes when sharing generics.
5282
5283 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
5284
5285         * sgen-gc.c: warning cleanups.
5286
5287 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
5288
5289         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
5290         inherited properties.
5291
5292 2007-11-14  Mark Probst  <mark.probst@gmail.com>
5293
5294         * object.c, class-internals.h: Added more information to the
5295         runtime generic context.
5296
5297 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
5298
5299         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
5300         instead of just the target method. Generalize the abstract method handling to
5301         handle any non-static method.
5302
5303         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
5304         mono_marshal_get_delegate_invoke () signature change.
5305
5306 2007-11-13  Mark Probst  <mark.probst@gmail.com>
5307
5308         * class.c, class-internals.h: Made
5309         mono_type_get_basic_type_from_generic () public.  Fixed member
5310         access check for shared generics.
5311
5312         * loader.c: Don't insert field into field cache if it's part of a
5313         non-inflated generic class.
5314
5315         * domain.c, domain-internals.h: The generic sharing context is now
5316         part of the jit info data structure.  Added two accessor
5317         functions.
5318
5319 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
5320
5321         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
5322         the array Get/Set/Address methods, since the JIT inlines them.
5323
5324         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
5325
5326         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
5327         (mono_image_init): Initialize runtime_invoke_direct_cache.      
5328
5329         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
5330         mono_marshal_get_delegate_invoke signature change.
5331
5332         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
5333         an additional argument. Add support for invoking abstract methods.
5334
5335         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
5336
5337         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
5338
5339 2007-11-09  Mark Probst  <mark.probst@gmail.com>
5340
5341         * class.c: Do field layout for open generic classes as well.
5342
5343 2007-11-09  Mark Probst  <mark.probst@gmail.com>
5344
5345         * gc.c, gc-internal.h: Don't finalize threadpool threads with
5346         other objects, because the threadpool is still around.  Put them
5347         in a list instead and after finalizing all other objects in the
5348         root domain shut down the thread pool and then finalize the
5349         threads.  Fixes bug #337383.
5350
5351         * threads.c, thread-types.h: New mono_thread_create_internal()
5352         function for marking a thread with the threadpool flag before it
5353         started.  Set synch_cs to NULL after freeing it.
5354
5355         * threadpool.c: Mark threadpool threads before they start.
5356
5357 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
5358
5359         * reflection.h, reflection.c: don't export random functions
5360         and lazy load dbnull and missing objects.
5361
5362 2007-11-07  Jonathan Chambers <joncham@gmail.com>
5363
5364         * class.c: Initialize COM types if COM interfaces
5365         are present (not just COM classes).
5366         
5367         Code is contributed under MIT/X11 license.
5368
5369 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
5370         * reflection.c:
5371         create_dynamic_mono_image: hook module profiler events (dynamic case).
5372         mono_image_basic_init: hook assembly profiler events (dynamic case).
5373
5374 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
5375         * profiler.c:
5376         simple_appdomain_unload: completely terminate the profiler
5377         instead of only processing the statistical samples.
5378         simple_shutdown: make sure this is really called exactly once,
5379         even in multithreaded applications, and always listen to
5380         appdomain events.
5381         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
5382         here, the "[un]load" functions will do it.
5383         Fixes bugs #333791 and #325261.
5384
5385 2007-11-07  Geoff Norton  <gnorton@novell.com>
5386
5387         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
5388         rather than depend on __APPLE__.
5389
5390 2007-11-07  Mark Probst  <mark.probst@gmail.com>
5391
5392         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
5393
5394 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
5395
5396         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
5397         UTF16 MonoString. Fix the crash from bug #335488
5398
5399 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
5400
5401         * marshal.c: Correct (for non-Win32 OS) length != size in 
5402         mono_string_from_bstr. Fix #339530.
5403
5404 2007-11-06  Geoff Norton  <gnorton@novell.com>
5405
5406         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
5407         to succeed
5408
5409 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
5410
5411         * process.c: Added run-time GetProcessId API detection for Windows.
5412
5413 2007-11-04  Miguel de Icaza  <miguel@novell.com>
5414
5415         * reflection.c  (mono_param_get_objects): If a parameter has the
5416         attribute [System.Runtime.InteropServices.Optional] we should
5417         set the DefaultValue of the ParameterInfo to be
5418         System.Reflection.Missing instead of DBNull.
5419
5420         See bug #339013.
5421
5422         (mono_get_reflection_missing_object): New method,
5423         returns the System.Reflection.Missing.Value singleton instance.
5424
5425 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
5426
5427         * culture-info-table.h : regenerated.
5428
5429 2007-11-02  Jonathan Chambers <joncham@gmail.com>
5430
5431         * icall.c: Use GetEnvironmentStrings on windows
5432         so we are using the same environment block as 
5433         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
5434         #333740.
5435         
5436         Code is contributed under MIT/X11 license.
5437
5438 2007-10-31  Martin Baulig  <martin@ximian.com>
5439
5440         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
5441
5442         * mono-debug-debugger.h
5443         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
5444
5445 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
5446
5447         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
5448         classes.
5449
5450 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
5451
5452         * culture-info-table.h : regenerated.
5453
5454 2007-10-30  Robert Jordan  <robertj@gmx.net>
5455
5456         * icall-def.h, icall.c:
5457         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
5458
5459         Code is contributed under MIT/X11 license.
5460
5461 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
5462
5463         * class.c (mono_class_setup_vtable): Find the inflated methods in the
5464         inflated class instead of inflating them again.
5465         
5466         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
5467         dynamic case.
5468
5469         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
5470         Call setup_supertypes () after klass->parent is set.
5471         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
5472
5473         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
5474         for inflated instances of not yet created dynamic generic classes.
5475         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
5476         times from inflated_method.
5477         (methodbuilder_to_mono_method): Ditto.
5478
5479 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
5480
5481         * gc.c: code cleanup and removed old untested option of not creating the
5482         finalizer thread.
5483
5484 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
5485
5486         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
5487         creating a jump trampoline for dynamic methods.
5488
5489 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
5490
5491         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
5492         generic TypeBuilders when called from another method of the same type (bug #335131).
5493
5494
5495 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
5496
5497         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
5498         doesn't seem to work perfectly.
5499         
5500         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
5501         called multiple times.
5502         (methodbuilder_to_mono_method): Ditto.
5503         (resolve_object): Inflate FieldBuilder's.
5504
5505 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
5506
5507         * string-icalls.c, string-icalls.h, appdomain.c: patch from
5508         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
5509         RemoveEmptyEntries in the string.Split implementation (bug #322375).
5510
5511 2007-10-26  Dick Porter  <dick@ximian.com>
5512
5513         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
5514         Thread initialisation changes
5515
5516 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
5517
5518         * verify.c: fix compatibility check between arrays and System.Array
5519
5520 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
5521
5522         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
5523         too. Fixes #336999.
5524
5525 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
5526
5527         * object.c (mono_value_box): Use typed allocation here.
5528
5529 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
5530
5531         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
5532         trampoline instead of compiling the method right away.
5533
5534         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
5535
5536 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
5537
5538         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
5539         related fields for dynamic classes. Fixes #334493.
5540
5541 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
5542
5543         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
5544         
5545         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
5546
5547         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
5548         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
5549
5550         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
5551
5552         * reflection.c (create_generic_typespec): Initialize klass->generic_container
5553         if needed.
5554         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
5555
5556 2007-10-18  Jonathan Chambers <joncham@gmail.com>
5557
5558         * marshal.c: Use correct key when removing item
5559         from ccw_hash.
5560         
5561         Code is contributed under MIT/X11 license.
5562
5563 2007-10-17  William Holmes  <billholmes54@gmail.com>
5564
5565         *marshal.c: Adding a case to marshal booleans to U1
5566
5567         Code is contributed under MIT/X11 license.
5568
5569 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
5570
5571         * class.c (mono_class_from_name): Search the modules compromising dynamic
5572         assemblies. Fixes #331601.
5573
5574 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
5575
5576         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
5577         exception if the type name contains an assembly component. Fixes #334203.
5578
5579         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
5580         modules inside dynamic assemblies. Fixes #334200.
5581         
5582         * reflection.c: Set image->public_key and image->public_key_length;
5583
5584         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
5585         fields.
5586
5587         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
5588         
5589 2007-10-16  Mark Probst  <mark.probst@gmail.com>
5590
5591         * metadata.c: Implemented correct comparing of generic classes.
5592         An inflated generic class can be equal to a non-inflated one if it
5593         is inflated with generic type variables as type arguments.  Fixes
5594         bug #333798.
5595
5596 2007-10-15  Dick Porter  <dick@ximian.com>
5597
5598         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
5599         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
5600         81646.
5601
5602         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
5603         instead of a monitor lock.  This means that monitor_try_enter and
5604         co can set the thread state safely.
5605         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
5606         thread_interrupt_requested, so interrupt actually works.
5607
5608         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
5609         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
5610         state accessor function
5611
5612 2007-10-15  Martin Baulig  <martin@ximian.com>
5613
5614         * mono-debug.h
5615         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
5616         the debugger with the current runtime.
5617
5618 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
5619
5620         * object.c, object-internals.h: added the ability to set a single
5621         trampoline for all the slots in a vtable.
5622
5623 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
5624
5625         * marshal.c: deal with a possible race condition during multicast
5626         delegate invocation.
5627
5628 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
5629
5630         * class.c: ensure value type methods don't have the synchronized
5631         flag set.
5632
5633 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
5634
5635         * string-icalls.c, string-icalls.h: reverted unapproved patch that
5636         breaks the build.
5637
5638 2007-10-11  Joel Reed  <joelwreed@comcast.com>
5639
5640         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
5641         to take an options parameter so that empty entries can be removed during
5642         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
5643
5644 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
5645
5646         * marshal.c: make sure we don't store the signature from a dynamic
5647         method into the runtime invoke cache (bug #327189).
5648
5649 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
5650
5651         * marshal.c: make sure the wrapper methods are properly initialized.
5652
5653 2007-10-11  Mark Probst  <mark.probst@gmail.com>
5654
5655         * metadata.c, metadata-internals.h: Generalized
5656         mono_type_stack_size() to mono_type_stack_size_internal() which
5657         takes an additional argument specifying whether it allows open
5658         types.
5659
5660 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
5661
5662         * verify.c (do_invoke_method): handle typedbyref params
5663         correctly and check for unverifiable return values.
5664
5665         * verify.c (do_newobj): fix a warning.
5666
5667 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
5668
5669         * verify.c: don't tread typedbyref as allways unverifable,
5670         so uses, like (ld/st)loc.0 are valid. verify for the cases
5671         that it matters, like boxing related operations.
5672
5673 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
5674
5675         * verify.c: add verification of the newobj opcode. verification
5676         of delegate instantation still missing due ldftn and virldftn not
5677         pushing the function type on stack
5678
5679 2007-10-08  Mark Probst  <mark.probst@gmail.com>
5680
5681         * class-internals.h: Runtime generic context data structure
5682         definition.
5683
5684         * object.c: Initialization of runtime generic context at runtime
5685         vtable creation time.
5686
5687 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
5688         * class.c (mono_class_create_from_typedef,
5689         mono_class_from_generic_parameter, mono_ptr_class_get,
5690         mono_fnptr_class_get, mono_bounded_array_class_get)
5691         * domain.c (mono_domain_create, mono_domain_free)
5692         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
5693         * image.c (do_mono_image_load, mono_image_close):
5694         Hooked up load-unload profiler events.
5695
5696 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
5697
5698         * domain.c: track statistics about the actual amount of native code
5699         allocated.
5700
5701 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
5702
5703         * class.c: the valuetype enumerators don't have the additional
5704         supertypes interfaces.
5705
5706 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
5707
5708         * class.c: need more interfaces setup for the IEnumerator<T>
5709         object created for arrays (tests/ienumerator-interfaces.2.cs).
5710
5711 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
5712
5713         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
5714
5715 2007-10-05  Alp Toker  <alp@atoker.com>
5716
5717         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
5718         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
5719         #315863.
5720
5721 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
5722
5723         * verify.c (verify_type_compatibility_full): verification of
5724         compatibility improved, validates correctly non-strict checks between
5725         native int and I4 types different than (unsigned)int32.
5726
5727         * verify.c (do_store_indirect): added, do all verification of
5728         ldind.X opcodes. 
5729
5730         * verify.c (get_load_indirect_mono_type): renamed to
5731         get_indirect_op_mono_type, as it now returns the MonoType for 
5732         ldind.X and stind.X opcodes.
5733
5734 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
5735
5736         * reflection.c: Fix the encoding of generic type definition for
5737         TypeBuilders.
5738
5739         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
5740         mono_image_typedef_or_ref but allows to specify if typespec lookups should
5741         be made. Typespec check is done prior to typeref cache lookup.
5742
5743         * reflection.c (mono_image_typedef_or_ref): now just delegate to
5744         mono_image_typedef_or_ref_full.
5745
5746         * reflection.c (encode_generic_class): encode the generic class
5747         directly instead of calling encode_type.
5748
5749         * reflection.c (encode_type): encode the generic type definition
5750         MonoClass as a generic instantiation.
5751
5752         * reflection.c (create_typespec): cache typespec tokens in
5753         the assembly->typespec cache. Don't create typespec for a generic
5754         instance MonoClass. Create typespec for the generic type defintion.
5755
5756         * reflection.c (create_generic_typespec): encode the generic
5757         class directly instead of calling encode_type.
5758
5759         * reflection.c (mono_image_create_token): encode the generic
5760         type definition not using a typespec for MonoType instances.
5761
5762
5763 2007-10-04  Raja R Harinath  <rharinath@novell.com>
5764
5765         Fix #328812
5766         * class.c (mono_image_init_name_cache): Don't return nested
5767         'protected internal' classes.
5768         (mono_class_from_name_case): Likewise.
5769
5770 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
5771
5772         * icall-def.h, icall.c : get_bundled_machine_config() is now the
5773           common function used by both DefaultConfig in System.dll and
5774           InternalConfigurationHost in System.Configuration.dll.
5775
5776 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
5777
5778         * class.c: automatically add to vectors only a few essential explicit
5779         generic interfaces. The rest of the interfaces that arrays should
5780         provide are currently implicitly added (but still not lazily, see the
5781         design in the discussion of bug#325495 for the details of what is
5782         needed for that). Additionally, implicit interfaces are assigned the
5783         same vtable slot as the explicit interfaces (as they are compatible):
5784         this enables huge memory savings since we don't need to instantiate
5785         as many memthods and as large vtables anymore. Also, Since
5786         GetEnumerator<T> returns an instance of a type that is required to
5787         support a similarly large set of interfaces as arrays, we add
5788         implicit interfaces and interface offset sharing support to those
5789         types, too. This change adds all the required interfaces so that
5790         the anonarray.cs test case in the bug report works (we don't add
5791         all the interfaces to arrays of arrays 3-level deep and more because
5792         of the memory requirements explained in the bug and since they are much
5793         less common: the lazy-loading support will enabled them to work, too).
5794
5795 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
5796
5797         * verify.c (merge_stacks): major clean up, all type compatibility
5798         checks are done by verify_type_compatibility. This fix my earlier lack
5799         of understanding of the CLR type system and merge_stacks no longer looks
5800         scary.
5801
5802         * verify.c: fixed some bad spelling.
5803
5804 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
5805
5806         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
5807         a given stack slock.
5808         
5809         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
5810         verify_type_compatibility_full. This removed a near indentical function and fixed
5811         handling of Int32 and IntPtr across all opcodes.
5812
5813 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
5814
5815         * class.c: only vectors have the additional generic interfaces.
5816
5817 2007-10-01  Jonathan Chambers <joncham@gmail.com>
5818
5819         * mono-config.c: Use g_strcasecmp instead of
5820         strcasecmp like everywhere else to fix
5821         compilation with MSVC.
5822         
5823         Code is contributed under MIT/X11 license.
5824
5825 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
5826
5827         * object.c, object-internals.h: refactored the IMT code to enable
5828         building a single slot at a time and lazily creating the IMT trampolines
5829         and thunks.
5830
5831 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
5832
5833         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
5834
5835         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
5836         Fixes #328501.
5837         
5838 2007-09-29  Raja R Harinath  <harinath@gmail.com>
5839
5840         * loader.c (method_from_methodspec): Rearrange to avoid
5841         un-necessary exposition.  Don't assert out if the method's
5842         declaring type is a generic type definition.
5843
5844 2007-09-28  Martin Baulig  <martin@ximian.com>
5845
5846         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
5847
5848 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
5849
5850         * class-internals.h: optimize field layout of MonoClass to
5851         requires less cachelines at runtime and save a few bytes on 64 bit
5852         systems.
5853
5854 2007-09-28  Jb Evain  <jbevain@novell.com>
5855
5856         * reflection.c: when encoding type names in custom attributes,
5857         if the type is a closed generic type, its generic arguments
5858         have to be serialized as AssemblyQualifiedName, so that when
5859         they are deserialized, it's possible to re-create them properly.
5860         Fixes #329450.
5861
5862
5863 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
5864
5865         * object.c, class-internals.h: added delegate-creation counter.
5866
5867 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
5868
5869         * class.c: cleanup of the code that synthetizes interfaces for
5870         arrays in 2.0: saves quit a bit of corlib mempool memory.
5871         Code to fix bug #325495 ifdeffed out for now until the issues
5872         with memory usage and O(n^2) behaviour are fixed.
5873
5874 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
5875
5876         * marshal.c: when possible, do not duplicate the name of the methods
5877         in the method builder and in the generated MonoMethod.
5878
5879 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
5880         * verify.c: added support for type checking ldind_* opcodes.
5881
5882 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
5883
5884         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
5885         which is used to distinguish the fully open instantiation of a TypeBuilder
5886         with the rest. This temporary hack is required to restore the property that
5887         the fully open instantiation is the same type of the generic type definition.
5888
5889         * class-internals.h (mono_generic_class_is_generic_type_definition):
5890         new function as part of the internal API.
5891
5892         * class.c (inflate_generic_type): return NULL when the generic inst is
5893         fully open. The fully open generic type is now the same as the generic type
5894         definition for non TypeBuilder types.
5895
5896         * class.c (mono_generic_class_get_class): removed assert since it is
5897         no longer valid, gklass->cached_class can point to the generic type definition.
5898
5899         * class.c (mono_generic_class_is_generic_type_definition): new.
5900
5901         * metadata.c (mono_generic_class_hash): added is_tb_open field
5902         to the hash calculation.
5903
5904         * metadata.c (free_generic_class): if the generic class is associated
5905         with the generic type definition, its field will come from the mempool and
5906         must not be freed.
5907
5908         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
5909         new, this function identifies the corner case of a TypeBuilder fully open
5910         instantiation.
5911
5912         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
5913         for lookup. Set gclass->cached_class to be the container class in case of
5914         the fully open instantiation of non TypeBuilder types.
5915
5916         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
5917         to compare generic classes.
5918
5919         * reflection.c (method_encode_methodspec): remove assert that
5920         no longer is valid.
5921
5922         * reflection.c (mono_reflection_generic_class_initialize): add
5923         an aditional assert to ensure the proper type is used.
5924
5925 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
5926
5927         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
5928         to enjoy it.
5929
5930 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
5931
5932         * verify.c (push_arg): Fixed support for ldarga
5933         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
5934         MonoType used as first arg in case of instance calls.
5935
5936 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
5937
5938         * verify.c: Support for verifying VAR and MVAR types, 
5939
5940 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
5941
5942         * icall.c (ves_icall_get_property_info): Set the reflected type of the
5943         accessors correctly.
5944
5945 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
5946
5947         * threads.c: support OSX and other systems in
5948         mono_thread_get_stack_bounds (bug #328026).
5949
5950 2007-09-25  Martin Baulig  <martin@ximian.com>
5951
5952         * mono-debug.h
5953         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
5954
5955 2007-09-24  Martin Baulig  <martin@ximian.com>
5956
5957         * mono-debug.h
5958         (MonoDebugClassEntry): Moved the definition of this struct into
5959         mono-debug.c to make it private.
5960
5961         * mono-debug.c
5962         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
5963         type table per symbol file, we don't need to store the symfile id
5964         any longer.
5965
5966 2007-09-24  Martin Baulig  <martin@ximian.com>
5967
5968         Create one type table per symbol file, since a `MonoClass *' gets
5969         invalid when its image is unloaded.
5970
5971         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
5972         (MonoDebugHandle): Added `type_table'.
5973
5974 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
5975
5976         * mempool.c, mempool.h: added mono_mempool_new_size () API
5977         to be able to specify a smaller initial size for the pool.
5978         Adjusted the code to slowly increase pool size before using
5979         the previous default size.
5980         * image.c: use a small initial size for image mempools.
5981
5982 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
5983
5984         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
5985         Fixes ##320990.
5986
5987         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
5988         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
5989
5990 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
5991
5992         * metadata.c (mono_type_create_from_typespec): Remove an invalid
5993         free. Fixes #327438.
5994
5995 2007-09-21  Raja R Harinath  <harinath@gmail.com>
5996
5997         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
5998         generic instantiations, etc.
5999         <MONO_TYPE_ARRAY>: Likewise.
6000
6001 2007-09-21  Martin Baulig  <martin@ximian.com>
6002
6003         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
6004         these structs were never defined.
6005         (MonoDebugHandle): Removed the `_priv' field, it was never used.
6006
6007 2007-09-21  Martin Baulig  <martin@ximian.com>
6008
6009         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
6010
6011 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
6012
6013         * image.c: removed the guid hash tables: we can get the same info
6014         without the additional memory usage hit (partially fixes also bug #327052).
6015
6016 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
6017
6018         * profiler.h, profiler-private.h, profiler.c: add a new profiler
6019         event to handle unloading methods. After the event is called, the
6020         corresponding MonoMethod* must be considered invalid.
6021         * loader.c (mono_free_method): call the new mono_profiler_method_free
6022         event.
6023
6024 2007-09-20  Mark Probst  <mark.probst@gmail.com>
6025
6026         * domain-internals.h: New flag in MonoJitInfo which marks shared
6027         generic methods.  New hash table (shared_generics_hash) in
6028         MonoDomain to keep track of shared generic methods.  Prototypes
6029         for functions to register and lookup shared generic methods.
6030
6031         * domain.c: Support for registering and looking up shared generic
6032         methods via a hash table (shared_generics_hash) in MonoDomain.
6033
6034         * class-internals.h: New exception to signal failure of shared
6035         compilation of a generic method.  New counters for generics
6036         sharing in MonoStats.
6037
6038 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
6039
6040         * image.c, metadata-internals.h: don't keep a file descriptor open
6041         for loaded assemblies (bug#325988).
6042
6043 2007-09-19  Raja R Harinath  <rharinath@novell.com>
6044
6045         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
6046         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
6047         use the corresponding datatypes.
6048         (type_in_image): Update to changes.
6049         (CleanForImageUserData): Simplify.
6050         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
6051         Avoid quadratic behaviour in handling the "stolen" list by
6052         separating the filter predicate out, and by prepending the stolen
6053         items rather than appending them.
6054         (steal_ginst_in_image): Likewise.
6055         (mono_metadata_clean_for_image): Update to changes.
6056
6057 2007-09-19  Martin Baulig  <martin@ximian.com>
6058
6059         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
6060
6061 2007-09-19  Martin Baulig  <martin@ximian.com>
6062
6063         * mono-debug.c (mono_debug_cleanup): Don't call
6064         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
6065
6066 2007-09-19  Raja R Harinath  <harinath@gmail.com>
6067
6068         Fix crash on 'make run-test' in mcs/errors
6069         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
6070         Avoid more potential allocations in mono_class_from_mono_type.
6071         (ginst_in_image): Update to changes.
6072         (gclass_in_image): Rearrange slightly.
6073
6074 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
6075
6076         * class.c (mono_class_init): Move the code that sets up class->methods to 
6077         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
6078
6079         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
6080         canonical instance of an inflated generic signature.
6081         (mono_type_create_from_typespec): Remove an invalid free.
6082
6083         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
6084
6085 2007-09-18  Marek Habersack  <mhabersack@novell.com>
6086
6087         * domain-internals.h: added a declaration of the
6088         mono_assembly_load_full_nosearch internal function.
6089
6090         * assembly.c (mono_assembly_load_with_partial_name): use
6091         mono_try_assembly_resolve return value properly.
6092         (mono_assembly_load_full_nosearch): copied the function body from
6093         mono_assembly_load_full, without the code to invoke assembly
6094         search hooks.
6095         (mono_assembly_load_full): calls the above new function and if the
6096         assembly is not resolved, invokes the search hooks.
6097
6098         * appdomain.c (mono_runtime_init): restore the global postload
6099         assembly search handlers.
6100
6101 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
6102
6103         * class.c (mono_class_init): Make sure class->methods and class->properties
6104         are never NULL in the generics case.
6105
6106         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
6107
6108 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
6109
6110         * metadata.c (free_generic_class): Disable some code to fix the build.
6111
6112         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
6113
6114         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
6115         from the image mempool.
6116
6117         * metadata.c (free_generic_class): Free more data from the inflated class.
6118
6119         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
6120
6121         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
6122         mempool.
6123         (mono_type_create_from_typespec): Ditto.
6124
6125         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
6126         MonoImage to the caller.
6127         (mono_init_internal): Save the opened image in a global variable.
6128         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
6129
6130         * reflection.c (resolve_object): Fix a leak.
6131
6132         * metadata.c: Fix the freeing of data in the generics caches.
6133         
6134         * metadata.c (free_generic_inst): Comment this out to fix the build.
6135         (free_generic_class): Ditto.
6136
6137         * metadata.c: Free cached generic methods, instantinations and classes when
6138         they are removed from the caches.
6139         (mono_metadata_free_type): Free the type itself.
6140
6141         * class.c: Free the result of mono_class_inflate_generic_type () in a few
6142         places.
6143
6144 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
6145
6146         * boehm-gc.c: restrict managed allocs to __thread supporting
6147         architectures.
6148
6149 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
6150
6151         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
6152         (mono_generic_class_get_class): Fix a leak.
6153
6154         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
6155         mono_metadata_free_type ().
6156         (mono_metadata_inflate_generic_inst): Fix a leak.
6157
6158 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6159
6160         * mono-debug.c (free_header_data): Fix a leak missed earlier.
6161
6162         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
6163         mempool.
6164
6165         * mono-debug.c (mono_debug_close_image): Fix call to 
6166         g_hash_table_remove ().
6167
6168 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
6169
6170         * icall-def.h: redirect all the string ctor to the managed
6171         CreateString () methods.
6172         * string-icalls.c, string-icalls.h: removed dead code for string
6173         ctors and icalls.
6174
6175 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6176
6177         * mono-debug.c: Fix memory leaks.
6178
6179 2007-09-14  Jonathan Chambers <joncham@gmail.com>
6180
6181         * threads-types.h: Implement mono_hazard_pointer_set and 
6182         mono_hazard_pointer_clear macros using do/while(0) to fix
6183         compilation with MSVC.
6184         
6185         Code is contributed under MIT/X11 license.
6186
6187 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6188
6189         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
6190         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
6191
6192 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6193
6194         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
6195         icalls.
6196
6197 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6198
6199         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
6200         managed-code allocated as well.
6201
6202 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
6203
6204         * class.c (mono_class_is_assignable_from): Add support for generic variance.
6205
6206 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
6207
6208         * boehm-gc.c: fixed the build after the AOT changes.
6209
6210 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
6211
6212         * wrapper-types.h: Add an ALLOC wrapper type.
6213
6214         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
6215         reference managed allocator methods.
6216
6217 2007-09-12  Marek Safar  <marek.safar@gmail.com>
6218
6219         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
6220         of Type array and not MonoType, a fix suggested by Hari.
6221         
6222 2007-09-12  Jonathan Chambers <joncham@gmail.com>
6223
6224         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
6225         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
6226         
6227         Code is contributed under MIT/X11 license.
6228
6229 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
6230
6231         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
6232
6233 2007-09-12  Marek Habersack  <mhabersack@novell.com>
6234
6235         * image.c (do_mono_image_open): if assembly file fails to open and
6236         MONO_IOMAP is in effect, try to find the path in a
6237         case-insensitive way.
6238
6239         * appdomain.c (mono_runtime_init): do not install postload hooks -
6240         tests show that MS.NET doesn't use anything of that sort to
6241         trigger the AppDomain.AssemblyResolve event.
6242         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
6243         made non-static.
6244         (mono_runtime_init): init portability helpers here.
6245
6246         * assembly.c (mono_assembly_load_with_partial_name): if other   
6247         attempts fail, trigger the AppDomain.AssemblyResolve event handler
6248         to resolve the assembly.
6249
6250         * domain-internals.h: added mono_try_assembly_resolve and marked
6251         it as internal.
6252
6253 2007-09-11  Jb Evain  <jbevain@novell.com>
6254
6255         * object-internals.h (MonoReflectionDynamicMethod): add
6256         a `MonoReflectionType *owner` field. The owner is used
6257         * reflection.c:
6258         (mono_reflection_create_dynamic_method): use the owner of the dynamic
6259         method as the class declaring the dynamic method.
6260         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
6261         dynamic method to the declaring type of the methodbuilder.
6262
6263 2007-09-11  Mark Probst  <mark.probst@gmail.com>
6264
6265         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
6266         rules for calling methods via reflection.
6267
6268 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
6269
6270         * reflection.c (resolve_object): Add support for MonoGenericClass. 
6271         Inflate MonoType's.
6272
6273 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
6274
6275         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
6276         provide a managed method that does fast allocations without needing
6277         a managed->unmanaged transition. Boehm GC implementation currently
6278         enabled for ptrfree objects on sane architectures.
6279
6280 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
6281
6282         * marshal.c, marshal.h: exported a couple of useful functions and
6283         added mono_mb_get_label () to easily handle backward branches.
6284
6285 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
6286
6287         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
6288
6289 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
6290
6291         * loader.c (find_method): Fixed the regression introduced while
6292         fixing bug #81466.
6293
6294 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
6295
6296         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
6297         well.
6298         
6299         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
6300         icall.c reflection.c: Pass a MonoGenericContext argument to 
6301         mono_lookup_dynamic_token ().
6302
6303         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
6304         #82744.
6305         
6306 2007-09-09  Robert Jordan  <robertj@gmx.net>
6307
6308         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
6309         for generic methods.
6310
6311         * object.c (mono_object_get_virtual_method): Handle generic methods.
6312         Fixes bug #78882.
6313
6314         Code is contributed under MIT/X11 license.
6315
6316 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
6317
6318         * image.c: fix locking in mono_image_load_file_for_image ().
6319
6320 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
6321
6322         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
6323         used only as a cache: added an icall to fill it.
6324
6325 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
6326
6327         * reflection.h: exposed mono_reflection_free_type_info
6328         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
6329         since mono_reflection_bind_generic_parameters makes a copy of it.
6330         * reflection.c (free_type_info): subinfos should be freed.
6331         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
6332         made non static.
6333         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
6334         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
6335         this fixes #82695 and #81726.
6336    
6337
6338 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
6339
6340         * process.h, process.c:  added support for user profile/info in
6341           ProcessStartInfo. For now only Windows works.
6342
6343 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
6344
6345         * metadata.c: consider the generic arguments when comparing
6346         signatures (bug #82614).
6347
6348 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
6349
6350         * cil-coff.h, image.c: updated assembly loader to cope with the
6351         PE32+ 64 bit file format.
6352
6353 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
6354
6355         * assembly.c, class.c, domain.c, loader.c: remove useless
6356         inclusion of cil-coff.h.
6357
6358 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
6359
6360         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
6361         if interface is marked with CoClassAttribute. 
6362    
6363         Code is contributed under MIT/X11 license.
6364
6365 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
6366
6367         * sgen-gc.c: ensure no object from the to space is copied again or finalized
6368         if it's seen twice in major collections.
6369
6370 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
6371
6372         * sgen-gc.c: big objects are not copied to the gray area, but they
6373         need to be considered for scanning, too, if they are brought alive
6374         by an object ready for finalizations or a survived one.
6375
6376 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
6377
6378         * sgen-gc.c: properly account the number of disappearing links when
6379         they are nullified.
6380
6381 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
6382
6383         * sgen-gc.c: share the code to scan the registered roots between the
6384         different types of collections.
6385
6386 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
6387
6388         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
6389
6390 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
6391
6392         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
6393         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
6394
6395 2007-08-28  Mark Probst  <mark.probst@gmail.com>
6396
6397         * security-manager.c (mono_security_manager_get_methods):
6398         LinkDemandSecurityException now has 2 arguments instead of 3.
6399
6400 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
6401
6402         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
6403         platforms which need it.
6404
6405 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
6406
6407         * sgen-gc.c: unregister thread data structures with a pthread_key_t
6408         dtor.
6409
6410 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
6411
6412         * threads.c: free the thread static data on thread exit.
6413
6414 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
6415
6416         * class.c: walk the hierarchy to find the generic definition for
6417         a class (fixes runtime part of bug #82498).
6418
6419 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
6420
6421         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
6422         ...
6423
6424         * image.c (mono_image_close): Here. Hopefully fixes #82510.
6425
6426 2007-08-24  Mark Probst  <mark.probst@gmail.com>
6427
6428         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
6429
6430 2007-08-24  Robert Jordan  <robertj@gmx.net>
6431
6432         * appdomain.c: don't perform the ':'->';' substitution on Win32.
6433
6434 2007-08-24  Jb Evain  <jbevain@novell.com>
6435
6436         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
6437         for byref types.
6438
6439 2007-08-24  Mark Probst  <mark.probst@gmail.com>
6440
6441         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
6442         #82286.
6443
6444 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
6445
6446         * assembly.c: Fix a warning.
6447         
6448 2007-08-23  Marek Habersack  <mhabersack@novell.com>
6449
6450         * appdomain.c: parse the <runtime> section looking for the probing
6451         element with the 'privatePath' attribute, which sets additional
6452         directories in which the runtime should look for assemblies.
6453
6454 2007-08-23  Robert Jordan  <robertj@gmx.net>
6455
6456         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
6457         Fixes #82499.
6458
6459 2007-08-23  Martin Baulig  <martin@ximian.com>
6460
6461         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
6462         _mono_debug_init_corlib() and remove it from the header file.
6463
6464 2007-08-23  Martin Baulig  <martin@ximian.com>
6465
6466         * mono-debug-debugger.c
6467         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
6468         don't notify the debugger about it.
6469
6470         * mono-debug-debugger.h
6471         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
6472
6473 2007-08-23  Robert Jordan  <robertj@gmx.net>
6474
6475         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
6476         Code is contributed under MIT/X11 license.
6477
6478 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
6479
6480         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
6481
6482 2007-08-22  Martin Baulig  <martin@ximian.com>
6483
6484         * mono-debug.c: Store debugging info on a per-domain basis and
6485         free it on domain unload.  Add support for unloading symbol files.
6486
6487         * mono-debug.h
6488         (MonoDebugList): New typedef.
6489         (MonoSymbolTable):
6490         - add `data_tables and `type_table'.
6491         - replace 'symbol_files' and `num_symbol_files' with a
6492           `MonoDebugList *'.
6493         (mono_debug_data_table): Removed.
6494         (mono_debug_list_add): New public function.
6495         (mono_debug_list_remove): New public function.
6496         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
6497         (mono_debug_init_2_memory): Renamed into
6498         mono_debug_open_image_from_memory().
6499         (mono_debug_close_image): New public function.
6500         (mono_debug_domain_create): Likewise.
6501         (mono_debug_domain_unload): Likewise.
6502         (MONO_DEBUGGER_VERSION): Bump to 60.
6503
6504         * mono-debug-debugger.h
6505         (MonoDebuggerEvent):
6506         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
6507         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
6508         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
6509         - rename `THREAD_CREATED' and `THREAD_EXITED' into
6510           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
6511         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
6512           meaning.
6513         (mono_debugger_add_symbol_file): Removed.
6514         (mono_debugger_add_type): Removed.
6515         (mono_debugger_lookup_type): Removed.
6516         (mono_debugger_lookup_assembly): Removed.
6517
6518         * domain.c
6519         (mono_domain_create): Call mono_debug_domain_create().
6520         (mono_init_internal): Call mono_debug_init_corlib().
6521
6522         * assembly.c
6523         (mono_assembly_close): Call mono_debug_close_image().
6524
6525 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
6526
6527         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
6528         mmap call.
6529
6530 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
6531
6532         * sgen-gc.c: ensure section->pin_queue_end is initialized
6533         correctly when non pinning objects in the section have been found.
6534
6535 2007-08-22  Marek Habersack  <mhabersack@novell.com>
6536
6537         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
6538         containing a list of directories separated by ':'. MSDN docs say
6539         the directories should be separated with ';'. Part of a bugfix for
6540         bug #81446
6541
6542 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
6543
6544         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
6545         it should MonoType and not MonoClass.
6546
6547 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
6548
6549         * culture-info-table.h : regenerated.
6550
6551 2007-08-20  William Holmes  <billholmes54@gmail.com>
6552
6553         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
6554          to call ReplaceFile Kernel32 on windows or in io-layer.
6555         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
6556         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
6557          as an internal call.
6558
6559         Code is contributed under MIT/X11 license.
6560
6561 2007-08-20  Jb Evain  <jbevain@novell.com>
6562
6563         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
6564         and MONO_EXCEPTION_FIELD_ACCESS.
6565
6566         * debug-helpers.[c|h]: new mono_field_full_name function.
6567
6568 2007-08-20  Mark Probst  <mark.probst@gmail.com>
6569
6570         * class.c: Removed class_security_level() and moved it to
6571         security-core-clr.c.
6572
6573         * security-core-clr.c, security-core-clr.h: class_security_level()
6574         is now public and renamed to mono_security_core_clr_class_level().
6575         It also looks for security attributes in the classes a class is
6576         nested in.
6577
6578 2007-08-20  Mark Probst  <mark.probst@gmail.com>
6579
6580         * security-core-clr.c, security-core-clr.h: CoreCLR security
6581         utility functions.
6582
6583         * Makefile.am: Added security-core-clr.[ch].
6584
6585         * security-manager.c, security-manager.h: Functions and enum for
6586         setting and getting the security mode.
6587
6588         * class.c: CoreCLR security checks.
6589
6590 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
6591
6592         * icall-def.h, process.c, process.h: implemented icall to get
6593         user/system processor times.
6594
6595 2007-08-17  Mark Probst  <mark.probst@gmail.com>
6596
6597         * domain.c, threads.c, class-internals.h, domain-internals.h: New
6598         reader-lock-free jit_info_table.
6599
6600 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
6601
6602         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
6603
6604         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
6605
6606         * object-internals.h (MonoException): Add missing _data member.
6607
6608 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
6609
6610         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
6611         checking that only methods with matching qname or fqname are picked
6612         from implemented interfaces.
6613
6614 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
6615
6616         * verify.c (do_newarr):added, do type verification of
6617         newarr ops, push the right value on the eval stack.
6618         * verify.c (mono_method_verify): use do_newarr
6619
6620
6621 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
6622
6623         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
6624         factored the common code into get_boxable_mono_type, which
6625         is now using mono_type_get_full, this fixed byref related tests.
6626
6627 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
6628
6629         * class.c: added mono_type_get_full, this function has the same
6630         behavior of mono_class_get_full but the returned MonoType has
6631         all metadata of the associated token in case of a typespec token.
6632         * class.c: added mono_type_retrieve_from_typespec, used by 
6633         mono_type_get_full to retrieve the token type.
6634         * class.c (mono_class_create_from_typespec): changed to use
6635         mono_type_retrieve_from_typespec.
6636         * class.c (mono_ldtoken): changed to use mono_type_get_full
6637         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
6638         * class-internals.h: exported mono_type_get_full for internal use.
6639
6640 2007-08-16  Jb Evain  <jbevain@novell.com>
6641
6642         * domain.c (supported_runtimes): add entry for
6643         the 'moonlight' runtime version.
6644
6645 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
6646
6647         * verify.c (mono_method_verify): small typo sliped in.  
6648
6649 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
6650
6651         * verify.c (do_unbox_value): added, do type verification of
6652         unboxing ops
6653         * verify.c (mono_method_verify): use do_unbox_value
6654
6655
6656 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
6657
6658         * verify.c (dump_stack_value): fixed typo, was printing string
6659         instead of object on stack.
6660         * verify.c (do_box_value): moved the byref check up as it leads
6661         to invalid code and should be done earlier.
6662         * verify.c: improved error messages for and ldobj
6663
6664 2007-08-15  William Holmes  <billholmes54@gmail.com>
6665
6666         * marshal.c (emit_marshal_custom): Omit the call to 
6667           marshal_native_to_managed when calling native to managed 
6668           and the argument is specified as an out argument.
6669
6670         Code is contributed under MIT/X11 license.
6671
6672 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
6673
6674         * verify.c: fixed the type checks for generics, function pointers and vectors.
6675         Added type verification for ldobj and ldtoken. The verifier
6676         would segfault if header or signature of a method contained references
6677         to non-existant types.
6678
6679 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
6680
6681         * marshal.c (cominterop_get_ccw): Patch from
6682         Bill Holmes to no walk up interface hierarchy. 
6683         All parent methods should be present in the interface for COM.
6684    
6685         Code is contributed under MIT/X11 license.
6686
6687 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
6688
6689         * marshal.c (emit_marshal_com_interface): Patch from
6690         Bill Holmes to handle COM Interfaces as return values
6691         for native->managed calls.
6692    
6693         Code is contributed under MIT/X11 license.
6694
6695 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
6696
6697         * marshal.c (cominterop_get_idispatch_for_object): Implement
6698         for runtime callable wrappers.
6699    
6700         Code is contributed under MIT/X11 license.
6701
6702 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
6703
6704         * pedump.c (main): changed from mono_init to mono_init_from_assembly
6705         so 2.0 types are accessible
6706
6707
6708 2007-08-13  Miguel de Icaza  <miguel@novell.com>
6709
6710         * domain.c (mono_init_internal): Call mono_assembly_load_friends
6711         once we load mscorlib.   Due to the order in which we initialize,
6712         the mono_assembly_load_full routine that loads mscorlib did not
6713         load friends.   We now load it once we load the
6714         mono_defaults.internals_visible_class class. 
6715
6716         * assembly.c: Expose the mono_load_friend_assemblies method.
6717
6718 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
6719
6720         * verify.c: improved the handling of boxing, better
6721         type checking for unary ops and conversion. Fix bug
6722         regarding managed pointer compatibility checking
6723
6724 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
6725
6726         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
6727
6728         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
6729
6730 2007-08-09  Raja R Harinath  <rharinath@novell.com>
6731
6732         * reflection.c (dup_type): Remove.
6733         * class.c (dup_type): Remove.
6734         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
6735         instead of the dodgy 'dup_type'.
6736         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
6737         handle the case where 'dup_type' needed the second argument.
6738
6739 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
6740
6741         * domain.c: Fix a warning.
6742
6743 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
6744
6745         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
6746         checking that methods with the same fqname are not overridden
6747         with a method from an ancestor.
6748
6749 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
6750
6751         * threads.c (free_thread_static_data_helper): Avoid a crash if
6752         thread->static_data is not yet set.
6753
6754 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
6755
6756         * marshal.c: Use correct image when emitting
6757         native wrapper for COM calls.
6758    
6759         Code is contributed under MIT/X11 license.
6760
6761 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
6762
6763         * icall-def.h, security.c, security.h :
6764           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
6765
6766 2007-08-07  Martin Baulig  <martin@ximian.com>
6767
6768         * mono-debug-debugger.h
6769         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
6770
6771         * domain.c (mono_domain_free): Call
6772         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
6773
6774 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
6775
6776         * verify.c (check_underflow, check_overflow): error message now returns IL offset
6777         * verify.c (in_same_block): code should test if either offset is inside the clauses
6778         * verify.c (mono_method_verify): push the exception into the eval stack of exception
6779         and filter blocks
6780
6781 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
6782
6783         * image.c (mono_image_close): Fix a leak.
6784
6785         * object.c (mono_runtime_invoke_array): Avoid using alloca.
6786
6787         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
6788
6789 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
6790
6791         * domain.c, threads.c, threads-types.h: fix memory retention issue
6792         with thread static variables not being cleared on domain unload.
6793         Reuse thread static slots after domain unload.
6794
6795 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
6796
6797         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
6798         nullable type.
6799
6800         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
6801         now done in mono_runtime_invoke_array.
6802
6803         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
6804         receiver is a nullable type.
6805
6806         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
6807         generic parameter.
6808
6809 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
6810
6811         * marshal.c: Implement COM Objects as return type for 
6812         managed->unmanaged calls. Added Release calls for COM Object
6813         out/return values in managed->unmanaged calls.
6814
6815         Code is contributed under MIT/X11 license.
6816
6817 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
6818
6819         * threads.h, threads-type.h: move the hazard pointer declarations
6820         to the private header.
6821
6822 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
6823
6824         * file-io.c, appdomain.c: memory leak fixes.
6825
6826 2007-08-02  Dick Porter  <dick@ximian.com>
6827
6828         * socket-io.c
6829         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
6830         SO_REUSEADDR setting into io-layer/sockets.c.
6831
6832 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
6833
6834         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
6835         from Object when called on a generic parameter. Fixes #82211.
6836
6837 2007-08-01  Dick Porter  <dick@ximian.com>
6838
6839         * file-io.c (convert_share): Test FileShare values bit-by-bit.
6840         Fixes bug 79250 yet again.
6841
6842 2007-07-30  Martin Baulig  <martin@ximian.com>
6843
6844         Merged the `debugger-dublin' branch.
6845
6846         * mono-debug.h
6847         (MonoDebugDataTable): New typedef.
6848         (MonoDebugMethodAddressList): New typedef.
6849         (MonoDebugWrapperData): Removed.
6850         (MonoDebugSymbolTable): Removed `current_data_table',
6851         `current_data_table_size', `current_data_table_offset'.
6852         (MonoDebugDataItemType): Moved into mono-debug.c.
6853         (MonoDebugMethodJitInfo): Remove `address'.
6854         (mono_debug_data_table): New global variable.
6855         (mono_debug_lookup_method_addresses): New public function.
6856         (mono_debug_find_method): Take a `MonoMethod *', not a
6857         `MonoDebugMethodInfo *'.
6858
6859         * mono-debug.c: Drop support for the old symbol tables.
6860
6861 2007-06-28  Martin Baulig  <martin@ximian.com>
6862
6863         * mono-debug.c (mono_debug_debugger_version): New public variable.
6864
6865 2007-07-31  William Holmes  <billholmes54@gmail.com>
6866
6867         * metadata.c Changed mono_type_create_from_typespec to not insert
6868           the type into the hash map until after
6869           do_mono_metadata_parse_type has completed.
6870         Fixes Bug #82194
6871         Code is contributed under MIT/X11 license.
6872
6873 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
6874
6875         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
6876         generic parameter. Fixes #82211.
6877
6878 2007-07-27  Jb Evain  <jbevain@novell.com>
6879
6880         * pedump.c (dump_metadata, dump_metadata_header): dump
6881         versions contained in the metadata header.
6882
6883 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
6884
6885         * threads.c: register small_id_table with the GC.
6886
6887 2007-07-27  Mark Probst  <mark.probst@gmail.com>
6888
6889         * threads.c, threads.h, class-internals.h, object-internals.h:
6890         Hazard pointers, to be used by lock-free parallel algorithms.
6891
6892 2007-07-26  Dick Porter  <dick@ximian.com>
6893
6894         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
6895         routine on non-windows platforms, as I've not managed to think of
6896         a non-kludgy way of doing this.  Finishes off bug 78739.
6897
6898 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
6899
6900         * object.c: properly setup interface_bitmap in proxy vtables.
6901
6902 2007-07-25  Marek Habersack  <mhabersack@novell.com>
6903
6904         * appdomain.c (get_shadow_assembly_location): do not use TickCount
6905         to create unique shadow copy target directories, use the domain's
6906         serial number instead. Each domain gets a unique target directory
6907         that way.
6908
6909         * domain.c (mono_domain_create): added code to increment domain
6910         shadow copy serial number and cache the value in the current
6911         domain structure.
6912
6913         * domain-internals.h (struct _MonoDomain): added a new field -
6914         shadow_serial to hold the serial number used in generation of
6915         shadow-copy directories. This is to make sure that the directory
6916         name is unique for each and every domain created. We avoid a race
6917         condition with overriding assemblies already in use by other app
6918         domains.
6919
6920 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
6921
6922         * class.c (mono_bounded_array_class_get): fixed memory leak when 
6923         binding generic parameters.
6924
6925 2007-07-24  Raja R Harinath  <rharinath@novell.com>
6926
6927         * metadata.c (do_mono_metadata_parse_generic_class): Use
6928         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
6929         error.
6930
6931 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
6932
6933         * loader.c, class-internals.h, reflection.c: removed the per-method
6934         generics hashtable: we use the global one through the call of
6935         mono_class_inflate_generic_method ().
6936
6937 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
6938
6939         * class.c, metadata.c, class-internals.h: introduce yet another
6940         generics global cache for inflated methods (fixes 98% of the perf
6941         issue in bug #81806).
6942
6943 2007-07-23  Raja R Harinath  <rharinath@novell.com>
6944
6945         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
6946         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
6947         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
6948         return a MonoGenericInst containing (a copy) of those types.
6949         (mono_metadata_inflate_generic_inst): Update to changes.
6950         (mono_metadata_parse_generic_inst): Likewise.
6951         (mono_get_shared_generic_inst): Likewise.
6952         * reflection.c (mono_class_bind_generic_parameters): Likewise.
6953         (mono_reflection_bind_generic_method_parameters): Likewise.
6954         * metadata-internals.h: Likewise.
6955         * icall.c (free_generic_context): Kill.
6956         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
6957
6958         * reflection.c (reflection_methodbuilder_to_mono_method): Use
6959         mono_metadata_type_dup.
6960         * marshal.c (mono_mb_create_method): Likewise.
6961
6962         * metadata.c (mono_metadata_type_dup): Rename from
6963         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
6964         MonoImage.  Handle a few more cases, esp. when no mempool is given.
6965         * marshal.c, metadata-internals.h: Update to changes.
6966
6967 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6968
6969         * class.c: fixed a small leak for array classes and removed warning.
6970
6971 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
6972
6973         * loader.c (mono_method_get_param_token): Make this work on generic methods.
6974         Return 0x8000000 for return parameters. Fixes #82161.
6975
6976 2007-07-21  Marek Habersack  <grendello@gmail.com>
6977
6978         * appdomain.c (get_shadow_assembly_location): append the current
6979         ticks value to the path. Avoids overwriting the same assemblies by
6980         several threads at the same time.
6981
6982 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
6983         and Raja R Harinath  <rharinath@novell.com>
6984
6985         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
6986         Simplify slightly.
6987         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
6988         property for testing if a method is a generic method definition.
6989
6990 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
6991
6992         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
6993
6994 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6995
6996         * verify.c: used function from private branch, reverted to the one in class.h 
6997
6998 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
6999
7000         * verify.c: a typo slipped in and the code wont compile
7001
7002 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7003
7004         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
7005         disabled box instruction as it is doing the wrong thing
7006         improved stack dump messages, now it is easier to debug type related issues
7007
7008
7009 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
7010
7011         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
7012
7013 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7014
7015         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
7016         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
7017         grouped with class and valuetype. This change will simply 
7018         the code as it should be handled just like unmanaged pointers.
7019
7020 2007-07-19  Mark Probst  <mark.probst@gmail.com>
7021
7022         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
7023
7024 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7025
7026         * verify.c: several stack merge issues fixed, reference comparisons now
7027         check the type size. strict type check now works correctly.
7028         added more uses of IS_MANAGED_POINTER macro.
7029         fixed issues pointed by running the test suite against .net.
7030         
7031
7032 2007-07-19  Mark Probst  <mark.probst@gmail.com>
7033
7034         * class.c, loader.c, class-internals.h: Removed the
7035         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
7036         defines.
7037
7038         * icall.c: Better error checking in some internal reflection
7039         methods.
7040
7041 2007-07-18  William Holmes  <billholmes54@gmail.com>
7042
7043         * filewatcher.c : removed unused variable 'filename' in 
7044           ves_icall_System_IO_FSW_SupportsFSW
7045
7046 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
7047
7048         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
7049         obsolete, removed.
7050
7051 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
7052
7053         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
7054         
7055         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
7056
7057 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
7058
7059         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
7060         Implement generics support.
7061         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
7062
7063         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
7064         type_args and method_args arguments.
7065         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
7066         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
7067         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
7068
7069 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
7070
7071         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
7072           It adds a rootimage parameter to mono_reflection_get_type_internal,
7073           adds new function mono_reflection_get_type_with_rootimage and use
7074           the rootimage to resolve the types instead of the current image
7075
7076 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7077
7078         * culture-info-table.h: Forgot to update after r78304.
7079
7080 2007-07-13  Raja R Harinath  <rharinath@novell.com>
7081
7082         * class.c (mono_class_is_open_constructed_type)
7083         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
7084
7085 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
7086
7087         * class.c (mono_bounded_array_class_get):  method fails if used with
7088         an incomplete TypeBuilder enum (no basetype field), fixed it by 
7089         avoiding calculating the size for such array as it cannot be instantiated.
7090         Fix bug #82015
7091
7092 2007-07-12  Raja R Harinath  <rharinath@novell.com>
7093
7094         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
7095         field.
7096         * metadata.c, reflection.c: Update to changes.
7097
7098 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
7099
7100         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
7101         mono_class_is_valid_enum, they are used to valide a enum when loading.
7102         * reflection.c: used new functions to throw TypeLoadException when and
7103         invalid enum is build with TypeBuilder. Fixes #82018
7104   
7105 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
7106
7107         * object.c: forgot commit of mono_class_setup_methods () to access
7108         iface->methods.
7109         * object-internals.h: added a few more handy fields to
7110         MonoIMTCheckItem.
7111
7112 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
7113
7114         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
7115         iface->methods.
7116
7117 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
7118
7119         * class-internals.h, object-internals.h, object.c: IMT-based
7120         interface invocation core from Massimiliano Mantione
7121         (massi@ximian.com) with a reworked arch-specific interface,
7122         bsearch implementation and a few bugfixes and memory savings by me.
7123
7124 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
7125
7126         * class.c (mono_class_create_from_typedef): mono would segfault if 
7127         an enum did not have a __value field. It now throws a TypeLoadException
7128         for such cases. Fix bug #82022
7129
7130 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
7131
7132         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
7133
7134 2007-07-09  Mark Probst  <mark.probst@gmail.com>
7135
7136         * class.c (mono_class_init): If a class is already inited but has
7137         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
7138
7139 2007-07-09  Mark Probst  <mark.probst@gmail.com>
7140
7141         * class.c: Properly handle the case of an unimplemented interface
7142         method.  Fixes: 81673.
7143
7144 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
7145
7146         * class-internals.h, object.c: cleanup patch from massi: use
7147         MonoVTable->interface_bitmap since the vtable interfaces offset array
7148         is going away.
7149
7150 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
7151
7152         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
7153         GetMDStreamVersion icall instead.
7154
7155 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
7156
7157         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
7158         not use mono_dl_build_path() with a full library name: makes
7159         fallbacks to libgaim and libfam work.
7160
7161 2007-07-06  William Holmes  <billholmes54@gmail.com>
7162
7163         * assembly.c: Added a continue statement in probe_for_partial_name when
7164          parse_assembly_directory_name fails.  Fixes : 82002
7165
7166 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
7167
7168         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
7169         and added a verification  for TYPEDBYREF.
7170         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
7171         make native int interchangeable with int32 and some small cleanup and formating.
7172         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
7173         handle byref of byref.
7174         * verify.c (push_local): handle byref of byref.
7175         * verify.c (do_binop): invalid mix of values is unverifiable
7176         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
7177         added visibility checks
7178         * verify.c (field related method): added visibility checks
7179         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
7180
7181 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
7182
7183         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
7184         string.
7185
7186 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
7187
7188         * profiler.c (mono_profiler_load): Fix an off-by-one error.
7189
7190         * marshal.c (emit_marshal_string): When returning a string from managed code,
7191         allways make a copy even for unicode strings. Fixes #81990.
7192
7193 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
7194
7195         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
7196         of byref generic inst types (bug #81997).
7197
7198 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
7199
7200         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
7201         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
7202
7203 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
7204
7205         * marshal.c (emit_marshal_string): Add support for unicode strings in
7206         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
7207
7208 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
7209
7210         * verify.c: field load/store are now verified, missing only access checks now
7211
7212 2007-06-28  Martin Baulig  <martin@ximian.com>
7213
7214         * mono-debug.c (mono_debug_debugger_version): New public variable.
7215
7216 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
7217
7218         * locales.c: When constructing DateTimeFormat or NumberFormat for
7219         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
7220         MonoCultureInfo contructed from the current locale is always
7221         read-only and has UseUserOverride set to true. All MonoCultureInfo
7222         instances returned for GetCultures have both IsReadOnly and
7223         UseUserOverride set to true. Fixes part of bug #81930.
7224
7225 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
7226
7227        * icall-def.h: Update System.__ComObject icalls
7228        * marshal.c: Avoid managed transition (and object creation)
7229        when looking up COM interface in RCW.
7230        * marshal.h: Ditto.
7231        
7232        Code is contributed under MIT/X11 license.
7233
7234 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
7235
7236         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
7237         to avoid crashes during assembly unloading.
7238
7239 2007-06-22  Raja R Harinath  <rharinath@novell.com>
7240
7241         Fix MethodInfo.IsGenericMethodDefinition
7242         * reflection.c (mono_reflection_bind_generic_method_parameters):
7243         Rearrange code to ensure we always uses a generic method definition.
7244         * class.c (mono_class_inflate_generic_method_full): Set
7245         'generic_container' field only for generic method definitions.
7246         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
7247         Use presense of 'generic_container' field as indication of being a
7248         generic method definition.
7249
7250 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
7251
7252         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7253
7254         * object-internals.h: Reflect changes in the layout of the managed Delegate
7255         class.
7256         
7257         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
7258         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
7259         runtime memory used by the dynamic method. Fixes #77146.
7260
7261 2007-06-21  Dick Porter  <dick@ximian.com>
7262
7263         * file-io.h: 
7264         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
7265         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
7266         81767.
7267
7268 2007-06-21  Raja R Harinath  <rharinath@novell.com>
7269
7270         * reflection.c (method_encode_methodspec): Add a tripwire.
7271         * class.c (inflate_generic_type): The fully open generic type is
7272         not the same as the generic type definition.
7273
7274 2007-06-21  Martin Baulig  <martin@ximian.com>
7275
7276         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
7277
7278         * mono-debug-debugger.h
7279         (MonoDebuggerBreakpointInfo): Removed.
7280         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
7281         (mono_debugger_remove_breakpoint): Likewise.
7282         (mono_debugger_breakpoint_callback): Likewise.
7283         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
7284
7285 2007-06-21  Raja R Harinath  <rharinath@novell.com>
7286
7287         * metadata.c (mono_metadata_lookup_generic_class): The fully open
7288         generic type is not the same as the generic type definition.
7289         * class.c (mono_generic_class_get_class): Likewise.
7290
7291 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
7292
7293         * icall.c: The second argument to 
7294         System.Reflection.MethodBase.GetMethodFromHandleInternalType
7295         is a MonoType not a MonoClass.
7296
7297 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
7298
7299         * verify.c: support for function pointers in the verifier
7300
7301 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
7302
7303         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
7304
7305 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
7306
7307         * assembly.c: removed Mono.Data.SqliteClient from the list of
7308         forward-compatible assemblies as it breaks the ABI (bug #81899).
7309
7310 2007-06-19  Raja R Harinath  <rharinath@novell.com>
7311
7312         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
7313         lookup/update with the loader lock.
7314         * reflection.c (mono_class_bind_generic_parameters): No need to
7315         protect mono_metadata_lookup_* with the loader lock.
7316         * class.c (inflate_generic_type): Likewise.
7317         
7318         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
7319         on a generic instantiated type.
7320
7321 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
7322
7323         *verify.c: produce meanfull error messages on verification error
7324         *verify.c: fixed some cases of verification errors reported as validation errors
7325         *pedump.c: fixed the error name array, now it shows validation errors properly
7326         *verify.h: fixed the contant that should be used for verification errors
7327
7328 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
7329
7330         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
7331         for bug #77596, 81858 and 80743 (generics data structures on domain
7332         unload).
7333
7334 2007-06-15  Raja R Harinath  <rharinath@novell.com>
7335
7336         Avoid allocating 'MonoGenericContext' on the heap.
7337         * class-internals (_MonoMethodInflated::context): Make field
7338         inline, not a pointer.
7339         * loader.c (method_from_methodspec): Allocate 'new_context' on the
7340         stack.  Use the context embedded within the inflated method as the
7341         hash key, rather than 'new_context'.
7342         * class.c (inflate_generic_context): Simplify.  Return a struct
7343         rather than allocating on the heap.
7344         (mono_class_inflate_generic_method_full): Update to changes.  Now,
7345         doesn't salt away a copy of the context -- simplifying the
7346         lifetime rules of a 'MonoGenericContext *'.
7347         (mono_method_get_context): Return pointer to embedded context.
7348         (setup_generic_array_ifaces): Allocate temporary context on stack.
7349         * reflection.c (inflate_mono_method): Likewise.
7350         (mono_reflection_bind_generic_method_parameters): Likewise.
7351         Use the context embedded within the inflated method as the hash key.
7352
7353         Avoid a source of allocation of 'MonoGenericContext'.
7354         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
7355         and 'cached_context' fields into embedded 'MonoGenericContext' field.
7356         * class.c: Update to changes.
7357         (mono_generic_class_get_context): Simplify drastically.  Now just
7358         returns a pointer to the field.
7359         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
7360         argument as a const pointer.
7361         (mono_metadata_generic_context_equal): Likewise.
7362         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
7363         Update to changes.
7364
7365 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
7366
7367         * verify.c improved the handling of brtrue/brfalse, factored out common code
7368
7369 2007-06-14  Raja R Harinath  <rharinath@novell.com>
7370
7371         Kill MonoGenericMethod.
7372         * class-internals.h (MonoGenericContext::method_inst): Rename from
7373         'gmethod' and convert to a MonoGenericInst.
7374         (MonoGenericMethod): Remove.
7375         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
7376         * loader.c (method_from_methodspec): Update to changes.  Use a
7377         MonoGenericContext as the key to the hashtable.
7378         * metadata.c (mono_metadata_generic_context_equal): Rename from 
7379         'mono_metadata_generic_method_equal' and take MonoGenericContext.
7380         (mono_metadata_generic_context_hash): Likewise from
7381         'mono_metadata_generic_method_hash'.  Change hash function.
7382         (mono_metadata_load_generic_params): Update to changes.
7383         (mono_get_shared_generic_method): Remove.
7384         * metadata-internals.h (mono_get_shared_generic_method): Remove.
7385         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
7386         (inflate_generic_context): Likewise.
7387         (mono_class_inflate_generic_method_full): Likewise.
7388         (setup_generic_array_ifaces): Likewise.
7389         (mono_class_create_from_typespec): Likewise.
7390         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
7391         (method_encode_methodspec): Update callsite.
7392         (reflection_methodbuilder_to_mono_method): Update to changes.
7393         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
7394         MonoGenericContext as the key to the hashtable.
7395         (inflate_mono_method): Update to changes.
7396
7397         * class-internals.h (MonoGenericMethod::container): Remove.
7398         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
7399
7400 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
7401
7402         * profiler-private.h, profiler.c, profiler.h: added API to profile
7403         exception events.
7404
7405 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
7406
7407         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
7408
7409 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
7410
7411         * verify.c: method invocation is now validated, now we verify parameter types on stack.
7412         Fixed overflow and underflow not aborting the verification process.
7413
7414 2007-06-13  Mark Probst  <mark.probst@gmail.com>
7415
7416         * class-internals.h (MonoStats): Added stats entries for dynamic
7417         code allocations.
7418
7419 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
7420
7421         * loader.c (mono_free_method): Free header->locals and header->clauses.
7422
7423         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
7424         dynamic case.
7425
7426         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
7427
7428         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
7429
7430 2007-06-12  Raja R Harinath  <rharinath@novell.com>
7431
7432         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
7433         the tables.
7434
7435 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
7436
7437         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
7438
7439 2007-06-11  Raja R Harinath  <harinath@gmail.com>
7440
7441         MonoGenericMethod on a diet
7442         * class-internals.h (_MonoMethodInflated::reflection_info): Move
7443         here ...
7444         (_MonoGenericMethod::reflection_info): ... from here.
7445         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
7446         Update to changes.
7447         * reflection.c (inflate_mono_method): Likewise.
7448         (mono_reflection_bind_generic_method_parameters): Likewise.
7449
7450 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
7451
7452         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
7453         *verify.c: factored long ldarg forms to share code with short forms
7454
7455 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
7456
7457         *verify.c: fixed code formating factored some duplicate code
7458         into a new function
7459
7460         *verify.h: fixed binary incompatibility introduced earlier
7461
7462         *pedump.c: fixed formating
7463
7464 2007-06-11  Raja R Harinath  <harinath@gmail.com>
7465
7466         Fix assertion when disassembling Mono.C5.dll
7467         * loader.c (method_from_methodspec): Avoid inflating a method
7468         twice with the same context.  If the methodref is inflated, use
7469         the declaring method instead.
7470
7471         * class.c (mono_class_from_generic_parameter): Fix case similar to
7472         bug #81830 handled below, but for method containers.
7473
7474 2007-06-10  Raja R Harinath  <harinath@gmail.com>
7475
7476         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
7477         get_shared_generic_class.  Directly inflate the instance.
7478         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
7479         (inflate_generic_class): Delete.
7480         (get_shared_generic_class): Delete.  Move setting of
7481         'cached_class' and 'cached_context' ...
7482         * metadata.c (mono_metadata_lookup_generic_class): ... here.
7483
7484         * metadata.c (mono_metadata_lookup_generic_class): Change
7485         signature to take the components of a MonoGenericClass rather than
7486         an allocated MonoGenericClass.  Change semantics to be intern-like.
7487         * reflection.c (mono_class_bind_generic_parameters): Update to
7488         changes.  Make locking region tighter.
7489         * class.c (inflate_generic_class): Update to changes.
7490         (get_shared_generic_class): Likewise.
7491         * metadata-internals.h: Likewise.
7492
7493         * reflection.c (mono_class_bind_generic_parameters): Take and
7494         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
7495         (mono_reflection_bind_generic_parameters): Use
7496         'mono_class_bind_generic_parameters' rather than duplicate the code.
7497         * class.c (mono_bounded_array_class_get): Update to changes.
7498         * object-internals.h: Likewise.
7499
7500         * reflection.c (mono_class_bind_generic_parameters): Only support
7501         parameterizing generic type definitions.  Remove support for other
7502         open types.
7503
7504 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
7505
7506         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
7507
7508         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
7509         in the dynamic case.
7510
7511 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
7512
7513         * threads.c: When cleaning up thread, reset the Background bit.
7514         Fixes bug #81720.
7515
7516 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
7517
7518        * metadata.c: Move variable declarations to top of scope.
7519        * verify.c: Move variable declarations to top of scope.
7520
7521        Code is contributed under MIT/X11 license.
7522
7523 2007-06-08  Raja R Harinath  <rharinath@novell.com>
7524
7525         * reflection.c (mono_class_bind_generic_parameters): Replace
7526         open-coded loop with mono_metadata_inflate_generic_inst.
7527
7528         * class.c (get_shared_generic_class): Don't call
7529         mono_get_shared_generic_inst.  Use the container's own
7530         'class_inst'.
7531
7532         * metadata.c (mono_metadata_load_generic_params): Move
7533         initialization of 'context' field here from ...
7534         * class.c (mono_class_create_from_typedef): ... here, and ...
7535         * loader.c (mono_get_method_from_token): ... here.
7536
7537         * class.c (get_shared_generic_class): Rename from
7538         mono_get_shared_generic_class and make static.
7539         (mono_get_shared_generic_inst): Move to metadata.c.
7540         * loader.c (mono_get_shared_generic_method): Likewise.
7541         * class-internals.h, metadata-internals.h: Update to changes.
7542
7543         Fix #81830
7544         * class.c (mono_class_from_generic_parameter): Don't assume a
7545         generic container owner exists.  Generic containers from monodis
7546         don't have any.
7547
7548 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
7549
7550         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
7551         * verify.h: new typedefs to returns the non-verifiable status
7552         * verify.c: initial implementation of generics, stack merging and object compatibility check
7553
7554 2007-06-06  Mark Probst  <mark.probst@gmail.com>
7555
7556         * class.c, image.c, class-internals.h (MonoImage): class_cache is
7557         a MonoInternalHashTable again (fixed bug in internal hash table
7558         code).
7559
7560 2007-06-06  Mark Probst  <mark.probst@gmail.com>
7561
7562         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
7563         MonoInternalHashTable again (fixed bug in internal hash table
7564         code).
7565
7566 2007-06-06  Mark Probst  <mark.probst@gmail.com>
7567
7568         * class.c, image.c, class-internals.h, domain.c,
7569         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
7570         changes.  Have to figure out what makes them break the SWF
7571         regression.
7572
7573 2007-06-04  Mark Probst  <mark.probst@gmail.com>
7574
7575         * class.c, image.c, class-internals.h (MonoImage): class_cache is
7576         a MonoInternalHashTable now.
7577
7578 2007-06-04  Mark Probst  <mark.probst@gmail.com>
7579
7580         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
7581         MonoInternalHashTable now.
7582
7583 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
7584
7585         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
7586         invoke_impl code.
7587
7588         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
7589
7590         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
7591         dependent trampoline.
7592
7593         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7594
7595         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
7596
7597 2007-05-29  Robert Jordan  <robertj@gmx.net>
7598
7599         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
7600
7601 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
7602
7603         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
7604
7605 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
7606
7607        * marshal.c: Fix interface lookup loops for
7608        cominterop_get_com_slot_for_method and 
7609        cominterop_get_method_interface. Only need to lookup
7610        if type is a class, else use interface type method is on.
7611
7612        Code is contributed under MIT/X11 license.
7613
7614 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
7615
7616         * reflection.c: HasSecurity can be present even if no specially 
7617         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
7618         SecurityAttribute). Fix CAS regression tests on buildbot.
7619
7620 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
7621
7622        * appdomain.c: Add configure checks for header files.
7623        * image.c: Add configure checks for header files.
7624        * file-io.c: Add configure checks for header files.
7625        * debug-mono-symfile.c: Add configure checks for header files.
7626        * threadpool.c: Add configure checks for header files.
7627        * console-io.c: Add configure checks for header files.
7628        * profiler.c: Add configure checks for header files.
7629        * rawbuffer.c: Add configure checks for header files.
7630        * icall.c: Add configure checks for header files.
7631        * rand.c: Add configure checks for header files.
7632        * socket-io.c: Add configure checks for header files.
7633
7634        Code is contributed under MIT/X11 license.
7635
7636 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
7637
7638         * reflection.c (mono_custom_attrs_from_builders): Remove the 
7639         assertion as it breaks the build.
7640         
7641         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
7642
7643         * reflection.c (lookup_custom_attr): Make a copy here too.
7644
7645         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
7646         dynamic images.
7647
7648         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
7649         images.
7650
7651         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
7652         info.
7653
7654 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
7655
7656         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
7657         (load_cattr_value): Ditto.
7658
7659 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
7660
7661         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
7662
7663 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
7664
7665         * threads.c: In "start_wrapper", set apartment_state to MTA if
7666         apartment_state is Unknown and we're running on 2.0 profile or
7667         higher.
7668         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
7669         to main method, then set apartment_state to Unknown on 1.0 profile,
7670         and MTA on 2.0 profile.
7671
7672 2007-05-16  Jb Evain  <jb@nurv.fr>
7673
7674         * class-internals.h (MonoDefaults): Add an attribute_class and
7675           customattribute_data_class.
7676         * domain.c (mono_init_internal): Populate them.
7677         * reflection.c: Use them to remove duplicates. Make a vew
7678         MonoClass variables `static'.
7679
7680 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
7681
7682         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
7683         step in implementing IMT, so that all isinst checks now can go
7684         through the bitmap.
7685         This was needed because vtables for TransparentProxy need to look
7686         like the vtable of the "target" class, so they need to point to
7687         its interface bitmap directly.
7688
7689         * object.c: inside "mono_class_create_runtime_vtable" and
7690         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
7691
7692 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7693
7694         * object-internals.h
7695           culture-info.h : added territory field in MonoCulture and
7696           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
7697         * locales.c : fill territory field above too.
7698         * culture-info-table.h : regenerated.
7699
7700 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
7701
7702         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
7703         Fixes #81599.
7704
7705 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
7706
7707         * object.c: Always initialize apartment, even if 
7708         there is no custom attributes on entry point.
7709         
7710         Code is contributed under MIT/X11 license.
7711
7712 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
7713
7714         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
7715         * metadata.c: If no encoding is set, check for unicode
7716         on class.
7717         
7718         Code is contributed under MIT/X11 license.
7719
7720 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
7721
7722         * threads.c: Handle if mono_thread_current returns NULL 
7723         
7724         Code is contributed under MIT/X11 license.
7725
7726 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
7727
7728         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
7729         in start_wrapper. Added mono_thread_init_apartment_state and
7730         mono_thread_cleanup_apartment_state.
7731         * object.c: Initialize thread apartment state on main thread
7732         by checking for STAThreadAttribute on entry point.
7733         * object-internals.h: Add apartment_state field to MonoThread.
7734         * threads-types.h: Add unmanaged definition of 
7735         System.Threading.ApartmentState, MonoThreadApartmentState.
7736         
7737         Code is contributed under MIT/X11 license.
7738         
7739 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
7740
7741         * class.c: Fix windows build.
7742         * class-internals.h: Fix windows build.
7743         
7744         Code is contributed under MIT/X11 license.
7745
7746 2007-05-08  Robert Jordan  <robertj@gmx.net>
7747
7748         * process.c (CreateProcess_internal):
7749         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
7750         .CreateNoWindow was specified. Fixes #81496.
7751
7752 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
7753
7754         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
7755         step in implementing IMT, replaced it with two compact arrays
7756         (interfaces_packed and interface_offsets_packed) and a bitmap that
7757         is used for isinst checks (interface_bitmap).
7758
7759         * class.c: (compare_interface_ids): compare function to pass to
7760         bsearch when looking for an interface with a given id.
7761         (mono_class_interface_offset): reimplemented using bsearch on
7762         interfaces_packed, getting the offset from interface_offsets_packed.
7763         (print_implemented_interfaces): utility debugging function.
7764         (setup_interface_offsets): reworked to initialize interfaces_packed,
7765         interface_offsets_packed and interface_bitmap.
7766
7767         * object.c: replaced all accesses to "MonoClass.interface_offsets"
7768         with uses of interfaces_packed and interface_offsets_packed.
7769
7770 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
7771
7772         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
7773         mono_class_interface_offset prototype to wrap all accesses to
7774         "MonoClass.interface_offsets".
7775
7776         * class.c: Implemented mono_class_interface_offset, and wrapped all
7777         accesses to "MonoClass.interface_offsets".
7778
7779         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
7780         "MonoClass.interface_offsets".
7781
7782 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
7783
7784         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
7785         GetMethodFromHandle overloads (bug #78637).
7786
7787 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
7788
7789         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
7790         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
7791
7792 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
7793
7794         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
7795         #81498.
7796
7797         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
7798         gracefully.
7799         (mono_custom_attrs_from_index): Ditto.
7800
7801         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
7802         Fixes #81501.
7803
7804 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
7805
7806         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
7807         is now allocated from a mempool.
7808
7809 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
7810
7811         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
7812         caller holds threads_lock, leading to deadlocks. Fixes #81476.
7813
7814 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
7815
7816         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
7817         mono_loader_clear_error () too late. Fixes #81463.
7818
7819 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
7820
7821         * culture-info-table.h : regenerated.
7822
7823 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
7824
7825         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
7826         is missing.
7827
7828 2007-04-25  Dick Porter  <dick@ximian.com>
7829
7830         * Makefile.am: Put the mingw enforced-optimisation back into the
7831         PLATFORM_WIN32 section.
7832
7833 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
7834
7835         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
7836         patch.
7837
7838         * image.c (mono_image_load_module): New API function to load a module reference.
7839
7840         * image.c (load_modules): Load modules lazily. Fixes #80812.
7841
7842         * class.c (mono_class_from_typeref): Use mono_image_load_module.
7843         
7844         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
7845
7846         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
7847         to mono_image_load_module_dynamic.
7848
7849 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
7850
7851         * marshal.c: Fix calling convention for CCW on non-windows
7852         platforms. STDCALL on windows, CDECL everywhere else to work 
7853         with XPCOM and MainWin COM.
7854         
7855         Code is contributed under MIT/X11 license.
7856
7857 2007-04-23  Martin Baulig  <martin@ximian.com>
7858
7859         Fix #80969.
7860
7861         * loader.c
7862         (method_from_memberref): Added `gboolean *used_context' argument.
7863         (mono_get_method_from_token): Likewise.
7864         (mono_get_method_full): Don't insert the method in the cache when
7865         `used_context' is true.
7866
7867 2007-04-23  Raja R Harinath  <rharinath@novell.com>
7868
7869         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
7870
7871         * reflection.c (mono_reflection_bind_generic_parameters): Don't
7872         create new MonoTypes for returned types.
7873         * class.c (mono_generic_class_get_class): Export mono-internal.
7874         * class-internals.h: Update to changes.
7875
7876 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
7877
7878         * threadpool.c, threadpool.h, icall-def.h: patch from
7879         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
7880
7881 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
7882
7883         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
7884         
7885         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
7886
7887         * threads.c (mono_thread_get_stack_bounds): New helper function.
7888
7889         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
7890         Correctly compute stack bounds when attaching. Fixes #81394.
7891
7892 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
7893
7894         * reflection.c: fix handling of doubles in custom attributes
7895         for the arm-fpa format (bug #81368).
7896
7897 2007-04-18  Raja R Harinath  <rharinath@novell.com>
7898
7899         * reflection.c (assembly_add_win32_resources): Mildly relax an
7900         bounds check to let the end pointer point just past the end of the
7901         allocated buffer.  (may fix #81384)
7902
7903 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
7904
7905         * culture-info-table.h : regenerated.
7906
7907 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
7908
7909         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
7910         the thread is aborted early.
7911
7912 2007-04-05  Dick Porter  <dick@ximian.com>
7913
7914         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
7915         FindFirstFile()/FindNextFile() to find entries.  This lets the
7916         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
7917         81038.
7918
7919         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
7920         the parameters of
7921         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
7922
7923 2007-04-04  Martin Baulig  <martin@ximian.com>
7924
7925         * debug-helpers.c
7926         (mono_method_desc_full_match): Add support for nested classes.
7927
7928 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
7929
7930         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
7931
7932 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
7933
7934         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
7935         waiting for too many threads.
7936
7937 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
7938
7939         * environment.c: Fix return value check on uname so we can get the 
7940         executing version on Solaris operating systems.
7941
7942 2007-03-28  Jb Evain  <jbevain@gmail.com>
7943
7944         * class.c (mono_type_get_name_recurse): Complete the
7945         fix for the creation of assembly qualified names for
7946         pointer types. Fixes #81208.
7947
7948 2007-03-27  Dick Porter  <dick@ximian.com>
7949
7950         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
7951         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
7952         changed.
7953
7954         * threads.c
7955         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
7956         the value of ReleaseMutex().
7957
7958 2007-03-27  Dick Porter  <dick@ximian.com>
7959
7960         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
7961         in little-endian order, not network endian, so must be converted
7962         to host endian here.  Fixes bug 80593.
7963
7964 2007-03-22  Jb Evain  <jbevain@gmail.com>
7965
7966         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
7967         qualified names for pointer types. Fixes #81208.
7968
7969 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
7970
7971         * marshal.c: Add support for PreserveSigAttribute. 
7972         
7973         Code is contributed under MIT/X11 license.
7974
7975 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
7976
7977         * process.c: Fix endianness issues. Fixes #81126.
7978
7979         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
7980         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
7981
7982         * image.c (mono_image_lookup_resource): Make this work on big-endian
7983         machines.Change API contract so the caller needs to free the return value.
7984         
7985         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
7986         API change.
7987         
7988 2007-03-14  Martin Baulig  <martin@ximian.com>
7989
7990         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
7991         mono_type_get_desc() as well.
7992
7993 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
7994
7995         * icall.c:  Fix environ access in VS.  
7996         
7997 2007-03-13  Alp Toker  <alp@atoker.com>
7998
7999         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
8000         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
8001         #63841.
8002
8003 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
8004
8005         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
8006         circular references among dynamic methods. Fixes #81091.
8007
8008         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
8009
8010 2007-03-09  Martin Baulig  <martin@ximian.com>
8011
8012         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
8013
8014 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
8015
8016         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
8017         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
8018         
8019         Code is contributed under MIT/X11 license.
8020         
8021 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
8022
8023         * loader.c: Reapply patch for bug #79424.
8024
8025 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
8026
8027         * metadata.c (mono_type_to_unmanaged): Only convert object to
8028         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
8029
8030 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
8031
8032         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
8033         (and incorrectly set) is_reference field from MonoGenericInst.
8034
8035 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
8036
8037         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
8038         a little earlier.
8039
8040         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
8041
8042         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
8043
8044 2007-03-05  Miguel de Icaza  <miguel@novell.com>
8045
8046         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
8047         FileOptions.1 value to mean "temporary", map that to
8048         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
8049
8050         Fixes 80688
8051
8052 2007-03-03  Marek Habersack  <mhabersack@novell.com>
8053
8054         * appdomain.c: implement MS .Net style shadow copying. Copies of
8055         the assemblies are made in a subdirectory of the dynamic base
8056         directory, the assembly names are preserved.
8057         Copy .mdb and .config files along with the assemblies being shadowed.
8058
8059 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
8060
8061         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
8062         (emit_marshal_handleref): Ditto.
8063
8064         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
8065         on Visual C++. Fixes #80671.
8066
8067 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
8068
8069         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
8070         for clone operations.
8071
8072 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
8073
8074         * marshal.c: Fix warnings.
8075
8076 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
8077
8078         * loader.c: allow case-insensitive matching of the dll name
8079         in dllmap handling when prefixed with "i:".
8080
8081 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
8082
8083         * threads.c: Fix #ifdef for dummy_apc function for VS.
8084
8085 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
8086
8087         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
8088
8089 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
8090         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
8091         giving precedence to the methods with a fully qualified name
8092         (InterfaceName.MethodName) when building the interface sections
8093         of the vtable.
8094
8095 2007-02-16  Dick Porter  <dick@ximian.com>
8096
8097         * threadpool.c (append_job): Fix fast-path array handling, so it's
8098         less likely the array will grow exponentially when the load is
8099         heavy.
8100
8101 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8102
8103         * metadata-internals.h, loader.c: fix dllmap lookup order
8104         for non-function maps, too, and prepare for fallback code.
8105
8106 2007-02-12  Robert Jordan  <robertj@gmx.net>
8107
8108         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
8109         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
8110         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
8111         GlobalFree. Fixes a part of bug #77075.
8112
8113 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
8114
8115         * loader.c: implemented typedef parent in field memberref.
8116
8117 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
8118
8119         * marshal.c: Fix warnings and remember to call Release on
8120         IUnknown of RCW.
8121         
8122         Code is contributed under MIT/X11 license.
8123
8124 2007-02-10  Miguel de Icaza  <miguel@novell.com>
8125
8126         * class-internals.h: Add MonoHandleRef definition, and
8127         handleref_class to mono_defaults. 
8128
8129         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
8130         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
8131
8132         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
8133         (do nothing on this stage)
8134         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
8135         (emit_marshal_handleref): New method, used for argument handling
8136         of HandleRefs. 
8137
8138 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
8139
8140         * class.c (mono_class_setup_parent): Lazily init com types.
8141         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
8142         init com types.
8143         * object.c (mono_remote_class_vtable): Lazily init com types.
8144         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
8145         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
8146         * domain-internals.h: Expose mono_init_com_types.
8147         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
8148         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
8149         Add support for COM Callable Wrapper marshalling.
8150         * marshal.h: Add icall definitions.
8151         * gc.c: Handle freeing of CCWs in finalizer code.
8152         
8153         Code is contributed under MIT/X11 license.
8154
8155 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
8156
8157         * reflection.c: changed all the signature encoding code to use
8158         a variable-sized buffer.
8159
8160 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
8161
8162         * marshal.c: locking fixes: never take the loader lock
8163         or other runtime locks when holding the marshal lock
8164         (fixes bug#80664).
8165
8166 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
8167
8168         * marshal.c: make the delegate function pointer mapping
8169         work for the moving GC.
8170
8171 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
8172
8173         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
8174         for bug #80618.
8175
8176 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
8177
8178         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
8179         gmodule.
8180
8181 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
8182
8183         * threadpool.c: made the code moving-GC safe.
8184
8185 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
8186
8187         * assembly.c, boehm-gc.c, class-internals.h, class.c,
8188         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
8189         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
8190         warning cleanup.
8191         * reflection.c: warning cleanup, some threading and moving GC fixes.
8192
8193 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
8194
8195         * class.c, loader.c: create the needed Set/Get/Address array methods
8196         as well as the .ctors in mono_class_init (), fixes bug #80567.
8197
8198 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
8199
8200         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
8201         we doesn't decrease its alignment. Should fix the sparc build.
8202
8203 2007-01-24  Dick Porter  <dick@ximian.com>
8204
8205         * socket-io.c
8206         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
8207         Create the returned object if we need to ignore an unsupported
8208         socket option.  Fixes a segfault reported by Atsushi.
8209
8210 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
8211
8212         * class.c, object.c: restrict GC-tracked fields to
8213         UIntPtr fields used inside corlib, so we provide better
8214         type info to the GC and also allow broken packing as in
8215         bug #80580.
8216
8217 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
8218
8219         * sgen-gc.c: removed duplicated function.
8220
8221 2007-01-19  Miguel de Icaza  <miguel@novell.com>
8222
8223         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
8224         value that means that the value is not supported, but that we
8225         should not return a failure, but instead report this as a
8226         successful operation.
8227
8228 2007-01-19  Raja R Harinath  <rharinath@novell.com>
8229
8230         Fix tests/bug79956.2.il
8231         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
8232         (mono_generic_class_get_class): If the generic definition in an
8233         enum, copy over other fields related to it.
8234
8235 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
8236
8237         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
8238         genericinst enums (bug #79215).
8239
8240 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
8241         * class.c: Fix bug 80307.
8242
8243 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
8244
8245         * image.c: if the file table is not present, try to load
8246         all the modules, since we don't have info about them
8247         having or not metadata (bug #80517).
8248         * assembly.c: allow mono_assembly_load_references () to
8249         work for netmodules.
8250
8251 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8252
8253         * image.c, metadata-internals.h, object.c: execute module
8254         cctors when running on the 2 runtime if present (bug #80487).
8255
8256 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
8257
8258         * icall.c: optimized InitializeArray() on bigendian.
8259
8260 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
8261
8262         * icall.c: fix for the broken ARM FPA double format.
8263
8264 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
8265
8266         * icall.c: handle endian issues for r4 and r8 types, too, in
8267         the InitializeArray() icall.
8268
8269 2007-01-15  Miguel de Icaza  <miguel@novell.com>
8270
8271         * loader.c (mono_loader_error_prepare_exception): Clear the error
8272         once we have extracted the information from it, do this before we
8273         call into the JIT's class loading mechanisms.
8274
8275         * object.c (mono_class_create_runtime_vtable): Do not clear the
8276         loader error before calling mono_class_get_exception_for_failure
8277         as the loader error is needed inside
8278         mono_class_get_exception_for_failure to throw the error (thinko).
8279
8280         Fixes #80521
8281         
8282 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
8283
8284         * reflection.c: align fields rva data so it's faster to load at
8285         runtime.
8286
8287 2007-01-12  Raja R Harinath  <rharinath@novell.com>
8288
8289         Prepare to simplify GenericMethod handling.
8290         * class-internals.h (mono_method_get_context): New accessor function.
8291         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
8292         rather than directly accessing '->context' field.
8293
8294         * class-internals.h (_MonoGenericParam.method): Move ...
8295         (_MonoGenericContainer): ... here.  Add into union with klass field.
8296         * class.c, icall.c, loader.c, metadata.c, reflection.c:
8297         Update to changes.
8298
8299 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
8300
8301         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
8302         the wrapper type enum and reduce relocations.
8303
8304 2007-01-12  Raja R Harinath  <rharinath@novell.com>
8305
8306         * reflection.c (inflate_mono_method): Reuse method instantiation
8307         from the generic method, if available.
8308
8309 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
8310
8311         * marshal.c (emit_marshal_variant): Fix conv_arg
8312         type in last commit, based on whether parameter is byref.
8313         
8314 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
8315
8316         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
8317         marshalling.
8318         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
8319         MONO_TYPE_OBJECT back for VARIANT support.
8320
8321 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
8322
8323         * marshal.c, marshal.h, icall-def.h: Implement 
8324         Marshal.ReAllocCoTaskMem.
8325
8326 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
8327
8328         * marshal.c: memory retention fixes: use the proper
8329         image cache for runtime_invoke method lookups.
8330
8331 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
8332
8333         * mempool.c: added code to help debug mempool allocations.
8334
8335 2007-01-11  Dick Porter  <dick@ximian.com>
8336
8337         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
8338         support (experimenting with faking it with IP_MTU_DISCOVER for
8339         systems that don't have IP_DONTFRAGMENT.)
8340         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
8341         icall.
8342
8343         * icall-def.h: new System.Net.Sockets.Disconnect icall.
8344
8345         * socket-io.h: Add new fields to MonoSocketAsyncResult
8346         corresponding to the new ones in Socket.cs.
8347
8348 2007-01-11  Raja R Harinath  <rharinath@novell.com>
8349
8350         Fix IronPython regression mentioned in #80249
8351         * metadata.c (do_mono_metadata_parse_generic_class): Clear
8352         'cached_context' field, since it may have been initialized as a
8353         side-effect of metadata parsing.
8354
8355         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
8356         (_MonoGenericClass.cached_class): Move here and rename from lone
8357         remaining field of ...
8358         (_MonoInflatedGenericClass): ... this.  Remove.
8359         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
8360         to changes.
8361
8362         Fix mcs/tests/test-128.cs regression.
8363         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
8364         2007-01-10 change below.
8365         [MONO_TYPE_OBJECT]: Recurse into array case.
8366
8367 2007-01-11  Raja R Harinath  <harinath@gmail.com>
8368
8369         * class-internals.h (mono_get_inflated_generic_class): Remove.
8370         * class.c (mono_get_inflated_generic_class): Remove.
8371         (mono_generic_class_get_class): Rename from
8372         mono_class_create_generic.
8373         (mono_class_from_mono_type) [GENERICINST]: Use it.
8374         * reflection.c, metadata.c: Update to changes.  Use
8375         'mono_class_from_mono_type'.
8376
8377 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
8378
8379         * reflection.c: use passed type when encoding an array element
8380         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
8381
8382 2007-01-09  Robert Jordan  <robertj@gmx.net>
8383
8384         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
8385         result arguments (someDelegate.EndInvoke (unrelatedAres)).
8386         Fixes bug #80392.
8387
8388 2007-01-09  Raja R Harinath  <rharinath@novell.com>
8389
8390         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
8391
8392         * object.c (set_value): Avoid aliasing between type->data.klass
8393         and type->data.generic_class.
8394
8395         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
8396
8397 2007-01-08  Raja R Harinath  <rharinath@novell.com>
8398
8399         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
8400         between type->data.klass and type->data.generic_class.
8401
8402 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
8403
8404         * marshal.c: In MS.NET, StringBuilder objects are not copied by
8405         value in out parameters.
8406
8407 2007-01-08  Raja R Harinath  <rharinath@novell.com>
8408
8409         Simplify invariant for MonoGenericClass::klass field.
8410         * class.c (mono_class_create_generic): Verify 'klass' is null.
8411         * metadata.c (do_mono_metadata_parse_generic_class): Don't
8412         initialize 'klass' field.
8413
8414 2007-01-05  Raja R Harinath  <rharinath@novell.com>
8415
8416         Ongoing work to avoid redundant data and simplify invariants.
8417         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
8418         'generic_class', and change type to a GenericInst.
8419         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
8420         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
8421
8422 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
8423
8424         * class.c : skip io-layer under PLATFORM_WIN32.
8425
8426 2007-01-03  Tor Lillqvist  <tml@novell.com>
8427
8428         Fix #80305: In a bundled executable, look in the bundled exe
8429         assembly to determine the runtime version. Add the possibility to
8430         bundle also the machine.config file.
8431         
8432         * assembly.c (mono_assembly_open_from_bundle): Make
8433         non-static. Allow being called even if we have no bundled
8434         assemblies, and return NULL right away in that case.
8435
8436         * domain-internals.h: Declare mono_assembly_open_from_bundle()
8437         here.
8438
8439         * domain.c (app_config_parse): Take an assembly exe file name as
8440         parameter instead of a config file name. Check for a bundled
8441         config file for that assembly by calling
8442         mono_config_string_for_assembly_file() (see below) before looking
8443         for one in the file system.
8444         (get_runtimes_from_exe): Corrsponding change to call of
8445         app_config_parse().
8446         (get_runtimes_from_exe): Check for bundled assembly exe file first
8447         by calling mono_assembly_open_from_bundle(). If no bundled
8448         assembly exe file is found, call mono_image_open() as before to
8449         look it up in the file system.
8450
8451         * mono-config.c: Add variable bundled_machinec_onfig.
8452         (mono_config_string_for_assembly_file): New function.
8453         (mono_config_for_assembly): Move code snippet that looks for a
8454         bundled assembly .config file into the above new function. Call
8455         it.
8456         (mono_register_machine_config, mono_get_machine_config): New
8457         functions to set and retrieve
8458
8459         * assembly.h: Declare mono_register_machine_config().
8460
8461         * mono-config.h: Declare mono_get_machine_config() and
8462         mono_config_string_for_assembly_file().
8463
8464         * icall.c: No declaration of environ necessary on Win32. It is
8465         declared (as a macro expanding to a function call) in stdlib.h.
8466         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
8467         New internal mono function. Returns the value of
8468         mono_get_machine_config() as a Mono string.
8469
8470         * icall-def.h: Add get_bundled_machine_config().
8471
8472 2007-01-04  Raja R Harinath  <rharinath@novell.com>
8473
8474         Remove redundant field
8475         * class-internals.h (_MonoGenericContext.container): Remove field.
8476         * loader.c (mono_method_get_signature_full): Don't parse a
8477         "container" for a signature parse when the signature is inflated
8478         immediately.
8479         (method_from_methodspec): Likewise, for a generic_inst.
8480         * class.c, metadata.c, reflection.c: Update to changes.
8481
8482 2006-01-04  Raja R Harinath  <rharinath@novell.com>
8483
8484         * class-internals.h (_MonoGenericClass): Rename 'context' field to
8485         'cached_context', and change semantics -- it starts off NULL, and
8486         is initialized on demand.
8487         * class.c (mono_generic_class_get_context): New accessor to
8488         replace 'context' field accesses.
8489         (mono_class_get_context): New helper.
8490         (*): Update to changes.
8491         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
8492
8493 2007-01-03  Miguel de Icaza  <miguel@novell.com>
8494
8495         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
8496         before the memcpy.   Fixes Marshal2 regression.
8497
8498 2007-01-02  Jb Evain  <jbevain@gmail.com>
8499
8500         * blob.h: add a MONO_TYPE_ENUM definition
8501         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
8502         fix the encoding of arrays of enums in custom attributes.
8503
8504         Fixes #79666.
8505
8506 2007-01-01  Miguel de Icaza  <miguel@novell.com>
8507
8508         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
8509         string is null terminated, but only cut the string short if it
8510         overflows the buffer.   
8511         
8512         (mono_string_to_byvalstr): Also fix this routine.   The code here
8513         was not properly terminating a string (it was only terminated
8514         because of the previous catch-all memset). 
8515
8516         I left the memset, because I do not know if applications expect
8517         the runtime to clear this region. 
8518
8519         Fixes #79944.
8520
8521         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
8522         Clear the error before returning to unmanaged code to prevent the
8523         runtime from being confused later on (fixes  80420).
8524         (ves_icall_type_from_name): Always call mono_loader_clear_error
8525         after parsing a type that could have failed.
8526         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
8527
8528         * loader.c (mono_loader_clear_error): Fix indentation.
8529
8530 2006-12-28  Martin Baulig  <martin@ximian.com>
8531
8532         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
8533
8534 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
8535
8536         * reflection.c: patch from Rolf Bjarne Kvinge to fix
8537         getting a token for an EnumBuilder.
8538
8539 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
8540
8541         * reflection.c: be more careful in case resource generation
8542         fails to create the data array.
8543
8544 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
8545
8546         * sgen-gc.c: write barrier for clone and fix unregister handles.
8547
8548 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
8549
8550         * reflection.c: some fixes needed in the generics code for the moving GC.
8551
8552 2006-12-22  Robert Jordan  <robertj@gmx.net>
8553
8554         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
8555         account. Fixes bug #80299.
8556
8557 2006-12-21  Raja R Harinath  <rharinath@novell.com>
8558
8559         Fix WaitHandle usage in delegates.
8560         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
8561         * object.c (mono_wait_handle_new): Use the property set method to
8562         initialize the handle.
8563         (mono_wait_handle_get_handle): New.
8564         * threadpool.c (mono_async_invoke): Use it.
8565         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
8566         Likewise.
8567         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
8568
8569 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
8570
8571         * marshal.c (emit_marshal): Call emit_marshal_variant and
8572         emit_marshal_com_interface when applicable.
8573         (emit_marshal_variant, emit_marshal_com_interface): Add
8574         methods for this case and remove if's from emit_marshal_object.
8575         
8576 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
8577
8578         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
8579
8580 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
8581
8582         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
8583         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
8584         and GlobalFree on Windows. Remove FIXME.
8585
8586 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
8587
8588         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
8589         implementation for managed objects.
8590
8591 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
8592
8593         * object.c: implemented code to be used for checking
8594         that no reference field overlaps with non-references.
8595
8596 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
8597
8598         * threadpool.c: fix queue code to be compatible with the
8599         moving GC.
8600
8601 2006-12-18  Miguel de Icaza  <miguel@novell.com>
8602
8603         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
8604         in structures by throwing ArgumentNullException.
8605
8606         (emit_marshal_safehandle): Also when they are null parameters.
8607
8608         (emit_marshal_safehandle): Add support for ref
8609         SafeHandles parameters
8610
8611 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
8612
8613         * profiler.c: updated to use the mono-dl API instead of
8614         gmodule.
8615
8616 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
8617
8618         * profiler.c: updated to use the mono-dl dynamic loading
8619         API instead of gmodule.
8620
8621 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
8622
8623         * profiler.c: use readlink, older versions of glib don't have
8624         g_file_read_link ().
8625
8626 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
8627
8628         * profiler.c: try to detect the path to mono if libc fails to provide
8629         a useful name (bug #80286).
8630
8631 2006-12-16  Raja R Harinath  <rharinath@novell.com>
8632
8633         Fix #80242
8634         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
8635         instance, use the generic type definition instead.
8636         (ves_icall_Type_GetNestedTypes): Likewise.
8637         * class.c (mono_class_create_generic): Always set the
8638         nested_classes of a generic instance to NULL, even if the generic
8639         type definition has nested types.
8640
8641 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
8642
8643         * marshal.c (mono_string_from_bstr): Revert previous Windows change
8644         and fix on Linux.
8645         
8646 2006-12-15  Miguel de Icaza  <miguel@novell.com>
8647
8648         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
8649         my arguments were in the wrong order.   I also fixed the Windows
8650         version which seems to have had the same issue.
8651
8652         (mono_free_bstr): On Unix, this is g_free.
8653         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
8654         conversions (for the tests in corlib to pass).
8655
8656 2006-12-14  Miguel de Icaza  <miguel@novell.com>
8657
8658         * marshal.c (emit_ptr_to_object_conv): For now, ignore
8659         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
8660         exception if a ref SafeHandle in a struct has changed).
8661         
8662         (emit_struct_conv): Do not perform layout checks for classes
8663         derived from SafeHandle, as those are specially handled. 
8664
8665         (emit_object_to_ptr_conv): Add support for
8666         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
8667
8668         (emit_marshal_safehandle): Implement conversion of return values
8669         of safehandles (MARSHAL_ACTION_CONV_RESULT).
8670         
8671         * threads.c: WaitHandle now is compiled with two different handles
8672         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
8673         for 2.0.
8674         
8675         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
8676         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
8677         these routines to cope with both kinds of fields.
8678
8679 2006-12-12  Miguel de Icaza  <miguel@novell.com>
8680
8681         * metadata.c (mono_type_to_unmanaged): Handle the case where
8682         type->data.klass is a SafeHandle, and in that case, return the
8683         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
8684         MONO_MARSHAL_CONV_SAFEHANDLE. 
8685
8686 2006-12-11  Miguel de Icaza  <miguel@novell.com>
8687
8688         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
8689         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
8690         calling emit_marshal_object.
8691
8692         (emit_marshal_safehandle): Implement marshalling of
8693         SafeHandle parameters (no ref support yet).
8694
8695         (MarshalAction): Document the defines as I implement
8696         them for SafeHandle.
8697
8698         (emit_marshal_object): indentation police.
8699
8700         * class-internals.h: Define MonoSafeHandle.
8701         Add safehandle_class to MonoDefaults type.
8702
8703         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
8704         list of classes to check for fields. 
8705
8706         * domain.c (mono_init_internal): Add SafeHandle to the list of
8707         mono_defaults loaded.
8708
8709 2006-12-15  Raja R Harinath  <rharinath@novell.com>
8710
8711         Fix #80253
8712         * reflection.c (mono_reflection_bind_generic_parameters): If the
8713         generic type definition is a type builder, ensure that it is fully
8714         initialized before instantiating it.  Kill some dead code.
8715
8716 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
8717
8718         * object.c: clear the loader_error () before loading
8719         more metadata stuff (bug #80258).
8720
8721 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
8722
8723         * icall.c, icall-defs.h: type modifiers icalls for
8724         parameters and properties.
8725
8726 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
8727
8728         * object.c, icall.c: fixed warnings.
8729
8730 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
8731
8732         * marshal.c: fixed a couple of leaks and coding style in a few places.
8733
8734 2006-12-08  Dick Porter  <dick@ximian.com>
8735
8736         * process.c: Cope with NULL ProcessStartInfo arguments on windows
8737         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
8738         80173.
8739
8740 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
8741
8742         * process.c: ProcessStartInfo may have only filename set and
8743         arguments can be NULL.
8744
8745 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
8746
8747         * icall.c: fix leak found by Robert Jordan.
8748
8749 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
8750
8751         * marshal.c, marshal.h: generate managed method to access an element
8752         of a multi-dimensional array.
8753
8754 2006-11-30  Paolo Molaro (lupus@ximian.com)
8755
8756         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
8757
8758 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
8759
8760         * icall.c: back out GetFields () fix until the serialization code is
8761         fixed to not depend on the incorrect behaviour.
8762
8763 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
8764
8765         * profiler.c: provide defaults if none are set.
8766
8767 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
8768
8769         * Makefile.am, attrdefs.h: new public header file with
8770         constants for attributes for use by embedders.
8771
8772 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
8773
8774         * icall.c: GetFields () fix for bug #80064.
8775
8776 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
8777
8778         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
8779         removed long unused icalls.
8780
8781 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
8782   
8783         * marshal.c: 
8784                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
8785                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
8786                 can be generated without a delegate class.
8787                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
8788         
8789         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
8790
8791 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8792
8793         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
8794         #80069.
8795
8796 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
8797
8798         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
8799         icall-def.h: added icalls needed by System.GC.
8800
8801 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
8802
8803         * loader.c: ensure the class in catch clauses is handled
8804         correctly for generics methods (fixes bug#79980).
8805
8806 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
8807
8808         * monitor.h, monitor.c: added mono_locks_dump () function
8809         to help debug deadlocks involving managed locks.
8810
8811 2006-11-13  Dick Porter  <dick@ximian.com>
8812
8813         * file-io.c (get_file_attributes): If the file is a symlink try
8814         and get the stat data for the target, but also add the
8815         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
8816         the specs for the windows symlink support, but will probably have
8817         to be reworked when I have test data from a vista machine.  Fixes
8818         bug 79887.
8819
8820 2006-11-13  Dick Porter  <dick@ximian.com>
8821
8822         * gc.c (mono_domain_finalize): 
8823         * marshal.c (mono_delegate_begin_invoke): 
8824         * threadpool.c (socket_io_init, mono_thread_pool_init)
8825         (mono_thread_pool_finish): 
8826         * monitor.c (mono_monitor_try_enter_internal): 
8827         * threads.c (mono_thread_resume, mono_thread_init)
8828         (mono_thread_suspend_all_other_threads)
8829         (mono_thread_execute_interruption): 
8830         * appdomain.c (mono_domain_unload): Check for NULL error returns
8831         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
8832         75733.
8833
8834 2006-11-11  Miguel de Icaza  <miguel@novell.com>
8835
8836         * process.c
8837         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
8838         Only close the handle if the value of the handle is not
8839         INVALID_HANDLE_VALUE.  This just makes the process a bit more
8840         robust.
8841
8842         Improvement for #75733, so that we do not run into this problem. 
8843
8844         
8845         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
8846         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
8847         internal variables.  Fixes #79462 
8848         
8849
8850 2006-11-09  Dick Porter  <dick@ximian.com>
8851
8852         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
8853         Use poll() not select().  Fixes bug 79397.
8854
8855 2006-11-09  Raja R Harinath  <rharinath@novell.com>
8856
8857         Fix #79872
8858         * assembly.c (mono_assembly_load_from_full): Check that the given
8859         image has an assembly manifest.
8860
8861 2006-11-09  Ankit Jain  <jankit@novell.com>
8862
8863         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
8864         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
8865         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
8866
8867 2006-11-07  Dick Porter  <dick@ximian.com>
8868
8869         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
8870         Put the old resolver behaviour back for pre-2.0 profiles.
8871
8872 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
8873
8874         * threadpool.c: precise GC and locking fixes.
8875
8876 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
8877
8878         * class.c: don't load types that have an explicit unaligned
8879         managed reference. Provide better info in the TypeLoad exception.
8880         Part of the fix for bug #79744.
8881         * object.c: use the correct check for class type load issues.
8882
8883 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
8884
8885         * class.c: enforce alignment of fields with managed references
8886         even when Pack=1 is forced by the user (bug #77788).
8887
8888 2006-11-03  Dick Porter  <dick@ximian.com>
8889
8890         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
8891         If the address reverse lookup fails, return it as the hostname
8892         anyway.  Fixes bug 79721.
8893
8894 2006-11-03  Dick Porter  <dick@ximian.com>
8895
8896         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
8897         Fix build on Windows.
8898
8899 2006-11-02  Dick Porter  <dick@ximian.com>
8900
8901         * icall-def.h: 
8902         * object-internals.h: 
8903         * exception.c (mono_get_exception_thread_interrupted): 
8904         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
8905         Fixes bug 74525.
8906
8907         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
8908         Check for pending Thread.Interrupt.
8909
8910 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
8911         * loader.c: Fixed bug 79684.
8912
8913 2006-10-27  Dick Porter  <dick@ximian.com>
8914
8915         * file-io.c (get_file_attributes): Force symlinks to directories
8916         to be returned as a regular file.  Fixes bug 79733.
8917 2006-10-26  Dick Porter  <dick@ximian.com>
8918
8919         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
8920         CreateFile to open a directory then we need to set the
8921         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
8922
8923 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
8924
8925         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
8926         friends.
8927
8928 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
8929
8930         * sgengc.c: small cleanup of timer code.
8931
8932 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
8933
8934         * sgen-gc.c: fix some warnings and start adding support for
8935         complete object removal on domain unload.
8936
8937 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
8938
8939         * assembly.c: build_assembly_name should not consider a version
8940         number without build or revision number invalid. Fixes bug #79715.
8941
8942 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
8943
8944         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
8945         call kernel32 function OutputDebugString directly.
8946         
8947         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
8948         
8949 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
8950
8951         * reflection.c: small cleanup, using a function to insert a MonoString
8952         in the string heap.
8953
8954 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
8955
8956         * reflection.c: moving GC fixes.
8957
8958 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
8959
8960         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
8961         all the objects with finalizers belonging to an unloading appdomain.
8962
8963 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
8964
8965         * sgen-gc.c: added ability to allocate even when the nursery is fully
8966         pinned and fixed a couple of bugs.
8967
8968 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
8969
8970         * threads.h: Revert the last change for now.
8971
8972         * threads.h (mono_thread_get_pending_exception): Rename this to
8973         mono_thread_get_undeniable_exception ().
8974
8975 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
8976
8977         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
8978         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
8979         when fname does not refer to valid assembly. This result in a more
8980         meaningful error message.
8981         * exception.c: added mono_get_exception_bad_image_format2 which 
8982         constructs a BadImageFormatException using the ctor taking a custom
8983         message and the file name. Passing in a NULL msg results in a default
8984         message.
8985         * exception.h: define mono_get_exception_bad_image_format2 function.
8986         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
8987         when file name pointed to an invalid IL image. Use 
8988         mono_get_exception_file_not_found2 to construct FileNotFoundException,
8989         as this results in a more meaningful error message.
8990
8991 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
8992
8993         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
8994         #79465.
8995
8996 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
8997
8998         * metadata.c (mono_type_size): Change the align parameter to guint32 for
8999         consistency with the other _size functions.
9000         (mono_type_stack_size): Ditto.
9001
9002         * class.c object.c icall.c: Fix warnings caused by the above change.
9003
9004         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
9005
9006         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
9007
9008         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
9009
9010 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
9011
9012         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
9013         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
9014         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
9015         threadpool.h, threads-types.h: mark more internal functions.
9016
9017 2006-10-11  Dick Porter  <dick@ximian.com>
9018
9019         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
9020         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
9021         reproduce the bug even before applying the fix.)
9022
9023 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
9024
9025         * reflection.c: allow retrieving attributes for arguments in generic
9026         methods (bug #79241).
9027
9028 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
9029
9030         * debug-mono-symfile.c: properly check fopen () result (found by
9031         coverity).
9032
9033 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
9034
9035         * reflection.c: make error message clearer and fixed two
9036         issuelets found by Coverity.
9037
9038 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
9039
9040         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
9041
9042 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
9043
9044         * object-internals.h, gc-internal.h, profiler-private.h:
9045         mark internal functions.
9046
9047 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
9048
9049         * reflection.c: put data in the text section.
9050         * icall.c: recognize more types in type_from_typename ().
9051         * process.c, marshal.c: added some GC FIXMEs.
9052
9053 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
9054
9055         * loader.c: check for NULL before initializing.
9056
9057 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
9058
9059         * gc.c (finalizer_thread): Use a non-alertable wait here.
9060
9061         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
9062         until the correct solution is found.
9063
9064 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
9065
9066         * reflection.c (mono_module_get_object): Avoid an assert when operating on
9067         modules with no metadata. Fixes #79596.
9068
9069         * image.c (load_metadata_ptrs): Put back the error message when
9070         the #- heap is encountered since the support is not complete yet.
9071
9072 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
9073
9074         * gc.c: do not allow the user to SuppressFinalize () a
9075         delegate because it would leak the trampoline if present.
9076
9077 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
9078
9079         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
9080         PropertyPtr table.
9081
9082 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
9083
9084         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
9085
9086         * metadata.c (mono_metadata_get_param_attrs): Ditto.
9087
9088         * row-indexes.h: Add definitions for *Ptr tables.
9089
9090         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
9091
9092         * metadata.c (mono_metadata_translate_token_index): New helper function to
9093         translate table indexes used in uncompressed metadata.
9094         (mono_metadata_decode_table_row): Ditto.
9095         (mono_metadata_decode_table_row_col): Ditto.
9096
9097         * metadata.c: Add table schema for *Ptr tables.
9098
9099         * class.c loader.c: Use the new helper function to access the affected metadata
9100         tables.
9101         
9102         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
9103         #38532.
9104         
9105 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
9106
9107         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
9108         sequences which can be unbounded in size. Fixes #79583.
9109
9110 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
9111
9112         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
9113         static initialization.
9114
9115         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
9116
9117         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
9118
9119         * domain.c (mono_domain_free): Free up type_init_exception_hash.
9120
9121         * object.c (mono_runtime_class_init): Implement correct semantics when a static
9122         ctor fails, i.e. throw the same exception on subsequent accesses.
9123         
9124 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
9125
9126         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
9127         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
9128         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
9129         Handle marshalling of interfaces and VARIANTs contained in structs.
9130         
9131         Code is contributed under MIT/X11 license.
9132         
9133 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
9134
9135         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
9136         
9137         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
9138         mempool.
9139
9140 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9141
9142         * console-io.c: ignore previous SIGINT handler.
9143
9144 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
9145
9146         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
9147         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
9148         #79460, #79461, #79485.
9149
9150         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
9151
9152         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
9153         #79217.
9154
9155 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
9156
9157         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
9158         could be generated from it.
9159
9160 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
9161
9162         * rand.c: fix read loop to correctly handle EINTR.
9163
9164 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
9165
9166         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
9167         internal calls are defined to keep methods closer to the declaring
9168         type and allow a significant reduction in runtime relocations and
9169         memory usage.
9170
9171 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
9172
9173         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
9174         exception message to have FileNotFoundException use the default
9175         assembly load error message. Fixes bug #79426.
9176         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
9177
9178 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9179
9180         * threadpool.c: (start_thread_or_queue) use the root domain when
9181         creating the thread instead of the async object one.
9182
9183 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
9184
9185         * class.c, object.c, class-internals.h, reflection.c:
9186         for arrays, store element_size inside MonoClass (speedup
9187         for array object creation).
9188
9189 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
9190
9191         * icall.c: fixed CodeBase to use the file name and not the module
9192         name (bug #79365).
9193
9194 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
9195
9196         * mono-debug.c, mono-debug.h: export find_method as
9197         mono_debug_find_method ().
9198
9199 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
9200
9201         * debug-helpers.c, class-internals.h: added a few functions useful
9202         when debugging under gdb.
9203
9204 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9205
9206         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
9207         characters that need special handling.
9208
9209 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
9210
9211         * mono-config.c: make the os/cpu specification more flexible,
9212         allowing lists and negation.
9213
9214 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
9215
9216         * marshal.c: COM Interop fixes. Handle case where method->klass.
9217         is interface. Handle BSTR/MonoString when null. Use CDECL as 
9218         calling convention on non-windows platforms. This is for
9219         compatibility with XPCOM and MainWin COM.
9220         
9221         Code is contributed under MIT/X11 license.
9222         
9223
9224 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
9225
9226         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
9227         correctly. Fixes #79217.
9228
9229         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
9230
9231 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
9232
9233         * mono-config.c: allow both an os and cpu attribute for dllmap
9234         and dllentry elemnets to enable a single config file to be used
9235         for multiple architectures.
9236
9237 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
9238
9239         * loader.c: MonoLoaderError was cleared too soon on load failure.
9240         Fixes bug #79424.
9241
9242 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
9243
9244         * icall.c: use the defining class vtable when accessing a
9245         static field, not a pobblibly derived class.
9246
9247 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
9248
9249         * icall.c string-icalls.c: Remove references to unicode.h.
9250
9251         * unicode.h unicode.c Makefile.am: Remove these unused source files.
9252
9253         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
9254
9255         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
9256         indicating the image where custom marshaller types should be looked up.
9257         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
9258         custom marshallers, instead of corlib. Fixes #79425.
9259
9260 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
9261
9262         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
9263
9264 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
9265
9266         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
9267         Implement Environment.ProcessorCount.
9268         
9269         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
9270         Implement Environment.ProcessorCount.
9271         
9272         * icall.c: 
9273         Add Environment.ProcessorCount icall.
9274         
9275         Patch by Jason McFall.
9276
9277 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9278
9279         * assembly.c: don't append .exe/.dll when the filename already contains
9280         one of those extensions.
9281
9282 2006-09-12  Martin Baulig  <martin@ximian.com>
9283
9284         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
9285         to array interfaces.
9286
9287 2006-09-11  Martin Baulig  <martin@ximian.com>
9288
9289         * reflection.c (mono_image_build_metadata): Create the
9290         MethodImpl's after emitting all types and methods, so we don't
9291         need another fixup pass for them.
9292
9293 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
9294
9295         * class.c (mono_class_from_name_case): Fix regression introduced by the last
9296         change.
9297
9298 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
9299
9300         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
9301         unload.
9302
9303 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
9304
9305         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
9306         args is not set. Fixes #78926.
9307
9308 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
9309
9310         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
9311
9312         * image.c (load_class_names): Move this to class.c, and rename it to 
9313         'mono_image_init_name_cache'.
9314         (load_modules): Fix a warning.
9315
9316         * class.c icall.c image.c: Initialize image->name_cache lazily.
9317
9318         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
9319         on its name using information in the AOT file.
9320
9321         * class.c (mono_class_from_name): Use the new hook function.
9322
9323 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
9324
9325         * reflection.c (mono_param_get_objects): Handle enum default parameter values
9326         correctly.
9327
9328         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
9329         Fixes #79289.
9330         
9331 2006-09-06  Martin Baulig  <martin@ximian.com>
9332
9333         * icall.c (mono_lookup_internal_call): Small fix.
9334
9335 2006-09-05  Raja R Harinath  <rharinath@novell.com>
9336
9337         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
9338         double g_free.
9339
9340 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
9341
9342         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
9343         when --debug is specified.
9344
9345 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
9346
9347         * class.c (setup_generic_array_ifaces): Fix a warning.
9348
9349 2006-09-04  Miguel de Icaza  <miguel@novell.com>
9350
9351         * Temporarily remove the patch to assemly.c that checks the
9352         assembly versions as it breaks our gacutil.
9353
9354 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
9355
9356         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
9357
9358         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
9359         a net 1.0 runtime.
9360
9361         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
9362         created using the default ctor. Fixes #79152.
9363         (mono_string_builder_to_utf16): Ditto.
9364
9365 2006-09-01  Martin Baulig  <martin@ximian.com>
9366
9367         Fix handling of the generic array interfaces.
9368
9369         * class-internals.h
9370         (MonoDefaults): Removed `generic_array_class' and added
9371         `generic_ilist' class.
9372
9373         * class.c
9374         (mono_bounded_array_class_get): Add the new generic array interfaces.
9375         (setup_generic_array_ifaces): New static method; create vtable
9376         entries for each method in the generic array interfaces.
9377
9378         * metadata.c
9379         (select_container): Allow "parent-less" generic methods.
9380
9381         * marshal.c
9382         (mono_marshal_get_generic_array_helper): New public method.
9383
9384         * icall.c
9385         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
9386         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
9387         moved the interncall into System.Array.
9388
9389 2006-09-01  Raja R Harinath  <rharinath@novell.com>
9390
9391         A few more cases of avoiding work on types with ->byref set.
9392         Has the real fix for #79238
9393         * icall.c (is_generic_parameter): New helper.
9394         (ves_icall_Type_GetGenericParameterPosition): Use it.
9395         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
9396         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
9397         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
9398         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
9399         reference types.
9400         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
9401         reference types.
9402         (ves_icall_Type_get_IsGenericInstance): Likewise.
9403         (ves_icall_Type_get_IsGenericType): Likewise.
9404
9405 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
9406
9407         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
9408         class if possible.
9409
9410         * mempool.h (mono_mempool_get_allocated): New helper function.
9411
9412         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
9413         change.
9414
9415         * mempool.c: Fix warnings and the calculation of stats.
9416
9417         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
9418
9419         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
9420
9421         * loader.c (mono_get_method_from_token): Update method_count stat.
9422
9423         * class-internals.h (MonoStats): Add some stats.
9424
9425 2006-08-31 Robert Jordan  <robertj@gmx.net>
9426
9427         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
9428         with managed variants.
9429         All code is contributed under the MIT/X11 license.
9430         
9431 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
9432
9433         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
9434         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
9435
9436         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
9437
9438         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
9439         with cycles in classes.
9440
9441         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
9442
9443         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
9444         missing a [MarshalAs] directive. Fixes #79203.
9445
9446         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
9447         klass->marshal_info. Fixes #79217.
9448
9449 2006-08-30  Martin Baulig  <martin@ximian.com>
9450
9451         Committing a patch from Joachim Ante <joe@otee.dk>:
9452         Add support for binary data symbol stores.
9453
9454         * debug-mono-symfile.c
9455         (mono_debug_open_mono_symbol_file): Renamed into
9456         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
9457         arguments.
9458
9459         * mono-debug.c
9460         (mono_debug_open_image): Added `raw_contents' and `size' args.
9461         (mono_debug_init_2_memory): New public function.
9462
9463 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
9464
9465         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
9466
9467 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9468
9469         * appdomain.c: implement support for ShadowCopyFiles.
9470
9471 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
9472
9473         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
9474         when value is NULL (and should remove CID #51).
9475
9476 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9477
9478         * image.c: moved 2 functions to ../utils.
9479
9480 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
9481
9482         * gc.c: cope with the target object of a GC handle being NULL
9483         (bug #78877).
9484
9485 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
9486
9487         * class.c: recursively check parent's explicit implementations
9488         of interface methods (fixes bug #79125).
9489
9490 2006-08-19  Miguel de Icaza  <miguel@novell.com>
9491
9492         * filewatcher.c: Avoid warnings when building, do not redefine
9493         constants that are defined.
9494
9495         Remove warnings.
9496
9497 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9498
9499         * image.c: don't fail when the link points to an absolute path.
9500
9501 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
9502
9503         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
9504         Fix CID #3.
9505
9506 2006-08-17  Miguel de Icaza  <miguel@novell.com>
9507
9508         * image.c (full_path): A new method used to obtain the actual path
9509         of an assembly even in the presence of symbolic links.  
9510
9511         This is necessary for the case where we are running a binary that
9512         has been GACed, but we are using the "published" path name
9513         ($prefix/mono/1.0/blah.exe) which happens to point to the real
9514         file in the GAC.
9515
9516         This was the source of the failure for the `xsp' command with the
9517         recent AppDomain changes, as far as the runtime was concerned,
9518         there were two different assemblies: $prefix/mono/1.0/blah.exe and
9519         $prefix/mono/gac/blah/version/blah.exe.
9520
9521         (do_mono_image_open): use full path
9522
9523 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
9524
9525         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
9526
9527 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
9528
9529         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
9530         domain_id is supplied. Fix CID #241 and corlib's unit tests.
9531
9532 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
9533
9534         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
9535         small structures. Fixes #78990.
9536
9537 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
9538
9539         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
9540
9541         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
9542
9543 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9544
9545         * appdomain.c:
9546         * marshal.c: don't load all the assemblies from a domain into newly
9547         created ones. The new domains might have different rules and load
9548         assemblies from different locations. Fixes bug #76757.
9549
9550         Patch by Lluis. Conflicts resolved by Brian Crowell.
9551
9552 2006-08-16  Alp Toker  <alp@atoker.com>
9553
9554         * socket-io.c: First half of the fix for #79084.
9555         Set sa_size to the length of the content, not that of the struct.
9556         Don't add NULL suffix to the content, this should be done in
9557         managed code if needed.
9558
9559 2006-08-14  Raja R Harinath  <rharinath@novell.com>
9560
9561         Fix part of #79012
9562         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
9563         mono_metadata_parse_type returns NULL.
9564
9565 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
9566
9567         * normalization-tables.h : new file for string normalization data.
9568         * locales.c, locales.h, icall.c :
9569           added load_normalization_resource() for string normalization,
9570           and icall as well.
9571         * Makefile.am : added normalization-tables.h to the sources.
9572
9573 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
9574
9575         * marshal.c: Add more helper functions to reduce code duplication and use them
9576         everywhere.
9577
9578 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
9579
9580         * marshal.c: Fix non-x86 stdcall warnings.
9581         
9582         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
9583         them everywhere.
9584
9585 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
9586
9587         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
9588         type check on multi-dimensional arrays. Fixes #79000.
9589
9590 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
9591
9592         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
9593         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
9594         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
9595         * class-internals.h: add is_com_object to class structure.
9596         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
9597         null checks to COM object marshalling. Fix .ctor call on RCW.
9598         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
9599         
9600         All code is contributed under the MIT/X11 license.
9601
9602 2006-08-09  Dick Porter  <dick@ximian.com>
9603
9604         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
9605         racing mono_monitor_allocator_lock() somewhere, so don't delete
9606         the critical section for now.  Found by running and exiting
9607         monodevelop.
9608
9609 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
9610
9611         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
9612         (ves_icall_System_ComObject_FindInterface): Ditto.
9613         (ves_icall_System_ComObject_CacheInterface): Ditto.
9614
9615         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
9616         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
9617
9618 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9619
9620         * threadpool.c: treat pipes from process asynchronous reads as sockets
9621         when reading from them, so we get select/poll or epoll to wait for
9622         data.
9623
9624 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
9625
9626         * loader.c: Fix a typo (CID #233) in the null check.
9627
9628 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
9629
9630         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
9631         Hopefully fixes #78949.
9632         
9633         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
9634         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
9635         bytes. Fixes #78972.
9636
9637 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9638
9639         * filewatcher.c: we need to set errno here.
9640
9641 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9642
9643         * filewatcher.c: let Win32Exception get the error value.
9644
9645 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9646
9647         * filewatcher.c: translate errno into win32 errors for Win32Exception
9648         to know what happened.
9649
9650 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
9651
9652         * threadpool.c: Fix more warnings.
9653
9654         * assembly.c (search_loaded): Fix warnings.
9655
9656         * threadpool.c (mono_thread_pool_finish): Fix warnings.
9657         (mono_async_invoke): Ditto.
9658
9659 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
9660
9661         * object.c (mono_remote_class_vtable): Need to create proxy vtable
9662         entries for __ComObject type in addition to ComImport types.
9663         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
9664         about hash table.
9665         
9666         All code is contributed under the MIT/X11 license.
9667
9668 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
9669
9670         * image.c: avoid tentative loading of modulerefs that contain
9671         no metadata (P/Invoke library names).
9672
9673 2006-07-28  Dick Porter  <dick@ximian.com>
9674
9675         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
9676         mono_loader_lock() somewhere, so don't delete the critical section
9677         for now.  Found by running and exiting monodevelop.
9678
9679 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9680
9681         * filewatcher.c: define the inotify syscalls when we're building on
9682         linux and have sys/syscall.h. The build system might not have support
9683         for inotify but the target system might have it.
9684
9685 2006-07-26  Miguel de Icaza  <miguel@novell.com>
9686
9687         * domain.c: Documentation updates.
9688
9689         * loader.c (mono_free_method): Do not release the method
9690         information if we are being profiled, as profilers will use this
9691         information at shut down to present some data to the user.
9692
9693         This is needed so that the profiler does not crash, as the
9694         profiler tends to keep MonoMethods around, and they might become
9695         invalid if we free these.
9696
9697         (mono_get_method_constrained): Return the original CIL stream
9698         method as well, so verification can be performed against it.
9699
9700 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9701
9702         * filewatcher.[ch]: support for inotify file system watcher.
9703         * icall.c: add new internal calls for the inotify file system watcher.
9704
9705 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9706
9707         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
9708         #78888.
9709
9710 2006-07-20  Dick Porter  <dick@ximian.com>
9711
9712         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
9713         warning.
9714
9715 2006-07-20  Dick Porter  <dick@ximian.com>
9716
9717         * threads.c (start_wrapper): Do the thread cleanup while we still
9718         hold a reference to its object.  Fixes bug 78123.
9719
9720 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
9721
9722         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
9723         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
9724           "managed-to-managed".
9725         * icall.c: Redirect string constructors that take sbyte* to
9726           ves_icall_System_String_ctor_RedirectToCreateString.
9727         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
9728           to CreateString () methods with matching signature.
9729         * reflection.c: Use original security informations for
9730           MONO_WRAPPER_MANAGED_TO_MANAGED.
9731         * security-manager.c: Use original security informations for
9732           MONO_WRAPPER_MANAGED_TO_MANAGED.
9733         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
9734           that is a placeholder and only its address should be used.
9735         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
9736           that is a placeholder and only its address should be used.
9737
9738 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
9739
9740         Begin implementing COM Interop.
9741         * appdomain.c: Increment corlib version.
9742         * class.c: Set ComImport classes' parent to __ComObject.
9743         * loader.c: Mark cominterop methods as such.
9744         * domain.c: Add __ComObject class to MonoDefaults structure.
9745         * image.c: Add 2 hashtables to the image for COM Interop related methods
9746         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
9747         using the mempool allocator
9748         
9749         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
9750         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
9751         declaration for mono_metadata_type_dup_mp.
9752         
9753         * debug-helpers.c: Added strings for two additional wrapper types
9754         * object.c: Create proxy objects for ComImport classes
9755         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
9756         and added __ComObject class to MonoDefaults structure.
9757         
9758         * object-internals.h: Finish MonoRealProxy definition, and add definition of
9759         MonoComInteropProxy and MonoComObject.
9760         
9761         * marshal.c: Added support for COM Interop
9762         (signature_cominterop): Converts managed signature to corresponding
9763         unmanaged COM signature.
9764         (cominterop_get_function_pointer): gets unmanaged function pointer via
9765         COM object vtable
9766         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
9767         (cominterop_get_method_interface): returns interface type that method is defined on
9768         (mono_mb_emit_cominterop_call): emits native call to function pointer
9769         gotten from vtable
9770         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
9771         that matches signature of unmanaged function.
9772         (cominterop_get_native_wrapper): wrapper around adjusted method call.
9773         (cominterop_get_invoke): forwards call from proxy to __ComObject
9774         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
9775         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
9776         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
9777         
9778         * marshal.h: Added Marshal icall declarations.
9779         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
9780         so we can access them in finalizer
9781         
9782 2006-07-14  Dick Porter  <dick@ximian.com>
9783
9784         * object.c (mono_type_initialization_cleanup): Fix a race
9785         condition by temporarily commenting out the critical section
9786         deletion.
9787
9788 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
9789
9790         * reflection.c (create_custom_attr): Fix some warnings.
9791         (create_custom_attr_data): Ditto.
9792         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
9793         types. Fixes #78855.
9794
9795 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
9796
9797         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
9798
9799         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
9800
9801 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
9802
9803         * reflection.c (resolve_object): Add support for DynamicMethod.
9804
9805         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
9806         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
9807
9808 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
9809
9810         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
9811         don't leak GPtrArray's pdata has we have no use (nor free) for it.
9812
9813 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
9814
9815         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
9816         Fixes #77888.
9817
9818 2006-06-30  Raja R Harinath  <rharinath@novell.com>
9819
9820         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
9821         slightly: remove a shadow local variable.
9822
9823 2006-06-29  Raja R Harinath  <rharinath@novell.com>
9824
9825         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
9826         definition that introduces the virtual function slot.
9827         Also fix Coverity #105.
9828
9829 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
9830
9831         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
9832         for dynamic assemblies. Fixes #78724.
9833
9834 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
9835
9836         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
9837         Fixes #78722.
9838
9839 2006-06-21  Martin Baulig  <martin@ximian.com>
9840
9841         * reflection.c
9842         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
9843         fixes #76484.
9844
9845 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
9846
9847         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
9848
9849 2006-06-20  Raja R Harinath  <rharinath@novell.com>
9850
9851         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
9852         nor TYPEREFs.
9853         * class.c (mono_class_create_from_typespec): Add 'context' argument.
9854         Inflate result if necessary.
9855         (mono_class_get_full): Remove old version.  Rename from
9856         'mono_class_get' and add 'context' argument.  Pass it to
9857         ..._create_from_typespec.
9858         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
9859         (mono_ldtoken): Revert change below.
9860
9861 2006-06-20  Martin Baulig  <martin@ximian.com>
9862
9863         * class.c (mono_ldtoken): Don't pass the generic context to
9864         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
9865
9866 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
9867
9868         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
9869         and later freeing it. Fixes #78638.
9870
9871 2006-06-15  Miguel de Icaza  <miguel@novell.com>
9872
9873         * icall.c (mono_class_get_throw): Revert over-zealous error
9874         throwing, the caller for mono_class_get_throw will cope with
9875         errors when classes are not properly initialized already.
9876
9877         The code still copes with loader exceptions though.
9878
9879         Fixes the regression in reftype1 and reftype3 from the CAS tests.
9880         
9881 2006-06-14  Miguel de Icaza  <miguel@novell.com>
9882
9883         Fixes the `make run1' version of RuntimeAbort (to be commited,
9884         source is in Bugzilla).
9885         
9886         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
9887         FALSE on class loading failure instead of returning true.
9888
9889         * class.c (mono_class_create_from_typedef): It is possible for
9890         mono_metadata_interfaces_from_typedef_full to fail if a class is
9891         not found, cope with this.
9892         
9893
9894 2006-06-14  Dick Porter  <dick@ximian.com>
9895
9896         * socket-io.c: 
9897         * process.c: Fix a bunch of signed/unsigned warnings from gcc
9898         4.1.1
9899
9900 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
9901
9902         * culture-info-table.h : oops, forgot to make it nsync with r61548.
9903
9904 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
9905
9906         * icall.c: Another fix for building mono in Visual Studio.
9907
9908 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
9909
9910         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
9911         
9912 2006-06-09  Martin Baulig  <martin@ximian.com>
9913
9914         * debug-mono-symfile.c: Put this back and really fix it this
9915         time. Sorry for all the trouble.
9916
9917 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
9918
9919         * icall.c (mono_class_get_throw): Fix a warning.
9920         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
9921         ReflectionTypeLoadException if needed. Fixes #78606.
9922
9923         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
9924         (mono_class_init): Ditto.
9925
9926         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
9927         ref_only exceptions.
9928         (mono_loader_clear_error): Make this work even if there is no error.
9929
9930 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
9931
9932         * object-internals.h marshal.c marshal.h icall.c: Implement method 
9933         Marshal.GetComSlotForMethodInfo using internal call.
9934
9935 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
9936
9937         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
9938         a function for signalling it.
9939
9940         * class.c (mono_class_from_typeref): Use the new kind of loader error when
9941         a referenced assembly is not found.
9942
9943         * loader.c (mono_loader_error_prepare_exception): Add support for 
9944         LOADER_ERROR_ASSEMBLY. Fix formatting.
9945
9946 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
9947
9948         * domain.c appdomain.c class-internals.h marshal.c: Add support 
9949         for VARIANT marshalling on windows and increment corlib version
9950         since Variant struct was added.
9951
9952 2006-06-03  Miguel de Icaza  <miguel@novell.com>
9953
9954         * debug-mono-symfile.c: Revert Martin's previous patch which broke
9955         stack trace line information:
9956
9957         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
9958         (Martin) when looking up B which is between A and C, return A not C.
9959
9960         Bug is #78573.
9961
9962         Thanks to Alexander Olk for tracking this down.
9963
9964 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
9965
9966         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
9967         
9968         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
9969         avoid clobbering its value.
9970         (mono_string_to_lpstr): Fix a warning on windows.
9971
9972 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
9973
9974         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
9975
9976         * reflection.c loader.c: Removed references to 'dummy' flag.
9977
9978         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
9979
9980         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
9981         it gets GC tracking.
9982
9983         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
9984         GC tracking.
9985         
9986         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
9987
9988         * marshal.c threadpool.c: Update callers of mono_async_result_new.
9989
9990         * appdomain.c: Bump corlib version.
9991
9992 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
9993
9994         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
9995         CEE_STIND_REF when working with object references.
9996
9997 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
9998
9999         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
10000         Fixes #78539.
10001
10002 2006-05-30  Miguel de Icaza  <miguel@novell.com>
10003
10004         * loader.c (method_from_memberref): Fix argument value for
10005         mono_loader_set_error_method_load (I was passing the MonoClass
10006         instead of the class name char *).
10007
10008 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
10009
10010         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
10011         CEE_STIND_REF when working with object references.
10012
10013 2006-05-30  Martin Baulig  <martin@ximian.com>
10014
10015         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
10016         mono_method_full_name() change and replace the ':' with a '.'
10017         here.
10018
10019 2006-05-30  Martin Baulig  <martin@ximian.com>
10020
10021         * debug-mono-symfile.c
10022         (mono_debug_symfile_lookup_location): Fix the algorithm:
10023         when looking up B which is between A and C, return A not C.
10024
10025 2006-05-29  Martin Baulig  <martin@ximian.com>
10026
10027         * mono-debug.h
10028         (MonoDebugMethodInfo): Make the typedef public.
10029         (MonoDebugSourceLocation): New public struct.
10030
10031         * mono-debug.c
10032         (mono_debug_source_location_from_address): Removed.
10033         (mono_debug_source_location_from_il_offset): Removed.
10034         (mono_debug_il_offset_from_address): Removed.
10035         (mono_debug_address_from_il_offset): Removed.
10036         (mono_debug_lookup_method): New public function.
10037         (mono_debug_lookup_source_location): New public function; replaces
10038         the old mono_debug_source_location_from_*() functions; see the
10039         inline documentation.
10040         (mono_debug_free_source_location): New public function.
10041         (mono_debug_print_stack_frame): New public function; see the
10042         inline documentation.
10043
10044         * debug-mono-symfile.c
10045         (mono_debug_find_source_location): Renamed into
10046         mono_debug_symfile_lookup_location(); only take a
10047         `MonoDebugMethodInfo *' and an `offset' argument; added inline
10048         documentation.
10049         (mono_debug_find_method): Renamed into
10050         mono_debug_symfile_lookup_method().
10051
10052 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
10053
10054         * assembly.c (mono_assembly_open_full): Dont overwrite the status
10055         returned by mono_image_open_full ().
10056
10057         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
10058         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
10059         #78517.
10060
10061         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
10062         #78518.
10063
10064 2006-05-27  Miguel de Icaza  <miguel@novell.com>
10065
10066         * class.c (mono_class_from_typeref): handle missing images
10067         earlier, deals with bug #78418.   Refactor code; 
10068
10069         Fix a warning introduced in my previous commit (some stale code
10070         from before I revisited my patch).
10071
10072         * class.c (mono_class_create_from_typedef): On failure, remove the
10073         class from the MonoImage->class_cache as the class is not
10074         initialized;   Fixes the leak pointed out by Paolo.
10075
10076 2006-05-25  Dick Porter  <dick@ximian.com>
10077
10078         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
10079         DeleteCriticalSections until I figure out which one may still be
10080         sometimes locked when mono_thread_cleanup is called.
10081
10082 2006-05-24  Dick Porter  <dick@ximian.com>
10083
10084         * threads.c (mono_thread_cleanup): Move the threading cleanup out
10085         of mono_thread_manage and back into its own function, so it can be
10086         called after the finalizer thread has finished.
10087
10088         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
10089
10090 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
10091
10092         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
10093         Fixes #78495.
10094
10095         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
10096         with non-blittable elements.
10097         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
10098
10099 2006-05-24  Martin Baulig  <martin@ximian.com>
10100
10101         * mono-debug-debugger.h (MonoDebuggerEvent): Added
10102         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
10103
10104         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
10105         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
10106         `mono_debugger_event_handler' to NULL.
10107
10108 2006-05-24  Martin Baulig  <martin@ximian.com>
10109
10110         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
10111
10112 2006-05-24  Martin Baulig  <martin@ximian.com>
10113
10114         * mono-debug-debugger.h
10115         (mono_debugger_create_notification_function): Added
10116         `MonoCodeManager *' argument.
10117
10118 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
10119
10120         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
10121
10122 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
10123
10124         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
10125         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
10126         implementation.
10127
10128 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
10129
10130         * icall.c: precise GC support: objects can't be stored in unmanaged
10131         memory anymore, even if they are kept alive by other references: since
10132         they can move the GC needs to be able to always find them.
10133
10134 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
10135
10136         * object.c: precise GC support for static fields. Support
10137         for moving GCs: write barriers and pinned allocation for interned
10138         strings.
10139
10140 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
10141
10142         * domain.c, domain-internals.h: precise GC support for the MonoDomain
10143         structure.
10144
10145 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
10146
10147         * class.c, gc.c: sgen and precise GC updates.
10148
10149 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
10150
10151         * marshal.h, marshal.c: added write barrier wrapper and precise type
10152         fixes.
10153
10154 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
10155
10156         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
10157         support.
10158
10159 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
10160
10161         * reflection.c: precise and sgen GC updates.
10162
10163 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
10164
10165         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
10166
10167 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
10168
10169         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
10170
10171 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
10172
10173         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
10174         MONO_TYPE_OBJECT. Fixes #78462.
10175
10176 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
10177
10178         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
10179         and blittable types.
10180
10181 2006-05-17  Miguel de Icaza  <miguel@novell.com>
10182
10183         * class.c (mono_class_get_exception_for_failure): Implement parts
10184         of a TODO: if the loader error is set (instead of the class
10185         error), we return a Loader exception that can be properly thrown
10186         elsewhere.
10187
10188         This was exposed by some Winforms 2.0 code that I tried to run
10189         (Atsushi pointed me to it).
10190
10191 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
10192
10193         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
10194         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
10195         
10196         * marshal.c (emit_marshal_vtype): Add limited support for 
10197         UnmanagedType.LPStruct. Fixes #78427.
10198
10199         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
10200         Applied a patch from kangaroo to fix #77523.
10201
10202 2006-05-17  Martin Baulig  <martin@ximian.com>
10203
10204         * threads.c
10205         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
10206         (debugger_thread_created): Removed.
10207         (debugger_thread_exited): Removed.
10208
10209 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
10210
10211         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10212
10213         * object-internals.h (MonoReflectionResource): Sync with managed version.
10214
10215 2006-05-12  Wade Berrier <wberrier@novell.com>
10216
10217         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
10218
10219 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
10220
10221         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
10222         functions try to allocate from the image mempool.
10223
10224 2006-05-12  Dick Porter  <dick@ximian.com>
10225
10226         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
10227
10228 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
10229
10230         * object.c: The FieldGetter and FieldSetter methods require the full
10231         name of the class, not only the name. Fixes bug #78277.
10232
10233 2006-05-11  Miguel de Icaza  <miguel@novell.com>
10234
10235         * loader.c (method_from_memberref): Do not pass the NULL klass to
10236         mono_loader_set_error_() methods.  Pass the non-NULL value
10237         (class). 
10238
10239 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
10240
10241         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
10242         (mono_assembly_close): Null out assembly->image->references after freeing it.
10243
10244         * image.c (mono_image_close): Free image->references.
10245         
10246         * reflection.c (mono_image_basic_init): Fix a small memory leak.
10247
10248 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
10249
10250         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
10251         before checking if it's NULL (g_assert).
10252
10253 2006-05-10  Martin Baulig  <martin@ximian.com>
10254
10255         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
10256         I thought I already killed that two months ago, but now it somehow reappeared.
10257
10258 2006-05-10  Martin Baulig  <martin@ximian.com>
10259
10260         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
10261
10262 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
10263
10264         * reflection.c: Allocate memory for dynamically created methods in the image
10265         mempools.
10266
10267 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
10268
10269         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
10270         don't use the ad pointer before checking if it's NULL (g_assert).
10271
10272 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
10273
10274         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
10275         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
10276
10277         * marshal.c: Allocate all signatures from mempools.
10278
10279         * marshal.c: Allocate some more signatures from mempools.
10280
10281 2006-05-09  Miguel de Icaza  <miguel@novell.com>
10282
10283         * object.c (mono_load_remote_field): The code used to provide a
10284         temporary variable for returning results if the user did not
10285         provide a result pointer.  But our temporary variable was allocted
10286         on the satck.
10287
10288         Fix calling code to always pass a result area.   Coverity ID 103.
10289
10290 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
10291
10292         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
10293         value, not the old. Fixes #78312.
10294         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
10295
10296         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
10297         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
10298         per-image cache.
10299
10300         * assembly.c (mono_assembly_close): Free image->references.
10301
10302         * assembly.c (mono_assembly_names_equal): Fix a warning.
10303         (mono_assemblies_cleanup): Cleanup more global data.
10304
10305         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
10306
10307         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
10308         ptr_cache and image->modules.
10309
10310         * image.c (mono_image_init): Allocate array_cache lazily.
10311         
10312 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10313
10314         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
10315         behavior was changed recently and has bad side effects.
10316
10317 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
10318
10319         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
10320         
10321         * assembly.c (mono_assembly_close): Remove a debug printf.
10322
10323         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
10324
10325         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
10326         to also allow for temporary references between mono_image_open ()/close ().
10327
10328         * domain.c (get_runtimes_from_exe): Add a FIXME.        
10329
10330 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
10331
10332         * marshal.c: Fix support for dynamic methods.
10333
10334         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
10335
10336         * marshal.c (mono_marshal_cleanup): New cleanup function.
10337
10338         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
10339         image mempools.
10340
10341         * class.c (mono_class_init): Fix leaking class->nested_classes.
10342
10343         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
10344
10345         * image.c (mono_image_init): Initialize the new cashes.
10346
10347         * image.c (mono_image_close): Destroy the new cashes.
10348
10349         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
10350
10351         * mempool.c (mono_mempool_strdup): New helper function.
10352
10353         * class-internals.h: Add prototype for mono_loader_unlock ().
10354
10355         * domain.c (mono_jit_info_table_find): Fix a warning.
10356         (mono_debugger_check_runtime_version): Ditto.
10357
10358         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
10359         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
10360         functions to these modules.
10361
10362         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
10363         metadata modules.
10364         
10365         * marshal.c (mono_free_bstr): Fix a warning.
10366
10367         * assembly.c (mono_assembly_open_full): Fix another small leak.
10368
10369         * object.c: Fix some unload leaks in the remoting code.
10370
10371         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
10372         function.
10373
10374         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
10375
10376         * reflection.c: Fix some unload leaks in dynamic assemblies.
10377
10378 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
10379
10380         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
10381         * marshal.h: Add BSTR support on Win32
10382         * icall.c: Add BSTR icalls
10383         * metadata.h: Add BSTR enums
10384
10385 2006-04-28  Miguel de Icaza  <miguel@novell.com>
10386
10387         Work to catch the crash from #76795 and turn it into an
10388         exception.   As I stubbed out pieces of the VisualBasic support,
10389         I found a number of places where the code was failing and I added
10390         checks to those places. 
10391         
10392         * metadata.c (do_mono_metadata_parse_generic_class): Make this
10393         function return a status code.  If we fail to parse the signature
10394         from mono_metadata_parse_generic_inst, return FALSE.
10395
10396         * loader.c (mono_get_method_from_token): If we fail to load the
10397         method (mono_class_get) return NULL.   
10398
10399         * (method_from_memberref): Return NULL if we are unable to parse
10400         the method signature
10401
10402         (mono_loader_error_prepare_exception): Since we now use the
10403         loader_error flag internally to stop processing, and obtaining
10404         exceptions that might be thrown will walk this code path the
10405         proper way of going from a MonoLoaderError into a
10406         MonoException was convoluted.   This new routine encapsulates the
10407         process of turning the error into an exception and *clearing* the
10408         error afterwards.
10409         
10410 2006-04-27  Miguel de Icaza  <miguel@novell.com>
10411
10412         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
10413         with missing assemblies), and to cope with:
10414
10415                 * Missing fieldref from a non-existing assembly.
10416                 * Missing methodref from a non-existing assembly.
10417
10418         The first batch of work to address *some* of the issues from 76661.
10419         
10420         * object.c (mono_class_create_runtime_vtable): If we fail to
10421         initialize the class raise the exception here. 
10422
10423         * metadata.c (mono_class_get_overrides_full): If any methods fail
10424         to load return the failure to the caller.
10425
10426         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
10427         flagging assemblies that failed to load.   
10428
10429         Do not crash if we are unable to load the assembly.
10430
10431         (mono_assembly_close): Do nothing with REFERENCE_MISSING
10432         assemblies. 
10433
10434         * loader.c (mono_loader_set_error_type_load): Change the
10435         convention to always pass unallocated strings, so we make our own
10436         copies (I know our own code had duplicated strings before, but
10437         this keeps the normal conventions).
10438         (method_from_memberref): Call mono_loader_set_error_method_load
10439         for all possible failures of loading the class. 
10440         Remove assert, turn into a loader error.
10441
10442         (mono_loader_error_to_exception): Move this routine from mini
10443         (mini_loader_error_to_exception) there was no need to have that in
10444         mini. 
10445
10446         * class.c (mono_class_from_typeref): If we were not able to load
10447         the assembly with mono_assembly_load_reference, call the
10448         mono_loader_set_error_type_load to register the problem.
10449
10450         (mono_class_setup_fields): If we fail to load the type from
10451         mono_metadata_parse_type_full, call mono_class_set_failure and
10452         break from the loop.
10453
10454         If class->exception_type is set, we do not layout the fields as
10455         that might crash the runtime, and instead return (from breaking
10456         from the previous loop).
10457
10458         (mono_class_setup_vtable): This now returns a boolean indicating
10459         whether the table was properly setup.   The decision is driven by
10460         mono_class_get_overrides_full which might run into non-existing
10461         methods. 
10462         
10463         (mono_class_init): Returns TRUE on success or FALSE if there was a
10464         problem in loading the type (incorrect assemblies, missing
10465         assemblies, methods, etc).
10466
10467         When we call mono_class_setup_fields we also check for a potential
10468         error inside this call (either a class exception or a general
10469         loader exception).
10470
10471         (mono_class_create_from_typedef): If the parent fails to load
10472         (calling mono_class_get_full) return NULL.
10473         
10474         ** Important **
10475
10476         calls to mono_metadata_parse_type_full should be checked
10477         everywhere and set the mono_class_set_failure
10478         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
10479
10480         The current patch checks the places where my manually constructed
10481         tests show the errors are showing up, but we should do it
10482         everywhere. 
10483
10484         ** Important2 **
10485
10486         mono_class_init return values should be tested everywhere, like
10487         the previous case this is something that we should audit
10488         everywhere and not only on the cases exposed by the tests I
10489         created. 
10490
10491 2006-04-26  Miguel de Icaza  <miguel@novell.com>
10492
10493         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
10494         boolean parameter and instead pass the information on `options'
10495         parameter (FileOptions).
10496
10497         * icall.c: Register the new signature for MonoIO.Open.
10498
10499         * debug-helpers.c (dis_one): Trying to understand how coverity
10500         works.  Fix Run 5, item 78.
10501
10502 2006-04-26  Dick Porter  <dick@ximian.com>
10503
10504         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
10505         dereference.
10506
10507 2006-04-25  Martin Baulig  <martin@ximian.com>
10508
10509         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
10510
10511         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
10512         debugger_thread_created().
10513         (debugger_gc_push_all_stacks): Don't handle the main thread in any
10514         special way.
10515         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
10516         (mono_debugger_finalize_threads): New function; undo the effects
10517         of mono_debugger_init_threads().
10518         (mono_debugger_create_all_threads): Removed.
10519
10520 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
10521
10522         * image.c (mono_image_close): Tidy up trace messages.
10523
10524         * assembly.c (mono_assembly_close): Ditto.
10525
10526         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
10527         no longer references an already freed assembly. Fixes #78168.
10528
10529 2006-04-21  Dick Porter  <dick@ximian.com>
10530
10531         * threads.c (mono_thread_detach): Fix reference counting when
10532         detaching threads.
10533
10534 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
10535
10536         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
10537         #78155.
10538
10539 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
10540
10541         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
10542         (mono_type_to_stind): Ditto.
10543
10544         * marshal.c: Use the new helper functions to simplify code.
10545
10546         * image.c (mono_image_close): Add some code for help debug assembly unloading
10547         problems.
10548
10549         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
10550         image mempool.
10551
10552         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
10553         assembly was already loaded in another appdomain. Fixes #78083.
10554
10555 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
10556
10557         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
10558         referenced assemblies.
10559         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
10560
10561         * domain.c (mono_domain_free): Add a trace message.
10562
10563         * appdomain.c (add_assemblies_to_domain): Ditto.        
10564
10565         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
10566         field.  
10567
10568 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
10569
10570         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
10571
10572 2006-04-12  Martin Baulig  <martin@ximian.com>
10573
10574         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
10575         `USE_INCLUDED_LIBGC'.   
10576
10577 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
10578
10579         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
10580         the patch contains ../ and a small directory name later. Hopefully fixes
10581         #78035.
10582
10583 2006-04-10  Martin Baulig  <martin@ximian.com>
10584
10585         Clean up the debugger's thread-handling code.
10586
10587         The debugger's thread-handling code has been moved from
10588         ../mini/debug-debugger.c to threads.c.  We now iterate directly
10589         over the `threads' hash, keep track of exiting threads and also
10590         use proper locking.
10591
10592         We can now debug XSP and XSP based applications with the debugger.
10593
10594         * object-internals.h (MonoThread): Added `gpointer end_stack'.
10595
10596         * threads.h
10597         (MonoThreadCallbacks): Removed; this was only used by the debugger.
10598         (mono_install_thread_callbacks): Likewise.      
10599
10600         * threads.c (mono_thread_callbacks): Removed.
10601         (debugger_thread_created, debugger_thread_exited): New static functions.
10602         (start_wrapper): Call debugger_thread_created().
10603         (thread_cleanup): Call debugger_thread_exited().
10604         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
10605         (mono_debugger_init_threads): New public function.
10606         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
10607         iterate directly over the `threads' hash and also use proper locking.
10608
10609         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
10610
10611         * mono-debug-debugger.h
10612         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
10613
10614 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
10615
10616         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
10617         argument type=array. Fixes #78057.
10618
10619 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
10620
10621         * culture-info-table.h : regenerated. Fixed bug #69652.
10622
10623 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
10624
10625         * loader.c metadata.c: Reapply a variant r59116.
10626         
10627         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
10628
10629         * class.c (mono_class_setup_interface_offsets): New internal function.
10630
10631         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
10632         interfaces too. Fixes #77398.
10633
10634         * reflection.c (encode_cattr_value): Add support for 
10635         parameter type=object, argument type=array.
10636         (load_cattr_value): Ditto. Fixes #77916.
10637
10638         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
10639         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
10640
10641         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
10642         a byval char array and CharSet is Ansi.
10643
10644         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
10645
10646 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
10647
10648         * metadata.c: Add some locking comments.
10649         
10650         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
10651         mempool.
10652         (mono_metadata_free_method_signature): Don't free the signature itself.
10653
10654         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
10655
10656         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
10657         reference the same MonoImage.
10658         (mono_assembly_load_from_full): Add an assert.
10659
10660 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
10661
10662         * image.c (mono_image_close): Don't put the image we are about to free into the
10663         loaded_images_guid_hash.
10664
10665         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
10666         to reduce code duplication.
10667
10668         * marshal.c: Register the native functions called by this module as icalls, to
10669         somewhat centralize the creation of MonoMethodSignature's.
10670
10671         * loader.c (mono_method_signature): Add a cache for method signatures.
10672
10673         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
10674         the parameter attributes of a method.
10675         (mono_metadata_parse_method_signature_full): Refactored the computation of
10676         parameter attributes into a separate function. Also avoid one allocation in
10677         most cases.
10678
10679         * assembly.c (mono_assembly_close): Ditto.
10680
10681         * image.c (mono_image_close): Log trace messages with INFO level.
10682
10683         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
10684
10685         * image.c reflection.c: Correct reference counting of image modules.
10686         
10687         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
10688         of this function from the image mempool.
10689         
10690         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
10691         to allow more cached types to be used.
10692
10693         * mono-debug.c (mono_debug_add_method): Appled patch from
10694         David S. Miller  <davem@sunset.davemloft.net>: Access 
10695         minfo->lexical_blocks[] entry elements using read32().
10696
10697 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
10698
10699         * loader.c (mono_free_method): No longer free the method header for non-dynamic
10700         methods as it is allocated from the mempool.
10701
10702         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
10703         image mempool.
10704
10705         * metadata-internals.h: Add comments describing the reference counting scheme
10706         used for MonoImage and MonoAssembly.
10707
10708         * image.c assembly.c reflection.c: Rework reference counting of images and 
10709         assemblies so they are freed when the runtime is shut down. Free some 
10710         additional memory structures when an image is unloaded.
10711         
10712 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
10713
10714         * class.c loader.c reflection.c: Allocate more data structures in
10715         the image mempool.
10716
10717 2006-03-31  Miguel de Icaza  <miguel@novell.com>
10718
10719         * icall.c
10720         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
10721         build on pre glib 2.4 systems.
10722
10723 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
10724
10725         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
10726
10727         * icall.c: Fix some warnings.
10728
10729 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
10730
10731         * culture-info-table.h : regenerated.
10732
10733 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
10734
10735         * threads.c, object-internals.h, verify.c: changed the culture caching
10736         code to use a normal MonoArray for storage so the GC can keep track of
10737         them easily. Fixed bits of the cache logic, too and simplified the
10738         code.
10739
10740 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
10741
10742         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
10743         thread for non-Boehm GCs.
10744
10745 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
10746
10747         * domain.c, object.c, domain-internals.h: reduce the amount of memory
10748         needed to keep track of the data for static fields.
10749
10750 2006-03-29  Raja R Harinath  <rharinath@novell.com>
10751
10752         Fix #75172
10753         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
10754         for interface classes.  Use 'num_methods' instead.
10755         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
10756         before using '->vtable_size' field.
10757
10758 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
10759
10760         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
10761         doesn't contain managed pointers, so use a normal hashtable.
10762
10763 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
10764
10765         * reflection.c, class-internals.h, domain.c: fixed handling of types
10766         used as values for objects in custom attributes (bug #77915):
10767
10768 2006-03-24  Martin Baulig  <martin@ximian.com>
10769
10770         * class.c (mono_class_setup_fields): Added support for generic
10771         instances; fixes #77580.
10772
10773 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10774
10775         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
10776
10777 2006-03-24  Dick Porter  <dick@ximian.com>
10778
10779         * file-io.c (get_file_attributes): More stat macro breakage.
10780         Fixes bug 77759.
10781
10782 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
10783
10784         * profiler.c: added the file=filename option in the default profiler
10785         to output the profile data to filename.
10786
10787 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10788
10789         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
10790         bug #77877.
10791
10792 2006-03-22  Martin Baulig  <martin@ximian.com>
10793
10794         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
10795         allocated `MonoClassField *' in `fb->handle'.
10796
10797 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
10798
10799         * class.c, image.c, metadata-internals.h: implemented new mechanism to
10800         allocate interface ID to save memory and allow better ID reuse on
10801         appdomain unload. setup_generic_vtable () removal from Martin.
10802
10803 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
10804
10805         * object.h, appdomain.c, domain.c, exception.c, icall.c,
10806         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
10807         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
10808         write barriers for reference stores with managed objects accessed with
10809         C structures in the runtime and in embedding programs.
10810
10811 2006-03-20  Raja R Harinath  <rharinath@novell.com>
10812
10813         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
10814         'interface_id' and 'max_interface_id' fields of MonoClasses
10815         representing open generic types.
10816
10817 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
10818
10819         * object.h, object.c, icall.c: added functions to deal with
10820         storing valuetypes that contain references in managed objects.
10821         * reflection.c, string-icalls.c, threads.c, marshal.c: small
10822         fixes and comments around uses of mono_array_addr ().
10823
10824 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
10825
10826         * object.h, icall.c, monitor.c: object.GetHashCode ()
10827         implementation that supports the moving garbage collector.
10828
10829 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
10830
10831         * icall.c, threads-types.h, threads.c: implemented finalizer for
10832         LocalDataStoreSlot.
10833
10834 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
10835
10836         * metadata.c (mono_type_size): Add a fixme.
10837         (mono_type_stack_size): Ditto.
10838
10839         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
10840         'type_forwarders' field.
10841
10842         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
10843         attribute from net 2.0.
10844
10845         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
10846         from class.c.
10847
10848         * class.c (mono_class_setup_fields): Fix a warning.
10849         
10850         * class.c (mono_class_from_name): Add support for assemblyref entries
10851         in the EXPORTEDTYPE table.
10852
10853         * reflection.c: Add support for handling type forwarders under net 2.0.
10854
10855         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
10856         
10857 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
10858
10859         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
10860         overwriting entries in ModuleBuild->types, also clean up the code
10861         a little. Fixes #77774.
10862
10863 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
10864
10865         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
10866         load friend assembly info when present.
10867
10868 2006-03-14  Raja R Harinath  <rharinath@novell.com>
10869
10870         Fix crasher on gtest-158.cs.
10871         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
10872         the return value if the MonoClass we want is yet in an
10873         inconsistent state.
10874         * class.c (mono_class_create_from_typedef): Add an comment
10875         explaining an order dependency between mono_class_setup_parent and
10876         mono_class_setup_mono_type.
10877
10878 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
10879
10880         * class.c: documentation updates and events bug fix.
10881
10882 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
10883
10884         * class.c: some cleanup, locking fixes.
10885
10886 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
10887
10888         * class.c: fix the generics code to setup nested
10889         type info to the instantiated type (bug #77770).
10890
10891 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
10892
10893         * marshal.c: fixed a few type correctness issues.
10894
10895 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
10896
10897         * loader.c: the Set/Get/Addrtess array methods should be public.
10898
10899 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
10900
10901         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
10902         
10903         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
10904         info->wrapper.
10905
10906 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
10907
10908         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
10909
10910         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
10911
10912         * mempool.c (mono_mempool_alloc): Speed this up a bit.
10913         (mono_mempool_alloc0): Ditto.
10914
10915 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10916
10917         * socket-io.c:
10918         (create_object_from_sockaddr): it was allocating 4 extra bytes
10919         for the AF_UNIX data. Fixes bug #77747.
10920
10921 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
10922
10923         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
10924
10925 2006-03-09  Dick Porter  <dick@ximian.com>
10926
10927         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
10928         Fixes bug 76966 again.
10929
10930 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
10931
10932         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
10933         names from r57532
10934         * appdomain.c: Bumped corlib version to 48 (due to r57532)
10935
10936 2006-03-07  Martin Baulig  <martin@ximian.com>
10937
10938         * object.c
10939         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
10940
10941 2006-03-07  Martin Baulig  <martin@ximian.com>
10942
10943         * class.c
10944         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
10945         regression introduced in r56970; see gtest-252.cs.
10946
10947         * loader.c (mono_get_method_constrained): Correctly handle generic
10948         methods; see gtest-253.cs.
10949
10950 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
10951
10952         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
10953
10954 2006-03-04  Martin Baulig  <martin@ximian.com>
10955
10956         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
10957         compute the parent type at runtime, just like we're already doing
10958         it for interfaces.
10959
10960         * reflection.c
10961         (mono_reflection_bind_generic_parameters): Don't compute the
10962         parent type anymore.
10963
10964         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
10965
10966 2006-03-04  Martin Baulig  <martin@ximian.com>
10967
10968         * mono-debug-debugger.h
10969         (mono_debugger_create_notification_function): Allocate memory at
10970         runtime and return a pointer to it.
10971
10972 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
10973
10974         * assembly.c: Fix windows build.
10975         
10976         * assembly.c: Fix build.
10977
10978         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
10979
10980         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
10981         
10982 2006-03-03  Dick Porter  <dick@ximian.com>
10983
10984         * process.c
10985         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
10986         Check parameters before dereferencing them.  Fixes Aaron's part of
10987         bug 77393.
10988
10989 2006-03-03  Raja R Harinath  <rharinath@novell.com>
10990
10991         Fix performance regression.
10992         * loader.c (find_method_in_class): Add 'from_class' argument.
10993         Rename 'klass' argument to 'in_class'.  The signature is compared
10994         against the method in 'in_class', and the corresponding method is
10995         returned from 'from_class'.
10996         (find_method): Walk both 'in_class' and 'from_class' in parallel.
10997         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
10998         type definition and generic instantiation in parallel.
10999         (mono_get_method_constrained): Update to changes.
11000
11001 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
11002
11003         * threads.c: make sure the domain is correct, too when doing
11004         mono_thread_attach ().
11005
11006 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
11007
11008         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
11009         windows. Fixes #77683.
11010
11011 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
11012
11013         * object.h, *: introduced specific way to set elements of an array
11014         of references to be used as write barrier. Still need to audit the
11015         uses of mono_array_addr.
11016
11017 2006-03-01  Miguel de Icaza  <miguel@novell.com>
11018
11019         * object-internals.h: New field to cache the assmebly name, patch
11020         from Tambet Ingo (tambet@ximian.com)
11021
11022 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
11023
11024         * decimal.h, class-internals.h, metadata-internals.h,
11025         file-io.h: mark a few function declarations as internal, to
11026         reduce the number of PLT entries.
11027
11028 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11029
11030         * file-io.c: fix typo in warning message.
11031
11032 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
11033
11034         * loader.c: on unix, lookup the "*A" version of a function
11035         if charset is auto as a second option before failing.
11036
11037 2006-02-28  Raja R Harinath  <rharinath@novell.com>
11038
11039         * class.h (mono_class_inflate_generic_method): Revert to two
11040         argument version.
11041         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
11042         (mono_class_inflate_generic_method_full): Add.
11043         * class.c (mono_class_inflate_generic_method_full): Rename from
11044         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
11045         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
11046         * loader.c, reflection.c: Update to changes.
11047
11048 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
11049
11050         * icall.c: const fixes and small improvements.
11051
11052 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11053
11054         * threadpool.c: for asynchronous connect(), enable the same workaround
11055         for BSD 6 as for the Mac. Fixes bug #77637.
11056
11057 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
11058
11059         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
11060         formatted classes. Fixes #77524.
11061
11062 2006-02-24  Raja R Harinath  <rharinath@novell.com>
11063
11064         * class.c (inflate_generic_type): Add a couple more
11065         micro-optimizations.
11066         (inflate_generic_context): Don't use the 'gmethod' from
11067         'inflate_with'.
11068         (mono_class_inflate_generic_method): If the method has generic
11069         parameters, but the passed-in context doesn't have a 'gmethod',
11070         create one.  Use the possibly simplified generic instantiation
11071         from the declaring class instead of the one passed in.
11072
11073 2006-02-24  Raja R Harinath  <harinath@gmail.com>
11074
11075         Make generic method signature and method header handling lazy.
11076         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
11077         (inflate_generic_header): Likewise.
11078         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
11079         parameter to avoid inflating types.
11080         (mono_get_inflated_method): Empty out.
11081         * class.h (mono_class_inflate_generic_method): Update to changes.
11082         * loader.c (mono_get_method_from_token): Don't parse signature for
11083         generic methods, nor methods of generic classes.
11084         (mono_method_signature): Rename from 'mono_method_signature'.
11085         Inflate signature on demand.
11086         (mono_method_get_header): Inflate method header on demand.
11087         * reflection.c: Update to changes.
11088
11089 2006-02-23  Raja R Harinath  <rharinath@novell.com>
11090
11091         * metadata.c (mono_metadata_inflate_generic_inst): If the
11092         instantiation is closed, don't bother expanding it in the new
11093         context.
11094         * class.c (inflate_generic_class): If the generic instantiation
11095         doesn't change after inflation, return the argument itself.
11096         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
11097         Add bounds checks.
11098         (inflate_generic_context): If neither the generic class nor the
11099         generic method instantiations change, return the original context.
11100         * reflection.c (mono_method_get_object): Do
11101         'mono_get_inflated_method' before accessing the ->klass field.
11102         (inflate_mono_method): Don't create a MonoGenericMethod unless
11103         necessary.
11104         (inflate_method): Don't pass a constructed type as the declaring
11105         type of a methodbuilder.
11106
11107 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
11108
11109         * object.c: fix memory overwrite.
11110
11111 2006-02-22  Dick Porter  <dick@ximian.com>
11112
11113         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
11114         it doesn't work any more.
11115         (mono_threads_request_thread_dump): Fix unused variable warnings.
11116
11117 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11118
11119         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
11120         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
11121         the public header file.
11122
11123 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
11124
11125         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
11126
11127 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
11128
11129         * class-internals.h, object.c: reduce the size of MonoVTable
11130         and store the interface_offsets array at negative offsets.
11131
11132 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
11133
11134         * metadata.c: tweak table descriptors data structures to reduce
11135         size and runtime relocations.
11136
11137 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11138
11139         * marshal.c: fix some types and opcodes to be type-safe
11140         in marshaling wrappers.
11141
11142 2006-02-21  Ankit Jain  <jankit@novell.com>
11143
11144         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
11145
11146 2006-02-21  Raja R Harinath  <rharinath@novell.com>
11147
11148         * metadata.c (get_constraints): Relax debugging checks for monodis.
11149
11150 2006-02-21  Ankit Jain  <jankit@novell.com>
11151
11152         * metadata.c (mono_metadata_load_generic_params): Move the code
11153         checking for ambiguous generic params from here to mono/dis/get.c
11154         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
11155
11156 2006-02-21  Raja R Harinath  <harinath@gmail.com>
11157
11158         Fix assertion triggered when compiling nemerle.
11159         * class.c (mono_get_shared_generic_inst): Rename from
11160         get_shared_inst and make non-static.
11161         * loader.c (mono_get_shared_generic_method): New.  Used to create
11162         the MonoGenericContext-equivalent of a MonoGenericContainer.
11163         (mono_get_method_from_token): Initialize the 'context' field of
11164         the created MonoGenericContainer.
11165         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
11166         * metadata.c (get_constraints): Add sanity check.
11167         * class-internals.h: Add new internal methods.
11168
11169         * reflection.c (verify_safe_for_managed_space): New sanity check.
11170         Currently checks that owner-less generic parameters aren't allowed
11171         in managed space.
11172         (mono_type_get_object): Use it.
11173         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
11174         that are now in mono_type_get_object.
11175         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
11176
11177 2006-02-19  Raja R Harinath  <harinath@gmail.com>
11178
11179         * metadata.c (mono_type_create_from_typespec): Rename from
11180         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
11181         argument and caching of types in the generic container.
11182         (unwrap_arrays, find_generic_param): Remove.
11183         * metadata-internals.h: Update.
11184         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
11185
11186 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
11187
11188         * class.c (mono_class_get_exception_for_failure): Fix a warning.
11189
11190         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
11191         return values. Fixes #77581.
11192
11193         * class.c (mono_fnptr_class_get): Switch name and name_space.
11194
11195         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
11196         classes and add support for [In, Out] attributes.
11197         (mono_marshal_free_asany): Ditto. Fixes #77524.
11198
11199 2006-02-18  Raja R Harinath  <harinath@gmail.com>
11200
11201         * class.c (mono_class_from_generic_parameter): Make more robust to
11202         incomplete MonoGenericContainers from monodis.
11203
11204 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11205
11206         * class-internals.h: added some more exception types.
11207         * class.c, metadata.c: added a few checks to handle missing
11208         types.
11209
11210 2006-02-17  Raja R Harinath  <rharinath@novell.com>
11211
11212         Use owner-less generic-params some more.
11213         * class.c (my_mono_class_from_generic_parameter): Remove.
11214         (mono_class_from_generic_parameter): Handle null image,
11215         param->name and param->owner.
11216         (mono_class_from_mono_type): Update.
11217         (mono_class_create_from_typespec): Remove 'container' parameter.
11218         If that parameter is non-null, the result is always inflated by
11219         'mono_class_get_full' anyway.
11220         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
11221         parameter.
11222         (mono_class_get_full): Update.
11223
11224         * class.c (inflate_generic_type) [GENERICINST]: If the generic
11225         instance is not open, don't bother inflating.
11226         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
11227         parse metadata for inflated classes.
11228         (_mono_class_get): Change GenericContext* parameter to
11229         GenericContainer*.
11230         (mono_class_create_from_typespec): Likewise.  Simplify, and
11231         implement trivially.  All the cases are handled in
11232         mono_class_from_mono_type.  Don't inflate returned class.
11233         (mono_class_get_full): Delegate GENERICINST optimization to
11234         inflate_generic_type.
11235         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
11236
11237 2006-02-16  Dick Porter  <dick@ximian.com>
11238
11239         * socket-io.c (create_object_from_sockaddr): Fix typo.
11240         (create_sockaddr_from_object): Check array lengths before
11241         potentially accessing items off the end.
11242         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
11243         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
11244         (ves_icall_System_Net_Sockets_Socket_Send_internal)
11245         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
11246         length checks to avoid wraparound overflows.
11247         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
11248         contents of the array of sockets
11249         (hostent_to_IPHostEntry2)
11250         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
11251         Check return value of inet_ntop ().
11252         (addrinfo_to_IPHostEntry): Fix typo
11253
11254 2006-02-16  Raja R Harinath  <rharinath@novell.com>
11255
11256         Type metadata parsing doesn't use generic-instantiation information.
11257         * metadata.c (mono_metadata_parse_array_full): Change
11258         MonoGenericContext* parameter to MonoGenericContainer*.
11259         (mono_metadata_parse_type_full): Likewise.
11260         (mono_type_create_from_typespec_full): Likewise.
11261         (mono_metadata_parse_mh_full): Likewise.
11262         (mono_metadata_parse_generic_inst): Likewise.
11263         (do_mono_metadata_parse_generic_class): Likewise.
11264         (do_mono_metadata_parse_type): Likewise.
11265         * metadata-internals.h: Update to changes.
11266         * class.c (mono_class_find_enum_basetype): Likewise.
11267         (mono_class_setup_fields): Likewise.
11268         (mono_class_create_from_typespec): Likewise.
11269         * loader.c (method_from_methodspec): Likewise.
11270         (mono_get_method_from_token): Likewise.
11271         (mono_method_get_header): Likewise.
11272
11273 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11274
11275         * marshal.c: handle additional GENERICINST case (patch from
11276         Thong Nguyen <tum@veridicus.com>).
11277         Fix a few cases where LDIND_I/STIND_I was used for references.
11278
11279 2006-02-16  Raja R Harinath  <rharinath@novell.com>
11280
11281         * reflection.c (mono_reflection_get_token): Remove unused variable.
11282
11283 2006-02-16  Martin Baulig  <martin@ximian.com>
11284
11285         * reflection.c (mono_reflection_get_token): Add support for fields
11286         in instantiated generic types.
11287
11288         * icall.c
11289         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
11290
11291 2006-02-15  Martin Baulig  <martin@ximian.com>
11292
11293         * icall.c
11294         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
11295         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
11296         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
11297         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
11298
11299 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
11300
11301         * class.c, metadata.c, metadata.h, object.c, icall.c,
11302         marshal.c: changed mono_type_get_underlying_type () to do
11303         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
11304         Fixed handling of instantiated generic valuetypes (bug #75479).
11305
11306 2006-02-15  Raja R Harinath  <rharinath@novell.com>
11307
11308         * metadata.c (mono_metadata_decode_signed_value): Simplify.
11309         Delegate to mono_metadata_decode_value, and work on the returned value.
11310
11311         * icall.c (ves_icall_MonoType_GetGenericArguments):
11312         Add consistency check here too.
11313         
11314 2006-02-15  Ankit Jain  <jankit@novell.com>
11315
11316         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
11317         char/short etc.
11318
11319 2006-02-15  Ankit Jain  <jankit@novell.com>
11320
11321         * metadata.c (mono_metadata_decode_signed_value): New function to decode
11322         signed values, used only for representing lower bounds of arrays.
11323         (mono_metadata_parse_array_full): Use new
11324         mono_metadata_decode_signed_value to decode lower bounds.
11325
11326 2006-02-14  Martin Baulig  <martin@ximian.com>
11327
11328         * reflection.c
11329         (mono_reflection_get_token): Support "MonoGenericMethod" and
11330         "MonoGenericCMethod" and allow generic instances / methods.
11331
11332 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
11333
11334         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
11335         to obtain the terminal size using an ioctl.
11336
11337         * object.c (mono_nullable_init): Revert this as nullable reference
11338         types are not valid.
11339         (mono_nullable_box): Ditto.
11340
11341 2006-02-09  Dick Porter  <dick@ximian.com>
11342
11343         * threads.c (mono_thread_detach): Drop a reference to the thread
11344         we're detaching.
11345
11346 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
11347
11348         * object.c (mono_nullable_init): Handle nullable reference types.
11349         (mono_nullable_box): Ditto. Fixes #77446.
11350
11351 2006-02-07  Martin Baulig  <martin@ximian.com>
11352
11353         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
11354
11355 2006-02-07  Ankit Jain  <jankit@novell.com>
11356
11357         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
11358         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
11359         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
11360         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
11361         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
11362         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
11363
11364 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
11365
11366         * class.c (mono_class_create_generic): Set type_token as well.
11367
11368         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
11369         compatible with MS.
11370
11371 2006-02-02  Martin Baulig  <martin@ximian.com>
11372
11373         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
11374         has never been used so far.
11375
11376 2006-02-02  Martin Baulig  <martin@ximian.com>
11377
11378         * mono-debug-debugger.h: Changed comment at the top of this file;
11379         the header is not installed, but it's safe to #include it from
11380         within the JIT.
11381
11382         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
11383         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
11384
11385 2006-02-02  Martin Baulig  <martin@ximian.com>
11386
11387         * mono-debug.h
11388         (MonoSymbolTable): Removed the `metadata_info' field.
11389
11390         * mono-debug.c
11391         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
11392
11393         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
11394         (mono_debugger_add_builtin_types): Removed.
11395         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
11396         (mono_debugger_create_notification_function): We now operate on a
11397         pre-allocated area; take a `gpointer' and return `void'.
11398
11399         * mono-debug-debugger.c
11400         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
11401         (mono_debugger_add_builtin_types): Removed.
11402
11403 2006-02-02  Martin Baulig  <martin@ximian.com>
11404
11405         * threads.c (mono_debugger_create_all_threads): New public method.
11406
11407 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11408
11409         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
11410         breaks on several platforms.
11411
11412 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
11413
11414         * assembly.c: the VS.NET build doesn't supply default values for
11415         MONO_ASSEMBLIES and MONO_CFG_DIR.
11416
11417 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
11418
11419         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
11420         helper function.
11421
11422         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
11423
11424         * loader.c (method_from_memberref): Fix a warning.
11425
11426         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
11427
11428         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
11429         with explicit layout. Fixes #77433.
11430
11431 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
11432
11433         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
11434         max_interface_id is initialized before using it. Fixes #77398.
11435         (ves_icall_Type_GetInterfaces): Ditto.
11436
11437 2006-01-30  Raja R Harinath  <rharinath@novell.com>
11438
11439         * metadata.c (mono_metadata_parse_method_signature_full): Don't
11440         allocate memory for parameter attributes when parsing memberref
11441         signatures.
11442         * loader.c (mono_loader_set_error_method_load): Don't warn.
11443         (method_from_memberref): Ensure MissingMethodException gets thrown
11444         if method is not found.  Make warning more informative.
11445
11446 2006-01-29  Raja R Harinath  <harinath@gmail.com>
11447
11448         Fix #77397
11449         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
11450         return true if is byref.
11451         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
11452         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
11453         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
11454
11455 2006-01-27  Raja R Harinath  <rharinath@novell.com>
11456
11457         Fix tests/find-method.2.il
11458         * loader.c (find_method, find_method_in_class): Remove is_inflated
11459         argument.  Revert 2006-01-18 change.
11460         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
11461         is generic, search for method in its generic definition.
11462         * class.c (mono_class_setup_vtable_general): Print generic
11463         arguments of generic types in debugging printf.
11464
11465 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
11466
11467         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
11468
11469         * threads.c (mono_threads_request_thread_dump): New helper function.
11470
11471 2006-01-25  Raja R Harinath  <rharinath@novell.com>
11472
11473         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
11474
11475 2006-01-25  Ankit Jain  <jankit@novell.com>
11476
11477         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
11478         move definition to ..
11479         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
11480         
11481 2006-01-25  Ankit Jain  <jankit@novell.com>
11482             Raja R Harinath  <rharinath@novell.com>
11483
11484         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
11485         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
11486         as necessary.
11487
11488 2006-01-25  Martin Baulig  <martin@ximian.com>
11489
11490         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
11491         `MonoDebuggerThread' into debug-debugger.c.
11492
11493 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
11494
11495         * profiler.c: fix printing of data.
11496
11497 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
11498
11499         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
11500           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
11501
11502 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
11503
11504         * object.c: fix deadlock related to string interning.
11505
11506 2006-01-23  Martin Baulig  <martin@ximian.com>
11507
11508         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
11509
11510         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
11511
11512 2006-01-23  Martin Baulig  <martin@ximian.com>
11513
11514         * mono-debug.h: Moved the prototypes of some functions which are
11515         used by the JIT here from mono-debug-debugger.h.
11516
11517 2006-01-21  Martin Baulig  <martin@ximian.com>
11518
11519         * Makefile.am: Don't install mono-debug-debugger.h.
11520
11521 2006-01-21  Martin Baulig  <martin@ximian.com>
11522
11523         * mono-debug-debugger.h: Enforce the private status of this header
11524         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
11525         Moved some stuff from mono-debugger-jit-wrapper.h here.
11526
11527 2006-01-20  Raja R Harinath  <rharinath@novell.com>
11528
11529         * class.c (mono_class_from_typeref): Add a sanity test to help
11530         catch lack of assembly load/search hooks.
11531
11532 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
11533
11534         * marshal.c (emit_struct_conv): Relax the fields with same offset
11535         check even more. Fixes #77230.
11536
11537 2006-01-18  Martin Baulig  <martin@ximian.com>
11538
11539         * loader.c (find_method_in_class): Added `gboolean is_inflated'
11540         argument; if false, we compare the uninstantiated signatures.
11541         (method_from_memberref): Compare the uninstantiated signatures;
11542         fixes #76417.
11543
11544 2006-01-18  Robert Jordan  <robertj@gmx.net>
11545
11546         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
11547         Clear the weak link. Fixes bug #77170.
11548
11549         * gc.c (mono_gchandle_free):
11550         Reflect *-gc.c changes (tiny optimization).
11551
11552 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
11553
11554         * metadata.c (mono_metadata_signature_dup): Applied patch from
11555         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
11556         Fixes #77288.
11557
11558 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
11559
11560         * marshal.c (emit_struct_conv): Allow fields with the same offset when
11561         marshalling from native to managed code. Fixes #77230.
11562
11563 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11564
11565         * threadpool.c: fix problem (Mac only) when more than one asynchronous
11566         connect. Fixes bug #77020.
11567
11568 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
11569
11570         * class.c: fixed id assignement for nested interfaces (bug #77275).
11571         Added also better info for --print-vtable debugging.
11572
11573 2006-01-12  Martin Baulig  <martin@ximian.com>
11574
11575         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
11576         interfaces on-the-fly; fixes #76625.
11577
11578         * class-internals.h
11579         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
11580         don't need that anymore.
11581
11582 2006-01-12  Miguel de Icaza  <miguel@novell.com>
11583
11584         * socket-io.c
11585         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
11586         To avoid initing the nested_classes when not needed I turned the
11587         PeerCredData as a toplevel internal class, as it has to be shared
11588         anyways. 
11589
11590         Fixes the CASA issue.
11591
11592 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
11593
11594         * domain.c: Accessors for MonoJitInfo
11595
11596         * profiler-private.h: Add jitinfo to the end jit hook
11597
11598         * profiler.[ch]: Define new hooks, called after jitting which give
11599         the MonoJitInfo that was compiled
11600
11601 2006-01-10  Martin Baulig  <martin@ximian.com>
11602
11603         * class.c (mono_class_setup_events): Add support for generic
11604         classes; fixes #76440.
11605
11606 2006-01-06  Raja R Harinath  <rharinath@novell.com>
11607
11608         Fix #77160.
11609         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
11610         on passed-in method.
11611
11612 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
11613
11614         * object.c (mono_runtime_invoke_array): Add Nullable support.
11615
11616         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
11617
11618 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
11619
11620         * file-io.c: Don't consider sockets as directory and avoid an endless
11621         loop. Fix bug #76966.
11622
11623 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
11624
11625         * object.c (mono_nullable_init): New helper function.
11626         (mono_nullable_box): Ditto.
11627
11628         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
11629
11630         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
11631
11632         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
11633         
11634 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
11635
11636         * class.c (mono_class_is_assignable_from): Make T assignable to 
11637         Nullable<T>.
11638
11639 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
11640
11641         * appdomain.c: Bump corlib version to 46.
11642         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
11643         serialization purpose) and changed ves_icall_System_Reflection_
11644         Assembly_get_code_base signature to accept a boolean (to escape, or 
11645         not, the assembly code base).
11646
11647 2005-12-23  Dick Porter  <dick@ximian.com>
11648
11649         * icall.c: 
11650         * threads-types.h: 
11651         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
11652         CreateEvent icall now returns "created" boolean parameter.
11653
11654 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
11655
11656         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
11657         #76967.
11658
11659         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
11660         when attr_klass is an interface. Fixes #77045.
11661
11662 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
11663
11664         * marshal.c (emit_struct_conv): Fix previous patch.
11665         
11666         * marshal.c (emit_struct_conv): Add a check for fields with the same
11667         offset.
11668
11669 2005-12-20  Raja R Harinath  <rharinath@novell.com>
11670
11671         Fix regression in Mono.C5.
11672         * class.c (mono_class_create_generic): If 'klass' is an interface
11673         set up the interface offsets.
11674         (mono_class_is_assignable_from): Don't throw away generic arguments.
11675
11676 2005-12-19  Raja R Harinath  <rharinath@novell.com>
11677
11678         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
11679         type parameters.
11680
11681 2005-12-15  Raja R Harinath  <rharinath@novell.com>
11682
11683         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
11684         dead store.
11685         (do_mono_metadata_parse_generic_class): Don't pass the current
11686         generic context when parsing the type being instantiated: it
11687         cannot use it, anyway.
11688
11689         * loader.c (method_from_memberref): Don't inflate a signature if
11690         it doesn't contain any type parameters.
11691
11692 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
11693
11694         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
11695
11696 2005-12-14  Martin Baulig  <martin@ximian.com>
11697
11698         * class.c
11699         (mono_type_get_name_recurse): Don't return null for type
11700         parameters and open generic classes.
11701         (mono_class_setup_methods): Don't exclude generic instances.
11702         (mono_get_unique_iid): Use different IDs for different
11703         instantiations of the same generic type.
11704         (mono_class_setup_vtable): Only use setup_generic_vtable() for
11705         open generic instances; create a normal vtable for closed generic
11706         instances.
11707         (mono_class_setup_vtable_general): We're now also called for
11708         closed generic instances.
11709
11710         * reflection.c
11711         (mono_reflection_bind_generic_parameters): Correctly use
11712         mono_metadata_lookup_generic_inst() everywhere.
11713
11714 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
11715
11716         * object.c (mono_class_create_runtime_vtable): Call 
11717         mono_class_setup_vtable ().
11718
11719         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
11720         function.
11721         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
11722         #76959.
11723
11724         * loader.c (mono_loader_set_error_type_load): Print the type load
11725         warnings to the console so they are more visible to the user.
11726         (mono_loader_set_error_method_load): Ditto.
11727
11728         * reflection.c (ensure_runtime_vtable): Revert the last change as it
11729         is still broken.
11730         
11731         * reflection.c (ensure_runtime_vtable): Fix build.
11732
11733         * reflection.c (ensure_runtime_vtable): Disable an optimization which
11734         doesn't work in all cases.
11735
11736 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
11737
11738         * object.c (mono_array_new_full): Treat a single dimensional array
11739         with 0 lower bounds as an szarray. Fixes #76973.
11740
11741         * reflection.c (custom_attr_visible): Really fix this.
11742
11743 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
11744
11745         * reflection.c (custom_attr_visible): Allow nested public attributes
11746         as well.
11747
11748         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
11749         interface check.
11750
11751 2005-12-12  Raja R Harinath  <harinath@gmail.com>
11752
11753         * class.c (set_generic_param_owner): Delete.
11754         (mono_class_create_from_typedef): Don't set ->owner field of
11755         generic parameters to "param containers" of enclosing classes.
11756         * reflection.c (mono_reflection_initialize_generic_parameter):
11757         Likewise.
11758
11759 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
11760
11761         * reflection.c (custom_attr_visible): Fix build.
11762
11763 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
11764
11765         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
11766         private attributes.
11767         
11768         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
11769         handling of null parameter defaults.
11770
11771 2005-12-09  Raja R Harinath  <rharinath@novell.com>
11772
11773         * class.c (mono_class_from_generic_parameter): Don't set
11774         klass->generic_container.
11775         (my_mono_class_from_generic_parameter): Likewise.
11776
11777 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
11778
11779         * reflection.c (load_public_key): Fix a warning.
11780         (method_encode_code): Fix unaligned accesses.
11781
11782 2005-12-07  Martin Baulig  <martin@ximian.com>
11783
11784         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
11785
11786         * reflection.c
11787         (write_generic_param_entry): Encode our custom attrs.
11788
11789         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
11790
11791 2005-12-07  Martin Baulig  <martin@ximian.com>
11792
11793         * reflection.c (encode_new_constraint): Removed; we don't use the
11794         `NewConstraintAttribute' anymore.
11795
11796 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
11797
11798         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
11799         not fire a TypeResolve event when Assembly.GetType () is called.
11800
11801 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
11802
11803         Beginning of support for nullable types in the runtime. Parts of
11804         this patch are from Martin.
11805
11806         * appdomain.c (MONO_CORLIB_VERSION): Bump
11807
11808         * domain.c (mono_init_internal): get the nullable type
11809
11810         * class.c (mono_class_is_nullable): New method
11811         (mono_class_get_nullable_param): New mehod
11812         (mono_class_create_generic): In types T? set cast_class to T
11813
11814         * class-internals.h (MonoDefaults): new nullable default class
11815         (mono_class_get_nullable_param, mono_class_get_nullable_param):
11816         new methods.
11817
11818 2005-12-05  Raja R Harinath  <rharinath@novell.com>
11819
11820         * metadata.c (select_container): New.  Refactor code to select the
11821         appropriate GenericContainer given the type of generic parameter
11822         we are looking for.
11823         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
11824         not a MonoGenericContext.  Use select_container.  Update parameters.
11825         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
11826         and MONO_TYPE_MVAR.
11827         (unwrap_arrays): Remove duplicate tests.
11828         (find_generic_param): Rename from 'has_same_context'.  Now walks a
11829         generic instantiated class to find any arguments that are generic
11830         parameters.
11831         (mono_type_create_from_typespec_full): Use find_generic_param to
11832         avoid evicting some generic instantiations from the typespec
11833         cache.
11834
11835 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
11836
11837         * reflection.c: fixed writing of doubles on ARM FPA.
11838
11839 2005-12-02  Robert Jordan  <robertj@gmx.net>
11840
11841         * icall.c: Fixed EventInfo.ReflectedType (#76829).
11842
11843 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11844
11845         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
11846         least on SUSE 10 they are not the same (on debian, they are just the
11847         same thing).
11848
11849 2005-12-01  Raja R Harinath  <rharinath@novell.com>
11850
11851         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
11852         DeclaringType for VARs and MVARs.
11853         * class.c (set_generic_param_owner): Fix initialization of owner
11854         fields.
11855
11856 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
11857
11858         * icall.c: fixed Enum.ToObject() to correctly convert the values.
11859
11860 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11861
11862         * threadpool.c: workaround for a bug that shows up on the Mac:
11863         select()+connect() on a blocking socket is not like it should
11864         be, so we proceed to connect() in that case, wasting the I/O
11865         threadpool thread until connect succeedes. Fixes bug #75436.
11866
11867 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11868
11869         * threadpool.c: fix typo when setting file descriptor states.
11870
11871 2005-11-28  Raja R Harinath  <rharinath@novell.com>
11872
11873         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
11874         * metadata.c (mono_metadata_parse_method_signature_full): Don't
11875         create a temporary signature container.
11876         (mono_metadata_parse_generic_param): Update to changes.
11877         (mono_type_create_from_typespec_full): Update to changes.
11878         * loader.c (method_from_memberref): Don't use a
11879         MonoGenericContainer while parsing a memberref signature.
11880         (method_from_methodspec): Remove dead-store of the 'container'
11881         variable.  It's overwritten before use.
11882
11883         * metadata.c (mono_type_create_from_typespec_full): Make debugging
11884         checks tighter.
11885         (mono_metadata_parse_generic_param): Likewise.
11886         * loader.c (find_method_in_class): Does not need a
11887         MonoGenericContainer.  Use 'mono_method_signature' rather than
11888         'mono_method_signature_full'.
11889         (find_method, mono_get_method_constrained, method_from_memberref):
11890         Update to changes.
11891
11892         * metadata.c (mono_type_create_from_typespec_full): Ensure that
11893         owner-less generic-parameters are never evicted from the typespec
11894         cache.
11895
11896         * loader.c (method_from_memberref): Don't use the current context
11897         when parsing signatures.
11898         (method_from_methodspec, mono_get_method_from_token): Update to changes.
11899
11900         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
11901         side-effects in g_assert.
11902         * loader.c (mono_get_method_from_token): Resolve klass earlier so
11903         that we don't potentially lose information.
11904
11905 2005-11-26  Dick Porter  <dick@ximian.com>
11906
11907         * icall.c:
11908         * threads.c: icalls to implement basic (ie, not named)
11909         System.Threading.Semaphore.
11910
11911 2005-11-24  Dick Porter  <dick@ximian.com>
11912
11913         * process.c
11914         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
11915         Use GetProcessId() if it's available.
11916
11917 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
11918
11919         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
11920
11921 2005-11-23  Raja R Harinath  <rharinath@novell.com>
11922             Ankit Jain  <jankit@novell.com>
11923
11924         * loader.c (mono_get_method_from_token): Initialize 'method' field
11925         of all generic parameters before parsing the signature.  Remove
11926         code that "fixed"-up MVAR references.
11927
11928 2005-11-23  Ankit Jain  <jankit@novell.com>
11929
11930         * metadata.c (mono_metadata_has_generic_params):
11931         (mono_metadata_load_generic_param_constraints):
11932         (mono_metadata_load_generic_params): Move duplicate code ...
11933         (mono_metadata_get_generic_param_row): ... here. Returns the
11934         first row-id in GenericParam table for a given owner (token).
11935         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
11936         prototype.
11937
11938 2005-11-23  Raja R Harinath  <rharinath@novell.com>
11939             Ankit Jain  <jankit@novell.com>
11940
11941         * metadata.c (mono_metadata_class_equal): Pass signature_only when
11942         comparing VARs too.
11943         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
11944         type->data.generic_param only if the type is an MVAR.
11945         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
11946         leak owner-less VARs and MVARs into managed space.
11947
11948 2005-11-21  Martin Baulig  <martin@ximian.com>
11949
11950         * class-internals.h
11951         (MonoMethod): Moved the `generic_container' here from
11952         `MonoMethodNormal' since we now also need it for
11953         `MonoMethodPInvoke';
11954         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
11955         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
11956         an union containing both `MonoMethodNormal' and
11957         `MonoMethodPInvoke'.
11958
11959         * loader.c
11960         (mono_get_method_from_token): Allow implementing generic methods
11961         as interncalls.
11962
11963         * threads.c
11964         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
11965         icall.
11966
11967 2005-11-17  Dick Porter  <dick@ximian.com>
11968
11969         * icall.c: 
11970         * process.h: 
11971         * process.c: Split the Process Start_internal icall into
11972         ShellExecuteEx_internal and CreateProcess_internal, which are
11973         called depending on whether UseShellExecute is true.  Fixes bug
11974         76670.
11975
11976         * appdomain.c (MONO_CORLIB_VERSION): Incremented
11977
11978 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
11979
11980         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
11981         'msize' parameters, use the information in 'mspec' instead.
11982         (emit_object_to_ptr_conv): Ditto.
11983
11984         * marshal.c (emit_struct_conv): Handle explicit layout structs with
11985         fields out of order. Fixes #76733.
11986
11987 2005-11-17  Ankit Jain  <jankit@novell.com>
11988
11989         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
11990
11991 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
11992
11993         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
11994           bug #76575.
11995
11996 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
11997
11998         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
11999         for types with non-auto layout. Fixes #76717.
12000
12001 2005-11-16  Ankit Jain  <jankit@novell.com>
12002
12003         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
12004         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
12005         if generic_context is null.
12006           (mono_metadata_generic_param_equal): param->owner can be null.
12007           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
12008         null.
12009
12010 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
12011
12012         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
12013         the correct value.
12014
12015 2005-11-15  Martin Baulig  <martin@ximian.com>
12016
12017         * object.c (set_value): Use mono_class_from_mono_type() instead of
12018         the hack for generic instances; fixes #76136.
12019
12020 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
12021
12022         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
12023         fields.
12024
12025         * image.c (load_metadata_ptrs): Initialize the new fields.
12026
12027         * reflection.c (create_dynamic_mono_image): Ditto.
12028
12029         * reflection.c (build_compressed_metadata): Use the new fields.
12030
12031         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
12032         icall.
12033
12034         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
12035         icall.
12036         
12037 2005-11-15  Ankit Jain  <jankit@novell.com>
12038             Raja R Harinath  <harinath@gmail.com>
12039
12040         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
12041         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
12042         new per-generic_container cache if the cached MonoType's context matches
12043         the current context.
12044           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
12045         to the expected context.
12046           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
12047
12048 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12049
12050         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
12051         we changed the signature of an icall.
12052         * icall.c: Modify to mono_double_ParseImpl return true/false 
12053         depending on the success, instead of throwing the exception. This will
12054         help us in Double.TryParse methods.
12055         
12056 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
12057
12058         * marshal.c (emit_marshal_object): Throw an exception when
12059         marshalling 'object' instead of crashing. Fixes #76696.
12060
12061 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
12062
12063         * class-internals.h: Add prototype for mono_type_get_full_name ().
12064
12065 2005-11-11  Dick Porter  <dick@ximian.com>
12066
12067         * threads.c (mono_thread_manage): Make sure the main thread has
12068         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
12069
12070 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
12071
12072         * loader.c (mono_loader_set_error_type_load): Log a warning to the
12073         console about the missing type.
12074         (mono_loader_set_error_method_load): Ditto.
12075
12076 2005-11-09  Miguel de Icaza  <miguel@novell.com>
12077
12078         * mono-config.c (mono_get_config_dir): Set the system defaults if
12079         none is specified.
12080
12081         * assembly.c (mono_set_dirs): New API entry point to set the
12082         assembly and the config directory in one call
12083
12084 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
12085
12086         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
12087         the ftnptr was created from a delegate in a domain other than the
12088         current domain. Fixes #75377.
12089
12090         * exception.h exception.c: Add mono_get_exception_not_supported ().
12091
12092 2005-11-08  Martin Baulig  <martin@ximian.com>
12093
12094         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
12095
12096 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
12097
12098         * security-manager.h: Added definitions to deal with strongname key 
12099         pairs bigger (and smaller) than 1024 bits.
12100         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
12101         adjust wrt the public key length being used.
12102
12103 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
12104
12105         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
12106           Windows build (r51396-51397).
12107
12108 2005-11-03  Martin Baulig  <martin@ximian.com>
12109
12110         * class.c (mono_class_setup_vtable_general): Also add generic
12111         methods to the vtable; fixes #76581.
12112
12113 2005-11-01  Miguel de Icaza  <miguel@novell.com>
12114
12115         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
12116         sure that we lookup GetString method from the System.Text.Encoding
12117         class, not the derived class or we get an empty method.
12118
12119         Fixed class #76612.
12120
12121 2005-10-25  Miguel de Icaza  <miguel@novell.com>
12122
12123         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
12124         if it has been previously set (embedders). 
12125
12126         Make mono_set_rootdir available also on Unix.
12127
12128 005-10-24  Robert Jordan  <robertj@gmx.net>
12129
12130         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
12131
12132 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
12133
12134         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
12135         only calls which are made to native code use this flag.
12136
12137         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
12138
12139 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
12140
12141         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
12142         Add support for FieldBuilders.
12143
12144 2005-10-29  Martin Baulig  <martin@ximian.com>
12145
12146         * mono-debug.c
12147         (mono_debug_using_mono_debugger): New public method; returns
12148         whether we're running inside the debugger.
12149
12150 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
12151
12152         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
12153         for Method/Constructor/FieldBuilders.
12154
12155 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
12156
12157         * reflection.c (module_add_cattrs): Save custom attributes for global methods
12158         and fields as well.
12159
12160 2005-10-26  Martin Baulig  <martin@ximian.com>
12161
12162         * mono-debug-debugger.c
12163         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
12164
12165 2005-10-24  Raja R Harinath  <harinath@gmail.com>
12166
12167         * icall.c (base64_to_byte_array): Don't pass an out-of-range
12168         integer to isspace.
12169
12170 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
12171
12172         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
12173         when passing valuetypes byref. Fixes #76502.
12174
12175 2005-10-19  Jackson Harper  <jackson@ximian.com>
12176
12177         * profiler.c: Don't put a . in front of types that are not in a
12178         namespace.
12179
12180 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
12181
12182         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
12183
12184 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
12185
12186         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
12187         #76436.
12188         (mono_marshal_get_ldflda_wrapper): Fix a warning.
12189
12190 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12191
12192         * assembly.c metadata-internals.h icall.c: Define an additional
12193         parameter for mono_assembly_name_parse_full, so we can avoid creating
12194         S.R.AssemblyName.Version when no version info wasn't passed.
12195         
12196 2005-10-09  Miguel de Icaza  <miguel@novell.com>
12197
12198         * class.c (mono_type_get_full_name): Reimplement method that was
12199         removed. 
12200
12201         * image.c: Some docs
12202
12203 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
12204
12205         * profiler.c (output_newobj_profile): Fix printing of Total memory
12206         on x86.
12207
12208 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
12209
12210         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
12211
12212 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
12213
12214         * threads.c: remove debug output.
12215
12216 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
12217
12218         * threads.c (mono_thread_manage): Fix crashes if more than 64
12219         threads need to be aborted. Hopefully fixes #75899.
12220
12221         * assembly.c (mono_stringify_assembly_name): New helper function.
12222
12223         * class.c: Use mono_stringify_assembly_name instead of the similar
12224         static function.
12225
12226         * assembly.h assembly.c: Add support for calling a postload search 
12227         hook if an assembly cannot be loaded.
12228
12229         * appdomain.c: Register new search hooks which call the AssemblyResolve
12230         events in AppDomain. Fixes #75231
12231
12232 2005-10-07  Martin Baulig  <martin@ximian.com>
12233
12234         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
12235         methods without debug info.
12236
12237 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
12238
12239         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
12240         wrappers.
12241
12242 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12243
12244         * file-io.c: now that we return symlinks, use lstat and, when the file
12245         is a symbolic link, stat, to get the file attributes. Also avoid the
12246         conversion to/from utf16/external.
12247
12248 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
12249
12250         * class.c (mono_class_layout_fields): Compute klass->has_references
12251         correctly if an embedded valuetype is not yet initialized. Fixes
12252         #76331.
12253
12254 2005-10-04  Martin Baulig  <martin@ximian.com>
12255
12256         * metadata.c
12257         (mono_metadata_load_generic_param_constraints): New public
12258         function; splitted the constraints loading out from
12259         mono_metadata_load_generic_params().
12260
12261         * class.c (mono_class_create_from_typedef): Call
12262         mono_metadata_load_generic_param_constraints() after setting up
12263         the type and creating our parent; fixes #75329.
12264
12265 2005-10-04  Martin Baulig  <martin@ximian.com>
12266
12267         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
12268         non-dynamic parent classes.
12269
12270 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
12271
12272         * file-io.c : win32 build fix (ETXTBSY seems not found).
12273
12274 2005-10-04  Martin Baulig  <martin@ximian.com>
12275
12276         * reflection.c
12277         (mono_image_get_methodspec_token): Make the cache actually work;
12278         fixes #75974.
12279
12280 2005-10-04  Martin Baulig  <martin@ximian.com>
12281
12282         * class.c (mono_class_name_from_token): Removed the unneccessary
12283         `MonoGenericContext *' argument.
12284
12285 2005-10-04  Martin Baulig  <martin@ximian.com>
12286
12287         * loader.c
12288         (method_from_methodspec): Make the caching work again; fixes the
12289         performance regression from #76262.
12290
12291 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12292
12293         * file-io.c:
12294         * file-io.h:
12295         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
12296         GetFileSystemEntries that performs the same work but without going
12297         into io-layer, locking, etc.
12298
12299 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
12300
12301         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
12302         ThreadState_Stopped as well. Fixes #76047.
12303
12304 2005-09-29  Martin Baulig  <martin@ximian.com>
12305
12306         * class.c
12307         (inflate_generic_context): If the new context has a `gmethod', set
12308         its `container' that that gmethod's `container'.
12309
12310         * metadata.c
12311         (mono_metadata_parse_generic_param): Simplify things;
12312         `generic_container = generic_context->container;' is just fine.
12313
12314         * loader.c (method_from_methodspec): Code cleanups.
12315
12316 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
12317
12318         * decimal.c: fix warning (and let gcc generate correct
12319         code on ARM with optimizations).
12320
12321 2005-09-28  Martin Baulig  <martin@ximian.com>
12322
12323         * loader.c
12324         (method_from_memberref): Added `MonoGenericContext *class_context'
12325         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
12326         (method_from_methodspec): If we're a memberref, use the enclosing
12327         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
12328
12329 2005-09-28  Martin Baulig  <martin@ximian.com>
12330
12331         * object.c (mono_runtime_invoke_array): Added support for
12332         MONO_TYPE_GENERICINST; fixes #75917.
12333
12334 2005-09-27  Martin Baulig  <martin@ximian.com>
12335
12336         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
12337         `k->byval_arg.type' to determine the actual type.
12338
12339         * loader.c (method_from_methodspec): Removed some hacks.
12340
12341 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
12342
12343         * class-internals.h (mono_field_is_deleted): Do the test for
12344         rtspecialname before we check the actual name of the field. This
12345         prevents us from dereferencing a pointer into the string table,
12346         saving us from accessing a few pages
12347
12348         * *.c: Replace the use of {Enter,Leave}CriticalSection with
12349         macros. This will allow a deadlock debugger to easily be plugged
12350         in.
12351
12352 2005-09-27  Martin Baulig  <martin@ximian.com>
12353
12354         * loader.c (method_from_methodspec): Create a "signature"
12355         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
12356
12357 2005-09-27  Martin Baulig  <martin@ximian.com>
12358
12359         * class.c
12360         (inflate_generic_class): Correctly set the new context's
12361         container.
12362
12363         * loader.c
12364         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
12365         instead of a `MonoGenericContext *'.
12366         (mono_method_signature_full): Take a `MonoGenericContainer *'
12367         instead of a `MonoGenericContext *'.
12368
12369         * metadata.c
12370         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
12371         instead of a `MonoGenericContext *'.
12372         (mono_metadata_parse_method_signature_full): Likewise.
12373
12374 2005-09-26  Martin Baulig  <martin@ximian.com>
12375
12376         * class.c
12377         (mono_class_from_generic_parameter): Set `klass->generic_container'
12378         (mono_class_from_generic_parameter): Likewise.
12379         (mono_bounded_array_class_get): We inherit the generic container
12380         from the element class.
12381
12382         * loader.c
12383         (find_method, find_method_in_class): Take a `MonoGenericContext *'
12384         argument rather than computing it here.
12385         (method_from_memberref): Correctly set the generic context before
12386         parsing the signature.  Fixes #75681.
12387
12388 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
12389
12390         * object.c (mono_class_has_special_static_fields): Fix warnings.
12391
12392 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12393
12394         * assembly.c: Add parse_public_key function, to
12395         par the public keys. Also added mono_assembly_name_parse_full,
12396         to define it the parsed key should be freed or not.
12397         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
12398         to parse a long format assembly name.
12399         * metadata-internals.h: Keep mono_assembly_name_parse_full as
12400         private, since calling it to preserve the key requires
12401         freeing it manually.
12402         
12403 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
12404
12405         * locales.c : removed HAVE_ICU part.
12406
12407 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
12408
12409         * object.c (mono_class_create_runtime_vtable): Avoid calling 
12410         field_is_special_static if the klass has no special static fields.
12411
12412         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
12413         (MonoCachedClassInfo): Likewise.
12414
12415         * object.c (mono_class_has_special_static_fields): New helper function.
12416
12417 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
12418
12419         * class.c (mono_class_create_from_typedef): Don't call 
12420         interfaces_from_typedef_full for enums.
12421         (mono_class_create_from_typedef): Compute the base types of enums directly
12422         without calling mono_class_setup_fields ().
12423         (mono_class_find_enum_basetype): New helper function.
12424
12425         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
12426         one place inside the string heap.
12427         
12428 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
12429
12430         * class.c: locking fixes, code cleanups, some docs added.
12431         Allocate some data structures in the image mempool.
12432
12433 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
12434
12435         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
12436         the example code.
12437         
12438 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
12439
12440         * class-internals.h, class.c, reflection.c: reduce memory taken by
12441         MonoClass.
12442
12443 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
12444
12445         * metadata.c, metadata.h, loader.h: documentation updates, code and
12446         API cleanups.
12447
12448 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
12449
12450         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
12451         the example code.
12452
12453         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
12454         page faults caused by the runtime while reading metadata.
12455
12456 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12457
12458         * socket-io.c: the field names were changed 3 months ago and no one
12459         realized until bug #76077 got filed!
12460
12461 2005-09-20  Martin Baulig  <martin@ximian.com>
12462
12463         * icall.c (assembly_icalls): Removed some unused debugger icalls.
12464
12465 2005-09-20  Martin Baulig  <martin@ximian.com>
12466
12467         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
12468         write the rank into the class entry.
12469
12470 2005-09-20  Martin Baulig  <martin@ximian.com>
12471
12472         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
12473
12474 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
12475
12476         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12477
12478         * icall.c (custom_attrs_defined_internal): New icall.
12479
12480         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
12481         function.
12482         (mono_custom_attrs_construct_by_type): New helper function.
12483
12484 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
12485
12486         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
12487         terminate the resulting string. Fixes #76123.
12488
12489 2005-09-16  Martin Baulig  <martin@ximian.com>
12490
12491         * mono-debug.c
12492         (mono_debug_add_method): Ignore inflated methods for the moment.
12493
12494 2005-09-14  Martin Baulig  <martin@ximian.com>
12495
12496         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
12497
12498 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
12499
12500         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
12501         return a success/failure indication.
12502         (mono_metadata_interfaces_from_typedef_full): Ditto.
12503         (get_constraints): Ditto.
12504
12505 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
12506
12507         * marshal.c (emit_marshal_array): Fix handling of null arrays.
12508         
12509         * marshal.c (emit_marshal_array): Add support for returning string
12510         arrays from delegates. Fixes #76063.
12511
12512         * marshal.c: Use the emit_ldloc/stloc macros where possible.
12513
12514 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
12515
12516         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
12517         icall.
12518
12519 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
12520
12521         * reflection.c icall.c: Fix after mono_get_exception_type_load
12522         signature change.
12523
12524         * assembly.c (mono_assembly_get_assemblyref): New helper function.
12525         (mono_assembly_load_reference): Use the new helper.
12526
12527         * class-internals.h (MonoLoaderError): New structure containing 
12528         information about type loading errors.
12529
12530         * class-internals.h loader.c: Add APIs to store per-thread loader
12531         error information.
12532
12533         * loader.c class.c: Set the loader error if needed.
12534
12535         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
12536
12537 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
12538
12539         * decimal.c: fixed to handle the broken ARM fp format.
12540
12541 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
12542
12543         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
12544         broken.
12545
12546 2005-09-06  Martin Baulig  <martin@ximian.com>
12547
12548         * domain.c (supported_runtimes): Added v2.0.50727.
12549
12550 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
12551
12552         * culture-info.h: reduce the size of some structures.
12553
12554 2005-09-05  Martin Baulig  <martin@ximian.com>
12555
12556         Reflect latest API changes in the August CTP.
12557
12558         * icall.c
12559         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
12560         ("MonoType.HasGenericArguments"): Removed.
12561         ("MonoMethod.BindGenericParameters"): Renamed to
12562         "MakeGenericMethod".
12563         ("MethodBuilder.BindGenericParameters"): Renamed to
12564         "MakeGenericMethod".    
12565
12566 2005-09-05  Martin Baulig  <martin@ximian.com>
12567
12568         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
12569
12570 2005-09-05  Martin Baulig  <martin@ximian.com>
12571
12572         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12573
12574         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
12575         generic_container is non-NULL.
12576
12577 2005-09-05  Martin Baulig  <martin@ximian.com>
12578
12579         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12580
12581         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
12582
12583 2005-08-29  Michal Moskal  <malekith@nemerle.org>
12584
12585         * reflection.c (encode_locals,
12586         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
12587         for large generic types.
12588
12589 2005-09-05  Martin Baulig  <martin@ximian.com>
12590
12591         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12592
12593         * class.c (mono_dup_array_type): New public method.
12594         (mono_metadata_signature_deep_dup): New public method.
12595         (dup_type): Correctly duplicate array and function types.
12596
12597 2005-09-05  Martin Baulig  <martin@ximian.com>
12598
12599         Applying a patch from Michal Moskal <malekith@nemerle.org>.
12600
12601         * reflection.c (get_default_param_value_blobs): Handle generic types
12602         and generic methods.
12603
12604 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
12605
12606         * class.c: Fixed error reporting (method/class were inversed) for 
12607         inheritance demands.
12608         * security-manager.c|h: Added the AppDomain when calling the managed
12609         System.Security.SecurityManager.InheritanceDemand method.
12610
12611 2005-09-01  Raja R Harinath  <rharinath@novell.com>
12612
12613         * reflection.c (encode_marshal_blob): 'marshaltype' and
12614         'marshaltyperef' are alternate sources for the custom marshaler
12615         name.
12616
12617 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
12618
12619         * class.c: fix creation of array classes with rank == 1
12620         (patch by Ankit Jain <jankit@novell.com>).
12621
12622 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
12623
12624         * object.c: fix check for creating the bound data for arrays vs
12625         szarrays.
12626
12627 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12628
12629         * object.c: configuration file name is now based on the executable name,
12630         not the image name. Fixes bug #75931.
12631
12632 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
12633
12634         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
12635         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
12636
12637 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
12638
12639         * rand.c: Use wincrypt.h instead of WinCrypt.h.
12640
12641 2005-08-24  Ankit Jain  <jankit@novell.com>
12642             Raja R Harinath  <rharinath@novell.com>
12643
12644         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
12645           called by it recursively.
12646           (mono_class_init): Remove special case in pending_init handling, since it's
12647           superseded by the fix to mono_class_from_typeref.
12648
12649 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
12650
12651         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
12652         BROKEN_THREAD_START stuff.
12653
12654 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
12655
12656         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
12657         trampoline.
12658
12659         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
12660         
12661         * object.c (mono_delegate_ctor): Replace the original function address with
12662         a delegate trampoline.
12663
12664 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
12665
12666         * icall.c: add boolean argument to base64_to_byte_array and 
12667         InternalFromBase64String to control whether a whitespace-only string
12668         is allowed (or should casue a FormatException to be thrown). We need
12669         this as the behavior has changed between MS.NET 1.x and 2.0, and we
12670         to match the MS behaviour in both profiles.
12671         * appdomain.c: Bump corlib version.
12672
12673 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12674
12675         This patch implements a big portion of publisher policy
12676         support, used to bind assembly versions and redirect
12677         one assembly from version A to version B.
12678
12679         * assembly.c:
12680         New GSList loaded_assembly_bindings, for storing the cached
12681         assembly bindings.
12682         (assembly_binding_maps_name): New static function for checking if a 
12683         assembly binding information maps an assembly name.
12684         (mono_assembly_binding_info_free): New function for freeing
12685         assembly binding information resources.
12686         (get_publisher_policy_info): New static function for retrieving 
12687         assembly binding information from a MonoImage.
12688         (compare_versions): New static function for comparing an assembly
12689         binding information data and the version of an assembly name.
12690         (check_policy_versions): New static function for checking if an
12691         assembly binding info mapping an assembly name is valid for it.
12692         (mono_assembly_load_publisher_policy): New static function for
12693         loading the 'policy.major.minor.MyAssembly' image for an assembly
12694         with an assembly name 'aname'.
12695         (mono_assembly_bind_version): New static function for updating
12696         assembly redirection.
12697         (mono_assembly_apply_binding): New static function for applying
12698         assembly binding.
12699         (search_binding_loaded): New static function for searching 
12700         loaded assembly binding infos in the cache domain.
12701         (mono_assembly_load_full): Don't apply assembly binding for
12702         reflection only assemblies.
12703
12704         * metadata-internals.h: Add MonoAssemblyBindingInfo,
12705         which contains information about assembly binding. Also
12706         declare signature for mono_config_parse_publisher_policy ()
12707         function, used to retrieve pub policy info.
12708         
12709         * mono-config.c:
12710         (publisher_policy_start): New static function used to parse publisher 
12711         policy config files.
12712         (publisher_policy_parser): New static MonoParseHandler containing 
12713         the functions used when parsing config files.
12714         (mono_config_parse_publisher_policy): New function for parsing
12715         publisher policy files.
12716         
12717 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
12718
12719         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
12720
12721         * marshal.c (mono_delegate_free_ftnptr): Ditto.
12722
12723         * object.c (mono_get_addr_from_ftnptr): New helper function.
12724
12725         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
12726
12727         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12728
12729 2005-08-19  Dick Porter  <dick@ximian.com>
12730
12731         * threads.c, threads.h, appdomain.c, appdomain.h,
12732         profiler-private.h, monitor.c, object.c, object-internals.h,
12733         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
12734         store the thread ID, so it can hold a 64 bit value if needed.
12735
12736 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
12737
12738         * reflection.c (mono_reflection_create_dynamic_method): Store the
12739         handle class into the method references as well so ldtoken works in
12740         dynamic methods.
12741
12742         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
12743         types.
12744
12745 2005-08-19  Ankit Jain <jankit@novell.com>
12746
12747         Fix #75847.
12748         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
12749           here rather than using the method signature of a arbitrary function
12750           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
12751           two arguments.
12752           Hack done with Harinath.
12753
12754 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12755
12756         * threadpool.c: disable printing stack traces when we get a exception
12757         in a threadpool thread. I need to do more testing to figure out which
12758         cases actually print this. Fixes bug #75828.
12759
12760 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12761
12762         * icall.c: there might be ignored whitespace after the last '='. This
12763         fixes length computation and bug #75840.
12764
12765 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
12766
12767         * assembly.c (mono_assembly_load_full): Consider .exe extension as
12768         well. Fixes #75809.
12769
12770         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
12771         #75784.
12772         
12773         * reflection.c (create_custom_attr_data): Ditto.
12774
12775 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
12776
12777         * locales.c, culture-info.h : removed RegionLCIDMap.
12778         * culture-info-tables.h : regenerated.
12779
12780 2005-08-16  Martin Baulig  <martin@ximian.com>
12781
12782         * class.c (mono_type_get_name_recurse): Small fix.
12783
12784 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
12785
12786         * locales.c : indentation fixie.
12787
12788 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
12789
12790         * object-internals.h,
12791           locales.h,
12792           locales.c,
12793           culture-info.h,
12794           icall.c : added RegionInfo table support.
12795         * culture-info-table.h : regenerated for region support.
12796
12797 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
12798
12799         * reflection.c (resolve_object): handle all kinds of MonoMethod
12800         including generic ones
12801
12802 2005-08-12  Ankit Jain <jankit@novell.com>
12803
12804         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
12805           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
12806
12807 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
12808
12809         * process.c: Don't close a thread handle when it's NULL. This is a
12810         workaround for bug #75733.
12811
12812 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
12813
12814         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
12815
12816 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
12817
12818         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
12819
12820 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12821
12822         * threadpool.c: if a work item in the thread pool has a callback that
12823         catches a exception, don't propagate it after invoking the callback.
12824         Fixes bug #75336.
12825
12826 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
12827
12828         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
12829
12830         * class-internals.h (MonoCachedClassInfo): Add some new fields.
12831
12832         * class.c (mono_class_init): Load field info lazily in the AOT case.    
12833
12834         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
12835
12836 2005-08-03  Ankit Jain  <jankit@novell.com>
12837
12838         Fix #75683.
12839         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
12840           PInvoke calling convention is 0.
12841
12842 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
12843
12844         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
12845         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
12846
12847 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
12848
12849         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
12850         to handle threads not started by the GC (patch by Michael Meeks
12851         <michael.meeks@novell.com>).
12852
12853 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
12854
12855         * reflection.c: Make buffer used in emitting types larger for some
12856         big generic types (patch by Michal Moskal).
12857
12858 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
12859
12860         * mono-debug.c: Fix some (not all) alignment problems.
12861
12862 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12863
12864         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
12865         Invoke mono_image_load_from_data_full passing the refonly
12866         parameter.
12867
12868         * assembly.c
12869         (mono_assembly_open_from_bundle): Add the refonly argument, 
12870         in order to pass it to other methods it calls to.
12871         (do_mono_assembly_open): Add the refonly argument, in order 
12872         to pass it to other methods it calls to.
12873         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
12874         the refonly parameter to it.
12875
12876         * image.c: Add loaded_images_refonly_hash and
12877         loaded_images_refonly_guid_hash to cache the reflection
12878         only loaded images.
12879         (mono_images_init): Initialize the hash tables used for
12880         caching the reflection only images.
12881         (load_modules): Invoke mono_image_open_full passing the refonly
12882         parameter to load the modules the correct way.
12883         (build_guid_table): Add the refonly argument, to re-build the 
12884         correct hash table.
12885         (do_mono_image_open): Added the refonly argument, in order to
12886         define it for the loaded image.
12887         (mono_image_loaded_full): New function, which receives an
12888         additional parameter to look for the image in the refonly or
12889         non-refonly section.
12890         (mono_image_loaded): Updated, using mono_image_loaded_full.
12891         (mono_image_loaded_by_guid_full): The same case that happens
12892         with mono_image_loaded_full.
12893         (mono_image_loaded_by_guid): Likewise.
12894         (register_image): Use the ref_only variable inside MonoImage
12895         to decide in which hash table store the current image.
12896         (mono_image_open_from_data_full): Rename
12897         mono_image_open_from_data to mono_image_open_from_data_full,
12898         adding the refonly argument, to define the ref_only variable 
12899         inside MonoImage.
12900         (mono_image_open_from_data): Return 
12901         mono_image_open_from_data_full.
12902         (mono_image_open_full): Rename mono_image_open to
12903         mono_image_open_full, receiving the new refonly argument,
12904         to pass it to inner methods.
12905         (mono_pe_file_open): Update this function, to open
12906         a MonoImage as a non-refonly image.
12907         (mono_image_close): Use the refonly variable inside
12908         MonoImage to remove the image from the correct caches.
12909
12910         * image.h: Add the signatures of mono_image_open_full,
12911         mono_image_open_from_data_full, mono_image_loaded_full,
12912         mono_image_loaded_by_guid_full.
12913
12914         * metadata-internals.h: Add the ref_only field to 
12915         MonoImage.
12916         
12917 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12918
12919         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
12920         Fix the last behavior, which used to load the assemblies and
12921         extract MonoReflectionAssemblyName information, instead of
12922         extract it from the metadata tables. Needed for Reflection
12923         Only assemblies.
12924         
12925 2005-07-29  Martin Baulig  <martin@ximian.com>
12926
12927         * mono-debug-debugger.c
12928         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
12929         not initialized.
12930
12931         * mono-debug.c
12932         (mono_debug_address_from_il_offset): Check whether we have
12933         debugging support before attempting to take the lock.
12934         (mono_debug_source_location_from_address): Likewise.
12935         (mono_debug_source_location_from_il_offset): Likewise.
12936         (mono_debug_il_offset_from_address): Likewise.
12937         (mono_debug_address_from_il_offset): Likewise.
12938
12939 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
12940
12941         * class.c (mono_class_from_name_case): Add support for dynamic images.
12942         Fixes #75650.
12943
12944         * object.c (mono_class_compute_gc_descriptor): Add a workaround
12945         for #75479.
12946
12947 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
12948         
12949         * reflection.c (mono_method_get_object): Fix warning.
12950
12951 2005-07-28  Martin Baulig  <martin@ximian.com>
12952
12953         * mono-debug.c
12954         (mono_debug_add_wrapper): Also write the wrapper type.
12955
12956 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
12957
12958         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
12959         
12960         * class.c (mono_class_init): Avoid reading nested classes if the AOT
12961         data indicates the class has none.
12962
12963 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
12964
12965         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
12966         loader lock with the debugger lock. Prevents deadlocks for beagle.
12967
12968         Beagle can now run on an smp box for a weekend without any
12969         issues. Woohoo!
12970
12971 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
12972
12973         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
12974         in a module. Fixes #75629.
12975
12976 2005-07-26  Martin Baulig  <martin@ximian.com>
12977
12978         * mono-debug.c (mono_debug_add_wrapper): New static method.
12979         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
12980         interncall or a wrapper.
12981
12982         * mono-debug.h (MonoDebugWrapperData): New public typedef.
12983         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
12984         (MONO_DEBUGGER_VERSION): Bump to 51.
12985
12986         * mono-debug-debugger.c
12987         (mono_debugger_add_type): Removed this empty function.
12988         (mono_debugger_add_method): Likewise.
12989
12990 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
12991
12992         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
12993         before accessing method->slot.
12994
12995 2005-07-21  Jb Evain  <jbevain@gmail.com>
12996
12997         * reflection.c (method_encode_clauses/class): Handle filters clauses.
12998         Fixes #75010.
12999
13000 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
13001
13002         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
13003         #75587.
13004
13005 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
13006
13007         * image.h image.c: Add mono_image_get_guid () API function.
13008
13009 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
13010
13011         There were issues when multiple threads tried to load
13012         assemblies. A deadlock was created between assemblies_mutex and
13013         mono_domain_assemblies_lock. This fixes the issue by making the
13014         assembly ref counting be lock free. See bug 75586.
13015         
13016         * image.c (mono_image_close): The add ref function here was using
13017         Interlocked operations while the unref was using a mutex and a
13018         --. I don't think this was ever a bug that would be exposed in a
13019         non-pendantic way (ie, by an embedder doing a ref on one thread
13020         and an unref on another), but for the sake of correctness, this is
13021         now Interlocked.
13022
13023         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
13024         (mono_assembly_load_reference): Call mono_assembly_addref rather
13025         than touching the refcount ourselves.
13026         (mono_assembly_close): Use InterlockedDecrement to unref the
13027         assembly. Don't acquire the lock unless it is actually needed.
13028
13029 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
13030
13031         * class.c (mono_class_layout_fields): Fix calculation of has_references
13032         for generic types.
13033
13034 2005-07-12  Martin Baulig  <martin@ximian.com>
13035
13036         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13037
13038         * metadata.c
13039         (mono_type_hash): Provide better hashing for generic instances.
13040         (mono_generic_inst_hash): Improve hashing.
13041         (mono_generic_class_hash): Likewise.
13042
13043         * reflection.c (mymono_metadata_type_hash): Improve hashing for
13044         generic instances.
13045
13046 2005-07-12  Martin Baulig  <martin@ximian.com>
13047
13048         * reflection.c (mono_reflection_create_runtime_class): Remove the
13049         hack for generic type definitions and non-`Run' assemblies.
13050         (mono_reflection_bind_generic_parameters): Also use
13051         `klass->wastypebuilder' to check for TypeBuilders.
13052
13053 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
13054
13055         * class.c (mono_class_layout_fields): Fix calculation of has_references
13056         for generic types.
13057
13058         * class.c (inflate_generic_class): Fix a leak.
13059         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
13060         for generic types.
13061
13062 2005-07-11  Martin Baulig  <martin@ximian.com>
13063
13064         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
13065         on error.
13066
13067 2005-07-11  Martin Baulig  <martin@ximian.com>
13068
13069         * loader.c (find_method): Also lookup in
13070         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
13071
13072 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13073
13074         * appdomain.c (mono_domain_unload): Don't free the error message
13075         before passing it to mono_get_exception_...
13076
13077         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
13078         
13079 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
13080
13081         * threads.c: try to better guess an available RT signal (bug #75387).
13082
13083 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13084
13085         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
13086         and CACHE_OBJECT.
13087
13088 2005-07-07  Martin Baulig  <martin@ximian.com>
13089
13090         * class.c (mono_type_get_name_full): Return NULL for
13091         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
13092         fixes #75408.
13093
13094 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13095
13096         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
13097         exit the appdomain as well being aborted.
13098
13099         * threadpool.c: Create all threadpool threads inside the root appdomain, and
13100         change back to the root domain after calling managed code. This enables
13101         appdomains using threadpools to be unloaded.
13102
13103 2005-07-07  Martin Baulig  <martin@ximian.com>
13104
13105         * class-internals.h
13106         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
13107         into `MonoDynamicGenericClass' since we only need it for dynamic
13108         types.
13109
13110         * reflection.c (mono_class_bind_generic_parameters): We don't need
13111         to compute the `parent' here.
13112
13113 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
13114
13115         * culture-info-table.h : regenerated.
13116
13117 2005-07-06  Martin Baulig  <martin@ximian.com>
13118
13119         * icall.c
13120         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
13121
13122         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
13123
13124 2005-07-06  Martin Baulig  <martin@ximian.com>
13125
13126         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
13127         we're doing a signature-only comparision; fixes #74945.
13128
13129 2005-07-06  Martin Baulig  <martin@ximian.com>
13130
13131         * class-internals.h (MonoGenericClass): Moved some things out into
13132         a new `MonoInflatedGenericClass' type.  
13133         (MonoInflatedGenericClass): New type; the `klass' of a
13134         `MonoGenericClass' is now computed lazyly in
13135         mono_get_inflated_generic_class().      
13136
13137         * class.c (mono_get_inflated_generic_class): New public function.
13138         (mono_class_inflate_generic_method): Removed the unused
13139         `MonoClass *' argument.
13140         (setup_generic_vtable): Don't call mono_get_inflated_method() on
13141         all the methods.
13142         (mono_class_create_generic): Make this static and merge it with
13143         mono_class_create_generic_2(); we're now called automatically from
13144         mono_get_inflated_generic_class().
13145
13146         * loader.c (mono_method_signature): Call
13147         mono_get_inflated_method() here.
13148
13149 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
13150
13151         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
13152         type of fields with RVA.
13153
13154         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
13155         for this pseudo class.
13156         (my_mono_class_from_generic_parameter): Likewise.
13157         (mono_class_init): Allow interfaces to have cctors.
13158
13159 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
13160
13161         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
13162         lazily for AOT methods.
13163
13164 2005-07-05  Martin Baulig  <martin@ximian.com>
13165
13166         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
13167         returns FALSE for a successful match, not TRUE.
13168
13169 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
13170
13171         * loader.c (mono_method_get_index): Optimize this a bit.
13172
13173 2005-07-04  Martin Baulig  <martin@ximian.com>
13174
13175         * class.c
13176         (class_compute_field_layout): Move the check for generic type
13177         definitions into mono_class_layout_fields().  Fixes #74684.
13178         (mono_class_from_generic_parameter): Correctly compute
13179         `klass->parent'; fixes #75457.
13180
13181         * reflection.c (register_assembly, register_module): Make sure
13182         `domain->rejobject_hash' is already created.
13183
13184 2005-07-02  Martin Baulig  <martin@ximian.com>
13185
13186         * class-internals.h
13187         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
13188         `MonoDynamicGenericClass'.      
13189
13190 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
13191
13192         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
13193         returned by a field getter is null, since null is a valid value.
13194
13195 2005-07-01  Martin Baulig  <martin@ximian.com>
13196
13197         * reflection.c (mono_reflection_generic_class_initialize): Update
13198         the `dgclass->fields [i].parent' to the correct class.
13199         (mono_image_get_fieldref_token): Use the declaring type, not the
13200         reflected type.
13201
13202 2005-07-01  Martin Baulig  <martin@ximian.com>
13203
13204         * loader.c (find_method): Also look in the interfaces; fixes #75429.
13205
13206 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
13207
13208         * threads.c (thread_cleanup): assert that thread != NULL
13209         (wait_for_tids_or_state_change): We were using the wrong variable
13210         when accessing wait->threads. `i' was always out of the bounds of
13211         the array.
13212
13213 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13214
13215         * loader.c: map user32 and kernel32 to libMonoSupportW
13216
13217 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
13218
13219         * appdomain.c (unload_thread_main): Mark this as WINAPI.
13220
13221 2005-06-28  Martin Baulig  <martin@ximian.com>
13222
13223         * loader.c (method_from_methodspec): Fix #75334.
13224
13225 2005-06-28  Martin Baulig  <martin@ximian.com>
13226
13227         Fix #74953 - Arrays now implement the generic IList<T> interface
13228         on the 2.0 platform.
13229
13230         * class-internals.h (MonoDefaults): Added `generic_array_class'.
13231
13232         * reflection.c (mono_class_bind_generic_parameters): New public
13233         function; similar to mono_reflection_bind_generic_parameters(),
13234         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
13235
13236         * domain.c (mono_init_internal): Try to initialize.
13237         `mono_defaults.generic_array_class' here; this'll only succeed if
13238         we're using the 2.0 corlib.
13239
13240         * icall.c
13241         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
13242         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
13243         (mono_lookup_internal_call): Added support for nested classes.
13244
13245         * loader.c
13246         (mono_get_method_from_token): Set `result->signature->pinvoke' if
13247         we're an interncall and have generic arguments.
13248
13249         * class.c
13250         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
13251         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
13252         instance of System.Array.InternalArray<T> for arrays, so they
13253         implement the generic IList<T> interface.
13254
13255 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
13256
13257         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
13258         (chastamar@yahoo.com). Fixes #75374.    
13259
13260 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
13261
13262         * culture-info-table.h: regenerated.
13263
13264 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13265
13266         * icall.c: handle spaces correctly for base64 strings.
13267
13268 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
13269
13270         * *.c: Kill some warnings.
13271
13272 2005-06-23  Duncan Mak  <duncan@novell.com>
13273
13274         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
13275         that this builds on Solaris 10 (x86).
13276
13277 2005-06-23  Martin Baulig  <martin@ximian.com>
13278
13279         * class.c
13280         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
13281         generic type definitions.
13282
13283 2005-06-23  Martin Baulig  <martin@ximian.com>
13284
13285         Fix #75331.
13286
13287         * metadata.c (mono_class_get_overrides): Renamed to
13288         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
13289         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
13290         pass it to mono_get_method_full().
13291
13292 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
13293
13294         * reflection.c (mono_reflection_create_runtime_class): take the
13295         mono_domain_lock in this method. Prevents deadlocks
13296
13297 2005-06-22  Martin Baulig  <martin@ximian.com>
13298
13299         * loader.c (method_from_methodspec): Fix #75330.
13300
13301 2005-06-22  Martin Baulig  <martin@ximian.com>
13302
13303         * reflection.c (type_get_qualified_name): Use
13304         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
13305         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
13306         argument; use it if we don't have an assembly name.
13307
13308 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
13309
13310         * object.c: In mono_message_init, set "copy out" flag for in
13311         parameters with the [Out] flag.
13312
13313 2005-06-21  Martin Baulig  <martin@ximian.com>
13314
13315         * class.c
13316         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
13317         and MONO_TYPE_PTR.
13318
13319 2005-06-21  Martin Baulig  <martin@ximian.com>
13320
13321         * class.c (mono_class_init): Don't initialize `class->fields' for
13322         generic instances since they're initialized again in
13323         compute_field_layout(). 
13324         (compute_field_layout): Set the field's `generic_info' here; fix
13325         #75320. 
13326
13327 2005-06-21  Martin Baulig  <martin@ximian.com>
13328
13329         * class-internals.h
13330         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
13331
13332         * metadata.c (mono_metadata_generic_method_equal): Also
13333         distinguish the `generic_class'; fixes #75334.
13334
13335 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13336
13337         * domain.c:
13338         * appdomain.c:
13339         * domain-internals.h:
13340         * reflection.c: 'domain_assemblies' field is now protected by its own
13341         lock. Don't call into managed code to run the AssemblyLoad event if we
13342         now there are no registered delegates for it.
13343
13344 2005-06-20  Martin Baulig  <martin@ximian.com>
13345
13346         * class.c (mono_class_is_assignable_from): Use a custom version of
13347         mono_class_has_parent() to make things work for generic instances;
13348         fix #75300.
13349
13350 2005-06-20  Martin Baulig  <martin@ximian.com>
13351
13352         * loader.c (method_from_methodspec): Apply a patch from
13353         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
13354
13355 2005-06-20  Martin Baulig  <martin@ximian.com>
13356
13357         * class.c (mono_class_init): Reverted Zoltan's last change; it
13358         breaks generics.
13359
13360 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
13361
13362         * threads.c (wait_for_tids_or_state_change): Add missing locking.
13363
13364 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13365
13366         * socket-io.c: fix the index in the socket array for writable/error
13367         sockets. Fixes bug #75306.
13368
13369 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
13370
13371         * class.c (mono_class_init): Allow interfaces to have static ctors.
13372
13373 2005-06-17  Martin Baulig  <martin@ximian.com>
13374
13375         * loader.c (method_from_methodspec): Use `context->container' when
13376         parsing the `gmethod->inst'.
13377
13378 2005-06-17  Martin Baulig  <martin@ximian.com>
13379
13380         * class.c (mono_type_get_name_recurse): Don't add the assembly
13381         name for type arguments.
13382
13383 2005-06-15  Martin Baulig  <martin@ximian.com>
13384
13385         * reflection.c (mono_image_get_inflated_method_token): Encode
13386         correct klass; fixes #75260.
13387
13388 2005-06-13 Michal Moskal <malekith@nemerle.org>
13389
13390         * icall.c: Make GetCorrespondingMethod/Constructor take
13391         MonoReflectionMethod method not MonoMethod. Removed
13392         MonoType.GetCorrespondingField, and make
13393         MonoGenericType.GetCorrespondingField take name not
13394         MonoClassField.
13395
13396 2005-06-13  Michal Moskal <malekith@nemerle.org>
13397
13398         * reflection.c (field_encode_signature, encode_locals):
13399          Make sizes of buffers for types larger (for big generic types).
13400          (create_generic_typespec,
13401          mono_reflection_sighelper_get_signature_local,
13402          mono_reflection_sighelper_get_signature_field):
13403          Add asserts for too small buffers.
13404
13405 2005-06-15  Martin Baulig  <martin@ximian.com>
13406
13407         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
13408         if our parent is not a dynamic type.
13409
13410 2005-06-15  Martin Baulig  <martin@ximian.com>
13411
13412         * class-internals.h (MonoTypeNameFormat): New enum.
13413
13414         * class.c
13415         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
13416         (mono_type_get_full_name): Removed.
13417         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
13418         argument instead of the boolean's.
13419
13420         * icall.c (ves_icall_System_MonoType_getFullName):
13421         Added `gboolean assembly_qualified'.    
13422
13423         * reflection.h
13424         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
13425
13426         * reflection.c (mono_reflection_parse_type): Parse the new type
13427         name format.
13428
13429 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13430
13431         * icall.c: no need to convert from utf16 to utf8 and then back again
13432         after the call to GetLogicalDrives.
13433
13434 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13435
13436         * icall.c: frombase64. Fix problems exposed by new tests.
13437
13438 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13439
13440         * icall.c: added internal calls for converting char [] and strings in
13441         base64 into byte [].
13442
13443 2005-06-10  Martin Baulig  <martin@ximian.com>
13444
13445         * class.c (mono_class_create_generic_2): Read the nested classes
13446         from the metadata rather than from `gklass->nested_classes' since
13447         `gklass' might not be initialized yet.
13448
13449 2005-06-09  Duncan Mak  <duncan@novell.com>
13450
13451         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
13452         all public headers. Fixes #74919.
13453
13454 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
13455
13456         * domain.c: The key for proxy_vtable_hash is now a pointer
13457         array. Added new GHashFunc and GCompareFunc functions for this.
13458
13459         * class.h: The list of interfaces in MonoRemoteClass is known in
13460         advance and can't grow (we create a new MonoRemoteClass if needed),
13461         so now the interface array can be allocated together with
13462         MonoRemoteClass.
13463         
13464         * object.c: Added a new method create_remote_class_key.
13465         Fixed mono_remote_class so it does not depend on
13466         mono_upgrade_remote_class.
13467         Removed extend_interface_array.
13468         Added new method clone_remote_class(), which makes a copy of a remote
13469         class and adds a new interface or class to it.
13470         mono_upgrade_remote_class() now creates a new remote class (or gets
13471         it from the cache) if an vtable upgrade is needed. In this way
13472         we make sure that other objects sharing the same remote class
13473         don't get the new vtable with unwanted interfaces.
13474         
13475         * object-internals.h:
13476         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
13477         
13478         * marshal.c: Track changes in mono_upgrade_remote_class().
13479
13480 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
13481         * icall.c: Add runtime methods for obtaining members of inflated
13482         class, which were created from supplied non-inflated members. It
13483         is used in internal Get{Method,Constructor,Field} methods in
13484         System.Type
13485
13486 2005-06-09  Martin Baulig  <martin@ximian.com>
13487
13488         * reflection.c
13489         (mono_reflection_bind_generic_method_parameters): Fix #75169.
13490
13491 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13492         * reflection.c (mono_image_basic_init): Define
13493         Version in MonoDynamicAssembly. 
13494         
13495 2005-06-08  Martin Baulig  <martin@ximian.com>
13496
13497         Fix #75136.
13498
13499         * loader.c
13500         (mono_method_signature_full): New public method; takes a
13501         `MonoGenericContext *'.
13502         (find_method): Use mono_method_signature_full() and pass the
13503         klass'es context to it.
13504
13505         * class.c (mono_class_is_inflated_method): Use
13506         mono_method_signature_full() and pass the context to it.
13507
13508 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
13509
13510         * object.c: add proper locking in mono_remote_class_vtable(),
13511         fixes possible memory corruption.
13512
13513 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
13514
13515         * marshal.c (mono_remoting_marshal_init): set
13516         initialized after initialization.
13517
13518 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
13519
13520         * locales.c : hush.
13521
13522 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
13523
13524         * object.c (extend_interface_array): fix really silly
13525         memory corrupting / comparison bug.
13526
13527 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13528
13529         * reflection.c: Functions added to support the creation
13530         of CustomAttributeData, which includes Attribute data
13531         used by ReflectionOnly methods.
13532
13533         * reflection.h:  mono_reflection_get_custom_attrs_data and
13534          mono_custom_attrs_data_construct added (functions exposed).
13535
13536          * icall.c: Added mono_reflection_get_custom_attrs_data
13537          as icall.
13538         
13539 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
13540
13541         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
13542         lupus's request.
13543
13544 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
13545
13546         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
13547
13548         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
13549         dynamic DllImportAttribute.
13550
13551         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
13552         dynamic DllImportAttribute.
13553
13554         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
13555         Fixes #75162.
13556
13557 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13558
13559         * threads.c: avoid segfault when an unstarted thread is aborted.
13560
13561 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
13562
13563         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
13564         Returns the name and version of the runtime for reporting.
13565
13566 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13567
13568         * appdomain.c: bump corlib version.
13569         * object-internals.h: new field in MonoReflectionAssembly.
13570
13571 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13572
13573         * object-internals.h: Carlos forgot to add this field.
13574
13575 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13576
13577         * icall.c: Added create_version to create instances
13578         of Version of MonoReflectionAssemblyName. This change helps
13579         the AssemblyName tests to keep running fine.
13580         
13581 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
13582   
13583         * object.c (mono_method_return_message_restore): A somehow less
13584         intrusive fix for #75138.
13585
13586 2005-06-03  Raja R Harinath  <rharinath@novell.com>
13587
13588         * object.c (mono_method_return_message_restore): Fix computation
13589         of expected number of out args.
13590
13591 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
13592
13593         * reflection.c (mono_image_get_method_info): Fix the case when the
13594         charset is empty.
13595
13596 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
13597
13598         * object.c: Added missing null check in
13599           mono_method_return_message_restore.
13600
13601 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
13602
13603         * reflection.c (mono_image_get_method_info): Handle the case when
13604         dllentry is empty.
13605
13606 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
13607
13608         * object.c: When creating the vtable for a proxy, take into account
13609         all inherited interfaces, not only the ones registered in
13610         iclass->interfaces. This fixs bug #74996.
13611         Also, in mono_method_return_message_restore, verify that the array
13612         of out args has the expected lengh.
13613
13614 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13615
13616         * socket-io.c: update the timeout in Poll when the call is interrupte.
13617
13618 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13619
13620         * socket-io.c: support abort/suspend in Select_internal after last
13621         change.
13622
13623 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13624
13625         * threadpool.c: remove warning.
13626
13627 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13628
13629         * icall.c:
13630         * socket-io.[ch]: Select_internal uses poll() now when available, thus
13631         removing the 1024 limit from select(). Runtime part of the fix for
13632         bug #71203.
13633
13634 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13635
13636         * socket-io.c: when resolving the addresses for the same
13637         host returned by gethostname(), get the local IPs from the interface
13638         list. Loopback addresses are discarded if the are interfaces up with
13639         non-loopback ones. Fixes bug #63265.
13640
13641 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
13642
13643         * appdomain.c, verify.c, object-internals.h, reflection.c:
13644         bumped corlib number to 36, and added new extra_flags field
13645         to ReflectionMethodBuilder and friends.  Fixes #75060.
13646
13647 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
13648
13649         * gc.c: register a new weak link only if the object is non-null
13650         (fixes bug#75047).
13651
13652 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
13653
13654         * culture-info.h : short time pattern too.
13655
13656 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
13657
13658         * culture-info.h : expand long time pattern string length.
13659
13660 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
13661
13662         * culture-info-table.h : update (more French date format; #72788).
13663
13664 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
13665
13666         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
13667         the method is static. Fixes #75029.
13668
13669 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
13670
13671         * reflection.c: Update the table_idx field of method builders after
13672         saving the module, since it can change. This is a workaround for
13673         bug #74914. 
13674
13675 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
13676
13677         * culture-info-table.h : update (additional French date format).
13678
13679 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
13680
13681         * icall.c (ves_icall_type_Equals): Revert last change.
13682         
13683         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
13684
13685         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
13686
13687 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
13688
13689         * class-internals.h: Added executioncontext_class field to 
13690         MonoDefaults structure.
13691         * domain.c: Cache System.Threading.ExecutionContext class in 
13692         mono_defaults.
13693         * object.c: Capture the ExecutionContext for asynchroneous calls in
13694          mono_async_result_new.
13695         * object-internals.h: Added execution_context and original_context 
13696         fields to MonoAsyncResult. Added execution_context to MonoThread.
13697         * security-manager.c|.h: Added mono_get_context_capture_method to 
13698         return the capture method (if required by the security manager or by
13699         the framework version used).
13700         * threadpool.c: Apply capture (if present) ExecutionContext in 
13701         mono_async_invoke and revert to original context after it completes.
13702
13703 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
13704
13705         * culture-info-table.h : updated (real hacky solution for zh-CHT).
13706
13707 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
13708
13709         * culture-info-table.h : zh-CHT related workaround.
13710
13711 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
13712
13713         * marshal.c (emit_marshal_custom): Add some error checking and call the
13714         methods in the ICustomMarshaler interface. Fixes #74875.
13715         
13716         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
13717         native->managed wrappers.
13718
13719 2005-05-12  Martin Baulig  <martin@ximian.com>
13720
13721         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
13722         here and use the loader lock.
13723
13724         * mono-debug.c: Properly lock when the debugger is not attached.
13725         (mono_debug_init): Release the initial lock if we're not running
13726         in the debugger.
13727
13728 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
13729
13730         * marshal.c (emit_marshal_custom): Pass through NULL values without
13731         calling the custom marshalling routines.
13732
13733         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
13734         conversion in structures. Fixes #74882.
13735
13736 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
13737
13738         * culture-info-table.h : zh-* cultures were missing.
13739
13740 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
13741
13742         * threads.c: Added a new event background_change_event which is signaled
13743         when a thread changes its background mode.
13744         Moved here several checks previously done in managed code. The checks
13745         require the thread lock, and using the thread lock in managed code
13746         can result in deadlocks.
13747         Merged Start_internal and Thread_internal into a single method. Now 
13748         Thread_internal does all work of creating and starting a thread.
13749         Added icalls for setting and getting the state of the object. Moved from
13750         managed code to avoid locking there.
13751         Added wait_for_tids_or_state_change() which is called instad of
13752         wait_for_tids when waiting for non-backround threads to end. This method
13753         will return if one of the threads ends or the background_change_event
13754         is signaled.
13755         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
13756         the background mode. This method signals the background_change_event
13757         event.
13758         * icall.c:
13759         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
13760         removed Start_internal.
13761         
13762 2005-05-11  Martin Baulig  <martin@ximian.com>
13763
13764         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
13765         to order of some fields to get proper alignment on 64-bit machines.
13766
13767 2005-05-11  Martin Baulig  <martin@ximian.com>
13768
13769         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
13770         changes as they're broken and completely fuck up the debugger.
13771
13772         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
13773
13774 2005-05-10  Martin Baulig  <martin@ximian.com>
13775
13776         * reflection.c (mono_reflection_generic_class_initialize): Don't
13777         call mono_class_setup_parent() here.
13778
13779 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13780
13781         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
13782         send/receive timeout use an integer in milliseconds. We were using a
13783         struct timeval.
13784
13785 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13786
13787         * locales.c:
13788         (internal_get_cultures): reserve the first slot of the array for the
13789         InvariantCulture, which will be filled in managed code.
13790
13791 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
13792
13793         * reflection.c (mono_image_fill_module_table): Initialize the
13794         GENERATION field as well.
13795
13796 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13797
13798         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
13799         Monitor.Enter on the object.
13800
13801 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
13802
13803         * threads.c: Enable the wait for running threads when exiting.
13804         * icall.c: Suspend all threads before exiting.
13805
13806 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
13807
13808         * assembly.c (mono_assembly_load_reference): Fix warning.
13809
13810 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13811
13812         * threadpool.c: changed the default number of threads per cpu. From now
13813         on, the default will be 20 + (5 * number of cpus) instead of 50.
13814
13815 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
13816
13817         * loader.c (mono_method_get_signature_full): Add locking here.
13818
13819 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
13820
13821         * appdomain.c: Moved methods for parsing and freeing assembly
13822         names to assembly.c.
13823         * assembly.c, domain-internals.h: Created public methods for parsing
13824         assembly names. Fixed mono_assembly_load_with_partial_name:
13825         it now finds the best match, taking into account the version,
13826         token and culture specified in the partial name. Also return
13827         the latest version if no version information is specified.
13828
13829 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
13830
13831         * threadpool.c: replace check for SocketAsyncCall class.
13832
13833 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13834
13835         * threadpool-internals.h:
13836         * Makefile.am: added threadpool-internals.h
13837
13838         * threadpool.c: call mono_unhandled_exception on exceptions not handled
13839         that happen in threadpool threads (tested on MS).
13840         (mono_thread_pool_remove_socket): new function that dispatch any pending
13841         AIO call on a socket that is closing. By now only epoll really needs it,
13842         as select/poll wake up when the socket closes.
13843
13844
13845         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
13846
13847 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
13848
13849         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
13850
13851 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
13852
13853         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
13854
13855 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
13856
13857         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
13858         has an abort request, convert it into a suspend request.
13859
13860 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
13861
13862         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
13863         warning for the usage of `UnmanagedFunctionPointerAttribute' which
13864         is not supported yet.
13865
13866 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13867
13868         * image.c: register assemblies loaded from data (bundles) in the loaded
13869         assemblies hash. Fixes bug #74772.
13870
13871 2005-04-29  Martin Baulig  <martin@ximian.com>
13872
13873         * class.c (mono_type_get_name_recurse): Update to the new naming
13874         schema from the latest .NET 2.x beta2.
13875         (mono_class_setup_vtable_general): If we're a generic instance,
13876         copy the vtable from our generic type definition and inflate all
13877         the methods in it.
13878
13879         * loader.c (find_method): Update to the new naming schema from the
13880         latest .NET 2.x beta2.
13881
13882 2005-04-29  Raja R Harinath  <harinath@gmail.com>
13883
13884         * class.c (mono_class_init): Add a mono_loader_unlock to the
13885         #74734 fix.
13886
13887 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
13888
13889         * icall.c (ves_icall_System_Environment_Exit): Remove the 
13890         suspend_all_other_threads () call for the time being, since it can hang.
13891
13892         * threads.c (mono_thread_manage): Similarly, disable the waiting for
13893         the background threads to exit, since it can also hang.
13894
13895         * class.c (mono_class_init): Applied patch from Ankit Jain 
13896         (radical@gmail.com). Avoid pending init errors when a field refers
13897         to a nested class using a typeref. Fixes #74734.
13898
13899         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
13900         this for dynamic modules.
13901
13902 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13903
13904         * threads.c: don't wait for threads that are in the process of aborting
13905         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
13906         and waiting for background threads to finish. This makes xsp and
13907         mod-mono-server exit without random length delays and/or hangs.
13908
13909 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13910
13911         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
13912
13913 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
13914
13915         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
13916         dynamic types to prevent infinite loops. Fixes #74727.
13917
13918         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
13919         ..._is_assignable_to.
13920
13921 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
13922
13923         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
13924
13925 2005-04-25  Martin Baulig  <martin@ximian.com>
13926
13927         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
13928
13929         * domain.c
13930         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
13931
13932         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
13933
13934         * reflection.c (build_compressed_metadata): Set metadata header
13935         version to 2.0.
13936
13937 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
13938
13939         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
13940         number into an integral and a decimal part. Fixes #70473.
13941
13942         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
13943
13944 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
13945
13946         * culture-info-table.h : reflected the latest locale-builder output.
13947
13948 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13949
13950         * threadpool.c: check for SuspendRequested too when deciding if
13951         mono_thread_interruption_checkpoint should be called.
13952
13953 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13954
13955         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
13956         * threads.c: remove interruption_mutex and use Interlocked instead. When
13957         suspending all the threads, wait for all the suspended events at once.
13958         If we're shutting down and get an APC that is going to be queued,
13959         call mono_thread_execute_interruption immediately, as the thread might
13960         be sleeping on a pthread condition or mutex.
13961
13962         * icall.c: call mono_runtime_set_shutting_down before suspending the
13963         threads.
13964
13965         Fixes bug #74693. And now xsp is happier when exiting.
13966
13967 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
13968
13969         * loader.c (mono_stack_walk): Fix #74690.
13970
13971 2005-04-22  Martin Baulig  <martin@ximian.com>
13972
13973         * mono-debug.h (MonoDebugMethodJitInfo): Added
13974         `MonoDebugMethodJitInfo *jit'.
13975
13976         * mono-debug.c (mono_debug_read_method): Cache the
13977         MonoDebugMethodJitInfo in `address->jit'.
13978         (mono_debug_free_method_jit_info): New public method.
13979
13980 2005-04-22  Martin Baulig  <martin@ximian.com>
13981
13982         * class.c (mono_class_is_assignable_from): Disallow
13983         type parameter -> interface.
13984
13985 2005-04-21  Dick Porter  <dick@ximian.com>
13986
13987         * threads.c (mono_thread_create): Turn an assertion into an error.
13988
13989 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
13990
13991         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
13992         
13993         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
13994         Fix some gcc 4.0 warnings.
13995
13996 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
13997
13998         * file-io.c: fix alt dir separator char on unix systems
13999         and cleanup (fixes bug #71214).
14000
14001 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
14002
14003         * marshal.c: Use CALLVIRT instead of CALL when dispatching
14004         a call to a remote domain, since the method may be an
14005         interface method in the client domain. This fixes bug #74192.
14006
14007 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14008
14009         * threadpool.c: recv/send are now performed before going back to managed
14010         code to save one transition.
14011
14012 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14013
14014         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
14015
14016         * metadata/threadpool.c: removed hack to workaround the bug above.
14017
14018         Fixes bug #74618.
14019
14020 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
14021
14022         * reflection.c reflection.h: Fix handling of parameter defaults in
14023         dynamic methods. Also fixes handling of parameter attributes.
14024         Fixes #74609.
14025
14026         * mono-debug.c (mono_debug_close_image): Fix warning.
14027
14028 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14029
14030         * socket-io.h: replaced old unused field with new 'blocking'.
14031         * threadpool.c: restore socket blocking state on windows(tm).
14032
14033 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
14034
14035         * icall.c: don't return the codebase in the AssemblyName[] returned by
14036         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
14037         * object-internals.h: Removed FIXME (fields were presents) and fixed
14038         versioncompat declaration.
14039
14040 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14041
14042         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
14043         not closed, so don't cleanup when it happens.
14044
14045 2005-04-13  Chris Toshok  <toshok@ximian.com>
14046
14047         * mono-debug-debugger.h: change prototype for
14048         mono_debugger_lookup_type.
14049
14050         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
14051         this function, although it should probably be named
14052         mono_debugger_init_type.
14053
14054 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14055
14056         * threadpool.c: fix non-AIO case.
14057
14058 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
14059
14060         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
14061         the built-in profiler to measure just JIT compilation times.
14062
14063 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14064
14065         * threadpool.c: the epollfd might be closed by another thread at
14066         any time, so ignore EBADF at treat it as a "we're closing" sign.
14067
14068 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14069
14070         * threadpool.c: release the semaphores with a count equals to the number
14071         of working threads in both IO and regular pools. Fixed typo that messed
14072         up the count of IO pool threads. Don't initialize the pipe handles if
14073         we're using epoll.
14074
14075 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14076
14077         * threadpool.c: some systems don't like a NULL when deleting the socket
14078         from epoll.
14079
14080 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14081
14082         * threadpool.c: fix semaphore allocation.
14083
14084 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14085
14086         * threadpool.c: added epoll() based implementation for asynchronous IO
14087         that is used instead of the default poll() when available.
14088         It can be disabled by setting MONO_DISABLE_AIO.
14089
14090 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14091
14092         * threadpool.c: windows needs 'closesocket' and instead of returning
14093         0 when the stream is closed while in select, it returns -1. Fixes bug
14094         #74573.
14095
14096 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
14097
14098         * class.c (class_compute_field_layout): Fix the regression caused by
14099         the previous try.
14100
14101 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14102
14103         * threadpool.c: separate pool for socket async. IO.
14104         * threadpool.h: mono_max_worker_threads is not a global any more.
14105
14106 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
14107
14108         * class.c (class_compute_field_layout): Fix #74549.
14109
14110 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14111
14112         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
14113         use 2 connected sockets instead.
14114
14115 2005-04-08  Miguel de Icaza  <miguel@novell.com>
14116
14117         * mono-config.c: Add new entry point for mkbundle
14118         mono_config_parse_memory. 
14119
14120 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14121
14122         * threadpool.c: removed another unused function.
14123
14124 2005-04-08  Ankit Jain  <radical@corewars.org>
14125
14126         * reflection.c (get_default_param_value_blobs): Add 'types'
14127         parameter to get the types encoded in the constant table.
14128         (mono_param_get_objects): Use the type from the constant table,
14129         not the type of the parameter, when creating default values.
14130         Handle null default values correctly.
14131
14132 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14133
14134         * file-io.c:
14135         * file-io.h:
14136         * threadpool.c:
14137         * threadpool.h:
14138         * icall.c:
14139         * socket-io.c: removed dead code for async IO.
14140
14141 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14142
14143         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
14144
14145         * threadpool.c: intercept socket async. calls and pass them to a thread
14146         that is polling and dispatching the job items to the threadpool as
14147         socket become ready. Fixes bugs #71217, #71933.
14148
14149         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
14150         between char and short/ushort arrays.
14151
14152         * socket-io.c: remove dead code.
14153
14154 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
14155
14156         * locales.c,
14157           icall.c : removed InternalToUpper_Comp() and
14158           InternalToLower_Comp().
14159
14160 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
14161
14162         * char-conversions.h : The tables were incorrectly generated. Should
14163           be generated against invariant culture.
14164
14165 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
14166
14167         * object.c (mono_runtime_invoke_array): Fix return value when 
14168         passing pre-created valuetype objects to ctors.
14169
14170         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
14171         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
14172         Fixes #74338.
14173
14174 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
14175
14176         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
14177         only used with --security and hides the wrong corlib version error.
14178
14179 2005-03-30  Joshua Tauberer  <tauberer@for.net>
14180
14181         * class.c: Changed mono_class_name_from_token so that types
14182         outside of a namespace don't have an initial period.  Improved
14183         the g_warning message used in _mono_class_get when loading
14184         fails.
14185         * assembly.c: In mono_assembly_load_reference, when an assembly
14186         can't be found, "No such file or directory" is misleading and
14187         unhelpful because a few paths were checked for the presence of
14188         the assembly.  When that happens (ENOENT), display a nicer
14189         message indicating the directories that were searched.  In all
14190         cases, the warning is made easier to read for non-hackers.
14191
14192 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
14193
14194         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
14195         project/solution.
14196         * appdomain.h|domain.c: Removed inline from functions.
14197         * appdomain.c: Reduced warnings when compiling on windows.
14198         * icall.c: Fixed output_debug declaration to gunichar2*.
14199         * mono-config.c: Reduced warnings when compiling on windows.
14200         * rand.c: Added missing "windows.h". Added missing return value.
14201         * rawbuffer.c: Added missing winsock2.h for windows.
14202         * sysmath.h: Added mono-compiler.h header to allow/ease 
14203         compilation with non-GCC compilers.
14204         * threads.c: Fixed declarations to compile with VS.NET C compiler.
14205         Removed cast warnings.
14206
14207         Adapted from the work of J Lothian (for VC6).
14208
14209 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
14210
14211         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
14212         from default_path.
14213
14214 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
14215
14216         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
14217         the 2.0 profile.
14218
14219 2005-03-27  Raja R Harinath  <harinath@gmail.com>
14220
14221         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
14222         has to be in $(exec_prefix).  $(prefix) is for arch-independent
14223         stuff, and it would probably use $(prefix)/share rather than
14224         $(prefix)/lib.
14225
14226 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14227
14228         * console-io.c: added 2 includes that might be missing.
14229
14230 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
14231
14232         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
14233         profile.
14234
14235         * reflection.c (create_custom_attr): Allocate the params array using
14236         alloca so it gets GC tracking.
14237
14238 2005-03-23  Chris Toshok  <toshok@ximian.com>
14239
14240         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
14241         out some spew.
14242
14243 2005-03-24  Raja R Harinath  <rharinath@novell.com>
14244
14245         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
14246         changes to pick up any changes in prefix, etc.
14247
14248 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
14249
14250         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
14251         
14252         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
14253         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
14254
14255 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
14256
14257         * class-internals.h object-internals.h class.c reflection.c: Extend the
14258         mono_lookup_dynamic_token () function to return the class of the
14259         token as well. 
14260
14261         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
14262         well. Fixes #73848.
14263
14264 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
14265
14266         * security-manager.c: Skip inheritance checks for intra-corlib
14267         class inheritance and method overrides. This skips a lot of checks
14268         and (anyway) permissions cannot work until corlib is loaded.
14269
14270 2005-03-23  Martin Baulig  <martin@ximian.com>
14271
14272         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
14273         MONO_TYPE_GENERICINST.  
14274
14275 2005-03-23  Martin Baulig  <martin@ximian.com>
14276
14277         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
14278
14279 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
14280
14281         * class.c: added locking comments to some functions.
14282         Cache the interface offsets arrays (saves about 20 KB
14283         of runtime memory in a typical app).
14284         Reduce the time overhead in mono_class_setup_supertypes ().
14285
14286 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
14287
14288         * icall.c: speedup and fix leaks in GetMethodsByName and
14289         GetPropertiesByName.
14290
14291 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
14292
14293         * reflection.c: some locking fixes.
14294
14295 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
14296
14297         * metadata.c: added missing break in case statement.
14298
14299 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
14300
14301         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
14302         typedbyref return values. Fixes #73941.
14303
14304 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
14305
14306         * security-manager.c|h: Added demandunmanaged method and 
14307         suppressunmanagedcodesecurity class to MonoSecurityManager.
14308         Renamed aptc class to allowpartiallytrustedcallers.
14309
14310 2005-03-17  Martin Baulig  <martin@ximian.com>
14311
14312         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
14313
14314 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14315
14316         * file-io.c: disabled file async. IO using aio_*. It uses the
14317         threadpool now. Workaround for bug #73718.
14318
14319 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
14320
14321         * assembly.h, mono-config.c: added code to deal with bundled configs
14322         for bundled assemblies.
14323
14324 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
14325
14326         * *.c, private.h: cleanup, removing old private.h header file.
14327
14328 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
14329
14330         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
14331         and throw_on_unmappable_char attributes.
14332
14333 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
14334
14335         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
14336         _ProcessName_internal.
14337
14338 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
14339
14340         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
14341         #73631.
14342
14343         * icall.c threads.c threads-types.h: Remove slothash icalls as they
14344         are no longer used.
14345
14346 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
14347
14348         * object.c (compute_class_bitmap): Add support for generics. Fixes
14349         #73527.
14350
14351 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
14352
14353         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
14354
14355 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14356
14357         * filewatcher.c: commented out the code for windows watcher, as we don't
14358         use it (we use the managed implementation instead).
14359
14360 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
14361
14362         * object-internals.h (MonoThread): Remove 'unused1' field.
14363
14364         * appdomain.c: Bump corlib version.
14365
14366         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
14367
14368         * reflection.c (mono_reflection_create_runtime_class): Remove the
14369         AssemblyBuilder.Save optimization since it causes too many problems.
14370
14371 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
14372
14373         * exception.c|h: Added mono_get_exception_reflection_type_load to
14374         create a ReflectionTypeLoadException object.
14375         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
14376         to return NULL is a InheritanceDemand fails during reflection. Updated
14377         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
14378         ReflectionTypeLoadException if an InheritanceDemand fails during 
14379         reflection. Added icall mapping for GetLinkDemandSecurity.
14380         * security-manager.c|h: Added ves_icall_System_Security_
14381         SecurityManager_GetLinkDemandSecurity internal call to return the
14382         class and methods permissions set for a LinkDemand. Removed unused
14383         fields in MonoSecurityManager.
14384
14385 2005-03-10  Martin Baulig  <martin@ximian.com>
14386
14387         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
14388         it's a generic instance.
14389
14390 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
14391
14392         * reflection.c (mono_get_object_from_blob): Applied patch from
14393         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
14394
14395         * class.c (mono_class_is_assignable_from): Another try at fixing 
14396         #73469 without breaking anything.
14397
14398 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
14399
14400         * class.c: (mono_class_is_assignable_from): Revert the last changes
14401         since they don't work with generics.
14402         
14403         * class.c (mono_class_is_assignable_from): Fix build bustage.
14404
14405         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
14406         the managed IsAssignableFrom method. Fixes #73469.
14407
14408         * reflection.c (mono_reflection_call_is_assignable_from): New helper
14409         function.
14410
14411 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
14412
14413         * object.c (mono_load_remote_field_new): Fix returning uninitialized
14414         memory when the remoting callback does not sets the out arguments.
14415         Fixes #73007.
14416
14417         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
14418         by mistake.
14419
14420         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
14421
14422         * object-internals.h (MonoStackFrame): Sync with managed object layout.
14423
14424         * appdomain.c: Bump corlib version.
14425
14426 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
14427
14428         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
14429         function.
14430
14431         * threads.c (mono_thread_attach): Detect threads which are not started
14432         by the GC pthread wrappers.
14433
14434 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
14435
14436         * icall.c: Added new icall for RNG.
14437         * rand.c|h: Added new icall to open the RNG. This allows to share a 
14438         single handle on Linux to access /dev/urandom and fix #73183.
14439
14440 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
14441
14442         * object.c: setting the new vtable in a transparent proxy object must
14443         not change the GC descriptor.
14444
14445 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
14446
14447         * object.c: fixed compilation without GCJ support.
14448         * reflection.c: for runtime-created types ensure klass->has_references
14449         is correct (bug #73215).
14450
14451 2005-03-02  Martin Baulig  <martin@ximian.com>
14452
14453         * class.c (mono_class_is_assignable_from): Make this work if
14454         `oklass' is a generic instance; fixes #72831.
14455
14456 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
14457
14458         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
14459         with hasthis set.
14460         
14461         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
14462
14463         * marshal.c: Reorganize native->managed marshalling code to also use
14464         the emit_marshal_... functions.
14465
14466 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
14467
14468         * object.c: typed allocs have issues with bitmap sizes > 30,
14469         so check for max_set >= 30.
14470
14471 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
14472
14473         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
14474         managed code. Fixes #73012.
14475
14476         * metadata.h (MonoMarshalSpec): Add elem_mult field.
14477
14478         * metadata.c reflection.c: Load/Emit elem_mult as well.
14479         
14480         * metadata.h (MonoMarshalSpec): Add comment.
14481
14482         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
14483
14484         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
14485         num_elem to -1 if not given.
14486
14487         * object-internals.h (MonoReflectionMarshal): Add has_size field.
14488
14489         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
14490         given values.
14491
14492 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
14493
14494         * null-gc.c (mono_gc_free_fixed): Was not compilable.
14495
14496 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
14497
14498         * reflection.c (encode_marshal_blob): Encode param_num field as well.
14499
14500         * object-internals.h (MonoReflectionMarshal): Add param_num field.
14501
14502 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
14503
14504         * object.c: generalized the reference bitmap creation
14505         and added hooks for the new GC.
14506         * class-internals.c: removed the gc_bitmap field from MonoClass.
14507
14508 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14509
14510         * domain.c: help the compiler to produce better code
14511         in mono_jit_info_table_find ().
14512
14513 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
14514
14515         * object.c: make all allocations look typed.
14516
14517 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14518
14519         * socket-io.c: load Mono.Posix if it's not loaded already
14520         (fixes bug#73033).
14521
14522 2005-02-24  Martin Baulig  <martin@ximian.com>
14523
14524         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
14525         * reflection.c (dup_type): Likewise.
14526
14527 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
14528
14529         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
14530         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
14531
14532 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
14533
14534         * domain.c, threads.c, object-internals.h: make the critical thread
14535         local vars use the fast access mode (even when we're compiled in
14536         a lib). Provide accessors to be used by the jit during codegen.
14537
14538 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14539
14540         * appdomain.c: Changed hook functios behavior to include
14541         support for the reflection only assemblies. Some icalls were changed
14542         to support the mentioned assemblies too. Signatures of static methods
14543         try_assembly_resolve and real_load now have an additional parameter:
14544         refonly.
14545
14546         * assembly.c: General changes to mono_assembly_ methods to support
14547         reflection only api. Functions mono_assembly_open, mono_assembly_load,
14548         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
14549         suffix, to support an additional gbool parameter to specify whether
14550         the assembli is reflection only or not. Created some new hook functions 
14551         to add support for reflection only assemblies. Signatures of static 
14552         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
14553         have now an additional parameter: refonly.
14554
14555         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
14556         indicating whether the assembly is reflection only or not.
14557
14558         * exception.c: Add mono_get_exception_invalid_operation.
14559
14560         * icall.c: Throw an InvalidOperationException when trying to invoke
14561         a property/method/event, or trying to set/get the value of a field.
14562         Also add an icall to retrieve the ref_only flag to the
14563         MonoReflectionAssembly.
14564
14565 2005-02-23  Chris Toshok  <toshok@ximian.com>
14566
14567         Part of fix for #72827.
14568         * mono-debug.c (mono_debug_add_method): add lexical block data to
14569         the info we write.  Kind of a hack at the moment - we copy the
14570         lexical block info from the MonoDebugMethodInfo to the
14571         MonoDebugMethodJitInfo here, before writing it.
14572         (mono_debug_read_method): read the lexical block info.
14573
14574         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
14575
14576         * debug-mono-symfile.h: add lexical block support.
14577
14578         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
14579         support.
14580
14581 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
14582
14583         * loader.c (mono_lookup_pinvoke_call): Fix warning.
14584
14585         * object.c (mono_runtime_free_method): Call mono_free_method () and
14586         put the TODOs there.
14587
14588         * loader.c (mono_free_method): Free up most memory allocated for 
14589         dynamic methods.
14590
14591 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
14592
14593         * reflection.c: properly flag a Type argument to a
14594         named custom attr value (bug #72248).
14595
14596 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
14597
14598         * reflection.c: reduce code duplication in named custom
14599         attribute encoding.
14600
14601 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
14602
14603         * reflection.c: properly encode custom attrs of type object
14604         (bug #72649).
14605
14606 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
14607
14608         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
14609
14610 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
14611
14612         * socket-io.c: load System.dll if it's not loaded already
14613         (bug #72850 and #70477).
14614
14615 2005-02-21  Martin Baulig  <martin@ximian.com>
14616
14617         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
14618         generic instances.
14619
14620 2005-02-21  Martin Baulig  <martin@ximian.com>
14621
14622         * reflection.c (mono_image_build_metadata): We also need to
14623         "fixup" the MethodImpl table after we computed the final method
14624         indices.  Call fixup_methodimpl() to do that.
14625         (fixup_methodimpl): New private method.
14626
14627 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
14628
14629         * assembly.c: special case mscorlib.dll (bug#72536),
14630         patch from Carlos Alberto Cortez.
14631
14632 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
14633
14634         * threads-types.h threads.c: Fix build bustage.
14635
14636         * threads.c: Use a union for long<->double conversions.
14637
14638         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
14639         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
14640
14641         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
14642         containing the checkpoint call with NOT_TAKEN.
14643         
14644         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
14645         checkpoint before pushing the arguments, so they won't have to be
14646         spilled to stack.
14647
14648 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
14649
14650         * domain.c, assembly.c, domain-internals.h: make some data
14651         const and relocation-free.
14652
14653 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
14654
14655         * object.c, appdomain.c, class-internals.h: introduce the
14656         MonoClassRuntimeInfo structure to hold the info needed to
14657         use a class at runtime. Made mono_class_vtable() lock-free
14658         for all the appdomains.
14659
14660 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
14661
14662         * metadata-internals.h, image.c: introduce a per-image mempool to
14663         be used for memory that has the same lifetime as the image.
14664
14665 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
14666
14667         * domain.c: In mono_init_internal(), instead of selecting the first
14668         runtime version supported by an executable, get a list of all
14669         supported versions and select the one for which an mscorlib exists
14670         (since even if the runtime supports a given version, it doesn't mean
14671         that the framework for that version is installed).
14672         Modified get_runtimes_from_exe to support this behavior.
14673         In supported_runtimes, added information about additional system
14674         assembly versions.
14675         
14676         * assembly.c: Added support for more than one system assembly version
14677         per runtime version. Updated the assembly list.
14678         In mono_assembly_remap_version, removed the initial version check,
14679         since we don't know to which version we need to compare until we
14680         get the version set on which the assembly is based.
14681         Moved the code for loading corlib into the new method
14682         mono_assembly_load_corlib(), so it can be used by the initialization
14683         code.
14684         
14685         * domain-internals.h: Updated data structures and added declaration
14686         for mono_assembly_load_corlib.
14687
14688 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
14689
14690         * reflection.c (resolve_object): Fix the creation of the signature in 
14691         the SignatureHelper case.
14692
14693         * assembly.c (mono_assembly_remap_version): Fix binary search.
14694         
14695 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
14696  
14697         * class.c: Added inheritance check when a method is overloaded (from a
14698         virtual method or when implementing an interface) and when a class is
14699         inherited. Added functions to set a failure for a class and to 
14700         retreive the exception from a failure.
14701         * class-internals.h: Added fields to MonoClass to keep the exception
14702         information status for inheritance (or other exceptions) to be thrown
14703         later (i.e. not at load time).
14704         * object.c: Throw the inheritance SecurityException when a type is to 
14705         be created with either class or method inheritance violations.
14706         * reflection.c|h: Fix when getting declsec from a class. Removed 
14707         unrequired code for class. Improved sanity in parameter naming.
14708         * security-manager.c|h: Added functions to check for class and method
14709         inheritance.
14710
14711 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
14712
14713         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
14714         and has_finalize in dynamic types as well.
14715
14716 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
14717
14718         * culture-info-table.h : fixed currency format for en-GB (and so on).
14719
14720 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
14721
14722         * gc.c: ensure the GC handles never have 0 as a value.
14723
14724 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
14725
14726         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
14727         a pointer to a struct to unmanaged code. Fixes #72625.
14728
14729 2005-02-16  Martin Baulig  <martin@ximian.com>
14730
14731         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
14732
14733 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
14734
14735         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
14736
14737 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
14738
14739         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
14740
14741         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
14742         UnmanagedFunctionPointerAttribute, use it for determining calling convention
14743         etc. Fixes #71471.
14744
14745         * reflection.c (mono_custom_attrs_get_attr): New helper function.
14746
14747         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
14748
14749 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
14750
14751         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
14752         changes to make the current context a field in MonoThread.
14753
14754 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
14755
14756         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
14757         the last change.
14758         
14759         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
14760         extracted from mono_marshal_get_native_wrapper.
14761
14762         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
14763         to create wrappers around native functions.
14764
14765         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
14766         delegates for arbitrary function pointers. Fixes #71472.
14767
14768 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
14769
14770         * threads.c: cleaned up the code a little.
14771
14772 2005-02-15  Martin Baulig  <martin@ximian.com>
14773
14774         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
14775         the data table.
14776
14777         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
14778         allocate larger chunks if needed.
14779
14780 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
14781
14782         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
14783         in by mistake.
14784
14785 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
14786
14787         * domain.c: keep the domains in an array and ensure the domain ids
14788         are kept small, so they can be used as indexes to domain-specific data
14789         with a small memory overhead.
14790
14791 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
14792
14793         * icall.c: Handle byref types in Type icalls. Fixes #72544.
14794
14795 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
14796
14797         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
14798
14799 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
14800
14801         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
14802
14803         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
14804         values.
14805
14806         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
14807         
14808 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
14809
14810         * domain-internals.h: add the hashtable here.
14811
14812         * class-internals.h: Remove `info' from MonoMethod
14813
14814         * domain.c: Add a new hashtable, jit_trampoline_hash
14815
14816 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
14817
14818         * object.c: don't set the value of static fields
14819         (fixes bug#72494).
14820
14821 2005-02-11  Martin Baulig  <martin@ximian.com>
14822
14823         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
14824         (mono_debug_add_method): Silently ignore the method if it's too big.
14825         (mono_debug_add_type): Likewise.
14826
14827 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
14828
14829         * threads.c, appdomain.c: remove #ifdefs from the code.
14830
14831 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
14832
14833         * metadata-internals.h: Added flags to MonoAssembly to cache the most
14834         common security informations. This allows us to stay in unmanaged code
14835         when doing LinkDemand and it's special cases (except for the first 
14836         time for initialization). The flags a very much used with --security.
14837         * reflection.c|h: Added code to get declarative security attributes 
14838         for LinkDemand and InheritanceDemand. This required to refactor the
14839         existing code for Demand.
14840         * security-manager.c|h: Added new method fields for the special cases
14841         of LinkDemand.
14842
14843 2005-02-10  Martin Baulig  <martin@ximian.com>
14844
14845         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
14846         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
14847
14848 2005-02-10  Martin Baulig  <martin@ximian.com>
14849
14850         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
14851         debugging code; this is almost a complete rewrite.
14852
14853         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
14854
14855 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
14856
14857         * domain.c, object.h: expose mono_string_equal () and 
14858         mono_string_hash ().
14859         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
14860         it's implemented in managed code.
14861
14862 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
14863
14864         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
14865         lo leak objects between appdomains.
14866
14867 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
14868
14869         * assembly.c: old compilers compilation fix from 
14870         robertj@gmx.net (Robert Jordan).
14871
14872 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
14873
14874         * class-internals.h: Little reminder for the future.
14875
14876         * debug-helpers.c: Fix up wrapper_type_names
14877
14878 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
14879
14880         * image.c, metadata-internals.h: when loading an image from a file,
14881         mmap all of it and use the same codepaths as when using a
14882         in-memory image: the code is simpler and we use less memory
14883         (both writable and readonly).
14884
14885 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
14886
14887         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
14888         API to alloc runtime data structures that need to be tracked by the
14889         GC and contain pointers.
14890         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
14891         make the code more readable and eventually use a different GC.
14892
14893 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
14894
14895         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
14896         for out arguments.
14897         
14898 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
14899
14900         * object.c: In release_type_locks(), don't release the cctor lock
14901         if it has already been released. This fixes a crash in the
14902         thread5 test.
14903
14904 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14905
14906         * gc.c, marshal.c, icall.c: register a delegate for finalization
14907         only when the native function pointer has been allocated for it.
14908
14909 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
14910
14911         * object.c: cleaned up some code, allocate objects that are
14912         pointer free with the atomic malloc variant. Allocate memory
14913         for static data from the mempool if it's pointer-free.
14914         Allocate the bounds array at the end of the array data, when needed.
14915         * object-internals.h, object.h: move a private function in a private
14916         header.
14917         * class.c: handle missing case in tracking references in fields.
14918
14919 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
14920
14921         * class.c, class-internals.h: keep track if a type has
14922         reference fields in either the instance or static fields.
14923
14924 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
14925
14926         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
14927         and renamed to MonoRuntimeInfo. Added fields to store the expected
14928         framework assembly version. Changed mono_get_framework_version and
14929         mono_get_runtime_version for a single mono_get_runtime_info method.
14930         
14931         * assembly.c: Added method to remap system assembly versions to the
14932         current executing runtime version. Removed old mapping code.
14933         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
14934         
14935         * icall.c, reflection.c: Track api changes.
14936
14937 2005-02-06  Miguel de Icaza  <miguel@novell.com>
14938
14939         * loader.c (method_from_memberref): Improve error reporting,
14940         produce the class name instead of the typeref/typedef index. 
14941
14942 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
14943
14944         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
14945
14946 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
14947
14948         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
14949         stdcall and charset name mangling.  Reorganize the code and add
14950         some tracing stuff.
14951
14952 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
14953
14954         * monodiet.c: More iters!
14955
14956         * marshal.c: Iter usage.
14957
14958         * icall.c: Iter usage.
14959
14960         * object.c: Use iters.
14961
14962         * debug-helpers.c: More iters
14963
14964 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
14965
14966         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
14967         under win32.
14968
14969 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
14970
14971         * mono-debug-debugger.c: use iters
14972
14973         * class.c, class-internals.h: mono_class_setup_events is static
14974         now
14975
14976         * All callers: use iters
14977
14978 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
14979
14980         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
14981         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
14982
14983 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
14984
14985         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
14986
14987         * marshal.h: Add prototypes for ldfld/stfld_remote.
14988
14989         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
14990         this is called during startup.
14991         
14992 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
14993
14994         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
14995         MonoThreadsSync struct private in monitor.c. Changed the way
14996         MonoThreadsSync is allocated so it's faster and there is no
14997         need to keep track of it with a finalizer and it uses less memory.
14998         This also finally allows us to allocate mono objects as ptrfree when
14999         there are no reference fields.
15000
15001 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
15002
15003         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
15004         disappearing link to the GC interface and use them to simplify
15005         the gchandles code.
15006
15007 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
15008
15009         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
15010         stfld_remote which call mono_load/store_field_new. This allows methods
15011         calling ldfld/stfld wrappers to be AOTed.
15012
15013         * console-io.c: Include sys/filio.h under solaris.
15014         
15015         * console-io.c: Include curses.h if needed correctly.
15016
15017 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
15018         
15019         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
15020         method->klass as well.
15021
15022         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
15023
15024         * class.c (mono_class_init): Switch on lazy initialization of 
15025         methods.
15026
15027         * class.c (mono_class_get_finalizer): Handle the case when the 
15028         finalizer is inherited.
15029
15030 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15031
15032         * console-io.c: <curses.h> is needed by term.h on solaris.
15033
15034 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
15035
15036         * icall.c, class-internals.h, monodiet.c, class.c: Remove
15037         mono_class_setup_properties where possible. Remove this ftn from
15038         the header file, and make it static.
15039
15040 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
15041
15042         * loader.c: Add missing setup_... call.
15043
15044         * class.c: Add missing setup_... calls.
15045
15046         * class.c (mono_class_init): Switch on lazy initialization of 
15047         the generic vtable.
15048         
15049         * class.c (mono_class_init): Fix generics broken by the recent changes.
15050
15051         * monodiet.c (handle_type): Add missing setup_... calls.
15052
15053         * class.c: Back out garbage in previous patch.
15054         
15055         * class.c: Add missing setup_... calls.
15056
15057         * class.c (mono_class_get_method_from_name_flags): Avoid calling
15058         mono_class_setup_methods () if possible.
15059
15060         * class-internals.h (MonoClass): Add 'has_cctor' flag.
15061
15062         * class-internals.h (MonoCachedClassInfo): New structure.
15063
15064         * class.c: Initialize properties and events fields of MonoClass lazily.
15065
15066         * class.c: Add infrastructure for lazily initializing the methods and
15067         vtable fields of MonoClass. Not yet used.
15068
15069         * class.c (mono_class_get_finalizer): New helper function.
15070
15071         * class.c: Add infrastructure for loading some class related data from
15072         an AOT file.
15073
15074         * object.c: Add infrastructure for initializing the vtable from data
15075         in the AOT file.
15076
15077         * gc.c (run_finalize): Use mono_class_get_finalizer ().
15078
15079         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
15080         appropriate initialization function before accessing parts of the
15081         MonoClass structure.
15082
15083         * marshal.c: Fix warnings.
15084         
15085         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
15086
15087         * mono-debug-debugger.c (get_exception_message): Use 
15088         mono_class_get_method_from_name_flags ().
15089
15090 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
15091
15092         * reflection.c, appdomain.c: Replace a few manual searches that
15093         Zoltan missed. (Paolo approved this part of my initial patch).
15094
15095 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
15096
15097         * profiler.c: disable recording statistical events at report time.
15098
15099 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
15100
15101         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
15102         to byteswap arrays of enum values, too (bug #72080).
15103
15104 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
15105
15106         * appdomain.c (set_domain_search_path): Allow this to be called if
15107         domain->setup is not yet set.
15108
15109         * loader.c (mono_method_get_index): New helper function.
15110
15111         * loader.c reflection.c: Use mono_method_get_index ().
15112
15113         * class.c (mono_class_get_method_from_name_flags): New helper method.
15114
15115         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
15116         this.
15117
15118         * class.c (mono_class_get_cctor): New helper method.
15119
15120         * string-icalls.c object.c class.c marshal.c reflection.c: Use
15121         mono_class_get_method () to look up methods.
15122
15123 2005-02-01  Miguel de Icaza  <miguel@novell.com>
15124
15125         * console-io.c: Fix the build, this should work on Windows.
15126
15127 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
15128
15129         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
15130         be set to null to keep things valid
15131
15132 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15133
15134         * icall.c: added Console 2.0 icalls.
15135         * Makefile.am: added console-io.[ch]
15136         * console-io.[ch]: internal calls for Console 2.0 API.
15137
15138 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
15139
15140         * class.c: make sure we consider all the interfaces
15141         when calculating max_interface_id (bug found by
15142         Jeroen Frijters running ikvm).
15143
15144 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
15145
15146         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
15147         valuetype fields to null.
15148
15149         * object.c (set_value): Ditto. Fixes #71669.    
15150
15151 2005-01-31  Martin Baulig  <martin@ximian.com>
15152
15153         * metadata.c (mono_metadata_has_generic_params): New public
15154         function; checks whether something is a generic method.
15155
15156 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
15157
15158         * appdomain.c: fix infinite recursion when adding assemblies.
15159
15160 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
15161
15162         * object.c: Fix small typo to return all items for Environment.
15163         GetCommandLineArgs.
15164
15165 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
15166
15167         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
15168         reflection.c: more domain and assembly-unload related fixes
15169         and memory leaks plugs.
15170
15171 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
15172
15173         * 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.
15174
15175 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
15176
15177         * loader.c (mono_method_signature): Make this method lazy
15178         (mono_get_method_from_token): Don't computate the signature here.
15179
15180         Doing this saves quite a bit of memory. I got 90 kb on starting up
15181         monodoc. It should also save some disk reads on startup.
15182
15183         * *: MonoMethod->signature might be NULL now. You *MUST* use
15184         mono_method_signature.
15185
15186 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
15187
15188         * object.c (mono_runtime_get_main_args): Return an array from the
15189         current domain here. Fixes #71938.
15190
15191 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
15192
15193         * monitor.c: formatting changes to comply with the
15194         mono coding style and remove #ifdefs from the code.
15195
15196 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
15197
15198         * metadata.c, private.h: remove some unneeded data
15199         and use a more compact representation for table schemas.
15200
15201 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
15202
15203         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
15204         to get a better distribution in hash tables.
15205         * *.c: use mono_aligned_addr_hash() where appropriate.
15206         * assembly.c: make var static.
15207
15208 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
15209
15210         * domain-internals.h: Put MonoJitInfo on a diet.
15211
15212         * domain.c: Fix a warning.
15213
15214 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15215
15216         * gc.c: rework the gc handles code to reuse handles
15217         when freed.
15218
15219 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
15220
15221         * domain.c: fixed long standing bug in mono_string_equal() which
15222         was brought to light with the ldstr changes.
15223
15224 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
15225
15226         * reflection.c: Remove warning by adding missing include for marshal.h
15227
15228 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
15229
15230         * domain.c, object.c: change the ldstr_table to hold
15231         MonoString* as keys: makes the runtime isinterned lookup
15232         faster and simplifies memory management.
15233
15234 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
15235  
15236         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
15237         possible to add imperative security checks before calling the icall.
15238         * reflection.c: Return security attributes on the original MonoMethod
15239         (and not the wrapped one). This fix permissions on icalls.
15240
15241 2005-01-25  Dick Porter  <dick@ximian.com>
15242
15243         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
15244         the check for mktime() support actually test the mktime() return
15245         value.  "Fixes" bug 71682, though the output is still different to
15246         MS.
15247
15248 2005-01-25  Martin Baulig  <martin@ximian.com>
15249
15250         * class.c (mono_class_is_assignable_from): Make this work for
15251         generic instances.
15252
15253 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
15254
15255         * marshal.c (mono_string_utf8_to_builder)
15256         (mono_string_builder_to_utf16): We might not have ownership of the
15257         string. In thise case, we need to create a new buffer.
15258
15259         * object-internals.h (mono_stringbuilder_capacity): sb->str might
15260         be null, in which case, use the default capacity.
15261
15262 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
15263
15264         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
15265         GC events to the profiler.
15266
15267 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
15268
15269         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
15270         if you don't want the GC to run.
15271
15272 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
15273
15274         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
15275         start providing a GC API and keeping different implementations in
15276         their own file.
15277         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
15278
15279 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
15280
15281         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
15282         mmap rather than allocating a huge buffer.
15283         (mono_debug_close_mono_symbol_file): Free the buffer allocated
15284         above.
15285
15286 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
15287
15288         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
15289         and CheckExecutionRights.
15290         * reflection.c|h: Keep the index of the declarative security to be 
15291         used, instead of the pointer, when AOT compiler is used. Also add 
15292         class initialization when requesting demands.
15293         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
15294         CheckExecutionRights. Both properties are now FALSE by default, and
15295         unmodifiable, unless the --security option is used.
15296
15297 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
15298
15299         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
15300         reflection.c: properly refcount images and assemblies, many leaks fixed.
15301
15302 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15303
15304         * threadpool.c: increase the timeout for threads in the thread pool to
15305         10s.  Fixes bug #67159.
15306
15307 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
15308
15309         * class-internals.h: Sun's compiler insists on explicit
15310         signed on bit fields to handle then correctly.
15311
15312 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
15313
15314         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
15315         Make the size of the array fit only the number of invalid path
15316         chars that we have.
15317
15318         * class.c (_mono_class_get): Improve the error reporting when a
15319         class referenced is not found, to assist debugging. 
15320
15321 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
15322
15323         * threads.c: fix off-by-one error.
15324         * domain.c: free data allocated in the domain.
15325
15326 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
15327
15328         * reflection.c (mono_method_body_get_object): Fill out exception info
15329         as well.
15330
15331         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
15332         structure.
15333         
15334 2005-01-19  Martin Baulig  <martin@ximian.com>
15335
15336         * loader.c (mono_get_method_constrained): Make this work again.
15337
15338 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
15339
15340         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
15341         guint16 to match the managed side.
15342
15343         * reflection.c (mono_reflection_body_get_object): Fill out local
15344         variables array.
15345
15346         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
15347         as well.
15348
15349         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
15350         'local_var_sig_token'.
15351
15352 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
15353
15354         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
15355         System.Drawing.
15356
15357         * reflection.c (mono_method_body_get_object): Handle abstract and
15358         runtime methods.
15359
15360 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
15361
15362         * marshal.c, loader.c, class-internals.h, reflection.c:
15363         store the emthod data for a wrapper in an array instead of a list.
15364
15365 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
15366
15367         * marshal.c: change the code to allocate memory more
15368         conservatively for method wrappers.
15369
15370 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
15371
15372         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
15373         fields from MonoClass to the marshal info structure where they belong.
15374
15375 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15376
15377         * class.c, object.c, class-internals.h, marshal.c: rearrange
15378         some fields and tweak some types to lower memory usage.
15379
15380 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
15381
15382         * threads.c (signal_thread_state_change): Handle the case when the
15383         target thread is the current thread.
15384
15385         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
15386
15387         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
15388         emit_ptr_to_object_conv. 
15389
15390         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
15391         marshalling. Fixes #71352.
15392
15393 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
15394
15395         * metadata.h, blob.h: move table enum to blob.h so it can be included
15396         in any header.
15397         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
15398         cut the size of MonoImage/MonoDynamicImage.
15399
15400 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
15401
15402         * profiler.c (mono_profiler_install_simple): Fix default arguments.
15403
15404 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
15405
15406         * reflection.c, reflection.h, icall.c: add a function to check
15407         if an attribute type is defined for a metadata object.
15408
15409 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
15410
15411         * object-internals.h: Added some needed fields from StringBuilder class.
15412         * marshal.c: Set the maxCapacity when creating a StringBuilder.
15413
15414 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
15415
15416         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
15417         threads before shutting down the runtime.
15418
15419         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
15420
15421 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
15422
15423         * object-internal.h, threads.c: implement stacksize and 
15424         parameterized thread start functionality (requires
15425         matching corlib). Marked broken code for later removal.
15426
15427 2005-01-12  Martin Baulig  <martin@ximian.com>
15428
15429         * class-internals.h (MonoGenericClass): Moved the `initialized'
15430         flag to MonoDynamicGenericClass, removed `init_pending'.
15431         (MonoGenericInst): Added `is_reference' flag.
15432
15433 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
15434
15435         * reflection.c (mono_image_create_pefile): Only set the pe_offset
15436         inside the MSDOS header. Fixes #71201.
15437
15438         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
15439         gc thread.
15440         (mono_domain_finalize): Ditto.
15441
15442 2005-01-12  Martin Baulig  <martin@ximian.com>
15443
15444         * class.c (mono_get_shared_generic_class): Use the cache for
15445         non-dynamic generic classes.
15446
15447         * class-internals.h (mono_class_create_generic_2): Removed
15448         function prototype, this function is now static inside class.c.
15449
15450         * class.c (mono_class_create_generic_2): Made this static, only
15451         call it from mono_class_init() and mono_class_setup_parent().
15452         (collect_implemented_interfaces_aux): Call mono_class_init() on
15453         the interfaces we collect.
15454         (mono_class_setup_vtable): Call mono_class_init (class->parent).
15455
15456 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
15457
15458         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
15459         it a real thread handle.
15460
15461         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
15462         MonoJitExceptionInfo, since each catch clause needs its own variable.
15463         
15464 2005-01-11  Dick Porter  <dick@ximian.com>
15465
15466         * image.c (mono_pe_file_open): New variant on mono_image_open()
15467         that does not set up the CLI metadata; used for FileVersionInfo so
15468         it can get the data for windows binaries too.
15469         
15470         * process.c (process_read_string_block): Don't read off the end of
15471         the StringTable block.
15472
15473         These both fix bug 70766.
15474
15475 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
15476
15477         * gc.c: set some fields to NULL at GC cleanup time.
15478         * threads.c: if we quit the main thread, call exit ().
15479
15480 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
15481
15482         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
15483
15484 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
15485
15486         * threads.h, threads.c, object.c: added accessor and settor for
15487         main_thread. Handle it specially when exiting from it: wait
15488         for other foreground threads to exit.
15489
15490 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
15491
15492         * process.c, verify.c: remove some bloat.
15493
15494 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
15495
15496         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
15497         the calling convention to cdecl under win32.
15498
15499 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
15500
15501         * object.c (mono_object_get_size): New function to get the size of
15502         an object instance.
15503
15504         * profiler.c (simple_allocation): Use above.
15505
15506 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
15507
15508         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
15509         ves_icall_System_AppDomain_getRootDomain (as it's not required to
15510         get an appdomain by it's id and we can't assume the root's id is 0).
15511         * domain-internals.h: Change the function prototype to match.
15512         * icall.c: Change the icall table for AppDomain.
15513
15514 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
15515
15516         * locales.c (string_invariant_compare_char): Only compute
15517         GUnicodeTypes in the case where we need them.  Test for ordinality
15518         first and return if so.
15519
15520         From the commit:
15521
15522                 /*
15523                  * FIXME: here we must use the information from c1type and c2type
15524                  * to find out the proper collation, even on the InvariantCulture, the
15525                  * sorting is not done by computing the unicode values, but their
15526                  * actual sort order.
15527                  */
15528
15529 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
15530
15531         * loader.c: for P/Invoke methods, allow the "Internal" shared
15532         library name to refer to the calling process symbol namespace.
15533
15534 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
15535
15536         * Makefile.am: Add the security manager to the build.
15537         * security-manager.c|h: New. Initialization of the security manager.
15538
15539 2005-01-07  Dick Porter  <dick@ximian.com>
15540
15541         * threads.c: 
15542         * monitor.c: Update thread state during Monitor and WaitHandle
15543         waits.  Fixes bug 71031.
15544
15545 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
15546
15547         * reflection.c (property_encode_signature): Correctly handle when the
15548         property has no methods.
15549
15550 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
15551
15552         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
15553         
15554         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
15555         fields from mb, not rmb. Fixes #71017.
15556
15557         * marshal.c (emit_ptr_to_str_conv): Add support for 
15558         ByValTStr -> string conversion. Fixes #71015.
15559
15560         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
15561
15562         * mempool.c (mono_mempool_contains_addr): New helper function.
15563
15564 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
15565
15566         * metadata.c (mono_metadata_compute_size): Fix size calculation of
15567         HasSematics encoded fields.
15568         
15569         * metadata.c (mono_type_to_unmanaged): Improve error message for 
15570         invalid string marshalling.
15571
15572         * metadata.c: Fix warnings.
15573         
15574 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
15575
15576         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
15577         profiler support.
15578
15579 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
15580
15581         * domain.c object.c domain-internals.h: Revert part of r38077 since the
15582         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
15583         tests.
15584
15585 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
15586
15587         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
15588         so methods containing these can be AOTed.
15589
15590 2005-01-03  Martin Baulig  <martin@ximian.com>
15591
15592         * loader.c (find_method): Removed the hack for generic instances.
15593         (method_from_memberref): If our parent is a generic instance, pass
15594         its generic type definition to find_method() and then inflate the
15595         method.
15596         (mono_get_method_constrained): Pass the generic type definition to
15597         find_method() and inflate the method later.
15598
15599         * class-internals.h (MonoStats): Added `generic_class_count'.
15600
15601         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
15602         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
15603
15604         * reflection.c (mono_custom_attrs_from_params): Don't ignore
15605         generic type definitions.
15606
15607 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
15608
15609         * loader.c icall.c: Fix warnings.
15610
15611 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
15612
15613         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
15614         blittable types. Fixes #70864.
15615
15616 2004-12-29  Martin Baulig  <martin@ximian.com>
15617
15618         * icall.c
15619         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
15620
15621         * reflection.c (mono_method_get_object): Create a
15622         "System.Reflection.MonoGenericMethod" for inflated methods; don't
15623         call mono_get_inflated_method().
15624
15625         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
15626
15627 2004-12-27  Martin Baulig  <martin@ximian.com>
15628
15629         * class-internals.h (MonoMethod): Added `is_inflated' flag.
15630         (MonoMethodInflated): Added `inflated' field.
15631
15632         * class.c (mono_class_inflate_generic_method): Don't really
15633         inflate the method here; just set the `is_inflated' flag in the
15634         MonoMethod.
15635         (mono_class_get_inflated_method): Actually inflate the method here
15636         if it's not already inflated; we use the MonoMethodInflated's new
15637         `inflated' field as a cache.
15638
15639 2004-12-26  Martin Baulig  <martin@ximian.com>
15640
15641         * class.c
15642         (inflate_generic_class): Moved some code out of inflate_generic_type().
15643         (mono_class_inflate_generic_method): If we're already inflated,
15644         inflate the context and use the declaring method; ie. make sure
15645         the declaring method of an inflated method is always the generic
15646         method definition.
15647         (mono_class_create_from_typedef): Create
15648         `class->generic_container->context->gclass'.
15649
15650 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
15651
15652         * metadata-internals.h, marshal.c, reflection.c: More
15653         MonoGHashTable->GHashTable.
15654
15655         * domain-internals.h, class.c: Change MonoGHashTable's into
15656         GHashTables for some cases where no gc stuff is used
15657
15658         All users: update apis
15659
15660 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
15661
15662         * metadata.c (builtin_types): Make this `const'. Makes this get
15663         put into the shareable section.
15664         (mono_metadata_init): Casts to make gcc happy.
15665
15666 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
15667
15668         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
15669
15670 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
15671
15672         * icall.c: Added an internal call to retrieve the position and length
15673         of assembly-level declarative security attributes (RequestMinimum, 
15674         RequestOptional and RequestRefuse). This is used by the Assembly class
15675         to re-create the corresponding permission sets.
15676
15677 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
15678
15679         * marshal.c: fix the stelemref wrapper to be type correct
15680         (and faster).
15681
15682 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
15683
15684         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
15685         to do key & 0x7fffffff. Hashtable already does this. It just
15686         results in longer code.
15687
15688 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
15689
15690         * appdomain.c: Bump corlib version.
15691         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
15692         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
15693         * reflection.c|h: Add functions to get declarative security infos
15694         (blob position and length) for assemblies, classes and methods.
15695
15696 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
15697
15698         * reflection.c: sort the constant table (bug #70693).
15699
15700 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
15701
15702         * object-internals.h, threads.c, domain.c: add accessors for
15703         the MonoThread and MonoDomain tls keys.
15704
15705 2004-12-18  Martin Baulig  <martin@ximian.com>
15706
15707         * class.c (inflate_generic_type): If we're inflating a generic
15708         instance, set `ngclass->context->container = context->container';
15709         ie. the container we inflated into.
15710
15711         * metadata.c (mono_metadata_parse_generic_param): Reflect above
15712         inflate_generic_type() changes.
15713
15714 2004-12-17  Martin Baulig  <martin@ximian.com>
15715
15716         * class-internals.h
15717         (MonoGenericClass): Replaced `MonoType *generic_type' with
15718         `MonoClass *generic_class'.  Removed `dynamic_info'; if
15719         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
15720         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
15721
15722 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
15723
15724         * exception.c (mono_exception_from_token): New helper function.
15725
15726 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
15727
15728         * assembly.c (mono_assembly_load_with_partial_name): Call 
15729         mono_assembly_loaded before invoking the preload hooks. Fixes
15730         #70564.
15731
15732         * object-internals.h (MonoThread): Change culture_info and 
15733         ui_culture_info into an array.
15734
15735         * threads.c: Cache culture info objects from more than one appdomain.
15736
15737         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
15738         current UI culture.
15739
15740 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
15741
15742         * threads.h threads.c appdomain.c: Clear the culture_info field of
15743         all threads during unloading if they point to an object in the dying
15744         appdomain.
15745
15746 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
15747
15748         * culture-info.h (TextInfoEntry): New struct
15749         * object-internals.h: sync with managed
15750         * locales.c: fill the `text_info_data' field
15751         * culture-info-tables.h: update
15752
15753 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
15754
15755         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
15756         collector.
15757
15758 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
15759
15760         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
15761         (ves_icall_ModuleBuilder_getMethodToken): Ditto
15762
15763 2004-12-12  Martin Baulig  <martin@ximian.com>
15764
15765         * mono-debug-debugger.c (write_type): If we're an enum and the
15766         builtin types have already been initialized, call mono_class_init().
15767
15768 2004-12-11  Martin Baulig  <martin@ximian.com>
15769
15770         * metadata.c (mono_metadata_load_generic_params): Added
15771         `MonoGenericContainer *parent_container' argument; automatically
15772         compute `container->is_method'; pass the correct owner to
15773         get_constraints().      
15774
15775         * reflection.c (compare_genericparam): Sort the GenericParam table
15776         according to increasing owners. 
15777
15778 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
15779
15780         * profiler.c: allow disabling the default profiler.
15781
15782 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
15783
15784         * decimal.c, icall.c: allow disabling System.Decimal support.
15785
15786 2004-12-09  Marek Safar <marek.safar@seznam.cz>
15787
15788         * reflection.c: Add support for null attribute arguments.
15789
15790 2004-12-09  Martin Baulig  <martin@ximian.com>
15791
15792         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
15793         names to get rid of compiler warnings.
15794
15795 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
15796
15797         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
15798         mono_marshal_load_type_info (). Fixes #69625.
15799         (mono_marshal_get_ptr_to_struct): Likewise.
15800
15801 2004-12-08  Martin Baulig  <martin@ximian.com>
15802
15803         * mono-debug.h: Bumped version number to 47.
15804
15805         * mono-debug-debugger.c
15806         (mono_debugger_event_handler, mono_debugger_event): Take two
15807         guint64 arguments insteed of a gpointer and a guint32.  
15808
15809 2004-12-08  Martin Baulig  <martin@ximian.com>
15810
15811         * debug-mono-symfile.h
15812         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
15813         `address' to `native_offset'.
15814
15815 2004-12-08  Martin Baulig  <martin@ximian.com>
15816
15817         * class.c (mono_class_create_from_typespec): Only inflate if we
15818         either have `context->gclass' or `context->gmethod'.
15819
15820 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
15821
15822         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
15823
15824         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
15825
15826         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
15827
15828         * reflection.c (mono_assembly_get_object): Remove the workaround put
15829         in for the release.
15830         
15831         * appdomain.c: Use the corlib_internal field from MonoAssembly.
15832
15833         * appdomain.c: Bump corlib version.
15834
15835         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
15836         be visible in other appdomains.
15837
15838 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
15839
15840         * threads.c: Interlocked inc and dec for longs were messed up,
15841         use a KISS based impl for this. Fixes 70234
15842
15843 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
15844
15845         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
15846
15847 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
15848
15849         * icall.c: fix to follow policy not to allow struct
15850         arguments in icalls.
15851
15852 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15853
15854         * process.c: make the patch that handles spaces in file paths work
15855         on mono/windows too.
15856
15857 2004-12-06  Martin Baulig  <martin@ximian.com>
15858
15859         * class.c (mono_class_create_generic): Call
15860         mono_class_setup_supertypes() if we're dynamic.
15861         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
15862
15863 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
15864
15865         * object-internals.h: Add new fields to MonoThread.
15866
15867         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15868
15869         * icall.c threads-types.h threads.c: Add new icalls.
15870
15871         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
15872
15873         * object-internals.h (MonoReflectionAssembly): Sync object layout with
15874         managed side.
15875
15876         * appdomain.c: Bump corlib version.
15877
15878         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
15879         internal assemblies. Fixes #69181.
15880
15881 2004-12-05  Martin Baulig  <martin@ximian.com>
15882
15883         * class.c (mono_class_inflate_generic_signature): Make this a
15884         no-op if `context' is NULL or we don't have any type parameters;
15885         also copy `sentinelpos'.        
15886
15887 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
15888
15889         * image.c: Add unbox_wrapper_cache.
15890
15891         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
15892
15893         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
15894         function generator.
15895         
15896         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
15897         Fixes #70173.
15898
15899         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
15900         
15901 2004-12-04  Martin Baulig  <martin@ximian.com>
15902
15903         * loader.c (mono_method_get_signature_full): New public function;
15904         like mono_method_get_signature(), but with an additional
15905         `MonoGenericContext *' argument.
15906
15907         * class.c (mono_class_inflate_generic_signature): Formerly known
15908         as inflate_generic_signature(); make this public.
15909
15910 2004-12-04  Martin Baulig  <martin@ximian.com>
15911
15912         * metadata.c
15913         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
15914         instead of a `MonoGenericContainer *'.  
15915         (mono_metadata_parse_array_full): Likewise.
15916         (mono_metadata_parse_signature_full): Likewise.
15917         (mono_metadata_parse_method_signature_full): Likewise.
15918         (mono_metadata_parse_generic_inst): Likewise.
15919         (mono_metadata_parse_generic_param): Likewise.
15920         (mono_metadata_parse_mh_full): Likewise.
15921         (mono_type_create_from_typespec_full): Likewise.
15922
15923 2004-12-03  Martin Baulig  <martin@ximian.com>
15924
15925         * class-internals.h (MonoGenericContainer): Replaced the
15926         `MonoGenericContext * pointer with a `MonoGenericContext'
15927         structure and made it the first element.
15928
15929 2004-12-03  Martin Baulig  <martin@ximian.com>
15930
15931         * class.c
15932         (inflate_generic_type): Set the `context->container' when creating
15933         a new MonoGenericContext.
15934         (mono_class_inflate_generic_method): Likewise.
15935         (mono_class_create_from_typespec): Just use `context->container'
15936         to get the container.
15937
15938         * loader.c (method_from_methodspec): Set `context->parent' from
15939         `context->container' - and if that's a method container, use its
15940         parent.  Also set the `context->container' when creating a new
15941         MonoGenericContext.
15942         (mono_get_method_from_token): Use just `context->container' to get
15943         the container.
15944
15945         * metadata.c (do_mono_metadata_parse_generic_class): Also set
15946         `gclass->context->container'.
15947
15948         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
15949         the `context->container' when creating a new MonoGenericContext.
15950
15951 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
15952
15953         * reflection.c (compare_genericparam): Sort params with identical
15954         owner by their number. Fixes gen-111 on sparc.
15955
15956 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
15957
15958         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
15959         around the domain changes.
15960
15961         * appdomain.c (mono_domain_unload): Handle the case when the thread
15962         calling Unload is itself being aborted during unloading. Fixes #70022.
15963
15964         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
15965
15966         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
15967         checkpoint_func as an icall so it gets a wrapper.
15968         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
15969         in the cross-appdomain wrappers too.
15970
15971         * threads.c (mono_thread_has_appdomain_ref): Make this public.
15972
15973         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
15974
15975         * reflection.c: Fix some memory leaks.
15976         
15977 2004-12-02  Martin Baulig  <martin@ximian.com>
15978
15979         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
15980
15981         * metadata.c (generic_class_cache): New static hashtable.
15982         (mono_metadata_lookup_generic_class): New public method.
15983
15984 2004-12-02  Martin Baulig  <martin@ximian.com>
15985
15986         * class.c (mono_class_create_from_typedef): Call
15987         mono_class_setup_parent() and mono_class_create_mono_type() before
15988         parsing the interfaces.
15989
15990 2004-12-02  Martin Baulig  <martin@ximian.com>
15991
15992         * metadata.c (generic_inst_cache): New static hashtable.
15993         (mono_metadata_lookup_generic_inst): New public function.
15994         (mono_metadata_inflate_generic_inst): New public function.
15995         (mono_metadata_parse_generic_inst): New public function.
15996         (do_mono_metadata_parse_generic_class): Use the new
15997         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
15998         since this'll also use the cache.
15999
16000         * reflection.c (mono_reflection_bind_generic_method_parameters):
16001         Use mono_metadata_lookup_generic_inst() to use the new cache.
16002
16003         * class.c (inflate_mono_type): Use
16004         mono_metadata_inflate_generic_inst() to inflate a generic
16005         instance; this'll also use the new cache.
16006
16007         * loader.c (method_from_methodspec): Use
16008         mono_metadata_parse_generic_inst() and
16009         mono_metadata_inflate_generic_inst() rather than parsing it
16010         manually, so we can use the new cache.
16011
16012 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
16013
16014         * threads.c (wait_for_tids): Do not incorrectly free threads when 
16015         the wait times out.
16016
16017 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
16018
16019         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
16020         iter->args based on whether parameters are passed in registers (i.e.
16021         MONO_ARCH_REGPARMS is defined)
16022
16023 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
16024
16025         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
16026         the exception message. Fixes #70070.
16027         (method_from_methodspec): Fix warnings.
16028
16029 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16030
16031         * process.c: (complete_path) return the path quoted
16032
16033 2004-12-01  Martin Baulig  <martin@ximian.com>
16034
16035         * class-internals.h (MonoGenericInst): New structure.
16036         (MonoGenericClass): Replaced `type_argc', `type_argv' and
16037         `is_open' with `MonoGenericInst *inst'.
16038         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
16039         `is_open' with `MonoGenericInst *inst'.
16040
16041 2004-11-30  Martin Baulig  <martin@ximian.com>
16042
16043         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
16044
16045         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
16046         to `generic_class_cache'.
16047
16048         * metadata.c
16049         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
16050         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
16051         (mono_generic_inst_is_valuetype): Renamed to
16052         mono_generic_class_is_valuetype().
16053
16054         * class-internals.h
16055         (MonoGenericInst): Renamed to MonoGenericClass.
16056         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
16057         (MonoClass): Renamed `generic_inst' to `generic_class'.
16058         (MonoGenericContext): Renamed `ginst' to `gclass'.
16059
16060         * object-internals.h
16061         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
16062
16063         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
16064         mono_reflection_generic_class_initialize().
16065
16066         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
16067         now known as "System.Reflection.MonoGenericClass".
16068         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
16069
16070 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
16071
16072         * class-internals.h: Added a flag field to MonoClass to cache the
16073         declarative security attributes actions associated with the class.
16074         * domain-internals.h: Added booleans to MonoJitInfo to cache the
16075         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
16076         applicable to the JITted method.
16077         * reflection.c|h: Added functions to extract (as flags) which security
16078         actions are available (declaratively) for a method, class or assembly.
16079         * metadata.c|h: Added functions to search the declarative security
16080         table in the metadata.
16081         
16082 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
16083
16084         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
16085         EXPORTEDTYPES are already in the class name cache, so there is no
16086         need to add extra code here to look at them. Just removes a bit of
16087         cruft.
16088
16089         (ves_icall_System_Environment_get_TickCount): No need for #if
16090         WINDOWS. We already have the code in io-layer.
16091
16092 2004-11-28  Martin Baulig  <martin@ximian.com>
16093
16094         * loader.c
16095         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
16096         Fixes gen-112.cs.
16097
16098 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
16099
16100         * assembly.c (do_mono_assembly_open): Instead of having a
16101         conditional WITH_BUNDLE, incorporate support for bundles here, by
16102         having a global `bundles' variable holding a pointer to the actual
16103         bundles. 
16104
16105         (mono_register_bundled_assemblies): New API call used by the
16106         bundle code. 
16107
16108         See mkbundle.1 for details.
16109         
16110 2004-11-27  Martin Baulig  <martin@ximian.com>
16111
16112         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
16113         the vtable for generic methods.
16114
16115 2004-11-26  Martin Baulig  <martin@ximian.com>
16116
16117         * metadata.c
16118         (mono_metadata_generic_method_hash): New public function.
16119         (mono_metadata_generic_method_equal): Likewise.
16120
16121         * class-internals.h
16122         (MonoGenericContainer): Added `GHashTable *method_hash'.
16123
16124         * reflection.c (ReflectionMethodBuilder): Added
16125         `MonoGenericContainer *generic_container'.
16126         (reflection_methodbuilder_to_mono_method): Don't create a new
16127         MonoGenericContainer each time we're called.
16128         (mono_reflection_bind_generic_method_parameters): Use
16129         `container->method_hash' to cache the results so we don't create a
16130         different method if we're called several times with the same
16131         arguments.
16132
16133         * loader.c (method_from_methodspec): Use the new
16134         `container->method_hash' here, too.
16135
16136 2004-11-26  Martin Baulig  <martin@ximian.com>
16137
16138         * class.c (inflate_generic_signature): Correctly compute
16139         `res->has_type_parameters'.
16140         (mono_class_vtable): Use the `has_type_parameters' flag to
16141         determine whether we're a generic method.
16142
16143         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
16144
16145 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
16146
16147         * object.c (mono_runtime_run_main): Fix a small memory leak.
16148
16149 2004-11-25  Martin Baulig  <martin@ximian.com>
16150
16151         * class.c (set_generic_param_owner): Fixed the loop.
16152
16153 2004-11-25  Martin Baulig  <martin@ximian.com>
16154
16155         * object.c (mono_class_vtable): Don't create any JIT wrappers for
16156         generic methods.
16157
16158 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
16159
16160         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
16161         names. Fixes #69787.
16162
16163 2004-11-24  Martin Baulig  <martin@ximian.com>
16164
16165         * class.c (mono_class_create_generic_2): If we don't have a
16166         `ginst->parent', inflate `gklass->parent' to get our parent.
16167
16168 2004-11-24  Martin Baulig  <martin@ximian.com>
16169
16170         * reflection.c (compare_genericparam): Correctly sort the
16171         GenericParam table; fixes #69779.
16172
16173 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
16174
16175         * reflection.c: When writing a PE file, don't create a huge
16176         buffer in memory. Just write the arrays we have to the file.
16177         This reduces memory usage.
16178
16179         * metadata-internals.h: MonoDynamicStream pefile is no longer used
16180         globally.
16181
16182 2004-11-17  Martin Baulig  <martin@ximian.com>
16183
16184         * class.c (mono_class_init): Don't setup `class->parent' for
16185         dynamic instances; moved this to mono_class_generic_2().
16186         (mono_class_create_generic): Also set `klass->inited' for dynamic
16187         generic instances.
16188         (mono_class_create_generic_2): Don't do anything for dynamic
16189         generic instances.  Set `klass->parent' here and also call
16190         mono_class_setup_parent() here. 
16191
16192         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
16193         `MonoType *parent' argument; set `ginst->parent' before calling
16194         mono_class_create_generic_2(), so we set the correct parent.
16195
16196 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
16197
16198         * reflection.c: allow getting attributes from ModuleBuilder
16199         (used by ikvm).
16200
16201 2004-11-17  Martin Baulig  <martin@ximian.com>
16202
16203         * class.c (mono_class_create_from_typedef): If a type parameter is
16204         inherited from an outer class, set its owner to that class.
16205
16206 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
16207
16208         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
16209           for (int*) written size. This fixes bug #69592.
16210
16211 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
16212
16213         * icall.c: Added IsAuthenticodePresnet internal call.
16214         * image.c|h: New function that check a MonoImage for an Authenticode
16215         signature in the certificate PE data directory.
16216         * security.c|h: New internal call to ask the runtime if an 
16217         Authenticode signature seems referenced in the PE header.
16218
16219 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
16220
16221         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
16222
16223         * reflection.c (mono_image_create_pefile): Free the assembly streams
16224         after writing out the assembly file.
16225
16226         * object.c (mono_runtime_run_main): Fix small memory leak.
16227
16228         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
16229         property access modifiers. Fixes #69389.
16230
16231 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
16232
16233         * domain.c, object.c, object-internals.h, domain-internals.h,
16234         object.h, marshal.c: keep dynamic code info per domain.
16235
16236 2004-11-15  Martin Baulig  <martin@ximian.com>
16237
16238         * class.c (mono_type_get_name_recurse): Put type arguments in
16239         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
16240         see bug #68387.
16241
16242 2004-11-15  Martin Baulig  <martin@ximian.com>
16243
16244         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
16245         (mono_class_setup_vtable): When computing `the_cname' for a
16246         generic instance, don't include the namespace since we'd otherwise
16247         add it twice.
16248
16249 2004-11-15  Martin Baulig  <martin@ximian.com>
16250
16251         * class.c (mono_class_create_generic): Changed return type to void.
16252         (mono_class_create_generic_2): New public function; setup
16253         `class->method', `class->field' and `class->interfaces' here
16254         instead of in mono_class_init().
16255
16256         * class.h (mono_class_create_generic): Moved to class-internals.h.
16257
16258 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
16259
16260         * reflection.c (mono_image_create_pefile): take a file HANDLE.
16261         rather than writing to memory, write to this file. Right now,
16262         we are just writting into a buffer, and copying that. However
16263         we can avoid the buffer later.
16264
16265         (mono_dynamic_stream_reset): new function
16266
16267         * icall.c, object-internals.h: update for the above.
16268
16269 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
16270
16271         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
16272         have been using gc'd memory. First it is slower, unlikely
16273         the comment in the source code said, secondly, it increases
16274         our footprint to do it in the gc.
16275
16276         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
16277         the method so that it does not have to copy to managed code.
16278
16279 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
16280
16281         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
16282
16283 2004-11-12  Martin Baulig  <martin@localhost>
16284
16285         * reflection.c (mono_image_create_token): Allow generic method
16286         definitions here, since they may appear in an `.override'; see
16287         gen-98/gen-99 for an example.
16288
16289 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
16290
16291         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
16292         #69365.
16293
16294         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
16295         descriptive.
16296
16297 2004-11-11  Martin Baulig  <martin@ximian.com>
16298
16299         * class.c (mono_class_setup_vtable): In an explicit interface
16300         implementation, the method name now includes the arity.
16301
16302 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
16303
16304         * object.c (mono_array_full_copy): Fix warning.
16305
16306 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
16307
16308         * appdomain.c: Removed look_for_method_by_name(). Use the new method
16309         mono_class_get_method_from_name() instead.
16310         
16311         * class-internals.h: Added two new types of wrappers. 
16312         Added MonoRemotingTarget enum. Added new trampoline function type, which
16313         takes an additional MonoRemotingTarget value as parameter, so it is
16314         possible to request a trampoline for a specific target.
16315         
16316         * class.c: Added new mono_class_get_method_from_name() method.
16317         
16318         * class.h: In MonoRemoteClass, we can have now to vtables, one for
16319         general remoting sinks and one specific for cross domain calls.
16320         
16321         * debug-helpers.c: Added new wrapper names.
16322         
16323         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
16324         of a remote class.
16325         
16326         * image.c: Porperly delete value objects form the remoting invoke hashtable.
16327         
16328         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
16329         with several other methods (mono_marshal_get_xappdomain_dispatch,
16330         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
16331         and others) can generate a fast remoting wrapper for cross domain calls.
16332         More information can be found in docs/remoting.
16333         Other changes: Removed mono_find_method_by_name, and used
16334         mono_class_get_method_from_name instead.
16335         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
16336         is stored in the remoting invoke hashtable.
16337         
16338         * marshal.h: published the new method for getting the xdomain wrapper,
16339         and also added a method for getting the adequate wrapper for a given
16340         method and target.
16341         
16342         * object-internals.h, object.c: Added a couple of methods for capying and
16343         cloning arrays.
16344         Modified mono_install_remoting_trampoline, which takes the new remoting
16345         trampoline that has a remoting target as parameter.
16346         mono_class_proxy_vtable now also takes a remoting target as parameter, and
16347         will return the most suitable vtable for the target.
16348         Added mono_remote_class_vtable, which returns the vtable of a remote class
16349         (which can be the normal remoting vtable or the xdomain vtable).
16350         
16351         * threads.c: the xdomain invoke and dispatch wrappers must also be
16352         protected against interruptions.
16353
16354 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16355
16356         * icall.c: use memmove in BlockCopyInternal when the source and
16357         destination arrays are the same.
16358
16359 2004-11-09  Martin Baulig  <martin@ximian.com>
16360
16361         * class-internals.h (MonoGenericContainer): Removed `method' and
16362         `signature', replaced them with `is_method' and `is_signature'
16363         flags.  Added `context'.
16364
16365         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
16366         instead of a `MonoGenericContainer *'.
16367
16368         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
16369         for dynamic type parameters.
16370         (mono_metadata_load_generic_params): Setup `container->context'.
16371
16372         * reflection.c (mono_reflection_setup_generic_class): Setup
16373         `tb->generic_container->context'.
16374         (do_mono_reflection_bind_generic_parameters): Use
16375         mono_class_inflate_generic_type() to correctly inflate types,
16376         rather than using our own hack just for MONO_TYPE_VAR.
16377
16378 2004-11-09  Martin Baulig  <martin@ximian.com>
16379
16380         * class.c (mono_class_inflate_generic_method): Small fix; don't
16381         crash here.
16382
16383         * icall.c
16384         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
16385         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
16386         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
16387         (ves_icall_Type_BindGenericParameters): Likewise.
16388         (ves_icall_Type_get_IsGenericInstance): Likewise.
16389         (ves_icall_Type_GetGenericParameterPosition): Likewise.
16390         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
16391         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
16392         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
16393
16394 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
16395
16396         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
16397         assembly versions and public key tokens. Fixes #69113.
16398
16399 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
16400
16401         * metadata.c: fix bug introduced with the type cache changes
16402         on 2004-11-06.
16403
16404 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
16405
16406         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
16407         the MonoClass pointer instead of the token in exception clauses.
16408         * reflection.c: updates for the above and make the code not depend
16409         on the structure of MonoExceptionClause.
16410
16411 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
16412
16413         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
16414         Add support for dynamic assemblies. Fixes #69114.
16415
16416         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
16417
16418 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
16419
16420         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
16421         since most only those methods use it. the code member of
16422         MonoMethodPInvoke was dead, so that can be removed too. Also,
16423         remove inline_count (again, not used), and move slot so that it
16424         can share bits with some other flags. This saves 8 bytes in the
16425         structure and gives us about 50 kb back for mcs helloworld.cs
16426
16427         * *.[ch]: Do naming changes for the above.
16428
16429         * loader.c (mono_method_get_header): Lazily init the header
16430         on first access.
16431         (mono_get_method_from_token): don't init the header here
16432         (mono_free_method): the header may never be allocated
16433
16434         Overall, this saves 150 kb of unmanaged allocations
16435         for mcs helloworld.cs. That accounts for 10% of the unmanaged
16436         memory at runtime.
16437         
16438         * loader.c, loader.h (mono_method_get_header): new accessor.
16439
16440         * *.[ch]: use the above method. Prepares us to lazily load
16441         the header.
16442
16443         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
16444         three warnings, which are actual bugs (see 69206).
16445
16446         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
16447         unused. Saves a cool 4 bytes / method.
16448
16449 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
16450
16451         * metadata.c (builtin_types): Add types for System.Object here.
16452         (mono_metadata_parse_type_full): Cache MonoType*'s that are
16453         for a class or valuetype from klass->this_arg or klass->byval_arg.
16454
16455         On mcs for a hello world, this gets us down from 21836 MonoType's
16456         to 14560.
16457
16458         (mono_metadata_free_type): Account for the above change.
16459
16460 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
16461
16462         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
16463         exception instead of asserting if name is null.
16464         (ves_icall_System_AppDomain_GetData): Ditto.
16465
16466 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
16467
16468         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
16469         EnumBuilder.
16470
16471         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
16472         Return NULL when the domain does not have entry_assembly set.
16473
16474         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
16475         Add a 'resource_modules' argument.
16476         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
16477
16478         * reflection.c (mono_reflection_create_runtime_class): Move setting
16479         of wastypebuilder here, so mono_get_type_object () returns a MonoType
16480         for enums too.
16481
16482         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
16483         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
16484         Throw an ArgumentNullException if 'ptr' is null.
16485
16486         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
16487         assemblies here. Fixes #69020.
16488
16489 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
16490
16491         * reflection.c (build_compressed_metadata): Fix the previous patch for
16492         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
16493         the stack.
16494
16495 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
16496
16497         * assembly.c (mono_assembly_names_equal): Allow a match if one of
16498         the cultures is false. Fixes #69090.
16499
16500         * reflection.c (build_compressed_metadata): Fix invalid memory read 
16501         detected by valgrind.
16502         
16503         * reflection.c (mono_reflection_get_type): Avoid triggering a 
16504         TypeResolve multiple times for the same type. Fixes #65577.
16505
16506 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
16507
16508         * marshal.c: Avoid using ldftn to call managed functions. It is
16509         much slower than just a call.
16510
16511         * reflection.c (mono_module_get_object): free the basename we
16512         allocate here from glib.
16513         
16514         * reflection.c (ensure_runtime_vtable): make sure to free
16515         overrides.  Also, we were allocating an array of MonoMethod not an
16516         array of MonoMethod*.
16517
16518         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
16519
16520         * image.c (mono_image_close): free image->guid here.
16521
16522 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
16523
16524         * reflection.c: Fix some spec conformance issues with the PE file
16525         structures so mcs compiled apps run on the Net 2.0 beta.
16526
16527 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
16528
16529         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
16530         Implement this. Fixes #67264.
16531
16532         * debug-helpers.h debug-helpers.c marshal.c: Move 
16533         mono_find_method_by_name to debug-helpers.c.
16534
16535 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
16536
16537         * object.c (mono_release_type_locks): type_initialization_hash is
16538         a GHashTable.
16539
16540         * reflection.c object.c object-internals.h: Fix warnings.
16541
16542         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
16543         without accessors. Fixes #61561.
16544
16545         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
16546         application base from the root domain if not set. Fixes #65641.
16547         (mono_runtime_init): Fix warning.
16548
16549 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16550
16551         * appdomain.c: call mono_thread_pool_init.
16552         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
16553         of worker threads based on the number of CPUs and the environment
16554         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
16555         for non-windows (windows) systems.
16556
16557 2004-10-27  Chris Toshok  <toshok@ximian.com>
16558
16559         * mono-debug-debugger.c (write_class): don't call mono_class_init
16560         here, as even with the check for (!klass->init_pending), we get
16561         into a situation where we're hitting cycles in class
16562         initialization.  Fixes #68816.
16563
16564 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
16565
16566         * image.c: Avoid overwriting values in the loaded_images_hash when an
16567         assembly is loaded multiple times. Fixes #61152.
16568
16569         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
16570         so multiple satellite assemblies for the same name can be loaded.
16571         Fixes #68259.
16572
16573         * mono_domain_assembly_preload: Actually return the loaded assembly, 
16574         not NULL.
16575
16576         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
16577         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
16578
16579         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
16580         pending finalizers are not invoked after the appdomain has been 
16581         unloaded. Fixes #67862.
16582
16583 2004-10-22  Martin Baulig  <martin@ximian.com>
16584
16585         * mono-debug-debugger.c
16586         (mono_debugger_runtime_invoke): Don't box valuetypes.
16587
16588 2004-10-22  Chris Toshok  <toshok@ximian.com>
16589
16590         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
16591         don't hide private methods.
16592
16593 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
16594
16595         * icall.c: Allows the runtime to "share" (when known) the public key
16596         token of an assembly. This avoid the need to recalculate the token 
16597         (from the public key) in managed code.
16598
16599 2004-10-21  Chris Toshok  <toshok@ximian.com>
16600
16601         * debug-helpers.c (append_class_name): argh, revert last patch.
16602         
16603 2004-10-21  Chris Toshok  <toshok@ximian.com>
16604
16605         * debug-helpers.c (append_class_name): use '+' as the delimiter,
16606         not '/', so that it matches what the debugger uses to look up
16607         methods.
16608
16609 2004-10-21  Martin Baulig  <martin@ximian.com>
16610
16611         * mono-debug-debugger.c (mono_debugger_throw_exception): New
16612         public method; this is called each time an exception is thrown and
16613         allows the debugger to use exception catch points.
16614
16615 2004-10-21  Martin Baulig  <martin@ximian.com>
16616
16617         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
16618         the stack pointer and the exception object in some struct and pass
16619         that to the debugger.
16620
16621 2004-10-21  Chris Toshok  <toshok@ximian.com>
16622
16623         * mono-debug-debugger.c (do_write_class): add instance/static
16624         event support.  We don't expose "raise" or "other" yet.
16625         (event_is_static): new method.
16626
16627 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
16628
16629         * mono-debug-debugger.c
16630         (mono_debugger_handle_exception): Remove
16631         bogus return value for fussy compilers.
16632
16633 2004-10-20  Martin Baulig  <martin@ximian.com>
16634
16635         * mono-debug-debugger.c
16636         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
16637         (mono_debugger_handled_exception): Likewise.
16638
16639 2004-10-20  Martin Baulig  <martin@ximian.com>
16640
16641         * mono-debug-debugger.h (MonoDebuggerEvent): Added
16642         MONO_DEBUGGER_EVENT_EXCEPTION.
16643
16644         * mono-debug-debugger.c (mono_debugger_handle_exception): New
16645         public function to send the debugger a notification for an
16646         exception and inform it about a catch/finally clause.
16647
16648 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
16649
16650         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
16651         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
16652         fix 2.95 build. 
16653
16654         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
16655
16656 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
16657
16658         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
16659         marshalled as [In,Out]. Fixes #58325.
16660
16661 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
16662
16663         * reflection.c (mono_method_body_get_object): Implement some fields.
16664
16665 2004-10-12  Martin Baulig  <martin@ximian.com>
16666
16667         * reflection.c (mono_reflection_bind_generic_parameters): Small
16668         fix, correctly retrieve our parent from a generic instance.
16669
16670 2004-10-12  Martin Baulig  <martin@ximian.com>
16671
16672         * metadata.c (mono_metadata_generic_param_equal): We always have
16673         an owner.
16674
16675         * class.c
16676         (mono_class_from_generic_parameter): We need to have an owner.
16677         (my_mono_class_from_generic_parameter): Likewise.
16678
16679         * reflection.c (mono_reflection_setup_generic_class): Renamed to
16680         mono_reflection_create_generic_class() and added a new
16681         mono_reflection_setup_generic_class().  
16682         (mono_reflection_initialize_generic_param): If we're a nested
16683         generic type and inherited from the containing class, set our
16684         owner to the outer class.
16685
16686 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
16687
16688         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
16689
16690         * reflection.c (mono_method_body_get_object): New function to create
16691         a MethodBody object.
16692
16693         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
16694
16695 2004-10-11  Martin Baulig  <martin@ximian.com>
16696
16697         * metadata.c (_mono_metadata_type_equal): Renamed to
16698         do_mono_metadata_type_equal() and made static.
16699
16700 2004-10-11  Martin Baulig  <martin@ximian.com>
16701
16702         * appdomain.c: Bump corlib version number to 28.
16703
16704 2004-10-10  Martin Baulig  <martin@ximian.com>
16705
16706         * class-internals.h
16707         (MonoGenericInst): Added `MonoGenericContainer *container'.
16708         (MonoGenericMethod): Likewise.
16709         (MonoGenericContext): Likewise.
16710         (MonoGenericParam): Added `MonoGenericContainer *owner'.
16711
16712         * metadata.c
16713         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
16714         (do_mono_metadata_parse_generic_inst): Likewise.
16715         (mono_metadata_parse_type_full): New public method.  This is the actual
16716         mono_metadata_parse_type() implementation - with an additional
16717         `MonoGenericContainer *' argument.
16718         (mono_metadata_parse_array_full): Likewise.
16719         (mono_metadata_parse_signature_full): Likewise.
16720         (mono_metadata_parse_method_signature_full): Likewise.
16721         (mono_metadata_parse_mh_full): Likewise.
16722         (mono_type_create_from_typespec): Likewise.
16723         (mono_metadata_interfaces_from_typedef_full): New public method;
16724         this is similar to the other _full() methods, but we take a
16725         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
16726         (mono_metadata_parse_generic_param): Take an additional
16727         `MonoGenericContainer *' argument and lookup the MonoGenericParam
16728         from that container.
16729         (mono_metadata_generic_param_equal): New static method to compare
16730         two type parameters.
16731         (_mono_metadata_type_equal): New static method; takes an
16732         additional `gboolean signature_only' argument - if true, we don't
16733         compare the owners of generic parameters.
16734         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
16735         with a TRUE argument - do a signature-only comparision.
16736
16737         * loader.c: Use the new _full() methods and pass the
16738         MonoGenericContainer to them.
16739
16740         * object-internals.h (MonoReflectionTypeBuilder): Added
16741         `MonoGenericContainer *generic_container' field.
16742         (MonoReflectionMethodBuilder): Likewise.
16743
16744 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
16745
16746         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
16747         case initial images of dynamic assemblies.
16748
16749         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
16750
16751         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
16752
16753         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
16754         length of event->other array.
16755         (typebuilder_setup_events): Ditto.
16756
16757         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
16758         'assembly_by_name' and add an 'assemblies' list.
16759
16760         * assembly.h assembly.c: Add a new search hook for determining whenever
16761         an assembly is already loaded. Use this instead of searching in the
16762         loaded_assemblies list.
16763
16764         * domain.c appdomain.c: Implement the new search hook so loaded 
16765         assemblies are now scoped by appdomain. Fixes #67727.
16766
16767 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
16768
16769         * threads.c (mono_thread_attach): Initialize synch_lock field so
16770         mono_thread_detach works again.
16771
16772         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
16773         'lib' too. Fixes #63130.
16774
16775 2004-10-06  Jackson Harper  <jackson@ximian.com>
16776
16777         * culture-info-tables.h: regenerated.
16778
16779 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
16780
16781         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
16782         implemented by other interfaces in the result. Fixes #65764.
16783         
16784         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
16785         Handle unloadable modules without crashing.
16786
16787         * image.c (load_modules): Revert the previous patch since modules must
16788         have a fixed index inside the array.
16789         
16790         * image.c (load_modules): Don't include native modules in the modules
16791         array.
16792
16793 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
16794
16795         * reflection.h: Add param_defaults field.
16796
16797         * reflection.c: Add support for parameter defaults in dynamic methods.
16798         Fixes #64595.
16799
16800         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
16801         an empty string when a type has no namespace. Fixes #64230.
16802
16803 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
16804
16805         * tabledefs.h: Added "internal" security actions to support non-CAS
16806         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
16807         Note: they do not seems to be used anymore in 2.0 (new metadata format)
16808
16809 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
16810
16811         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
16812         constructor of abstract class. Fixes #61689.
16813
16814 2004-10-04  Martin Baulig  <martin@ximian.com>
16815
16816         * class-internals.h (MonoGenericContainer): New type.
16817         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
16818         `MonoGenericContainer *generic_container'.
16819         (MonoClass): Replaced `gen_params' and `num_gen_params' with
16820         `MonoGenericContainer *generic_container'.
16821
16822         * metadata.c (mono_metadata_load_generic_params): Return a
16823         `MonoGenericContainer *' instead of a `MonoGenericParam *';
16824         removed the `num' argument.
16825
16826 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
16827
16828         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
16829         for dynamic images.
16830
16831         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
16832         machine fields.
16833
16834         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
16835
16836         * reflection.c: Save pe_kind and machine values into the generated
16837         image file.
16838
16839         * appdomain.c: Bump corlib version number.
16840
16841         * object-internals.h: Reorganize layout of LocalBuilder.
16842
16843         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
16844         New helper function.
16845
16846         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
16847         created MonoType for dynamic types. Fixes #66180.
16848
16849 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
16850
16851         * threadpool.c: the ares hashtable needs a critical section around it.
16852         this prevents some nasty segfaults
16853
16854 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
16855
16856         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
16857         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
16858         bug 67324).
16859         
16860 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
16861
16862         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
16863         
16864 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
16865
16866         * image.c: Always canonicalize image file names, to avoid loading
16867         the same assembly twice when referenced using a relative path.
16868
16869 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
16870
16871         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
16872
16873         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
16874
16875         * marshal.c: Fix warnings.
16876
16877 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
16878
16879         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
16880         attempting to marshal the delegate_trampoline as the method_addr.
16881         This patch has a static hashtable of marshalled delegates so that 
16882         we can map delegate_trampoline addresses back to delegates.  This
16883         allows a delegate passed to managed code to be passed back into native
16884         code.  Fixes #67039
16885
16886 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
16887
16888         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
16889
16890         * reflection.c (method_encode_code): Align method headers properly.
16891         Fixes #66025.
16892
16893 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
16894
16895         * marshal.c: In the runtime invoke wrapper, reset the abort
16896         exception if it is cached. This avoids the automatic rethrowal of 
16897         the exception after the catch of the wrapper. Also check for pending
16898         interruptions before calling the managed method. This is done using
16899         the new method emit_thread_force_interrupt_checkpoint, since the
16900         normal checkpoint method is ignored when running the invoke wrapper.
16901         * object.c: If the abort exception is rethrown, set the abort_exc
16902         field of the thread, so it will be rethrown aftere every catch.
16903         * threadpool.c: Only run an interruption checkpoint if what has been
16904         requested is a stop of the thread (aborts will be ignored).
16905         * threads.c: By default, a thread will now never be interrumped while
16906         running the runtime invoke wrapper (this ensures that runtime_invoke
16907         will always return to the caller if an exception pointer is provided).
16908         There is a new special method mono_thread_force_interruption_checkpoint()
16909         to force an interruption checkpoint even if running a protected
16910         wrapper, which is used by the same runtime invoke wrapper to do a check
16911         at a safe point.
16912
16913 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
16914
16915         * object.c, object-internals.h: Implemented mono_release_type_locks,
16916         which releases the cctor locks held by a thread.
16917         * threads.c, threads.h: In thread_cleanup, release cctor locks held
16918         by a thread. Added mono_thread_exit() method to be used to safely stop
16919         a thread.
16920
16921 2004-09-28  Raja R Harinath  <rharinath@novell.com>
16922
16923         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
16924         Move null check before dereference.  Avoid indexing beyond the end
16925         of the 'modules' array.
16926
16927 2004-09-28  Raja R Harinath  <rharinath@novell.com>
16928
16929         * metadata-internals.h (MonoImage): Add module_count field.
16930         * image.c (load_modules): Set image->module_count.
16931         (mono_image_load_file_for_image): Use image->module_count.
16932         * reflection.c (mono_image_load_module): Append to image->modules array 
16933         of dynamic assembly.
16934         (mono_module_get_object): Fix loop to actually increment index.
16935         Use image->module_count.
16936         * assembly.c (mono_assembly_load_references): Use image->module_count.
16937         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
16938         Likewise.
16939
16940 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
16941
16942         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
16943         Avoid assert on generic types.
16944
16945 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
16946
16947         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
16948
16949         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
16950
16951         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
16952         function to convert a MarshalSpec structure to its managed counterpart.
16953
16954         * reflection.c: Fix warnings.
16955         
16956         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
16957         field.
16958
16959         * icall.c (mono_create_icall_signature): Fix build.
16960
16961 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
16962
16963         * icall.c: Add MakePointType icall.
16964
16965         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
16966         warnings.
16967
16968 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16969
16970         * threadpool.c: reuse allocated slots in the queue.
16971
16972 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
16973
16974         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
16975
16976         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
16977
16978         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
16979         previous change.
16980
16981         * tabledefs.h: Add constants for pinvoke attributes BestFit and
16982         ThrowOnUnmappableChar.
16983
16984         * icall.c (ves_icall_Type_GetPacking): New icall.
16985
16986 2004-09-24  Martin Baulig  <martin@ximian.com>
16987
16988         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
16989
16990 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16991
16992         * appdomain.c:
16993         (mono_domain_set): allow setting a domain that is being unloaded.
16994         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
16995         being unloaded.
16996
16997 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
16998
16999         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
17000         the GetCustomAttributes icall.
17001
17002 2004-09-23  Martin Baulig  <martin@ximian.com>
17003
17004         * object-internals.h (MonoReflectionGenericParam): Replaced
17005         'has_ctor_constraint', `has_reference_type' and `has_value_type'
17006         with `guint32 attrs'.
17007
17008 2004-09-23  Martin Baulig  <martin@ximian.com>
17009
17010         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
17011
17012 2004-09-23  Martin Baulig  <martin@ximian.com>
17013
17014         * object-internals.h (GenericParameterAttributes): New enum.
17015
17016 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
17017
17018         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
17019         
17020         * class.c (init_events): Fill out event->other field.
17021
17022         * class.c: Fix warnings.
17023
17024         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
17025
17026 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
17027
17028         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
17029         walk which doesn't supply the IL offset.
17030
17031 2004-09-22  Martin Baulig  <martin@ximian.com>
17032
17033         * reflection.c (mono_reflection_setup_internal_class): If we're
17034         System.ValueType, System.Object or System.Enum, set
17035         `klass->instance_size' and create the vtable.
17036         (mono_reflection_create_internal_class): If we're an enum type,
17037         get the base class from our current corlib.
17038
17039 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
17040
17041         * reflection.h (MonoResolveTokenError): New type.
17042
17043         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
17044         icall.
17045
17046         * icall.c: Add an 'error' argument to the ResolveToken icalls.
17047
17048 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
17049
17050         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
17051         Support also calling constructors, but only for already allocated objects.
17052
17053 2004-09-17  Geoff Norton <gnorton@customerdna.com>
17054
17055         * reflection.c (type_get_qualified_name): If the klass is null
17056         return the typename to avoid a NullRefEx.
17057         (encode_cattr_value): Get the qualified name of the boxed type,
17058         not the underlying enumtype.  Fixes #62984.
17059
17060 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
17061
17062         * marshal.c: Fix problems with previous checkin.
17063
17064 2004-09-21    <vargaz@freemail.hu>
17065
17066         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
17067         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
17068
17069         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
17070
17071 2004-09-21  Geoff Norton <gnorton@customerdna.com>
17072
17073         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
17074         should only return a type for pointers, arrays, and passbyref types.
17075         Fixes bug #63841.
17076
17077 2004-09-21  Martin Baulig  <martin@ximian.com>
17078
17079         * domain.c (mono_debugger_check_runtime_version): New public
17080         function.
17081
17082         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
17083
17084 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
17085
17086         * reflection.c: Added missing sort to the declarative security 
17087         attributes table. MS implementation stops seeing the attributes if the
17088         token number regress in the table (as shown by ildasm and permview).
17089
17090 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
17091
17092         * object-internals.h (MonoReflectionModule): Add 'token' field.
17093         
17094         * reflection.c (mono_reflection_get_token): Add support for Module
17095         and Assembly.
17096         (mono_module_get_object): Set 'token' field.
17097         (mono_module_file_get_object): Set 'token' field.
17098
17099         * icall.c: Add new Assembly and Module icalls.
17100
17101         * appdomain.c: Bump corlib version.
17102
17103 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
17104
17105         * loader.h loader.c class.h class.c: Add helper functions for obtaining
17106         tokens of metadata objects.
17107
17108         * reflection.h reflection.c (mono_reflection_get_token): New function
17109         to obtain the token of a metadata object.
17110
17111         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
17112
17113 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
17114
17115         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
17116         
17117         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
17118
17119 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
17120
17121         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
17122         * object-internals.h: Added 3 MonoArray* members to MonoReflection
17123         AssemblyBuilder to access the permissions set in the class lib.
17124         * reflection.c: Added security attributes encoding step in 
17125         mono_image_build_metadata.
17126         * tabledefs.h: Added new security actions defined in 2.0:
17127         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
17128
17129 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
17130
17131         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
17132         macro parameter.
17133
17134 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
17135  
17136         * locales.c: nullify the ICU_collator member of CompareInfo when it is
17137           finalized. There where random SIGSEVs at program termination, when
17138           an object being finalized was trying to do a string comparison and
17139           the current culture was already finalized.
17140  
17141 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17142
17143         * threads.c: call thread_cleanup before finishing the thread if we get
17144         there.
17145
17146 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
17147
17148         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
17149         assemblies from the parent. Fixes #65665.
17150
17151 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
17152
17153         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
17154         modifiers.
17155
17156 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
17157
17158         * reflection.h: add prototype for mono_get_dbnull_object
17159         * reflection.c: add prototypes for get_default_param_value_blobs 
17160         and mono_get_object_from_blob for fussier compilers
17161
17162 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
17163  
17164         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
17165         false deadlock checks in class initialization.
17166  
17167 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
17168
17169         * image.c (mono_image_addref): Fix comment.
17170
17171         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
17172         possible.
17173
17174 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
17175
17176         * reflection.c (mono_param_get_objects): Modified to return
17177         ParameterInfo.DefaultValue object.
17178
17179         (get_default_param_value_blobs):
17180         (mono_get_object_from_blob):
17181         (mono_get_dbnull_object): New helper routines. 
17182
17183         * object.c (mono_get_constant_value_from_blob): New helper routine
17184         carved out from get_default_field_value ()
17185
17186         * object-internals.h (mono_get_constant_value_from_blob): Added
17187         function declaration.
17188
17189 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
17190
17191         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
17192         referenced assemblies. Fixes #62135.
17193
17194         * exception.h exception.c (mono_get_exception_file_not_found2): New
17195         helper function.
17196
17197 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
17198
17199         * class.h class.c: Add mono_type_get_underlying_type ().
17200
17201 2004-09-09  Geoff Norton <gnorton@customerndna.com>
17202
17203         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
17204         Fix GetTypes() to support dynamically created assemblies.
17205
17206 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
17207
17208         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
17209         
17210         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
17211         previous patch.
17212
17213         * reflection.h reflection.c loader.c: Allow dynamic construction of
17214         pinvoke methods. Fixes #65571.
17215         
17216         * reflection.c (mono_reflection_get_type): Revert previous change since
17217         it causes regressions.
17218
17219 2004-09-08  Martin Baulig  <martin@ximian.com>
17220
17221         * class.c (class_compute_field_layout): Don't call
17222         mono_class_layout_fields() for open generic instances.
17223
17224 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
17225         * threads.c appdomain.c: fix typo in GC macro
17226
17227 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17228
17229         * threads.c: don't call mono_thread_detach() in start_wrapper(),
17230         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
17231
17232 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
17233
17234         * image.c (mono_image_close): Applied patch from 
17235         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
17236         assembly is loaded multiple times from data.
17237         
17238         * image.c (mono_image_open): Fix warning.
17239
17240 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17241
17242         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
17243         once. Fixes #58334.
17244         
17245         * reflection.c (mono_reflection_create_runtime_class): Initialize
17246         klass->nested_classes. Fixes #61224.
17247
17248 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
17249
17250         * threads.c: sched_yield() on exit, to allow threads to quit.
17251
17252 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17253
17254         * object.c (mono_unhandled_exception): Remove leftover debug code.
17255
17256 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
17257
17258         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
17259
17260 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17261
17262         * marshal.c (emit_marshal_array): Really null terminate string arrays.
17263         
17264         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
17265
17266 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17267
17268         * marshal.c (emit_marshal_array): Null terminate string arrays.
17269         
17270         * marshal.c (raise_auto_layout_exception): Fix warning.
17271
17272         * reflection.c (mono_param_get_objects): Initialize the default value
17273         with DBNull.Value, not null. Fixes #62123.
17274
17275 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
17276
17277         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
17278         throw an exception with a cute explanation.
17279
17280 2004-09-06  Dick Porter  <dick@ximian.com>
17281
17282         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
17283         Close the new process's thread handle, as we don't use it.  The
17284         handle stays around forever otherwise.
17285
17286 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17287
17288         * object.c (arith_overflow): Fix warning.
17289
17290         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
17291         calling conventions in method refs. Fixes #65352.
17292
17293         * reflection.c: Fix warnings.
17294
17295 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
17296
17297         * icall.c: Add a new icall for Array.Clear
17298
17299 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
17300
17301         * object.c: When allocating an array, we have to throw
17302         an overflow exception if any of the lengths are < 0.
17303
17304 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17305
17306         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
17307         properly. Also move implementation of string array marshalling to 
17308         managed code. Fixes #42316.
17309
17310 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17311
17312         * assembly.c: provide more information when loading an assembly fails.
17313
17314 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17315
17316         * filewatcher.c: don't expect the development fam package to be
17317         installed.
17318
17319 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
17320
17321         * marshal.c: Make a copy of the signature cookie since it will be
17322         freed by the caller.
17323         
17324         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
17325
17326         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
17327
17328         * metadata.c (mono_metadata_free_marshal_spec): New function to free
17329         marshal specs.
17330
17331         * marshal.c: More refactoring.
17332         
17333         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
17334         smaller functions.
17335
17336 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
17337
17338         * object.c: In mono_message_invoke, fill the output parameter array after
17339           calling the managed method (it was done before the call). This fixes
17340           bug #59299.
17341
17342 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
17343
17344         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
17345         as well.
17346
17347 2004-09-02  Martin Baulig  <martin@ximian.com>
17348
17349         * class.c (mono_class_instance_size): Don't allow generic type
17350         definitions or open generic instances.
17351         (mono_class_array_element_size): If we're a value type, call
17352         mono_class_instance_size() on the original class.
17353
17354         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
17355         handle generic instances.
17356
17357         * mono-debug-debugger.c (write_type): Handle generic instances
17358         like classes.
17359
17360 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
17361
17362         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
17363         the allocation request fails. Fixes #65089.
17364
17365         * object.c (mono_runtime_free_method): Do not call mono_free_method.
17366         
17367         * object.c (mono_runtime_free_method): New function to free a dynamic
17368         method.
17369
17370         * marshal.c (mono_delegate_free_ftnptr): New function to free the
17371         delegate trampoline.
17372
17373         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
17374         with hasthis as dynamic,
17375
17376         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
17377
17378         * domain.c (mono_jit_info_table_remove): New function to remove an
17379         entry from the jit info table.
17380
17381         * class-internals.h (MonoMethod): Add 'dynamic' field.
17382
17383         * loader.c: Fix warnings.
17384
17385 2004-09-01  Martin Baulig  <martin@ximian.com>
17386
17387         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
17388         instead of mono_debugger_lock() because the latter one is a no-op
17389         unless running in the debugger.
17390
17391 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
17392
17393         * class.c (class_compute_field_layout): Classes with auto-layout or
17394         reference fields are not blittable.
17395         
17396 2004-09-01  Dick Porter  <dick@ximian.com>
17397
17398         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
17399         mono_image_get_filename() to get the assembly location.
17400
17401         * icall.c:
17402         * metadata.h: Fix compile warnings
17403
17404 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
17405
17406         * class.c (class_compute_field_layout): System.Object is blittable.
17407
17408         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
17409         as in/out. Fixes #59909.
17410
17411 2004-09-01  Martin Baulig  <martin@ximian.com>
17412
17413         * metadata.h (MONO_TYPE_ISREFERENCE): Call
17414         mono_metadata_generic_inst_is_valuetype() if we're a generic
17415         instance to check whether our underlying type is a reference type.
17416
17417 2004-09-01  Martin Baulig  <martin@ximian.com>
17418
17419         * metadata.c (mono_type_size): If we're a generic instance, call
17420         mono_class_value_size() for value types.
17421
17422 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
17423
17424         * marshal.c: Implement more custom marshalling functionality. Fixes
17425         #64915.
17426
17427 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
17428
17429         * mono-debug.c, debug-mono-symfile.c: add some locking love.
17430
17431 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
17432
17433         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
17434
17435         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
17436
17437         * icall.c: Fix some warnings.
17438
17439         * threads.c (abort_appdomain_thread): Fix unref errors.
17440         (mono_thread_current): Fix THREAD_DEBUG define.
17441
17442 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
17443
17444         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
17445
17446         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
17447
17448 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
17449
17450         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
17451         string arrays.
17452
17453 2004-08-28  Martin Baulig  <martin@ximian.com>
17454
17455         * metadata.c
17456         (mono_metadata_generic_inst_is_valuetype): New public function.
17457
17458         * metadata.h (MONO_TYPE_ISSTRUCT): Call
17459         mono_metadata_generic_inst_is_valuetype() if we're a generic
17460         instance to check whether our underlying type is a valuetype.
17461
17462 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
17463
17464         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
17465         #63768.
17466
17467 2004-08-25  Martin Baulig  <martin@ximian.com>
17468
17469         * loader.c (mono_get_method_from_token): Abstract methods can also
17470         be generic and thus have type parameters.
17471
17472         * metadata-internals.h
17473         (MonoDynamicImage): Added `GPtrArray *gen_params'.
17474
17475         * reflection.c (mono_image_get_generic_param_info): Don't create a
17476         metadata row, just add an entry to the `gen_params' array.
17477         (build_compressed_metadata): Sort the `gen_params' array and then
17478         actually create the metadata.
17479
17480 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17481
17482         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
17483
17484 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
17485
17486         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
17487
17488 2004-08-24  Martin Baulig  <martin@ximian.com>
17489
17490         * class.cs (mono_class_is_subclass_of): Like an interface, a
17491         generic instance also derives from System.Object.
17492
17493 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
17494
17495         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
17496         custom modifiers to be in any order. Fixes #61990.
17497
17498 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
17499
17500         * object.c: Register mono_object_new_fast icall.
17501         
17502         * object.c (mono_class_get_allocation_ftn): Return to calling
17503         mono_object_new_fast, since it seems faster to compute the object 
17504         size in unmanaged code than passing it as a parameter.
17505
17506         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
17507
17508         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
17509         this function with Boehm as the oom handler, so we don't have to check
17510         the result of GC_malloc.
17511
17512         * object.c: Remove checks for oom.
17513
17514         * object.h object.c (mono_class_get_allocation_ftn): New function to
17515         return the icall which can be used to allocate an instance of a given
17516         class. 
17517
17518         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
17519
17520         * class-internals.h: Add 'enabled' field.
17521
17522 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
17523
17524         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
17525
17526 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
17527         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
17528         value 0x0010.
17529
17530 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
17531
17532         * appdomain.c: use the Tls function for appdomain too,
17533         at Zoltan's request. Actually return in mono_context_get
17534
17535         * appdomain.c, profiler.c, threads.c: use __thread
17536
17537 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
17538
17539         * appdomain.c threads.c: Call GC_CreateThread on windows.
17540
17541         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
17542         multiple libraries since this don't work on windows.
17543
17544 2004-08-18  Martin Baulig  <martin@ximian.com>
17545
17546         * class-internals.h
17547         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
17548         MonoMethodHeader.
17549
17550         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
17551         MonoMethodNormal since we also need it for abstract and interface
17552         methods.
17553
17554         * reflection.c
17555         (build_compressed_metadata): Sort the GenericParam table.
17556         (mono_image_create_token): Added `gboolean create_methodspec'
17557         argument; this is false when generating a MethodImpl token.
17558         (reflection_methodbuilder_to_mono_method): Abstract and interface
17559         methods may also have generic parameters.
17560
17561 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
17562
17563         * appdomain.c: thread local alloc
17564
17565 2004-08-17  Martin Baulig  <martin@ximian.com>
17566
17567         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
17568
17569         * icall.c
17570         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
17571         argument.
17572
17573         * class.c (mono_type_get_full_name): New public function.
17574         (mono_type_get_name): Don't include the type arguments.
17575
17576 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
17577
17578         * Makefile.am: Build static versions of libmetadata and libmonoruntime
17579         for inclusion into the mono executable.
17580
17581 2004-08-16  Martin Baulig  <martin@ximian.com>
17582
17583         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
17584         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
17585
17586 2004-08-14  Martin Baulig  <martin@ximian.com>
17587
17588         * class.c (dup_type): Also copy the `byref' field.
17589
17590 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
17591
17592         * reflection.c (create_dynamic_mono_image): Revert the last change 
17593         since it breaks bootstrap.
17594
17595 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
17596
17597         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
17598
17599         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
17600         not free them with g_free.
17601
17602 2004-08-11  Martin Baulig  <martin@ximian.com>
17603
17604         * reflection.c (mono_reflection_setup_internal_class): Also call
17605         mono_class_setup_mono_type() if we already have a `tb->type.type'.
17606
17607 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
17608
17609         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
17610         called during default (first) AppDomain creation. Keep track of
17611         Evidence when loading assemblies.
17612
17613 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
17614
17615         * opcodes.c, opcodes.h: reduce runtime relocations.
17616
17617 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
17618
17619         * culture-info.h, locales.c: fixes and chages to sue the new
17620         optimized format of the locale data.
17621         * culture-info-tables.h: regenerated.
17622
17623 2004-08-06  Geoff Norton <gnorton@customerdna.com>
17624         
17625         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
17626
17627 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
17628
17629         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
17630         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
17631         * domain-internals.h: icall declaration.
17632         * icall.c: icall registration.
17633         * object-internals.h: New fields in MonoAssembly for CAS.
17634
17635 2004-08-05  Duncan Mak  <duncan@ximian.com>
17636
17637         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
17638         CEE_LDELEM_ANY.
17639
17640 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
17641
17642         * reflection.c: fix to deal with object[] arrays in custom ctors
17643         (bug #62550).
17644
17645 2004-08-05  Martin Baulig  <martin@ximian.com>
17646
17647         * class.c (mono_class_array_element_size): Added support for
17648         generic instances and correctly handle "recursive" types.
17649
17650 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
17651
17652         * assembly.c: Fix warnings.
17653
17654 2004-08-04  Martin Baulig  <martin@ximian.com>
17655
17656         * class.c
17657         (mono_type_get_name_recurse): Added `gboolean include_arity'
17658         argument specifying whether or not we should include the generic
17659         arity in the type name.
17660         (_mono_type_get_name): New static function.
17661         (mono_class_setup_vtable): If we're a generic instance, don't
17662         include the generic arity in the names of explicit method
17663         implementations.        
17664
17665 2004-08-03  Martin Baulig  <martin@ximian.com>
17666
17667         * class.c (mono_type_get_name_recurse): Enclose the generic type
17668         arguments in `<', '>'.
17669
17670 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
17671
17672         * gc.c: make GC warning messages use the trace API, they are just
17673         noise to most of the users.
17674
17675 2004-08-03  Martin Baulig  <martin@ximian.com>
17676
17677         * debug-mono-symfile.c (read_string): Correctly read the string.
17678
17679 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
17680
17681         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
17682         
17683         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
17684         icalls.
17685         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
17686
17687 2004-07-30  Martin Baulig  <martin@ximian.com>
17688
17689         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
17690         Reflect latest symbol writer changes.   
17691
17692 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
17693
17694         * object.c: always create an object if null is passed
17695         to Invoke() where a valuetype is expected.
17696
17697 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
17698
17699         * marshal.c (mono_marshal_init): make managed
17700         signatures match native ones better for 64bits.
17701
17702 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17703
17704         * appdomain.c: hack to build correctly the private bin path on windows.
17705         Fixes bug #61991.
17706
17707 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
17708
17709         * assembly.c: Load mscorlib from the correct framework directory
17710           (mono/<version>/mscorlib.dll).
17711         * appdomain.h: Added prototypes for new functions.
17712         * internals.h: Added some prototypes.
17713         * domain.c: When initializing the runtime, get from the executable and
17714           the configuration files the runtime version that the app supports.
17715           Added support methods for reading app.exe.config. Added list of versions
17716           supported by the JIT. Added two new methods: mono_init_from_assembly,
17717           which initializes the runtime and determines the required version from
17718           the provided exe file, and mono_init_version, which initializes
17719           the runtime using the provided version.
17720         * icall.c: Get machine.config from version-specific directory.
17721         * reflection.c: When generating an image, embed the version number
17722           of the current runtime.
17723
17724 2004-07-28  Dick Porter  <dick@ximian.com>
17725
17726         * socket-io.c
17727         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
17728         returned sockaddr size before creating the remote address object.
17729         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
17730         61608.
17731
17732 2004-07-28  Dick Porter  <dick@ximian.com>
17733
17734         * locales.c (string_invariant_compare_char): Fix invariant char
17735         compares between upper and lower cases.  Fixes bug 61458.
17736
17737 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
17738         
17739         * marshal.c: actually cache stelem.ref wrappers.
17740         
17741 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
17742
17743         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
17744         sections and remove the mono_cli_rva_map () function.
17745
17746 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
17747
17748         * debug-mono-symfile.c: fix one more endianess issue, from a patch
17749         by Geoff Norton (<gnorton@customerdna.com>).
17750
17751 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
17752
17753         * class.c: fix class loads for pointer types (typeof(int) !=
17754         typeof(int*)).
17755
17756 2004-07-27  Martin Baulig  <martin@ximian.com>
17757
17758         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
17759         reading the debugging information from an external ".mdb" file.
17760
17761 2004-07-24  Martin Baulig  <martin@ximian.com>
17762
17763         * reflection.c (mono_image_get_type_info): Only write a class
17764         layout entry if we actually have a size or a packing size.
17765
17766 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
17767
17768         * reflection.c (type_get_fully_qualified_name): 
17769         insert cast to get type checking of ?: with non-gcc compilers
17770
17771 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
17772
17773         * rand.c: use g_getenv for both lookups of
17774         MONO_EGD_SOCKET
17775
17776 2004-07-17  Martin Baulig  <martin@ximian.com>
17777
17778         * reflection.c (mono_reflection_bind_generic_method_parameters):
17779         Set `gmethod->reflection_info'.
17780
17781 2004-07-17  Martin Baulig  <martin@ximian.com>
17782
17783         * class.c (mono_class_create_from_typedef): Insert the newly
17784         created class into the hash table before computing the interfaces
17785         since we could be called recursively.
17786
17787 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
17788
17789         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
17790         function to implement stelem.ref in managed code
17791         * class-internals.h, debug-helpers.c: a new wrapper type
17792         for the above.
17793
17794 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
17795
17796         * gc.c: allow GC handles to work even when no GC is compiled in.
17797         Fix part of bug #61134 (GetAddrOfPinnedObject).
17798
17799 2004-07-13  Peter Williams  <peter@newton.cx>
17800  
17801         * process.c (complete_path): Make sure we don't attempt to execute
17802         directories.
17803  
17804 2004-07-12  Geoff Norton <gnorton@customerdna.com>
17805
17806         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
17807           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
17808           and will add/subtract the hour if needed
17809
17810 2004-07-12  Martin Baulig  <martin@ximian.com>
17811
17812         * reflection.c (mono_field_get_object): If we have
17813         `field->generic_info', take the attributes from
17814         `field->generic_info->generic_type'.    
17815
17816 2004-07-12  Martin Baulig  <martin@ximian.com>
17817
17818         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
17819         This function must be called before initializing the runtime.
17820         (mono_debug_init_1): New function; call this after initializing
17821         the runtime, but before loading the assembly.  It tells the
17822         debugger to load corlib and the builtin types.
17823
17824         * mono-debug-debugger.c: Did some larger changes in the debugging
17825         code; support recursive class declarations, make sure we actually
17826         add all classes.
17827
17828 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17829
17830         * debug-helpers.c: undo my previous patch and fixed the real issue in
17831         ../mini/exceptions-x86.c
17832
17833 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17834
17835         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
17836         when no HOME env. variable was set and a NullRef was thrown in a .cctor
17837         called from other .cctors.
17838
17839 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
17840
17841         * loader.c: Removed the mono_loader_wine_init hack now that we are
17842         doing a managed version of Windows.Forms.
17843
17844 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
17845
17846         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
17847         threadpool.c, threads.c: remove static data from rootset.
17848
17849 2004-07-09  Dick Porter  <dick@ximian.com>
17850
17851         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
17852         Don't do any more processing if the matched length was 0.  It was
17853         increasing the size of the string before.  Fixes bug 61167.
17854
17855 2004-07-09  Dick Porter  <dick@ximian.com>
17856
17857         * socket-io.h:
17858         * socket-io.c
17859         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17860         Add support for SO_PEERCRED if its available.
17861
17862 2004-07-09  Peter Bartok <pbartok@novell.com>
17863         * loader.c: winelib.exe.so error message is now only displayed if
17864         MONO_DEBUG is set. To help us avoid questions when people are trying
17865         out the new Managed.Windows.Forms.
17866
17867 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
17868
17869         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
17870         for isinst and castclass wrappers.
17871
17872         * class-internals.h icall.c: Move registration and lookup of JIT icalls
17873         to libmetadata from the JIT, so they could be used by the marshalling
17874         code and the interpreter.
17875
17876         * marshal.c: Register marshalling related JIT icalls here instead of
17877         in mini.c. Use CEE_MONO_ICALL instead of the family of 
17878         CEE_MONO_PROC<x> opcodes to call marshalling functions.
17879
17880         * metadata.h: Remove unneeded marshalling conversions.
17881
17882         * opcodes.c: Update for new opcodes.
17883         
17884 2004-07-08  Martin Baulig  <martin@ximian.com>
17885
17886         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
17887         (mono_debug_get_domain_data): Make this function static.
17888
17889 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
17890
17891         * gc.c, object.h: add nice GC handle API for embedders.
17892
17893 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
17894
17895         * reflection.c: more changes for the new api
17896
17897         * object.c: When we reflect on a field w/ a constant value, it
17898         will not have a memory location, so we must access metadata. Also,
17899         allow easier reading of strings so that we can read them from
17900         the constant data.
17901
17902         * class.c (mono_class_layout_fields): no need for literal fields here.
17903
17904         * class-internals.h: api changes for const fields
17905
17906         * icall.c (ves_icall_get_enum_info): use new apis for const fields
17907
17908 2004-07-06  Martin Baulig  <martin@ximian.com>
17909
17910         * mono-debug.h: Increment version number to 44.
17911
17912         * mono-debug.c (mono_debug_add_wrapper): The second argument is
17913         now a gpointer, rewrote this whole method.
17914
17915         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
17916         function.  Add information about the wrapper in a new "misc table".
17917
17918         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
17919         for the new misc table.
17920
17921 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
17922
17923         * metadata-internals.h image.c: Add a cache for helper signatures.
17924
17925         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
17926
17927 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
17928
17929         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
17930         delegates from a delegate. Fixes #61033.
17931         
17932         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
17933         marshalling of stringbuilder arrays. Fixes #59900.
17934
17935 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
17936
17937         * icall.c: Add EnumBuilder:setup_enum_type icall.
17938
17939 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
17940
17941         * icall.c: Added a new icall for the property version of
17942         OffsetOfStringData.
17943
17944 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
17945
17946         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
17947         it has a constant size across platforms.
17948
17949         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
17950         stack trace.
17951
17952 2004-06-29  Martin Baulig  <martin@ximian.com>
17953
17954         * mono-debug.c (mono_debug_add_method): Protect the whole function
17955         in mono_debugger_lock(), not just parts of it.
17956
17957 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
17958
17959         * reflection.c: make sure padding bytes in heaps are zeroed.
17960
17961 2004-06-24  David Waite  <mass@akuma.org>
17962
17963         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
17964         image.c, loader.c, locales.c, marshal.c, metadata.c,
17965         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
17966         string-icalls.c, threads.c: change to C90-style comments from C99 /
17967         C++ -style
17968
17969 2004-06-24  Dick Porter  <dick@ximian.com>
17970
17971         * threads.c
17972         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
17973         return createdNew.  Fixes bug 60412.
17974
17975         * threads-types.h: 
17976         * icall.c: Add createdNew parameter to CreateMutex icall
17977
17978 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
17979
17980         * reflection.c, object-internals.h: save default value in params.
17981
17982 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17983
17984         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
17985         no need to build a new path combining that with the application base.
17986         Fixes bug #60442.
17987
17988 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
17989
17990         * reflection.c: fixed minor standard compliance issues.
17991
17992 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
17993
17994         * reflection.c: fixed issue with encoding some custom attributes
17995         (arrays in properties and fields, bug #60411).
17996
17997 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17998
17999         * reflection.c: fix start address when copying the public key token.
18000
18001 2004-06-23  Martin Baulig  <martin@ximian.com>
18002
18003         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
18004         the `exc' object in a static object to put it into the GC's root set.
18005
18006 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
18007
18008         * reflection.c: make mono_reflection_setup_internal_class ()
18009         callable a second time to setup a new parent class.
18010
18011 2004-06-23  Dick Porter  <dick@ximian.com>
18012
18013         * threads.c: Check for WAIT_IO_COMPLETION return values.
18014
18015 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
18016
18017         * appdomain.c: Removed the g_free on the public key token. Now copy 
18018         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
18019         * assembly.c: Added public key token string value when loading 
18020         assemblies. Fix bug #60439.
18021         * icall.c: Added missing informations (like public key) in 
18022         GetReferencedAssemblies. Fix #60519.
18023         * image.h: Changed definition for public key token from const char*
18024         public_tok_value to guchar public_key_token [17];
18025         * reflection.c: Updated for changes to public key token.
18026
18027 2004-06-22  Lluis Sanchez Gual
18028
18029         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
18030         for the field in base classes.
18031
18032 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
18033
18034         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
18035         mark headers as not supported, they are installed only for use by the
18036         debugger.
18037
18038 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
18039
18040         * *.c, *.h: avoid namespace pollution in public headers.
18041
18042 2004-06-21  Martin Baulig  <martin@ximian.com>
18043
18044         * exception.c (mono_get_exception_security): It's in
18045         "System.Security", not in "System".
18046
18047         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
18048         the exception classes.
18049
18050 2004-06-21  Martin Baulig  <martin@ximian.com>
18051
18052         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
18053         Protect the exception object from being finalized.
18054
18055 2004-06-21  Martin Baulig  <martin@ximian.com>
18056
18057         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
18058         public function.
18059
18060 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
18061
18062         * reflection.c: Load the assembly in mono_reflection_type_from_name,
18063         if it was not loaded before. Fix parts of #60439.
18064
18065 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
18066
18067         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
18068         code that was broken since Ben's change: wrappers are now
18069         dependent on the method signature only again.
18070
18071 2004-06-21  Martin Baulig  <martin@ximian.com>
18072
18073         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
18074         added interface support.
18075
18076 2004-06-21  Martin Baulig  <martin@ximian.com>
18077
18078         * class.c (mono_vtable_get_static_field_data): New public method.
18079
18080 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
18081
18082         * filewatcher.c : Windows build fix to be compliant with API changes.
18083
18084 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
18085
18086         * class.h, class.c: more accessors.
18087         * metadata.h, metadata.c: prepare for hiding MonoType and
18088         MonoMethodSignature: people should use the accessors from now on
18089         outside of the tree.
18090
18091 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
18092
18093         * *.c, *.h: more API cleanups.
18094
18095 2004-06-18  Jackson Harper  <jackson@ximian.com>
18096
18097         * assembly.c: Trace loading assemblies.
18098         * loader.c: Trace loading native libraries.
18099         * mono-config.c: Trace loading config files.
18100         
18101 2004-06-18  Dick Porter  <dick@ximian.com>
18102
18103         * locales.c: Tell ICU the lengths of strings, it can cope with
18104         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
18105
18106 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
18107
18108         * image.c: swapped name/filename;
18109
18110 2004-06-18  Martin Baulig  <martin@ximian.com>
18111
18112         * mono-debug-debugger.c (write_class): Write the parent class at
18113         the end of the header.
18114
18115 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
18116
18117         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
18118
18119 2004-06-17  Raja R Harinath  <rharinath@novell.com>
18120
18121         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
18122         (bundle_obj): New conditional define.
18123         (BUILT_SOURCES): Remove.
18124         ($(bundle_srcs)): Make parallel-make safe.
18125         (libmonoruntime_la_LIBADD): Make unconditional.
18126         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
18127         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
18128
18129 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
18130
18131         * culture-info-tables.h: It was inconsistent with the latest
18132           supp info files.
18133
18134 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
18135
18136         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
18137         be loaded.
18138
18139         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
18140         with gcc 2.95.
18141
18142 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
18143
18144         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
18145         cleaned up public header threads.h.
18146
18147 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
18148
18149         * Makefile.am, *.c, *.h: more API cleanups.
18150
18151 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
18152
18153         * Makefile.am: removed monosn from compilation.
18154         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
18155         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
18156         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
18157         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
18158         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
18159         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
18160
18161 2004-06-15  Jackson Harper  <jackson@ximian.com>
18162
18163         * assembly.c: Make locales lower case when searching the GAC for
18164         assemblies. gacutil will always make locales lowercase when
18165         installing so this effectively makes them case insensitive.
18166         
18167 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
18168
18169         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
18170         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
18171           parameter which allows to choose whether the wait can be interrupted or 
18172           not. Also added the method mono_monitor_enter(), which locks the monitor
18173           using an infinite wait and without allowing interruption.
18174           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
18175           interrupted.
18176         * object.h: Added new fields in MonoThread. suspend_event holds the event
18177           used to susped/resume the thread. synch_lock is the lock object to use for
18178           modifying the thread state.
18179         * threads.c: Use the new synch_lock object for locking, instead of "this",
18180           which can generate deadlocks.
18181           Moved thread state change in Thread.Sleep and Thread.Join from managed
18182           to unmanaged code. This avoids a deadlock when the thread was suspended
18183           just after acquiring the thread lock.
18184           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
18185           Implemented Thread.Suspend using an event instead of ThreadSuspend,
18186           which is not fully implemented in the io-layer.
18187         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
18188
18189 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
18190
18191         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
18192         threads-types.h: more API cleanups.
18193
18194 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
18195
18196         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
18197         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
18198         threadpool.c, threads.c: first pass at the exported API cleanup.
18199
18200 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
18201
18202         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
18203
18204 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18205
18206         * icall.c: added internalGetHome.
18207
18208 2004-06-14  Dick Porter  <dick@ximian.com>
18209
18210         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
18211         possible to return successfully when '.' or '..' were the only
18212         entries in a directory, but were skipped.  The MonoIOStat was not
18213         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
18214         Fixes bug 59574.
18215
18216 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
18217
18218         * reflection.c: make binaries run on .Net 1.1 by default.
18219
18220 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
18221
18222         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
18223
18224 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
18225
18226         * marshal.c: keep track of struct size with explicit layout
18227         (bug #59979).
18228
18229 2004-06-12  Martin Baulig  <martin@ximian.com>
18230
18231         * mono-debug-debugger.c: Comment out a debugging g_message().
18232
18233 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
18234
18235         * reflection.c, reflection.h: do not free custom attrs that are cached.
18236         * icall.c: use braces to make code clearer.
18237
18238 2004-06-11  Martin Baulig  <martin@ximian.com>
18239
18240         * class.h (MonoInflatedField): New type.
18241         (MonoClassField): Replaced `MonoType *generic_type' with
18242         `MonoInflatedField *generic_info'.
18243
18244         * icall.c
18245         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
18246
18247 2004-06-11  Martin Baulig  <martin@ximian.com>
18248
18249         * reflection.c (mono_image_create_method_token): Correctly encode
18250         varargs methods.
18251
18252 2004-06-11  Martin Baulig  <martin@ximian.com>
18253
18254         * metadata.c (mono_metadata_parse_method_signature): When parsing
18255         a MethodDef which has VarArgs, also set sentinelpos if we don't
18256         have any parameters.
18257
18258 2004-06-11  Martin Baulig  <martin@ximian.com>
18259
18260         * verify.c (mono_method_verify): In CEE_CALL, use
18261         mono_method_get_signature() to get the method's signature, unless
18262         we're a PInvoke method.
18263
18264 2004-06-10  Jackson Harper  <jackson@ximian.com>
18265
18266         * assembly.c: Use <path>/lib/mono/gac for the extra paths
18267         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
18268         logical name as the supplied path is just a prefix to the gac not
18269         the direct path to it.
18270         
18271 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
18272
18273         * reflection.c: make the token for a created method match
18274         the token of the MethodBuilder it was created from
18275         (IKVM requires this behaviour now).
18276
18277 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
18278
18279         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
18280         reflection.c, socket-io.c: leak fixes.
18281
18282 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
18283
18284         * icall.c: handle sentinel pos in vararg methods in position different
18285         from 0.
18286
18287 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18288
18289         * culture-info-tables.h: freshly generated.
18290
18291 2004-06-09  Martin Baulig  <martin@ximian.com>
18292
18293         * loader.c (mono_get_method_constrained): Call `mono_class_init
18294         (constrained_class)'.   
18295
18296 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
18297
18298         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
18299         any methods. Fixes #59629.
18300
18301 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
18302
18303         * culture-info-tables.h: reflecting locale-builder updates.
18304
18305 2004-06-08  Dick Porter  <dick@ximian.com>
18306
18307         * object.h:
18308         * locales.c: Fixed compile warnings, including a real bug in
18309         CompareInfo_internal_compare.
18310         
18311 2004-06-08  Dick Porter  <dick@ximian.com>
18312
18313         * locales.c
18314         (ves_icall_System_Globalization_CompareInfo_internal_index):
18315         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
18316         Double-check the resuls of usearches, because ICU currently
18317         ignores most of the collator settings here.  Fixes bug 59720.
18318         
18319 2004-06-08  Dick Porter  <dick@ximian.com>
18320
18321         * locales.c
18322         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
18323         Fix memory leak and segfault-causing typo.  No idea how this one
18324         lasted so long without being noticed.
18325
18326 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
18327
18328         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
18329         any methods. Fixes #59629.
18330
18331 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18332
18333         * assembly.c:
18334         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
18335         own the critical section before). Removed dead code (that's done
18336         in the preload hook).
18337
18338         (mono_assembly_load_with_partial_name): call the preload hook.
18339
18340 2004-06-08  Martin Baulig  <martin@ximian.com>
18341
18342         * metadata.c (mono_metadata_signature_alloc): Default
18343         `sentinelpos' to -1.
18344
18345         * reflection.c (mono_image_get_array_token): Likewise.
18346
18347 2004-06-08  Martin Baulig  <martin@ximian.com>
18348
18349         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
18350
18351         * metadata.c (mono_metadata_parse_method_signature): When parsing
18352         a MethodDef which has VarArgs, set sentinelpos.
18353
18354         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
18355         `gint16' since we're using -1 for non-varargs methods.
18356
18357         * reflection.c
18358         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
18359         (method_encode_signature): Added varargs support.
18360         (method_builder_encode_signature): Likewise.
18361         (mono_image_get_varargs_method_token): New static method.
18362         (mono_image_create_method_token): New public method; this is
18363         called via an icall instead of mono_image_create_token() when
18364         calling a varargs method.       
18365
18366 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
18367
18368         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
18369
18370 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
18371
18372         * culture-info-tables.h : Reflecting the latest locale-builder that
18373           fixed empty array representation ({} to {0}).
18374
18375 2004-06-07  Jackson Harper  <jackson@ximian.com>
18376
18377         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
18378         looking up extra gac paths. This allows MONO_GAC_PATH to act
18379         exactly like a prefix.
18380         
18381 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
18382
18383         * reflection.c (mono_reflection_type_from_name): Make a copy of the
18384         type name before modifying it. Fixes #59405.
18385
18386 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
18387
18388         * culture-info.h: added fields for "all datetime patterns".
18389         * locales.c: (  ves_icall_System_Globalization_CultureInfo
18390           _construct_datetime_format ()): fill xxx_patterns fields.
18391         * object.h: added fields for "all datetime patterns" to
18392           MonoDateTimeFormatInfo.
18393         * culture-info-tables.h: reflecting locale-builder updates.
18394
18395 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
18396
18397         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
18398         the event has no add and remove methods. Fixes #59629.
18399
18400 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
18401
18402         * object.c: Fixed possible integer overflow when allocating large
18403         strings.
18404
18405 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
18406
18407         * culture-info-tables.h: reflecting locale-builder updates.
18408
18409 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
18410
18411         * culture-info-tables.h: reflecting locale-builder updates.
18412
18413 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
18414
18415         * culture-info-tables.h: reflecting locale-builder updates.
18416
18417 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
18418
18419         * threads.c: Made Thread.Sleep abortable.
18420
18421 2004-06-02  Martin Baulig  <martin@ximian.com>
18422
18423         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
18424
18425         * debug-mono-symfile.h: Bumped symbol file version number to 37.
18426
18427 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
18428
18429         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
18430
18431 2004-05-30  Jackson Harper  <jackson@ximian.com>
18432
18433         * reflection.c: Do not hardcode assembly versions or public key
18434         tokens anymore. All of this except the corlib section was dead
18435         code anyways.
18436         
18437 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
18438
18439         * object.c (mono_runtime_invoke_array): Automatically create boxed
18440         objects for byref valuetypes if needed. Fixes #59300.
18441         
18442         * object.c (mono_method_return_message_restore): Handle 
18443         MONO_TYPE_OBJECT as well.
18444
18445 2004-05-28  Jackson Harper  <jackson@ximian.com>
18446
18447         * reflection.c: The modified type encoding was causing build
18448         problems. Reverted for now.
18449         
18450 2004-05-28  Jackson Harper  <jackson@ximian.com>
18451
18452         * reflection.c/h: Take an assembly ref so that we dont create
18453         fully qualified names when encoding types in the same assembly as
18454         the custom attribute being emitted.
18455         * appdomain.c: Increment version number.
18456         
18457 2004-05-26  Duncan Mak  <duncan@ximian.com>
18458
18459         * icall.c
18460         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
18461         Set the full version number (major, minor, build, revision).
18462
18463 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
18464
18465         * marshal.c (emit_struct_conv): increment src/dst after blit
18466         (mono_marshal_get_managed_wrapper,
18467         mono_marshal_get_native_wrapper): make sure we have marshalling
18468         info before marshalling params (info computation affects
18469         blittable)
18470
18471         * class.c (class_compute_field_layout): correctly deal with
18472         blittable
18473         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
18474         value types (as per what windows dows by default)
18475         (mono_class_setup_mono_type): System.ValueType is blittable
18476         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
18477         blittable
18478
18479         * marshal.c (mono_marshal_load_type_info): flag types  as
18480         non-blittable if the native layout doesn't match the managed
18481         layout
18482
18483 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18484
18485         * appdomain.c: don't add stuff in the private search path that is
18486         above the application base. If application base is not set, there's
18487         no private search path.
18488
18489 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
18490
18491         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
18492         byref struct arguments in native->managed marshalling.
18493
18494 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
18495
18496         * marshal.c (mono_marshal_get_runtime_invoke): correctly
18497         cache methods using signature (special case for methods
18498         that are value type or string class)
18499         
18500         * image.c (mono_image_close): clean up allocated GSList's
18501         in runtime_invoke_cache.
18502
18503 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18504
18505         * mono-config.c: set the correct path for mono_cfg_dir on windows when
18506         there's no MONO_CFG_DIR environment variable defined.
18507
18508 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18509
18510         * threads.c: windows version must be >= 0x0500 to include OpenThread.
18511
18512 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
18513
18514         * threadpool.c: Really wait for 500ms after the async call, even if the wait
18515           is interrumped.
18516         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
18517           before waiting for it, and call CloseHandle after the wait to unref it.
18518           This will make sure that handles are not disposed too early.
18519
18520 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18521
18522         * appdomain.c:
18523         * appdomain.h:
18524         * icall.c: removed
18525         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
18526         needed now.
18527
18528         * object.c: se the application_base only for the domain that runs
18529         Main. Fixes bug #59216,
18530
18531 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18532
18533         * appdomain.c:
18534         * object.c: only the domain in which Main is run have
18535         SetupInformation.ConfigurationFile set, so moved a few lines from
18536         appdomain.c to object.c.
18537
18538 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18539
18540         * appdomain.c: we tried to load [name].(dll|exe), but according
18541         to bug #57710, we must also try [culture]/[name].(dll|exe) and
18542         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
18543         There's a test case attached to bug #58922.
18544
18545 2004-05-27  Dick Porter  <dick@ximian.com>
18546
18547         * icall.c:
18548         * file-io.c: Implemented icalls for locking and unlocking regions
18549         in a file.
18550         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
18551         FALSE on error (fixes both compiler warning and real bug.)
18552
18553 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
18554
18555         * culture-info-tables.h: reflecting locale-builder updates.
18556
18557           (Added missing ChangeLog entry for 05/26)
18558
18559 2004-05-27  Jackson Harper  <jackson@ximian.com>
18560
18561         * locales.c: Fix some cut and paste errors.
18562         
18563 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18564
18565         * mono-config.c: set the correct path for config. directory on windows.
18566
18567 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
18568
18569         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
18570           on win32.
18571
18572 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
18573
18574         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
18575         from pinvoke functions.
18576         
18577         * marshal.c (mono_ftnptr_to_delegate): Implement this.
18578
18579 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
18580
18581         * culture-info-tables.h: reflecting locale-builder updates.
18582
18583 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
18584
18585         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
18586         #59086.
18587
18588 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
18589
18590         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
18591         * icall.c: Modified icalls for RNG.
18592         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
18593         Windows (CryptoAPI).
18594
18595 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
18596
18597         * locales.c: Fix build.
18598
18599 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
18600
18601         * culture-info-tables.h: reflecting locale-builder updates.
18602
18603 2004-05-25  Jackson Harper  <jackson@ximian.com>
18604
18605         * locales.c: When creating the current culture use the $LANGs
18606         specific culture. So DateTimeFormat and NumberFormat entries are created.
18607         
18608 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
18609
18610         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
18611         a char array as parameter.
18612
18613 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
18614
18615         * image.c: In mono_image_open(), always use an absolute path name to
18616           look for already loaded images.
18617
18618 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
18619
18620         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
18621         missing in the windows build (like older cygwin include files).
18622
18623 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
18624
18625         * icall.c: Fixed check for possible integer overflow in Buffer_
18626         BlockCopy icall. Replaced comments style // by /* */.
18627
18628 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
18629
18630         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
18631         
18632         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
18633         check after MONO_VTADDR. Fixes pinvoke2.exe.
18634
18635         * marshal.h marshal.c metadata.h: Add beginnings of support for
18636         ftnptr -> delegate marshalling.
18637
18638 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
18639
18640         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
18641         * threads.c: Fix warnings.
18642
18643 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
18644
18645         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
18646         * icall.c: Registered icalls for Suspend and Resume.
18647         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
18648           Thread.Abort.
18649         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
18650         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
18651         * process.c: Use WaitForSingleObjectEx.
18652         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
18653           checkpoints.
18654         * threads.c, threads.h: Make use of new Ex wait methods. Improved
18655           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
18656           for Suspend and Resume. Added new mono_thread_stop, used for stoping
18657           background threads. Added basic support for Abort in Windows.
18658           Start new threads using a managed delegate invoke wrapper. This wrapper
18659           has an interruption checkpoint that is needed since an interruption
18660           can be requested before the thread leaves the unmanaged code that starts 
18661           the thread.
18662         * marshal.c: Added interruption checkpoint after every native call, and
18663           also before managed calls for wrappers called from unmanaged code to
18664           go into managed code.
18665         * object.h: Added new field in MonoThread to keep track of interruption
18666           requests.
18667
18668 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
18669
18670         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
18671         calls.
18672
18673 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18674
18675         * appdomain.c:
18676         * assembly.c:
18677         * gc.c:
18678         * locales.c:
18679         * mono-config.c:
18680         * rand.c: getenv -> g_getenv (windows!)
18681
18682         * process.c: complete_path is also used on non-windows platforms.
18683
18684 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18685
18686         * icall.c: new signature for Process_Start.
18687
18688         * process.[ch]: new signature for Process_Start. If we're on windows
18689         and UseShellExecute is false, we have to search for the program by
18690         ourselves if we don't get a full path.
18691
18692 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
18693
18694         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
18695         marshalling and call CleanUpNativeData if needed. Fixes #58646.
18696
18697 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18698
18699         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
18700         Fixes bug #58373.
18701
18702 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18703
18704         * process.c: use double quotes to quote program name and arguments on
18705         windows. Fixes bug #58575.
18706
18707 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18708
18709         * file-io.c: don't return "." and ".." when using windows Find*File.
18710
18711 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
18712
18713         * marshal.c: Don't pass wrappers to message init because method 
18714         addressed used to lookup metadata. part of remoting[2|3] fix.
18715
18716 2004-05-15  Jackson Harper  <jackson@ximian.com>
18717
18718         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
18719         path is essentially the same as MONO_PATH except that it points to
18720         GACs instead of lib directories.
18721         * loader.h: The user gac is gone so we dont need function to
18722         enable/disable it.
18723         * mono-config.c: user gac option is now gone.
18724         
18725 2004-05-15  Jackson Harper  <jackson@ximian.com>
18726
18727         * culture-info.h: Make defines more consistent, add calendar data
18728         to the culture info table.
18729         * culture-info-tables.h: Add basic calendar data. Basically
18730         everyone gets default gregorian until all the data is
18731         updated.
18732         * locales.c: Use the new consistent defines. Set calendar data for
18733         culture info objects.
18734         * object.h: add a field for calendar data to CultureInfo
18735         
18736 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
18737
18738         * image.c: image->runtime_invoke_cache is keyed on signatures now.
18739         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
18740         a signature.
18741         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
18742         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
18743         an extra param that is the pointer of the method to invoke. The IL for
18744         the invoke method is no longer specific to the method, but to the
18745         signature of the method. Thus, we can share the same code for multiple
18746         methods. This reduces the number of methods that have to be compiled.
18747
18748 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
18749
18750         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
18751
18752         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18753
18754         * icall.c: Optimize Buffer.BlockCopy.
18755
18756 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18757
18758         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
18759         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
18760         quote). Changed them to "MMMM yyyy".
18761
18762 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
18763
18764         * rand.c
18765         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
18766
18767 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
18768
18769         * reflection.h: Updated after changes to managed structures.
18770
18771         * appdomain.c: Bump corlib version.
18772
18773 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18774
18775         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
18776         windows.
18777
18778 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18779
18780         * Makefile.am: link to ../os/libmonoos.la on windows.
18781
18782         * assembly.c:
18783                 -If MONO_DEBUG, warn about non-existing directories in
18784                 MONO_PATH.
18785                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
18786                 compile time variable.
18787                 -Removed init_default_path and call mono_set_rootdir from
18788                 libmonoos.a instead (windows only).
18789
18790         * assembly.h: declare mono_assembly_getrootdir().
18791
18792         * domain.c:
18793         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
18794
18795         * loader.c: s/getenv/g_getenv/
18796
18797 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
18798
18799         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
18800
18801         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
18802
18803         * metadata.h: Add new marshalling conversions.
18804
18805         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
18806         function.
18807
18808         * reflection.c (mono_reflection_get_type): Lookup the type in all
18809         modules of a multi-module assembly. Fixes #58291.
18810
18811 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
18812
18813         * threads.c: Before aborting a background, set the StopRequested
18814         state.  This avoids throwing the Abort exception.
18815         In mono_thread_manage, don't continue with the shutdown until all
18816         aborted threads have actually stopped.
18817
18818 2004-05-10  Jackson Harper  <jackson@ximian.com>
18819
18820         * locales.c: Remove the modifier from culture names.
18821         
18822 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18823
18824         * Makefile.am: monosn is not installed any more. It has been deprecated
18825         in favor of sn.
18826
18827 2004-05-07  Jackson Harper  <jackson@ximian.com>
18828
18829         * locales.c
18830         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
18831         Fix array construction, add bailout if the length is 0.
18832
18833 2004-05-07  Dick Porter  <dick@ximian.com>
18834
18835         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
18836         machine doesn't have a DNS entry.  Patch by Urs Muff
18837         (umuff@quark.com), fixes bug 57928.
18838
18839 2004-05-06  Jackson Harper  <jackson@ximian.com>
18840
18841         * reflection.c: Handle null PublicTokens properly. alloc mem for
18842         assembly names culture so we dont crash when freeing it.
18843         
18844 2004-05-06  Jackson Harper  <jackson@ximian.com>
18845
18846         * assembly.c: Check the usergac when loading with partial names.
18847         
18848 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
18849
18850         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
18851         does nothing for now (not required for Linux/Windows) but the class
18852         library can call it (and a newer or modified runtime could need it).
18853         * icall.c: Registred icall.
18854
18855 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18856
18857         * loader.c: prints a message on module loading error we set MONO_DEBUG
18858         environment variable.
18859
18860 2004-05-05  Jackson Harper  <jackson@ximian.com>
18861
18862         * appdomain.c: Handle PublicKeyToken=null properly.
18863         
18864 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
18865
18866         * environment.c|h: Added icall ves_icall_System_Environment_
18867         GetOSVersionString to get the current OS version as a string.
18868         * icall.c: Registred icall.
18869
18870 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
18871
18872         * object.c: in mono_object_get_virtual_method(), take into account that
18873         non-virtual methods don't have a slot in the vtable. Check needed when
18874         the object is a proxy.
18875
18876 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
18877
18878         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
18879         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
18880
18881         * object.c (mono_class_compute_gc_descriptor): Fix warning.
18882
18883         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
18884         passed when a valuetype is expected.
18885
18886         * object.c (mono_unhandled_exception): Only set the exit code if the
18887         exception happens in the main thread. Fixes thread5.exe.
18888
18889         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
18890         invalid names. Fixes #58047.
18891
18892 2004-05-03  Jackson Harper  <jackson@ximian.com>
18893
18894         * assembly.c: This line was committed accidently and is unneeded.
18895         
18896 2004-05-03  Jackson Harper  <jackson@ximian.com>
18897
18898         * icall.c: Add new icall for Assembly::LoadWithPartialName
18899         * assembly.c/.h: new function that probes the GAC to load partial
18900         assembly names by Paolo Molaro.
18901         
18902 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18903
18904         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
18905         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
18906         (type_get_fully_qualified_name): Added PublicKeyToken when building a
18907         full type name.
18908
18909 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18910
18911         * appdomain.c: fixed check for 'neutral' culture and removed warning.
18912         * reflection.c: fix bug when parsing a full type name and Version is not
18913         the last thing in the string.
18914
18915 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
18916
18917         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
18918         crashes when it is freed.
18919
18920 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18921
18922         * assembly.c: print the compat warning to stderr.
18923
18924 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
18925
18926         * assembly.c (mono_assembly_load_references): Add a compatibility
18927         hack to run old applications that might be still referencing the
18928         3300-based assemblies, only do this for System.xxx.
18929
18930 2004-05-01  Jackson Harper  <jackson@ximian.com>
18931
18932         * appdomain.c: If the culture is neutral we set it to "".
18933         
18934 2004-04-29  Jackson Harper  <jackson@ximian.com>
18935
18936         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
18937
18938 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
18939  
18940         * string-icalls.c: added low overhead function for copying chars
18941         * icall.c: added needed icall for the above function
18942  
18943 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18944
18945         * icall.c: fix return value of get_global_assembly_cache.  Implemented
18946         Environment.GetLogicalDrives.
18947
18948 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
18949
18950         * rand.c: try and talk to egd or prngd
18951         for random bytes if opening devices fail.
18952
18953 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
18954
18955         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
18956         alignment for the type using the native alignment of its members 
18957         instead of using klass->min_align.
18958
18959         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
18960
18961 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18962
18963         * file-io.c:
18964         * socket-io.c: added check for sys/aio.h.
18965
18966 2004-04-28  Dick Porter  <dick@ximian.com>
18967
18968         * threads.c: Don't abort a thread thats already aborting, when
18969         terminating everything.
18970
18971 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18972
18973         * icall.c: added 2 new async calls for Socket.
18974
18975         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
18976         IO on *nix systems.
18977
18978         * threadpool.c: removed unused variable.
18979
18980 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
18981
18982         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
18983
18984 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
18985
18986         * locales.c: put back string_invariant_tolower () and
18987         string_invariant_toupper ().
18988
18989 2004-04-26 David Waite <mass@akuma.org>
18990
18991         * file-io.h:
18992         * socket-io.h:
18993         * threads.h:
18994         * unicode.h: remove comma from end of enumeration declarations
18995
18996 2004-04-26 David Waite <mass@akuma.org>
18997
18998         * debug-mono-symfile.h:
18999         * decimal.c:
19000         * mono_debug.h:
19001         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
19002
19003
19004 2004-04-26  Jackson Harper  <jackson@ximian.com>
19005
19006         * appdomain.c: Increment version number.
19007         
19008 2004-04-26  Jackson Harper  <jackson@ximian.com>
19009
19010         * appdomain.c: Set assembly references public token value when
19011         PublicKeyToken is specified, not the hash_value. Free public token
19012         values when free assembly name data. Previously the public key
19013         token was hex decoded, however we are using hex encoded public key
19014         tokens, so this is not neccasary.
19015         * assembly.c: Lookup assemblies in the gac if their public token
19016         value is set. Add function to allow enabling user gac
19017         lookups. Specify whether or not the assembly was loaded from the
19018         GAC. Compare full assembly names when checking the cache for
19019         assemblies (Temporarily disabled see comment in code). Remove
19020         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
19021         specifies trace-loader they get extra info to stdout on the
19022         loading of assemblies.
19023         * image.h: Add a field for an assembly references public token
19024         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
19025         whether an assembly has been loaded from the GAC.
19026         * image.c: Remove a corlib -> mscorlib name mapping.
19027         * loader.h: Add function to enable/disable the user gac.
19028         * mono-config.c: Check if the usergac is enabled in the config
19029         file.
19030         * icall.c: New icall to determine whether or not an assembly has
19031         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
19032         * tabldefs.h: Add constant for assemblyref flag that specifies a
19033         full public key is used instead of a public token.
19034         * reflection.c: Remove mscorlib -> corlib mappings. Set
19035         PublicTokenValue instead of hash value. This value is a hex
19036         string so it does not need to be expanded.
19037
19038 2004-04-26  Martin Baulig  <martin@ximian.com>
19039
19040         * mono-debug-debugger.c (mono_debugger_initialize): Set
19041         `mono_debugger_initialized' before calling mono_debug_lock().
19042
19043 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
19044
19045         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
19046           InternalToUpper/InternalToLower.
19047         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
19048           removed invariant culture shortcut.  This is now done in managed code.
19049         * locales.c: (string_invariant_toupper/tolower) removed.
19050
19051 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19052
19053         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
19054         Added Poll internal call.
19055
19056         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
19057         call for Poll. Select was too heavy for polling a single socket.
19058
19059         * threadpool.[ch]: added mono_threadpool_cleanup.
19060         * threads.c: use it. Don't use Thread_Abort on windows.
19061
19062 2004-04-23  Martin Baulig  <martin@ximian.com>
19063
19064         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
19065
19066 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
19067
19068         * icall.c: Registred new icalls for key pair protection and added an
19069         icall for Environment.GetFolderPath on Windows.
19070         * security.c|h: Added new icalls for key pair protection.
19071
19072 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19073
19074         * socket-io.c: don't display the non-supported family warning for known
19075         families. Now this is not displayed on windows when checking support
19076         for IPv4/IPv6.
19077
19078 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19079
19080         * class.c: don't display the layout warning for static fields.
19081
19082 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
19083
19084         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
19085         * locales.c, locales.h: Added new icalls for culture-specific
19086         Char.ToLower and Char.ToUpper.
19087
19088 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19089
19090         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
19091         by David Waite.
19092
19093 2004-04-20  Martin Baulig  <martin@ximian.com>
19094
19095         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
19096         of the type name before passing it to mono_reflection_type_from_name().
19097
19098 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
19099
19100         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
19101         encodings here. Fixes #56965.
19102
19103 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
19104
19105         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
19106         fix test on strstr result not that I can see anything that
19107         relies on the result.
19108
19109 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
19110
19111         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
19112         Fixes #57081.
19113
19114         * marshal.c (mono_marshal_get_string_encoding): New helper function.
19115
19116         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
19117         function to determine which marshalling to use for strings. Fixes
19118         #56965.
19119
19120         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
19121
19122         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
19123
19124 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
19125
19126         * icall.c: #include mono-config.h
19127
19128 2004-04-15  Jackson Harper  <jackson@ximian.com>
19129
19130         * culture-info-tables.h: Fix date formats for en-US culture.
19131         
19132 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
19133
19134         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
19135         ThreadPool.SetMinThreads.
19136         * threadpool.c: Implemented ThreadPool.GetMinThreads and
19137         ThreadPool.SetMinThreads.
19138
19139 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
19140
19141         * mono-config.c: also load the .config file in the directory
19142         where the assembly was found.
19143
19144 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
19145
19146         * assembly.c: load per-assembly config files.
19147         * icall.c: decrapified code to get the config dir and moved to
19148         mono-config.c.
19149         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
19150         per-assembly config files. When doing a dll map lookup give precedence
19151         to the per-assembly data.
19152
19153 2004-04-14  Martin Baulig  <martin@ximian.com>
19154
19155         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
19156         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
19157         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
19158
19159         * mono-debugger-debugger.c: While the debugger is locked, remember
19160         whether the symbol tables have changes and send one single
19161         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
19162
19163 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
19164
19165         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
19166
19167         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
19168         function.
19169
19170         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
19171         account when marshalling string arrays. Fixes #56965.
19172
19173 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
19174
19175         * icall.c: Add new icalls mapping for security.
19176         * security.c|h: Add internal calls for WindowsIdentity,
19177         WindowsImpersonationContext and WindowsPrincipal.
19178
19179 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
19180
19181         * class.c: Added comment to ensure the System.MonoDummy class
19182         is removed when no longer necessary
19183
19184 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
19185
19186         * appdomain.c: Pass arguments to the bootstraping exceptions to
19187         minimize JITed methods at boot
19188
19189         * metadata.c (mono_exception_from_name_two_strings): Allow for the
19190         second string to be null.
19191
19192         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
19193         Change the protocol to minimize the JIT methods at startup.  Now
19194         it Returns the internal codepage, if the value of "int_code_page"
19195         is 1 at entry, and we can not compute a suitable code page
19196         number, returns the code page as a string.
19197
19198 2004-04-13  Jackson Harper  <jackson@ximian.com>
19199
19200         * culture-info-tables.h: Fix number of decimal digits for all
19201         english locales.
19202
19203 2004-04-13  Jackson Harper  <jackson@ximian.com>
19204
19205         * icall.c: Clairfy out of sync error message. It is not always
19206         your corlib that is out of sync.
19207
19208 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
19209
19210         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
19211         properties when only the set accessor is overriden. Fixes #55874.
19212
19213 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
19214
19215         * assembly.c (mono_assembly_load_references): Make this thread safe.
19216         Fixes #56327.
19217
19218 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
19219
19220         * monosn.c: Add missing initialization calls.
19221
19222 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
19223
19224         * locales.c:
19225         ves_icall_System_Globalization_CultureInfo_construct_number_format
19226         Fix g_assert so it compiles on fussier compilers re int/ptr
19227         mismatch
19228
19229 2004-04-08  Dick Porter  <dick@ximian.com>
19230
19231         * socket-io.h:
19232         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
19233         53992.  Also rearrange the code so that the internal calls return
19234         an error value and exceptions are thrown from managed code.
19235
19236         * icall.c: Add type info to the socket icalls.
19237
19238 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19239
19240         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
19241         owes me a beer.
19242
19243 2004-04-07  Martin Baulig  <martin@ximian.com>
19244
19245         * class.c (mono_class_from_generic_parameter): Don't default
19246         `klass->parent' to `mono_defaults.object_type'.
19247
19248 2004-04-07  Martin Baulig  <martin@ximian.com>
19249
19250         * reflection.c (mono_reflection_initialize_generic_parameter): Set
19251         `param->pklass->reflection_info'.       
19252
19253 2004-04-07  Jackson Harper  <jackson@ximian.com>
19254
19255         * culture-info-tables.h: Fix date separator symbol.
19256         
19257 2004-04-07  Martin Baulig  <martin@ximian.com>
19258
19259         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
19260         from System.Type to System.MonoType.
19261
19262 2004-04-07  Martin Baulig  <martin@ximian.com>
19263
19264         * reflection.h
19265         (MonoReflectionGenericParam): Added `has_reference_type' and
19266         `has_value_type' fields.
19267
19268         * reflection.c (mono_image_get_generic_param_info): Encode the
19269         correct flags if we have the `class' or `struct' constraint.
19270
19271 2004-04-07  Martin Baulig  <martin@ximian.com>
19272
19273         * reflection.h
19274         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
19275
19276 2004-04-07  Jackson Harper  <jackson@ximian.com>
19277
19278         * appdomain.c: Revert extra patches, just wanted to bump the
19279         version number.
19280         
19281 2004-04-07  Jackson Harper  <jackson@ximian.com>
19282
19283         * Makefile.am: Add culture-info private headers.
19284         * icall.c: Add new icalls for contructing locales.
19285         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
19286         * locales.h: Declare new culture info construction methods.
19287         * object.h: Add new fields used to avoid the CultureMap to
19288         MonoCultureInfo.
19289         * culture-info.h: Definition of structs used in the culture info
19290         tables.
19291         * culture-info-tables.h: Autogenerated tables that contain culture
19292         info data. This file was generated with the locale-builder tool.
19293         * appdomain.c: Incement corlib version number.
19294         
19295 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
19296
19297         * appdomain.c: (mono_runtime_init) move mono_thread_init
19298         to before mono_object_new calls so critical sections
19299         are initialized before use.
19300
19301 2004-04-07  Martin Baulig  <martin@ximian.com>
19302
19303         * icall.c
19304         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
19305         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
19306         (ves_icall_MonoGenericParam_initialize): Removed.
19307         (monogenericparam_icalls): Removed.
19308         (generictypeparambuilder_icalls): Added new table for
19309         System.Reflection.Emit.GenericTypeParameterBuilder.
19310
19311         * reflection.c
19312         (mono_reflection_define_generic_parameter): Removed.
19313         (mono_reflection_initialize_generic_parameter): This is now called
19314         from GenericTypeParameterBuilder's .ctor.
19315
19316 2004-04-06  Martin Baulig  <martin@ximian.com>
19317
19318         * class.c (mono_class_init): Don't inflate nested classes in a
19319         generic instance.
19320         (mono_type_get_name_recurse): Include the generic arguments for
19321         generic instances and generic type declarations.
19322         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
19323         (_mono_class_get_instantiation_name): Removed.
19324         (mono_class_create_generic): Always use `gklass->name' as our name.
19325
19326         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
19327
19328         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
19329         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
19330         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
19331         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
19332         closed generic methods here.
19333
19334         * reflection.c
19335         (mono_reflection_generic_inst_get_nested_types): Removed.
19336         (inflate_mono_method): Copy the generic parameters from the
19337         MonoMethodHeader into out MonoGenericMethod.
19338
19339 2004-04-06  Martin Baulig  <martin@ximian.com>
19340
19341         * row-indexes.h
19342         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
19343
19344         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
19345
19346         * reflection.c (build_compressed_metadata): If we have any entries
19347         in the GenericParam, MethodSpec or GenericParamConstraint tables,
19348         set the header version to 1.1.
19349
19350 2004-04-06  Martin Baulig  <martin@ximian.com>
19351
19352         * class.c (mono_class_init): If we're a generic instance,
19353         initialize our nested classes, too.
19354         (_mono_class_get_instantiation_name): Deal with the new `!%d'
19355         suffix. 
19356
19357 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19358
19359         * process.c: quote the argument passed to the shell on windows.
19360
19361 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
19362
19363         * threads.c (mono_alloc_special_static_data): Allow this to be
19364         called during startup.
19365
19366 2004-04-02  Martin Baulig  <martin@ximian.com>
19367
19368         * icall.c
19369         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
19370
19371 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
19372
19373         * icall.c: Fix build.
19374
19375 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
19376
19377         * Makefile.am: Added security.c|h.
19378         * icall.c: Added icall for get_UserName;
19379         * security.c: New file for security related icalls. Added function
19380         get_UserName for System.Environment (fix #56144).
19381         * security.h: New. Header file for security.c
19382
19383 2004-04-02  Dick Porter  <dick@ximian.com>
19384
19385         * icall.c: Deleted the icalls that were obsoleted some time ago
19386         by the ICU string code, and which were mixed into the icall
19387         rearranging.  Fixes bug 55969.
19388
19389         * string-icalls.h: 
19390         * string-icalls.c: Deleted the code that those icalls reference.
19391
19392 2004-04-01  Martin Baulig  <martin@ximian.com>
19393
19394         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
19395
19396         * class.c (mono_class_from_generic_parameter): Don't set 
19397         TYPE_ATTRIBUTE_INTERFACE.
19398         (my_mono_class_from_generic_parameter): Likewise.
19399
19400 2004-04-01  Martin Baulig  <martin@ximian.com>
19401
19402         * loader.c (find_method): Added an optional `MonoClass *ic'
19403         argument to search in a specific interface.
19404         (mono_get_method_constrained): New public function.
19405
19406 2004-04-01  Martin Baulig  <martin@ximian.com>
19407
19408         * reflection.c (mono_image_get_generic_field_token): Use the
19409         `handleref' cache here.
19410
19411 2004-04-01  Martin Baulig  <martin@ximian.com>
19412
19413         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
19414
19415         * reflection.c (create_generic_typespec): Use the `typespec' hash
19416         here, not the `typeref' one.    
19417
19418 2004-04-01  Martin Baulig  <martin@ximian.com>
19419
19420         * class.c (mono_class_inflate_generic_type): Moved the
19421         functionality into a new static inflate_generic_type() which
19422         returns NULL if it didn't do anything.  Only increment the
19423         `mono_stats.inflated_type_count' if we actually inflated
19424         something.
19425         (mono_class_get_full): Check the classes type to see whether we
19426         need to inflate it; also inflate MONO_TYPE_(M)VAR.
19427
19428 2004-04-01  Jackson Harper  <jackson@ximian.com>
19429
19430         * reflection.c: Set culture for assembly references.
19431         
19432 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
19433
19434         * reflection.[ch], icall.[ch], Fix support for pinning variables.
19435
19436 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19437
19438         * assembly.c:
19439         (do_mono_assembly_open): the critical section also covers
19440         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
19441
19442 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19443
19444         * threads.c:
19445         (mono_manage_threads): abort the background threads when finishing.
19446         Fixes bug #47232.
19447
19448 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19449
19450         * gc.c: only close the done_event handle if there was no timeout.
19451         C-ified comments.
19452
19453 2004-03-30  Martin Baulig  <martin@ximian.com>
19454
19455         * icall.c (icall_entries): It's called "System.Activator", not
19456         "System.Activation".    
19457
19458 2004-03-30  Martin Baulig  <martin@ximian.com>
19459
19460         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
19461         (mono_class_create_from_typespec): Likewise.
19462
19463 2004-03-30  Martin Baulig  <martin@ximian.com>
19464
19465         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
19466         `has_ctor_constraint' and `initialized'.
19467
19468 2004-03-30  Martin Baulig  <martin@ximian.com>
19469
19470         * reflection.c (encode_new_constraint): New static function to add
19471         the constructor constraint attribute to a type parameter.
19472         (encode_constraints): Call encode_new_constraint() if necessary.
19473
19474         * reflection.h
19475         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
19476
19477         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
19478         
19479 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
19480
19481         * reflection.c, icall.c: add support for pinning variables. 
19482
19483 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
19484
19485         * marshal.c (mono_marshal_get_managed_wrapper):
19486         init bool local with zero rather than null.
19487
19488 2004-03-29  Martin Baulig  <martin@ximian.com>
19489
19490         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
19491         the "official" behavior here.
19492         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
19493
19494 2004-03-29  Martin Baulig  <martin@ximian.com>
19495
19496         * icall.c: Reflect latest API changes.
19497
19498 2004-03-29  Martin Baulig  <martin@ximian.com>
19499
19500         * loader.c (mono_get_method_from_token): Also call
19501         mono_metadata_load_generic_params () for abstract and interface
19502         methods; replace the type arguments in the method signature with
19503         the ones which are loaded from the metadata.
19504
19505 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
19506
19507         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
19508         of the lock is not the current thread. MS.NET don't do it, in spite of
19509         what the documentation says. See bug #56157.
19510
19511 2004-03-28  Martin Baulig  <martin@ximian.com>
19512
19513         * class.c (mono_class_init): Don't call init_properties() and
19514         init_events() for generic instances; set `prop->parent' when
19515         inflating properties.
19516
19517         * reflection.c (mono_generic_inst_get_object): Call
19518         `mono_class_init (ginst->klass)'.
19519         (mono_type_get_object): Only create a MonoGenericInst if your
19520         generic type is a TypeBuilder.
19521         (do_mono_reflection_bind_generic_parameters): Only set
19522         `ginst->is_dynamic' if our generic type is a TypeBuilder.
19523
19524 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
19525
19526         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
19527         Fixes #56091.
19528
19529 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19530
19531         * icall.c: added Kill_internal icall.
19532         * process.[ch]: added Kill_internal icall.
19533
19534 2004-03-25  Martin Baulig  <martin@ximian.com>
19535
19536         * class.h (MonoStats): Added `generic_instance_count',
19537         `inflated_method_count', `inflated_type_count' and
19538         `generics_metadata_size'.       
19539
19540 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19541
19542         * reflection.c: no warnings now.
19543
19544 2004-03-25  Martin Baulig  <martin@ximian.com>
19545
19546         * class.c (mono_class_get_full): New public function; does a
19547         mono_class_get(), but also takes a `MonoGenericContext *'.
19548
19549         * loader.c (mono_field_from_memberref): Renamed to
19550         `field_from_memberref', made static and added `MonoGenericContext *'
19551         argument.
19552         (mono_field_from_token): Added `MonoGenericInst *' argument.
19553         (method_from_memberef): Likewise.
19554         (mono_get_method_from_token): Likewise.
19555         (mono_get_method_full): New public function; does a
19556         mono_get_method(), but also takes a `MonoGenericContext *'.
19557
19558         * verify.c (mono_method_verify): Get the method's generic context
19559         and pass it to mono_field_from_token(), mono_get_method_full() and
19560         mono_class_get_full().
19561
19562 2004-03-25  Martin Baulig  <martin@ximian.com>
19563
19564         * class.c (mono_class_inflate_generic_type): Take a
19565         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
19566         `MonoGenericMethod *'.
19567
19568 2004-03-25  Martin Baulig  <martin@ximian.com>
19569
19570         * loader.h (MonoMethodInflated): Store the MonoGenericContext
19571         instead of the MonoGenericMethod here.
19572
19573 2004-03-25  Martin Baulig  <martin@ximian.com>
19574
19575         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
19576         each time we create a new MonoGenericInst, we also create a new
19577         context which points back to us.
19578
19579         * class.c (inflate_method): Use `ginst->context' instead of
19580         creating a new context.
19581
19582         * loader.c (method_from_memberref): Use
19583         `klass->generic_inst->context' instead of creating a new context.
19584
19585 2004-03-25  Martin Baulig  <martin@ximian.com>
19586
19587         * class.h (MonoGenericContext): New struct.
19588         (MonoGenericMethod): Removed `generic_inst'.
19589
19590         * class.c (mono_class_inflate_generic_method): Take a
19591         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
19592
19593 2004-03-25  Martin Baulig  <martin@ximian.com>
19594
19595         * loader.h (MonoMethodInflated): New typedef.
19596
19597         * metadata.h (MonoMethodSignature): Removed `gen_method', make
19598         `generic_param_count' consume just 30 bits, added `is_inflated'
19599         and `has_type_parameters' flags (one bit each).
19600
19601         * class.c (mono_class_inflate_generic_method): Create a
19602         MonoMethodInflated instead of a MonoMethodNormal and set
19603         `is_inflated' in the method signature.
19604
19605         * class.h (MonoGenericMethod): Removed `generic_method'.
19606
19607 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
19608
19609         * image.c: Make sure the name of a MonoImage is always an absolute path.
19610           This fixes bug #54415.
19611
19612 2004-03-24  Martin Baulig  <martin@ximian.com>
19613
19614         * class.c (mono_class_setup_vtable): If we're a generic instance,
19615         use our generic type's vtable size.
19616
19617 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
19618
19619         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
19620         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
19621         problems.
19622
19623 2004-03-23  Martin Baulig  <martin@ximian.com>
19624
19625         * class.h (MonoDynamicGenericInst): Added `int count_events' and
19626         `MonoEvent *events'.
19627
19628         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
19629         (typebuilder_icalls): Added "get_event_info"; calls
19630         mono_reflection_event_builder_get_event_info(). 
19631
19632         * reflection.c (mono_reflection_generic_inst_initialize): Added
19633         `MonoArray *events'.
19634         (mono_reflection_event_builder_get_event_info): New function.
19635
19636 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
19637
19638         * object.h: add mono_type_initialization_init
19639
19640         * object.c (mono_runtime_class_init): 
19641         implement class constructor synchronization rules
19642         to cope with threading issues.  
19643         add mono_type_initialization_init
19644
19645         * appdomain.c (mono_runtime_init): call 
19646         mono_type_initialization_init
19647
19648         * class.h: removing initializing field from MonoVTable
19649
19650 2004-03-23  Martin Baulig  <martin@ximian.com>
19651
19652         * class.c (my_mono_class_from_generic_parameter): Use
19653         `param->name' if it's not NULL. 
19654
19655 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
19656
19657         * class.c: do not insert non-virtual methods in the vtable.
19658         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
19659         that means the method is non-virtual. This never would have
19660         happened before.
19661
19662 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
19663
19664         * profiler.c: Added lock for accessing coverage_hash.
19665
19666 2004-03-22  Martin Baulig  <martin@ximian.com>
19667
19668         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
19669         `method->method->signature->generic_param_count != 0' to make it
19670         work for interface methods.
19671
19672 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19673
19674         * process.c: quote the string passed to the shell using g_shell_quote.
19675
19676 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19677
19678         * threads.c:
19679         (mono_threads_manage): don't remove the finalizer thread and self
19680         from the threads hash table so that mono_thread_manage can be called
19681         more than once.
19682
19683 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19684
19685         * process.c: quote the arguments when UseShellExecute is true. Fixes
19686         bug #55790.
19687
19688 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19689
19690         * threads.c: set mono_thread_detach as a cleanup routine for every
19691         thread. This way it's always executed upon thread termination, either
19692         aborted or finished normally. No more xsp hangs!
19693
19694 2004-03-17  Martin Baulig  <martin@ximian.com>
19695
19696         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
19697         `int count_nested' and a `MonoType **nested'.
19698
19699         * reflection.c (mono_reflection_bind_generic_parameters): Moved
19700         most of the functionality into a new static
19701         do_mono_reflection_bind_generic_parameters() and don't take a
19702         `MonoType *nested_in' argument any more.  Don't compute nested
19703         types here.
19704         (mono_reflection_generic_inst_get_nested_types): New public method
19705         to get nested types.
19706
19707         * class.c (mono_class_create_generic): Set `klass->nested_in' if
19708         we're a nested class.
19709
19710         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
19711         mono_reflection_generic_inst_get_nested_types() to compute the
19712         nested types.
19713
19714 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
19715
19716         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
19717         descriptive error message under windows.
19718         
19719 2004-03-17  Martin Baulig  <martin@ximian.com>
19720
19721         * class.c (dup_type): Added `const MonoType *original' argument;
19722         copy the attrs from the original type.
19723
19724 2004-03-17  Martin Baulig  <martin@ximian.com>
19725
19726         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
19727         `m->generic_inst_cache' here.
19728
19729 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
19730
19731         * exception.h exception.c: Add stack_overflow_exception.
19732
19733 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19734
19735         * threadpool.c:
19736         (overlapped_callback): call SetEvent *after* invoking the callback.
19737         No need to call CloseHandle.
19738
19739 2004-03-16  Martin Baulig  <martin@ximian.com>
19740
19741         * reflection.c (mono_image_get_fieldref_token): Take a
19742         `MonoReflectionField *' instead of a `MonoClassField *' and a
19743         `MonoClass *'; store the `MonoReflectionField *' in the hash.
19744
19745 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19746
19747         * appdomain.c: don't add the culture to the filename we're looking for
19748         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
19749
19750 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19751
19752         * locales.c: don't ignore symbols when doing case insensitive compares.
19753         Thanks Dick! Fixes bug #54046.
19754
19755         * threads.c: surround 'threads' usage with enter/leave in
19756         mono_thread_manage.
19757
19758 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
19759
19760         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
19761         implicitly marshalled as [Out]. Fixes #55450.
19762
19763         (mono_marshal_get_runtime_invoke): Zero out the result if there is
19764         an exception.
19765
19766 2004-03-16  Martin Baulig  <martin@ximian.com>
19767
19768         * class.c (mono_class_from_generic_parameter): Use the actual
19769         parameter name. 
19770
19771 2004-03-16  Martin Baulig  <martin@ximian.com>
19772
19773         * reflection.c (type_get_signature_size): New static function.
19774         Compues the size of the type in a method signature.
19775         (method_get_signature_size): New static function; calls
19776         type_get_signature_size() to compute the actual size of the
19777         method's signature.
19778         (method_encode_signature): Use method_get_signature_size() to get
19779         the signature's size rather than using `nparams * 10'.
19780
19781 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19782
19783         * file-io.h: define here WapiOverlapped on windows. I don't want the
19784         regular OVERLAPPED one.
19785
19786         * file-io.c:
19787         * threadpool.c: somehow, BindIoCompletionCallback is not found.
19788         Disabling AIO on windows.
19789
19790 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19791
19792         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
19793         bug #55385.
19794
19795 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19796
19797         * appdomain.c: upgraded corlib version.
19798
19799         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
19800         and BeginWrite. Allow opening files for asynchrnous operations.
19801
19802         * file-io.h: new struct that maps FileStreamAsyncResult.
19803         * icall.c: added new icalls.
19804         * process.[ch]: support setting child process environment variables
19805         and use the SHELL or COMSPEC when UseShellExecute is true.
19806
19807         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
19808         callback for async. IO is here and also BindHandle.
19809
19810         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
19811         from here.
19812
19813 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
19814
19815         * reflection.c (create_custom_attr): Allow len == 0.
19816
19817         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
19818         computation on big-endian machines.
19819
19820 2004-03-13  Martin Baulig  <martin@ximian.com>
19821
19822         * class.h (MonoGenericInst): Added `int count_ifaces'.
19823
19824         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
19825         `ginst->count_ifaces' instead `klass->interface_count' since we
19826         may get called before the vtable is created.
19827
19828         * loader.c (mono_method_get_param_names): If we're a generic
19829         instance, return and don't initialize the class.
19830
19831         * reflection.c (mono_reflection_setup_generic_class): Don't call
19832         ensure_runtime_vtable().
19833         (mono_reflection_bind_generic_parameters): Set
19834         `ginst->count_ifaces'.
19835
19836 2004-03-11  Jackson Harper <jackson@ximian.com>
19837
19838         * icall.c:
19839         * unicode.c:
19840         * unicode.h: Remove unused System.Char icalls.
19841         
19842 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
19843
19844         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
19845         code when we P/Invoke the first library in Windows.Forms, instead
19846         of when we first open the assembly.
19847
19848         * assembly.c: Drop the lookup from here.
19849
19850 2004-03-10  Martin Baulig  <martin@ximian.com>
19851
19852         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
19853         class for properties, fields and events.  Finally fixes #54945.
19854
19855 2004-03-10  Martin Baulig  <martin@ximian.com>
19856
19857         * metadata.c (mono_metadata_class_equal): New static function;
19858         checks whether two generic instances or two generic parameters are
19859         equal.
19860         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
19861         compare classes.        
19862
19863 2004-03-10  Martin Baulig  <martin@ximian.com>
19864
19865         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
19866
19867         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
19868         argument and write it into the `reflection_info' field.
19869
19870         * icall.c
19871         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
19872         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
19873
19874 2004-03-09  Jackson Harper  <jackson@ximian.com>
19875
19876         * char-conversions.h: use 8 bits for numeric data its all we need
19877         * icall.c: numeric data is only 8 bits now.
19878
19879 2004-03-09  Martin Baulig  <martin@ximian.com>
19880
19881         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
19882
19883         * class.c (init_properties, init_events): Initialize the new
19884         `parent' field.
19885
19886         * reflection.c (typebuilder_setup_properties): Likewise.
19887         (typebuilder_setup_events): Likewise.
19888
19889         * reflection.h (MonoEventInfo): Replaced `parent with
19890         `declaring_type' and `reflected_type'.
19891
19892         * icall.c (ves_icall_get_property_info): Distinguish between
19893         declaring and reflected type.
19894         (ves_icall_get_event_info): Likewise.
19895
19896 2004-03-09  Martin Baulig  <martin@ximian.com>
19897
19898         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
19899         (ves_icall_Type_GetField): Correctly set field->klass.
19900
19901 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
19902
19903         * loader.h: Fix warning.
19904
19905 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
19906
19907         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
19908         library routine if present.  Notice that it will still continue
19909         executing even if its missing, for those working on the Gtk#
19910         edition of Windows.Forms.
19911
19912         * assembly.c (do_mono_assembly_open): If loading the
19913         System.Windows.Forms call mono_loader_wini_init.
19914
19915 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
19916
19917         * class.h: Added MonoRemoteClass struct.
19918         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
19919         function for MonoStrings.
19920         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
19921         Added internal call for getting the proxy type.
19922         * marshal.c: Get the type of transparent proxies from its remote_class.
19923         Added methods that generate the IL for type checks and casts:
19924         mono_marshal_get_isinst, mono_marshal_get_castclass, 
19925         mono_marshal_get_proxy_cancast.
19926         * marshal.h: Declaration of the previous new methods.
19927         * object.c: Added new moethods for creating and updating MonoRemoteClass
19928         instances: mono_remote_class, mono_upgrade_remote_class, 
19929         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
19930         * verify.c: FIx transparent_proxy_fields layout.
19931         * appdomain.c: Bump corlib version.
19932
19933 2004-03-04  Jackson Harper  <jackson@ximian.com>
19934
19935         * icall.c: Add icall to access char conversion tables.
19936         * char-conversions.h: Character conversion tables.
19937         * Makefile.am: Add char-conversions.h private header file.
19938         
19939 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
19940
19941         * appdomain.c (unload_thread_main): Increase unloading timeout to
19942         10 sec as a temporary workaround for Nant problems.
19943
19944 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
19945
19946         * gc.c: Add checks for GC_enable and GC_disable.
19947
19948         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
19949         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
19950         (bug #54988).
19951         
19952 2004-02-27  Martin Baulig  <martin@ximian.com>
19953
19954         * reflection.c (mono_reflection_bind_generic_parameters): Take a
19955         `MonoReflectionType *' instead of a `MonoType *'.
19956
19957 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
19958
19959         * gc.c (run_finalize): Avoid finalizing the object representing the
19960         finalizer thread.
19961         (finalizer_thread): Fix warning.
19962
19963 2004-02-25  Martin Baulig  <martin@ximian.com>
19964
19965         * class.c (_mono_class_get_instantiation_name): Added `int offset'
19966         argument for nested types.
19967         (mono_class_create_generic): Added support for nested generictypes.
19968
19969         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
19970         `GList *nested'.
19971
19972         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
19973
19974         * reflection.c (method_encode_signature): Increase the minimum
19975         value of `size' from 10 to 11.
19976         (mono_reflection_bind_generic_parameters): Take `int type_argc'
19977         and `MonoType **types' arguments instead of the `MonoArray
19978         *types'; added `MonoType *nested_in'.  Recursively instantiate
19979         nested classes. 
19980
19981 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
19982
19983         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
19984         stack_overflow_ex members which are used by exception handling.
19985
19986         * appdomain.c (mono_runtime_init): Initialize the new members.
19987
19988         * gc.c (mono_gc_enable): New helper function.
19989         * gc.c (mono_gc_disable): New helper function.
19990
19991 2004-02-23  Martin Baulig  <martin@ximian.com>
19992
19993         * icall.c: I must have been really stupid - make it actually work
19994         this time ;-)
19995
19996 2004-02-23  Martin Baulig  <martin@ximian.com>
19997
19998         * loader.c (method_from_memberref): Only inflate the method if
19999         it's in another klass.
20000
20001 2004-02-23  Martin Baulig  <martin@ximian.com>
20002
20003         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
20004         (mono_class_init): If we're a generic instance and an interface,
20005         compute `class->interface_id'; also create `class->interfaces'
20006         here and inflate them.
20007
20008         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
20009         `ginst->is_open'.
20010         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
20011
20012         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
20013
20014 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
20015
20016         * reflection.c (method_encode_code): Improved the error message
20017         generated by the exception.
20018
20019 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20020
20021         * icall.c: Martin did not do what he said in the ChangeLog for
20022         2004-02-18, but put back the changes for properties and events.
20023         Commenting those changes out again and adding comment to bug #54518.
20024         
20025         * process.c: removed warning.
20026
20027 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
20028
20029         * marshal.c (emit_struct_conv): Print an error message instead of
20030         asserting when a type does not have the StructLayout attribute.
20031
20032 2004-02-20  Martin Baulig  <martin@ximian.com>
20033
20034         * reflection.c (mono_type_get_object): Also use the cache for
20035         generic instances.
20036         (mono_reflection_bind_generic_parameters): Always compute
20037         `ginst->ifaces'.        
20038
20039 2004-02-20  Martin Baulig  <martin@ximian.com>
20040
20041         * class.h (MonoGenericMethod): Removed `klass'.
20042
20043         * class.c (mono_class_inflate_generic_method): Added `MonoClass
20044         *klass' argument.
20045
20046 2004-02-20  Martin Baulig  <martin@ximian.com>
20047
20048         * reflection.c (method_encode_methodspec): Actually use the
20049         uninflated signature for the memberref.
20050
20051 2004-02-20  Martin Baulig  <martin@ximian.com>
20052
20053         * class.h (MonoGenericMethod): Removed `declaring'.
20054
20055         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
20056         is NULL, compute it here.
20057
20058 2004-02-20  Martin Baulig  <martin@ximian.com>
20059
20060         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
20061
20062         * metadata.c (mono_metadata_generic_inst_hash): New method.
20063         (mono_metadata_generic_inst_equal): New method.
20064
20065         * reflection.c (mono_reflection_bind_generic_parameters): Use the
20066         `klass->image->generic_inst_cache' cache to avoid creating
20067         duplicate MonoGenericInst's.
20068
20069         * class.c (mono_class_inflate_generic_type): Use the cache.
20070
20071 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
20072
20073         * object.c: fixed gc descriptor calculation for embedded valuetypes.
20074
20075 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20076
20077         * icall.c: added Socket.WSAIoctl icall.
20078
20079         * socket-io.[ch]: implemented
20080         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
20081
20082 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
20083
20084         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
20085
20086 2004-02-18  Urs C Muff  <umuff@quark.com>
20087
20088         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
20089         this work on PPC and other big-endian architectures.
20090
20091         * debug-mono-symfile.h: Prepended the names of all the `guint32'
20092         fields with an underscore to make sure they're only accessed by
20093         the read32() macro.
20094
20095 2004-02-18  Martin Baulig  <martin@ximian.com>
20096
20097         * icall.c: Put the klass->refclass changes back for methods and
20098         fields, but not for properties and events.  We're currently not
20099         distinguishing between DeclaringType and ReflectedType for
20100         properties and events, that's what caused the regressions.
20101
20102 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20103
20104         * object.c:
20105         (mono_async_result_new): the handle can be NULL.
20106
20107         * threadpool.c: Use an event instead of a semaphore, don't initialize
20108         it until needed. This saves quite a few semaphores from being created
20109         when using the threadpool.
20110
20111 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
20112
20113         * object.c (mono_string_is_interned_lookup): Fix interning of long
20114         strings. Fixes #54473.
20115
20116         * domain.c (ldstr_equal): Optimize if the two strings are equal.
20117
20118         * icall.c: Revert the klass->refclass changes since they introduce
20119         regressions (bug #54518).
20120
20121 2004-02-18  Martin Baulig  <martin@ximian.com>
20122
20123         * class.c (mono_class_init): If we're a generic instance and don't
20124         come from a TypeBuilder, inflate our members here.
20125         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
20126         (mono_class_create_generic): New public method.
20127         (mono_class_initialize_generic): Removed.
20128         (get_instantiation_name): Renamed to
20129         _mono_class_get_instantiation_name() and made it public.
20130
20131 2004-02-18  Martin Baulig  <martin@ximian.com>
20132
20133         * class.c (mono_class_inflate_generic_type): Clear the new
20134         instance's `nginst->klass' when inflating a generic instance.
20135         (mono_class_is_subclass_of): Added (basic) support for generic
20136         instances.
20137
20138 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
20139
20140         * appdomain.h, domain.c: use a MonoCodeManager instead of a
20141         MonoMempool to hold compiled native code.
20142
20143 2004-02-17  Martin Baulig  <martin@ximian.com>
20144
20145         * class.h (MonoDynamicGenericInst): Added `count_properties' and
20146         `properties'.
20147
20148         * reflection.c (mono_reflection_generic_inst_initialize): Added
20149         `MonoArray *properties' argument.
20150
20151         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
20152
20153 2004-02-17  Martin Baulig  <martin@ximian.com>
20154
20155         * icall.c (ves_icall_Type_GetFields): Renamed to
20156         ves_icall_Type_GetFields_internal() and added a
20157         `MonoReflectionType *rtype' argument; pass it to
20158         mono_field_get_object() to set the field's "reflected" type.
20159         (ves_icall_Type_GetConstructors): Likewise.
20160         (ves_icall_Type_GetEvents): Likewise.
20161         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
20162         argument; pass it to mono_method_get_object() to set the method's
20163         "reflected" type.       
20164
20165 2004-02-17  Martin Baulig  <martin@ximian.com>
20166
20167         * class.h (MonoDynamicGenericInst): New type.
20168         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
20169
20170         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
20171         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
20172         (ves_icall_MonoGenericInst_GetFields): New interncall.
20173
20174         * class.c (mono_class_from_generic): Don't call
20175         mono_class_initialize_generic() if this is a dynamic instance;
20176         ie. it's being created from a TypeBuilder.
20177         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
20178         `class->byval_arg.type'.
20179
20180         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
20181         to `inflate_method' and made static.
20182         (mono_reflection_inflate_field): Removed.
20183         (mono_reflection_generic_inst_initialize): New public method.
20184
20185         * reflection.h (MonoReflectionGenericInst): Removed `methods',
20186         `ctors' and `fields'; added `initialized'.
20187
20188 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
20189
20190         * debug-helpers.c (mono_method_full_name): Fix output for empty
20191         namespaces.
20192
20193 2004-02-12  Martin Baulig  <martin@ximian.com>
20194
20195         * class.h (MonoClassField): Added `MonoType *generic_type'.
20196
20197         * reflection.c (mono_image_get_fieldref_token): Added support for
20198         instantiated generic types.
20199         (field_encode_inflated_field): Removed.
20200         (mono_image_get_inflated_field_token): Removed.
20201         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
20202
20203         * reflection.h (MonoReflectionInflatedField): Removed.
20204
20205 2004-02-12  Martin Baulig  <martin@ximian.com>
20206
20207         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
20208         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
20209
20210         * reflection.c (mono_image_get_methodspec_token): Take a
20211         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
20212         (mono_image_create_token): Check whether we have a
20213         `method->signature->gen_method' and call
20214         mono_image_get_methodspec_token() if appropriate.
20215         (inflated_method_get_object): Removed.
20216         (mono_reflection_bind_generic_method_parameters): Return a
20217         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
20218         (mono_reflection_inflate_method_or_ctor): Likewise.
20219
20220         * reflection.h (MonoReflectionInflatedMethod): Removed.
20221
20222 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
20223
20224         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
20225         for custom valuetype marshalling.
20226
20227         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
20228
20229 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20230
20231         * icall.c: fixed WSAGetLastError_internal name.
20232
20233 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
20234
20235         * threads.c (mono_thread_attach): Allow this to be called multiple
20236         times for a thread.
20237         
20238         * threads.c (build_wait_tids): Do not wait for ourselves.
20239
20240         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
20241         appdomain list is empty.
20242
20243         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
20244         memory returned by mono_string_builder_to_utf16, since it points into
20245         managed memory. Thanks to Bernie Solomon for noticing this.
20246
20247         * icall.c: Add AppDomainSetup icalls.
20248
20249         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
20250
20251         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
20252         types.
20253
20254         * reflection.c (reflection_methodbuilder_to_mono_method): Save
20255         custom attributes to the method_aux struct. Also fix array indexes etc.
20256
20257         * loader.c (mono_method_get_param_names): Make dynamic case work again.
20258         
20259 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
20260
20261         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
20262         (both static and runtime) and reduce startup time.
20263
20264 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
20265
20266         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
20267         AsAny marshalling conversion instead of crashing.
20268
20269         * marshal.c: Fix warnings.
20270
20271 2004-02-09  Martin Baulig  <martin@ximian.com>
20272
20273         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
20274
20275         * reflection.h (MonoReflectionInflatedMethod): Removed the
20276         `declaring' field, it's now in the unmanaged MonoGenericMethod.
20277
20278         * reflection.c (method_encode_methodspec): Removed the `method'
20279         argument; we get it from `gmethod->declaring'.
20280         (inflated_method_get_object): Removed the `declaring' argument.
20281
20282 2004-02-09  Martin Baulig  <martin@ximian.com>
20283
20284         * class.h (MonoGenericMethod): New type.
20285         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
20286         `generic_method'.
20287
20288         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
20289         a `MonoGenericMethod *gen_method' one.
20290
20291         * class.c (mono_class_inflate_generic_type): Take an additional
20292         `MonoGenericMethod * argument.  This is only non-NULL if we're
20293         inflating types for a generic method.   
20294         (mono_class_inflate_generic_signature): Renamed to
20295         inflate_generic_signature() and made static; take a
20296         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
20297         (inflate_generic_header): Take a `MonoGenericMethod *' argument
20298         instead of a `MonoGenericInst *' one.
20299         (mono_class_inflate_generic_method): Likewise.
20300
20301         * reflection.c (encode_generic_method_sig): Take a
20302         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
20303         (method_encode_methodspec): Likewise.
20304         (inflated_method_get_object): Likewise. 
20305
20306         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
20307         field with a `MonoGenericMethod *gmethod' one.  
20308
20309 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
20310
20311         * class.h (mono_class_has_parent): add parens to expansion
20312         so you can ! this.
20313
20314 2004-02-08  Martin Baulig  <martin@ximian.com>
20315
20316         * image.h (MonoImage): Removed `generics_cache'.
20317
20318         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
20319         instead of a `MonoType *' argument; removed the `inflate_methods'
20320         argument.  Don't inflate methods here.
20321
20322         * loader.c (find_method): If it's a generic instance, call
20323         mono_class_init() on the `sclass->generic_inst->generic_type'.
20324
20325         * metadata.c (mono_type_size): Make this work on uninitialized
20326         generic instances; call it on the `ginst->generic_type's class.
20327
20328         * reflection.c (mono_reflection_bind_generic_parameters): Call
20329         mono_class_from_generic() to create the `ginst->klass'.
20330
20331 2004-02-08  Martin Baulig  <martin@ximian.com>
20332
20333         * class.h (MonoClass): Changed type of `generic_inst' from
20334         `MonoType *' to `MonoGenericInst *'.
20335
20336 2004-02-08  Martin Baulig  <martin@ximian.com>
20337
20338         * icall.c (ves_icall_Type_BindGenericParameters): Just call
20339         mono_type_get_object(), this is now creating a `MonoGenericInst'
20340         for MONO_TYPE_GENERICINST.
20341         (ves_icall_MonoGenericInst_GetParentType): Likewise.
20342         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
20343
20344         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
20345         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
20346         (inflated_method_get_object): Added `MonoClass *refclass' argument.
20347         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
20348         and reflected type.
20349
20350         * reflection.h (MonoReflectionInflatedMethod): Removed
20351         `declaring_type' and `reflected_type'.
20352
20353 2004-02-08  Martin Baulig  <martin@ximian.com>
20354
20355         * class.h (MonoGenericInst): Added `MonoType *parent' and
20356         `MonoType **ifaces'.
20357
20358         * reflection.h (MonoReflectionGenericInst): Removed `klass',
20359         `parent' and `interfaces'.
20360
20361         * reflection.c (mono_reflection_bind_generic_parameters): Take a
20362         `MonoType *' argument and return a `MonoType *'.
20363
20364         * icall.c
20365         (ves_icall_MonoGenericInst_GetParentType): New interncall.
20366         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
20367
20368 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
20369
20370         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
20371         valuetype marshalling.
20372
20373 2004-02-06  Martin Baulig  <martin@ximian.com>
20374
20375         * class.c
20376         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
20377         (my_mono_class_from_generic_parameter): Likewise.
20378
20379 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
20380
20381         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
20382         contents of the symbol files lazily.
20383
20384         * object.h (MonoThread): Add 'name' and 'name_len' fields.
20385
20386         * threads.h threads.c icall.c: New icalls for getting and setting the
20387         threads name.
20388
20389 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
20390
20391         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
20392         Raise an exception when the domain is not found.
20393
20394 2004-02-03  Martin Baulig  <martin@ximian.com>
20395
20396         * reflection.c (mono_image_get_methodspec_token): Use the
20397         uninflated signature; fixes gen-33.
20398
20399 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
20400
20401         * gc.c threads.c: Make the finalizer thread a normal managed thread so
20402         the finalizer code can use thread functionality.
20403
20404         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
20405         the finalizer thread.
20406
20407         * threads.c: Make some functions more robust.
20408
20409         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
20410
20411         * metadata.h: Add new marshalling conventions.
20412
20413         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
20414         stringbuilder marshalling. Fixes #53700.
20415
20416         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
20417
20418         * reflection.c (mono_image_get_type_info): Save declarative security
20419         info.
20420
20421         * reflection.c (mono_image_get_field_info): Handle uninitialized 
20422         unmanaged fields as well.
20423
20424         * appdomain.c: Bump corlib version.
20425
20426 2004-02-01  Martin Baulig  <martin@ximian.com>
20427
20428         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
20429         method type arguments.  
20430
20431 2004-01-30  Duncan Mak  <duncan@ximian.com>
20432
20433         * marshal.h: Add prototype for
20434         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
20435         and
20436         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
20437         fix the build.
20438
20439 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
20440
20441         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
20442         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
20443
20444 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
20445
20446         * marshal.c (mono_marshal_get_native_wrapper): Add support for
20447         custom marshalling of valuetypes.
20448
20449         * marshal.c: Fix some warnings.
20450
20451 2004-01-29  Martin Baulig  <martin@ximian.com>
20452
20453         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
20454         for generic method parameters.
20455
20456         * reflection.c (method_encode_methodspec): Write the uninflated
20457         signature into the methodspec table.
20458         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
20459         is always the uninflated method.
20460         (reflection_methodbuilder_to_mono_method): Copy the generic
20461         parameters from the MethodBuilder into `header->gen_params'.
20462
20463 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
20464
20465         * class.c (mono_class_from_generic_parameter): Fix warning.
20466
20467 2004-01-27  Martin Baulig  <martin@ximian.com>
20468
20469         * class.c (mono_class_from_generic_parameter): Don't create
20470         `klass->methods' here.  
20471
20472 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
20473
20474         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
20475         extension since it does not work with libraries named lib<FOO>.dll.so.
20476
20477 2004-01-25  Martin Baulig  <martin@ximian.com>
20478
20479         * class.c (mono_class_inflate_generic_type): Added support for
20480         MONO_TYPE_GENERICINST.
20481
20482         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
20483         inflate methods on open constructed types.      
20484
20485 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20486
20487         * object.c: fire ProcessExit event in the root AppDomain after running
20488         Main. Fixes bug #53299.
20489
20490 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
20491
20492         * socket-io.c: include the new socket-wrappers.h header.
20493         Use the wrappers instead of the unix socket functions to make the code
20494         more clear.
20495
20496 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
20497
20498         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
20499
20500         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
20501         Fixes #22532.
20502
20503 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
20504
20505         * reflection.c (mono_image_create_pefile): Handle the case when the
20506         entry point is not a MethodBuilder.
20507
20508         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
20509         field to ReflectionMethod since it is not allways a builder.
20510
20511         * reflection.c (type_get_fully_qualified_name): New helper function to
20512         return the fully qualified name of a type.
20513
20514         * reflection.c (encode_marshal_blob): Always emit the fully qualified
20515         type name for custom marshallers.
20516
20517         * reflection.c (mono_marshal_spec_from_builder): Ditto.
20518
20519         * class.c (mono_class_setup_vtable): If a parent class already 
20520         implements an interface, use the implementing methods from that class.
20521         Fixes #53148.
20522
20523 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20524
20525         * threadpool.c: just return instead of ExitThread to allow for thread
20526         clean up earlier.
20527
20528 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
20529
20530         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
20531         when closing resource modules.
20532
20533         * reflection.c (mono_image_create_pefile): Handle the case when the
20534         entry point is not a MethodBuilder.
20535
20536         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
20537         field to ReflectionMethod since it is not allways a builder.
20538
20539 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
20540
20541         * marshal.c (mono_marshal_get_managed_wrapper): 
20542         mono_marshal_alloc takes native int so CONV_I
20543         the arg for 64bits.
20544
20545 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
20546
20547         * reflection.c (fixup_cattrs): New function to fixup the methoddef
20548         tokens in the cattr table. Fixes #53108.
20549
20550 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20551
20552         * loader.c: don't trim ".dll" before looking up in the config file.
20553         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
20554
20555 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
20556
20557         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
20558         Return the module which contains the resource as well.
20559         (ves_icall_System_Reflection_Module_Close): New icall.
20560
20561         * appdomain.c: Bump corlib version number.
20562
20563         * image.c (mono_image_addref): New public function.
20564
20565         * assembly.c: Call mono_image_addref.
20566
20567         * reflection.c (mono_module_get_object): Increase reference count of 
20568         the image.
20569
20570         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
20571         Fixes #22532.
20572
20573         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
20574         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
20575         proper exceptions on DllImport problems.
20576
20577 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
20578
20579         * class.c, metadata.c: eliminate CSIZE macro.
20580
20581 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
20582
20583         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
20584         * object.h: Added async_callback field in MonoAsyncResult.
20585         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
20586         * verify.c: Added async_callback in MonoAsyncResult layout.
20587
20588 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
20589
20590         * reflection.c (mono_reflection_get_custom_attrs): Add support
20591         for Modules.
20592
20593 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
20594
20595         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
20596         marshalling.
20597         (mono_marshal_method_from_wrapper): Add null pointer check.
20598
20599 2004-01-16  Martin Baulig  <martin@ximian.com>
20600
20601         * debug-mono-symfile.h: Set version number to 36 and reflect
20602         latest symbol writer changes.
20603
20604 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
20605
20606         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
20607         multi-dimensional arrays.
20608         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
20609         (mono_class_from_mono_type): Use bounded_array_class_get.
20610         
20611         * class.c (mono_bounded_array_class_get): New function which takes
20612         a 'bounded' bool argument to distinguish vectors from one dimensional
20613         arrays.
20614
20615         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
20616         bounded_array_class_get if the array has bounds.
20617
20618         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
20619         Search modules loaded using AssemblyBuilder:AddModule as well.
20620
20621 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20622
20623         * appdomain.c: increased corlib version.
20624         * filewatcher.c: removed g_print.
20625         * icall.c:
20626         (get_property_info): only allocate what is actually requested.
20627         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
20628
20629 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20630
20631         * Makefile.am: added filewatcher.[ch]
20632         * filewatcher.[ch]: FileSystemWatcher runtime support.
20633         * icall.c: added new FSW icalls.
20634
20635 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
20636
20637         * string-icalls.c: fix stringbuilder regression as suggested by
20638         Iain McCoy <iain@mccoy.id.au>.
20639
20640 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
20641
20642         * process.c (process_read_stringtable_block): Recognize '007f' as
20643         a language neutral stringtable block.
20644
20645 2004-01-12  Patrik Torstensson
20646
20647         * object.h (MonoStringBuilder) : Changed layout to support our
20648         new stringbuilder class.
20649         * marshal.c: Change marshalling to support the new layout of 
20650         string builder.
20651         * appdomain.c: increased version number because new layout of
20652         string builder.
20653
20654 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
20655
20656         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
20657         assembly name as an string instead of an AssemblyName, since it is
20658         easier to extract info from it.
20659
20660         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
20661         the culture subdirectories too. Fixes #52231.
20662
20663 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20664
20665         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
20666         It takes 2 new parameters with an optional name for the method to look
20667         for and case ignoring info.
20668
20669         * threadpool.c: removed unused variable.
20670
20671 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20672
20673         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
20674         It takes 2 new parameters with an optional name for the property to look
20675         for and case ignoring info.
20676         Fixes bug #52753.
20677
20678 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
20679
20680         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
20681         Fix #52451.
20682
20683 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20684
20685         * appdomain.c:
20686         * assembly.c: escape the uri before passing it to g_filename_from_uri.
20687         Fixes bug #52630.
20688
20689 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
20690
20691         * reflection.c: Add support for more than one unmanaged resource.
20692
20693         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
20694         in field->def_value, as done in all other cases.
20695
20696         * reflection.c (mono_reflection_get_custom_attrs): Add support for
20697         TypeBuilders.
20698
20699         * reflection.c (mono_reflection_create_runtime_class): Remove 
20700         errorneous assignment to klass->element_class, since it is already
20701         done in mono_reflection_setup_internal_class.
20702
20703 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20704
20705         * gc.c: added missing LeaveCriticalSection.
20706         * icall.c: indented a couple of lines.
20707         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
20708         if we call EndInvoke inside a callback. Fixes bug #52601.
20709
20710 2004-01-07  Martin Baulig  <martin@ximian.com>
20711
20712         * mono-debug-debugger.h
20713         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
20714
20715 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
20716
20717         * appdomain.c: Use messages in NotImplementedException.
20718
20719         * exception.c (mono_get_exception_not_implemented): Now this takes
20720         a message argument.
20721
20722         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
20723         exception instead of g_asserting an aborting when something is not
20724         implemented.
20725
20726         Add some inline docs.
20727
20728 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
20729
20730         * reflection.h: Update after changes to object layout.
20731
20732         * reflection.c: Implement saving of unmanaged aka win32 resources.
20733
20734         * appdomain.c: Bump version number.
20735
20736         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
20737         Handle missing domains gracefully.
20738
20739 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
20740
20741         * file-io.c : On Windows, there are much more invalid_path_chars.
20742
20743 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
20744
20745         * class.h, object.c: prepare for GetType () speedup.
20746
20747 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
20748
20749         * profiler.c: workaround for --profile null reference exception on
20750           cygwin. Patch by Patrik Torstensson.
20751
20752 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
20753
20754         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
20755         make work for unaligned access.
20756
20757 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
20758
20759         * class.c: small cleanup (class->fields [i] -> field).
20760         * image.c: check address of metadata is valid.
20761
20762 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
20763
20764         * assembly.h assembly.c (mono_assembly_loaded): New public function to
20765         search the list of loaded assemblies.
20766
20767         * reflection.c (mono_reflection_type_from_name): Use 
20768         mono_assembly_loaded instead of mono_image_loaded.
20769
20770         * reflection.c: Fix warnings.
20771
20772 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
20773
20774         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
20775         is dynamic. This is needed since an assembly can contain both dynamic and
20776         non-dynamic images.
20777
20778         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
20779         assembly->dynamic.
20780
20781         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
20782
20783         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
20784         to store modules loaded using AddModule.
20785
20786         * reflection.c (mono_image_fill_file_table): Generalize this so it works
20787         on Modules.
20788
20789         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
20790
20791         * reflection.c (mono_image_fill_export_table_from_module): New function to
20792         fill out the EXPORTEDTYPES table from a module.
20793
20794         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
20795         into a separate function. Also handle loaded non-dynamic modules.
20796
20797         * reflection.c (mono_image_basic_init): Fix memory allocation.
20798
20799         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20800
20801         * assembly.c (mono_assembly_load_references): Make this public.
20802
20803 2003-12-19  Martin Baulig  <martin@ximian.com>
20804
20805         * class.c (mono_class_initialize_generic): Made this static, take
20806         a `MonoGenericInst *' instead of a `MonoClass *'.
20807         (mono_class_from_generic): Call mono_class_initialize_generic()
20808         unless we're already initialized or being called from
20809         do_mono_metadata_parse_generic_inst().
20810
20811         * class.h (MonoGenericInst): Added `initialized' and
20812         `init_pending' flags.
20813
20814         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
20815         `mono_class_init (gklass)' or mono_class_initialize_generic()
20816         here; set `generic_inst->init_pending' while parsing the
20817         `type_argv'.
20818
20819 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
20820
20821         * locales.c: include string.h for memxxx prototypes
20822
20823 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
20824
20825         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
20826         constructor when accessing literal fields.
20827
20828 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
20829
20830         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20831
20832         * reflection.c (assembly_add_resource_manifest): New function to fill
20833         the MANIFESTRESOURCE table.
20834
20835         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
20836
20837         * reflection.h: Update to changes in class layout.
20838
20839         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
20840         Reenable call to mono_runtime_is_shutting_down ().
20841
20842         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
20843         determine if the runtime is shutting down.
20844
20845 2003-12-16  Jackson Harper <jackson@ximian.com>
20846
20847         * icall.c: comment out call to mono_runtime_is_shutting_down to
20848         fix build.
20849         
20850 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
20851
20852         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
20853         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
20854
20855 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
20856
20857         * reflection.c: move definition of swap_with_size
20858         to before its first call
20859
20860 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
20861
20862         * appdomain.c (mono_runtime_is_shutting_down): New public function.
20863
20864         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
20865         icall.
20866
20867         * object.c: Fix warnings.
20868
20869         * icall.c (ves_icall_Type_Get...): Only consider inherited static
20870         members if FlattenHierarchy is set.
20871
20872         * reflection.c (mono_image_add_decl_security): New function to emit
20873         declarative security.
20874
20875         * reflection.h reflection.c: Add support for declarative security.
20876
20877         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
20878         
20879 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
20880
20881         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
20882         
20883         * appdomain.c verify.c: Moved corlib version checking into its own
20884         function in appdomain.c since it needs to create vtables etc.
20885
20886 2003-12-13  Patrik Torstensson <p@rxc.se>
20887
20888         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
20889         instead of unwrapped server.
20890
20891 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
20892
20893         * verify.c (check_corlib): Fix field index.
20894
20895 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
20896
20897         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
20898         GetGacPath icall.
20899
20900 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
20901
20902         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
20903         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
20904         cope with sizeof(size_t) != sizeof(guint32).
20905
20906 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20907
20908         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
20909         in case of failure.
20910
20911 2003-12-10  Mark Crichton <crichton@gimp.org>
20912
20913         * icall.c: removed the GetNonZeroBytes.  We now handle this case
20914         in managed code.
20915
20916         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
20917
20918 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
20919
20920         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
20921         marked as deleted.
20922
20923 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
20924
20925         * verify.c (check_corlib): Handle the case when the version field is 
20926         initialized by a static constructor.
20927
20928 2003-12-08  Patrik Torstensson  <p@rxc.se>
20929
20930     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
20931
20932 2003-12-08  Martin Baulig  <martin@ximian.com>
20933
20934         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
20935         a MonoReflectionGenericParameter, also take the parameter index
20936         and name as arguments.
20937         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
20938         (ves_icall_MonoGenericParam_initialize): New interncall.
20939         (ves_icall_Type_make_byref_type): New interncall.
20940
20941         * reflection.h (MonoReflectionGenericParam): Derive from
20942         MonoReflectionType, not just from MonoObject.  Added `refobj' and
20943         `index' fields.
20944
20945         * reflection.c (mono_reflection_define_generic_parameter): Create
20946         and return a new MonoReflectionGenericParam; don't initialize the
20947         constraints here.
20948         (mono_reflection_initialize_generic_parameter): New public method;
20949         initializes the constraints and creates the `param->pklass'.
20950
20951 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
20952
20953         * reflection.h reflection.c: Use the new fields 'num_types', 
20954         'num_fields' and 'num_methods' to track the number of types etc.
20955
20956         * verify.c (check_corlib): Check corlib version number.
20957
20958 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
20959
20960         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
20961         function works on all methods.
20962
20963 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
20964
20965         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
20966         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
20967         the custom_type_info flag of the transparent proxy.
20968         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
20969         objects that supports IRemotingTypeInfo.
20970         * object.h: Added custom_type_info field in transparent proxy.
20971
20972 2003-12-06  Martin Baulig  <martin@ximian.com>
20973
20974         * class.c (mono_class_create_from_generic): Removed.
20975         (mono_class_from_generic): Check `ginst->klass' before doing
20976         anything else.  This is important to fully support "recursive"
20977         generic types.
20978
20979         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
20980         empty `generic_inst->klass' before doing anything else.
20981
20982 2003-12-06  Dick Porter  <dick@ximian.com>
20983
20984         * verify.c: 
20985         * object.h:
20986         * icall.c:
20987         * locales.c: Use C structs to access class fields.  Don't do a
20988         conversion between MonoString and UChar because both are
20989         platform-endian UTF-16.  Compare now takes startindex and count
20990         parameters.  Add a char overload for IndexOf.  Speed up the
20991         invariant string IndexOf.
20992
20993 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
20994
20995         * Makefile.am (monosn_LDADD): Fix parallel build.
20996
20997 2003-12-04  Martin Baulig  <martin@ximian.com>
20998
20999         * icall.c
21000         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
21001         (ves_icall_Type_make_array_type): New interncall.       
21002
21003 2003-12-04  Martin Baulig  <martin@ximian.com>
21004
21005         * locales.c: also change it in the !HAVE_ICU case.
21006
21007 2003-12-04  Dick Porter  <dick@ximian.com>
21008
21009         * icall.c:
21010         * locales.c: construct_compareinfo is now in CompareInfo, not
21011         CultureInfo.
21012
21013 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
21014
21015         * image.c (mono_image_load_file_for_image): Cache loaded images in the
21016         image->files array.
21017
21018         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
21019         table as well.
21020
21021         * assembly.c (mono_assembly_load_references): Only load references
21022         once.
21023
21024         * class.c (mono_class_from_name): Avoid linear search of the 
21025         EXPORTEDTYPE table.
21026
21027         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
21028
21029 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
21030
21031         * image.h (MonoImage): Add 'field_cache' field.
21032
21033         * loader.c (mono_field_from_token): Cache field lookups.
21034         
21035         * reflection.c (mono_module_get_object): Fix name property.
21036
21037         * icall.c (ves_icall_get_enum_info): Update after changes to 
21038         mono_metadata_get_constant_index ().
21039
21040         * icall.c: Get rid of get_type_info icall, use a separate icall for
21041         each type property to avoid needless memory allocations. Fixes #51514.
21042
21043         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
21044         to avoid needless binary searches.
21045
21046         * class.c (class_compute_field_layout): Move the initialization of
21047         field->def_value to mono_class_vtable ().
21048
21049         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
21050         non-corlib types.
21051
21052         * object.c (mono_object_allocate): Make it inline.
21053
21054         * object.c (mono_object_allocate_spec): Make it inline.
21055         
21056 2003-12-02  Dick Porter  <dick@ximian.com>
21057
21058         * locales.c (create_NumberFormat): NumberFormatInfo construction.
21059         Patch by Mohammad DAMT (mdamt@cdl2000.com).
21060
21061 2003-12-01  Dick Porter  <dick@ximian.com>
21062
21063         * threads.c: Fix signature and call in CreateMutex and
21064         CreateEvent.
21065
21066 2003-12-01  Dick Porter  <dick@ximian.com>
21067
21068         * icall.c: 
21069         * locales.c: Implement string compares and searching
21070
21071         * object.h: Add extra Thread field
21072
21073 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
21074
21075         * reflection.c (fixup_method): Add support for MonoCMethod.
21076
21077 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
21078
21079         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
21080
21081         * reflection.c (assembly_name_to_aname): Allow extra characters in
21082         assembly names. Fixes #51468.
21083
21084 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
21085
21086         * exception.c (mono_exception_from_name_domain): New helper function.
21087
21088         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
21089         exception object in the correct domain.
21090
21091         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
21092         formatting + make a copy a the input data.
21093
21094         * loader.c (mono_get_method_from_token): Methods which contain
21095         native code do not have entries in the ImplMap.
21096
21097         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
21098         Thanks to Gonzalo for spotting this.
21099         
21100         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
21101         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
21102
21103         * assembly.h (mono_assembly_load_from): Split the second part of 
21104         assembly loading into a new public function.
21105
21106         * exception.h (mono_get_exception_bad_image_format): New function.
21107
21108 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
21109
21110         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
21111         Enumerate all modules inside a dynamic assembly. Fixes #51293.
21112         
21113         * icall.c: Add new icall for creating dynamic methods.
21114
21115         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
21116
21117         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
21118
21119         * reflection.c (mono_reflection_create_dynamic_method): New icall to
21120         create a dynamic method.
21121
21122         * reflection.c (resolve_object): New helper function.
21123
21124         * reflection.c: Generalize ReflectionMethodBuilder and the functions
21125         which manipulate it so they can also work on dynamic methods.
21126
21127         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
21128         creating the MonoReflectionMethodAux structure if it is not needed.
21129         
21130         * reflection.h verify.c: Update after changes to object layout.
21131
21132         * reflection.c (method_builder_encode_signature): Fix compilation on
21133         gcc 2.95.x.
21134
21135 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
21136
21137         * appdomain.h: Added support for context static fields. Added static_data
21138           field to MonoAppContext and renamed thread_static_fields to a more
21139           generic special_static_fields in MonoAppDomain, since it can now contain
21140           context static fields.
21141         * domain.c: Updated hashtable name.
21142         * object.c: Replaced field_is_thread_static() for a more generic
21143           field_is_special_static() which also checks for context static attribute.
21144           In mono_class_vtable(), added support for static context fields.
21145         * threads.c: Changed methods that manage thread static fields to more
21146           generic methods so they can be reused both for thread and context static
21147           data.
21148         * threads.h: Declared some new methods.
21149
21150 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
21151
21152         * reflection.h: Update after changes to the managed types.
21153
21154         * reflection.c (encode_custom_modifiers): New helper function.
21155
21156         * reflection.c (method_encode_signature): Emit custom modifiers.
21157
21158         * reflection.c (field_encode_signature): Emit custom modifiers.
21159
21160 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
21161
21162         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
21163
21164         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
21165         implementation.
21166
21167         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
21168         icall.
21169
21170         * object.c (mono_field_get_value_object): New function.
21171
21172         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
21173         specific.
21174
21175 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
21176
21177         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
21178         return a preallocated out-of-memory exception instance.
21179
21180         * object.c (out_of_memory): Use the new function.
21181
21182         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
21183         flag is before the custom modifiers. Fixes #49802.
21184
21185 2003-11-16  Martin Baulig  <martin@ximian.com>
21186
21187         * class.c (mono_class_is_open_constructed_type): Implemented the
21188         MONO_TYPE_GENERICINST case.
21189
21190 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
21191
21192         * assembly.c (mono_assembly_fill_assembly_name): New function to
21193         fill out the MonoAssemblyName structure.
21194         (mono_assembly_open): Use the new function.
21195
21196         * icall.c (fill_reflection_assembly_name): New helper function.
21197
21198         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
21199         new function.
21200
21201         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
21202
21203 2003-11-15  Martin Baulig  <martin@ximian.com>
21204
21205         * class.c (mono_class_is_open_constructed_type): New public
21206         function; checks whether a type is an open constructed type,
21207         ie. whether it still contains type parameters.
21208         (mono_class_inflate_generic_type): If we're a type parameter and
21209         the inflated type is also a MONO_TYPE_(M)VAR, return the original
21210         type.
21211
21212         * class.h (MonoGenericInst): Added `guint32 is_open'.
21213
21214         * loader.c (method_from_methodspec): Check whether we're an open
21215         or closed constructed type and set `ginst->is_open'.
21216
21217         * reflection.c (mono_reflection_bind_generic_parameters): Check
21218         whether we're an open or closed constructed type and set
21219         `ginst->is_open'.
21220         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
21221         from open constructed types.
21222
21223 2003-11-15  Martin Baulig  <martin@ximian.com>
21224
21225         * reflection.c (mono_reflection_bind_generic_parameters): If we're
21226         a generic instance (instead of a generic type declaration) with
21227         unbound generic parameters, bind them to our actual types.
21228
21229 2003-11-14  Martin Baulig  <martin@ximian.com>
21230
21231         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
21232
21233         * reflection.c (mono_reflection_bind_generic_parameters): If we're
21234         an interface type, populate `res->interfaces' with instantiated
21235         versions of all the interfaces we inherit.
21236
21237 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
21238
21239         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
21240         when MONO_PATH is set but doesn't contain the install dir.
21241
21242 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21243
21244         * icall.c:
21245         (ves_icall_Type_GetInterfaces): don't return an interface twice when
21246         it's also implemented in base classes. Fixes bug #50927.
21247
21248 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
21249
21250         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
21251         if this method is called from a finalizer. Fixes #50913.
21252
21253 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
21254
21255         * threads.c: Implement VolatileRead/VolatileWrite
21256
21257         * icall.c: Add new icalls for VolatileRead/VolatileWrite
21258
21259 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
21260
21261         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
21262         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
21263         2.95.3.
21264
21265         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
21266         from Peter Ross (pro@missioncriticalit.com).
21267         
21268 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
21269
21270         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
21271
21272 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
21273
21274         * assembly.c (mono_assembly_load_references): Disable check because it
21275         triggers on older corlibs which lots of people have.
21276
21277 2003-11-12  Jackson Harper  <jackson@ximian.com>
21278
21279         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
21280         load corlib.dll if mscorlib.dll is not found.
21281         * assembly.h: Remove corlib name define.
21282         * class.c:
21283         * domain.c:
21284         * image.c: Change corlib name to mscorlib.
21285         
21286 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
21287
21288         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
21289
21290 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
21291
21292         * appdomain.h: Added loader_optimization here to sync with the C#
21293         code, and add disallow_binding_redirects field.
21294
21295 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
21296
21297         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
21298
21299         * reflection.c (mono_image_build_metadata): Fix crash on modules
21300         with no types.
21301
21302         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
21303
21304         * icall.c (ves_icall_get_method_info): Return callingConvention as
21305         well.
21306
21307         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
21308         namespaces from the EXPORTEDTYPE table as well.
21309
21310         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
21311         from all modules inside the assembly.
21312         
21313 2003-11-11  Martin Baulig  <martin@ximian.com>
21314
21315         * reflection.c (mono_reflection_bind_generic_parameters): Make
21316         this work for interfaces.
21317
21318 2003-11-11  Martin Baulig  <martin@ximian.com>
21319
21320         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
21321
21322 2003-11-11  Martin Baulig  <martin@ximian.com>
21323
21324         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
21325         "MonoInflatedMethod" and "MonoInflatedCtor".
21326
21327 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
21328
21329         * reflection.c (resolution_scope_from_image): Use the assembly table
21330         from the manifest module, since other modules don't have it.
21331
21332         * debug-helpers.c (mono_type_full_name): New helper function.
21333
21334         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
21335
21336         * image.c (mono_image_load_file_for_image): New public function which
21337         is a replacement for the load_file_for_image in class.c.
21338
21339         * assembly.c (mono_assembly_load_module): A wrapper for the function
21340         above which does assembly association and reference loading too.
21341
21342         * class.c (mono_class_from_name): Call mono_assembly_load_module.
21343
21344 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21345
21346         * appdomain.c: not all of the attributes for the full assembly name
21347         are required and the order doesn't matter. Fixes bug #50787.
21348
21349 2003-11-10  Dick Porter  <dick@ximian.com>
21350
21351         * locales.c: Use platform-endian UTF16
21352
21353 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
21354
21355         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
21356         
21357 2003-11-10  Martin Baulig  <martin@ximian.com>
21358
21359         * metadata.c
21360         (mono_metadata_load_generic_params): Make this actually work.
21361
21362         * reflection.c (mono_reflection_bind_generic_parameters): If our
21363         parent is a generic instance, pass all the `types' to it, no
21364         matter whether it has the same number of type parameters or not.
21365
21366 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
21367
21368         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
21369
21370         * assembly.c (mono_assembly_load_references): Move the image<->assembly
21371         assignment code to this function so it gets called recursively for all
21372         modules.
21373
21374         * image.c (load_modules): Remove the assembly assignment since it is
21375         now done by mono_assembly_load_references.
21376         
21377         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
21378         Add 'module' argument.
21379         (mono_module_get_types): New helper function.
21380         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
21381
21382 2003-11-08  Martin Baulig  <martin@ximian.com>
21383
21384         * class.c (mono_class_inflate_generic_method): Interface method
21385         don't have a header.
21386
21387         * reflection.c (mono_image_get_methodspec_token): Take an
21388         additional `MonoGenericInst *' argument instead of reading it from
21389         the header; this is necessary to support interfaces.
21390         (mono_image_create_token): Pass the `MonoGenericInst *' from the
21391         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
21392         (inflated_method_get_object): Take an additional `MonoGenericInst *'
21393         argument.
21394
21395         * reflection.h (MonoReflectionInflatedMethod): Added
21396         `MonoGenericInst *ginst'.
21397
21398 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
21399
21400         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
21401
21402 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
21403
21404         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
21405
21406 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
21407
21408         * reflection.c 
21409         (reflection_methodbuilder_from_method_builder):
21410         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
21411         initialize a ReflectionMethodBuilder structure.
21412         (mono_image_get_methodbuilder_token):
21413         (mono_image_get_ctorbuilder_token): New functions to emit memberref
21414         tokens which point to types in another module inside the same assembly.
21415
21416         * reflection.c: Use the new helper functions.
21417         
21418         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
21419
21420         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
21421         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
21422
21423         * reflection.c (resolution_scope_from_image): Emit a moduleref if
21424         neccesary.
21425
21426         * reflection.c (mono_image_build_metadata): Emit metadata only for the
21427         current module. Emit the manifest only for the main module.
21428
21429         * reflection.c (mono_image_create_token): Add assertion when a 
21430         memberref needs to be created.
21431
21432         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
21433
21434         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
21435         larger buffer for the custom attribute blob. Fixes #50637.
21436         
21437 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21438
21439         * threadpool.c: notify listener on async processing handles after
21440         invoking the async callback. Thanks to Zoltan.
21441
21442 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
21443
21444         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
21445         avoid code duplication.
21446
21447         * reflection.h (MonoDynamicImage): New type which is currently unused,
21448         but will be used through the ref.emit code in place of 
21449         MonoDynamicAssembly.
21450
21451         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
21452         object layout.
21453
21454         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
21455         a MonoDynamicImage instead of just a MonoImage.
21456         
21457         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
21458         icalls to ModuleBuilder but keep their semantics, so they will work
21459         with moduleb->assemblyb. This will change later.
21460         
21461 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
21462
21463         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
21464         object layout.
21465
21466         * reflection.c (mono_image_build_metadata): Avoid creation of a default
21467         main module, since it is now done by the managed code.
21468
21469 2003-11-03  Martin Baulig  <martin@ximian.com>
21470
21471         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
21472         `ginst->klass' here.
21473         (method_encode_methodspec): Don't use the `ginst->generic_method's
21474         klass if it's a generic instance, use `ginst->klass' in this case.
21475
21476 2003-11-03  Martin Baulig  <martin@ximian.com>
21477
21478         * reflection.c (mono_image_get_generic_method_param_info):
21479         Removed, use mono_image_get_generic_param_info() instead.
21480         (mono_image_get_type_info): Write the GenericParam table before
21481         the Method table.  This is neccessary because in the GenericParam
21482         table, type parameters of the class (ie. '!0' etc.) must come
21483         before the ones from its generic methods (ie. '!!0' etc).
21484
21485 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
21486
21487         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
21488
21489 2003-11-02  Martin Baulig  <martin@ximian.com>
21490
21491         * reflection.c (create_generic_typespec): Take a
21492         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
21493         the generic parameters from it.
21494
21495 2003-11-02  Martin Baulig  <martin@ximian.com>
21496
21497         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
21498         instead of a `MonoClassField *' since we just need the type.
21499         (create_generic_typespec): New static function.  Creates a
21500         TypeSpec token for a generic type declaration.
21501         (mono_image_get_generic_field_token): New static function.
21502         (mono_image_create_token): If we're a FieldBuilder in a generic
21503         type declaration, call mono_image_get_generic_field_token() to get
21504         the token.
21505
21506 2003-11-02  Martin Baulig  <martin@ximian.com>
21507
21508         * reflection.h
21509         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
21510         `MonoReflectionGenericInst *declaring_type' and
21511         `MonoReflectionGenericInst *reflected_type' fields.
21512
21513         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
21514         `MonoReflectionGenericInst *declaring_type' and a
21515         `MonoReflectionGenericInst *reflected_type' argument instead of a
21516         single `MonoReflectionGenericInst *type' one.  Set
21517         `res->declaring_type' and `res->reflected_type' from them.
21518         (mono_reflection_inflate_field): Likewise.      
21519
21520 2003-11-02  Martin Baulig  <martin@ximian.com>
21521
21522         * class.c (mono_class_setup_vtable): Don't store generic methods
21523         in the vtable.  
21524
21525 2003-11-02  Martin Baulig  <martin@ximian.com>
21526
21527         * reflection.h (MonoReflectionGenericInst): Added
21528         `MonoReflectionType *declaring_type'.
21529
21530         * reflection.c (mono_reflection_bind_generic_parameters): Use
21531         `if (tb->parent)' instead of `klass->parent'.
21532
21533 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
21534
21535         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
21536         with an empty ASSEMBLY table.
21537
21538         * reflection.c (mono_image_build_metadata): Avoid using the same loop
21539         variable in the inner and outer loops.
21540
21541 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
21542
21543         * metadata.h (mono_metadata_make_token): Put parentheses around macro
21544         argument.
21545
21546         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
21547         
21548         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
21549         icalls. Instead, do everything in managed code. This is needed since
21550         it is hard to restore the original domain etc. in unmanaged code in the
21551         presence of undeniable exceptions.
21552
21553         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
21554         New icalls to push and pop appdomain refs.
21555
21556 2003-10-31  Martin Baulig  <martin@ximian.com>
21557
21558         * class.c (inflate_generic_type): Renamed to
21559         mono_class_inflate_generic_type() and made it public.
21560
21561         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
21562         New interncall.
21563
21564         * loader.c (mono_field_from_memberref): Also set the retklass for
21565         typespecs.
21566
21567         * fielder.c (mono_image_get_inflated_field_token): New static
21568         method; creates a metadata token for an inflated field.
21569         (mono_image_create_token, fixup_method): Added support for
21570         "MonoInflatedField".
21571         (fieldbuilder_to_mono_class_field): New static function.
21572         (mono_reflection_inflate_field): New public function.
21573
21574         * reflection.h
21575         (MonoReflectionGenericInst): Added `MonoArray *fields'.
21576         (MonoReflectionInflatedField): New typedef.     
21577
21578 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
21579
21580         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
21581         for Solaris and other platforms without s6_addr16
21582
21583 2003-10-30  Martin Baulig  <martin@ximian.com>
21584
21585         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
21586         argument instead of two.
21587         (mono_class_inflate_generic_signature): Likewise.
21588         (inflate_generic_header): Likewise.
21589         (mono_class_inflate_generic_method): Likewise.  In addition, if
21590         `ginst->klass' is set, it becomes the new `method->klass'.
21591
21592         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
21593         field.
21594
21595         * reflection.c (encode_generic_method_sig): Write a 0xa as the
21596         first byte. [FIXME]
21597         (method_encode_methodspec): If we have generic parameters, create
21598         a MethodSpec instead of a MethodRef.
21599         (fixup_method): Added support for "MonoInflatedMethod" and
21600         "MonoInflatedCtor".
21601         (mono_image_create_token): Added support for "MonoInflatedMethod"
21602         and "MonoInflatedCtor".
21603         (inflated_method_get_object): New static function; returns a
21604         managed "System.Reflection.MonoInflatedMethod" object.
21605         (mono_reflection_bind_generic_method_parameters): Return a
21606         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
21607         (mono_reflection_inflate_method_or_ctor): Likewise.
21608         (mono_image_get_generic_method_param_info): Initialize unused
21609         fields to zero.
21610         (mono_image_get_generic_param_info): Likewise.
21611
21612         * reflection.h (MonoReflectionInflatedMethod): New public
21613         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
21614         "S.R.MonoInflatedCtor" classes.
21615
21616         * loader.c (method_from_memberref): If we're a TypeSpec and it
21617         resolves to a generic instance, inflate the method.
21618
21619 2003-10-28  Dick Porter  <dick@ximian.com>
21620
21621         * object.c (mono_runtime_run_main): Convert command-line arguments
21622         into utf8, falling back to the user's locale encoding to do so.
21623
21624 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
21625
21626         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
21627         at this time.
21628
21629         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
21630
21631         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
21632         up icalls at method definition time. Partially fixes #33569.
21633
21634 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
21635
21636         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
21637         marshalling of arrays. Fixes #50116.
21638
21639         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
21640
21641         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
21642         points to a vtable in the dying appdomain.
21643
21644         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
21645         listeners into unmanaged code inside the lock.
21646
21647         * object.c (mono_class_vtable): Turn off typed allocation in non-root
21648         domains and add some comments.
21649
21650 2003-10-25  Martin Baulig  <martin@ximian.com>
21651
21652         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
21653
21654         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
21655
21656         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
21657         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
21658         currently parsing.  Create the generic class and store it in
21659         `generic_inst->klass' before parsing the type arguments.  This is
21660         required to support "recursive" definitions; see mcs/tests/gen-23.cs
21661         for an example.
21662         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
21663         to support recursive typespec entries.
21664
21665         * class.c (mono_class_setup_parent): If our parent is a generic
21666         instance, we may get called before it has its name set.
21667         (mono_class_from_generic): Splitted into
21668         mono_class_create_from_generic() and mono_class_initialize_generic().
21669
21670 2003-10-25  Martin Baulig  <martin@ximian.com>
21671
21672         * icall.c (ves_icall_Type_BindGenericParameters): Return a
21673         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
21674         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
21675         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
21676
21677         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
21678         (create_typespec): Likewise.
21679         (mono_reflection_bind_generic_parameters): Return a
21680         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
21681         (mono_reflection_inflate_method_or_ctor): New public function.
21682
21683         * reflection.h (MonoReflectionGenericInst): New typedef.        
21684
21685 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
21686
21687         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
21688         inside the domain lock. Fixes #49993.
21689         
21690         * object.c (mono_class_vtable): When typed allocation is used, 
21691         allocate vtables in the GC heap instead of in the mempool, since the
21692         vtables contain GC descriptors which are used by the collector even
21693         after the domain owning the mempool is unloaded.
21694
21695         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
21696
21697         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
21698         reflect what it does. Also invalidate mempools instead of freeing
21699         them if a define is set.
21700
21701         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
21702         of the appdomain.
21703         
21704         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
21705         hold the finalizable objects in this domain.
21706
21707         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
21708         appdomain.
21709
21710         * appdomain.c (mono_domain_set): New function to set the current
21711         appdomain, but only if it is not being unloaded.
21712
21713         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
21714         appdomain which is being unloaded.
21715         
21716         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
21717         unloading of the root appdomain.
21718
21719         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
21720         icall to execute a method in another appdomain. Intended as a 
21721         replacement for InternalSetDomain, which can confuse the code 
21722         generation in the JIT.
21723
21724         * appdomain.c (mono_domain_is_unloading): New function to determine
21725         whenever an appdomain is unloading.
21726
21727         * appdomain.c (mono_domain_unload): New function to correctly unload
21728         an appdomain.
21729
21730         * assembly.c (mono_assembly_load_references): Check that an assembly
21731         does not references itself.
21732
21733         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
21734         domain manually, it asks the finalizer thread to do it, then waits for
21735         the result. Also added a timeout.
21736
21737         * icall.c: Register the new icalls.
21738
21739         * threads.h threads.c: Export the mono_gc_stop_world and 
21740         mono_gc_start_world functions.
21741         
21742         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
21743         function to fill out the mempool with 0x2a.
21744
21745 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
21746
21747         * reflection.h (MonoReflectionMethodAux): New structure to store
21748         information which is rarely used, thus is not in the MonoMethod
21749         structure.
21750
21751         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
21752         store the aux info.
21753
21754         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
21755         and marshalling info into the aux structure.
21756
21757         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
21758         from the aux structure.
21759
21760         * loader.c (mono_method_get_param_names): Retrieve the param names from
21761         the aux structure.
21762         
21763 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
21764
21765         * exception.h exception.c: Add AppDomainUnloadedException && fix 
21766         warning.
21767
21768 2003-10-21  Dick Porter  <dick@ximian.com>
21769
21770         * socket-io.c
21771         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
21772         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
21773
21774 2003-10-21  Martin Baulig  <martin@ximian.com>
21775
21776         * reflection.c (mono_reflection_bind_generic_parameters):
21777         `klass->parent' is NULL for interfaces.
21778
21779 2003-10-21  Martin Baulig  <martin@ximian.com>
21780
21781         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
21782
21783 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
21784
21785         * exception.c (mono_exception_from_name_msg): New helper function for
21786         creating exceptions and initializing their message field.
21787
21788         * exception.c: Simplify functions using the new helper.
21789
21790         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
21791         New function.
21792
21793         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
21794         mono_raise_exception, since otherwise gcc doesn't generate the function
21795         epilog for raise_exception, confusing the stack unwinding in the JIT.
21796         Fixes #45043.
21797
21798         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
21799         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
21800         Fixes #49499.
21801
21802 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21803
21804         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
21805         utf8.
21806
21807 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
21808
21809         * icall.c: Removed GetUninitializedObject method because
21810           AllocateUninitializedClassInstance does the same.
21811
21812 2003-10-18  Martin Baulig  <martin@ximian.com>
21813
21814         * class.c (inflate_generic_signature): Renamed to
21815         mono_class_inflate_generic_signature() and made it public.
21816         (my_mono_class_from_generic_parameter): New static function; if we
21817         don't already have the generic parameter's MonoClass, create a
21818         very simple one which is just used internally in the runtime and
21819         not passed back to managed code.
21820
21821         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
21822
21823         * metadata.h (MonoMethodSignature): Moved the
21824         `MonoGenericParam *gen_params' to the MonoMethodHeader.
21825         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
21826
21827         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
21828         ves_icall_MonoMethod_GetGenericArguments(); this is now an
21829         interncall on the MonoMethod class, not on MethodInfo.
21830         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
21831         calling mono_reflection_bind_generic_method_parameters() directly.
21832
21833         * loader.c (mono_method_get_signature): If this is a MethodSpec;
21834         return the already computed `method->signature'.
21835         (method_from_methodspec): New static function to load a method
21836         from a MethodSpec entry.
21837         (mono_get_method_from_token): Call the new method_from_methodspec()
21838         for MethodSpec tokens.  
21839         (mono_get_method_from_token): If we're a generic method, load the
21840         type parameters.
21841
21842         * reflection.c (mono_image_get_memberref_token): Allow
21843         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
21844         table.
21845         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
21846         (mono_image_create_token): First check whether it's a generic
21847         method (so we'd need to create a MethodSpec), then do the other
21848         two alternatives.
21849         (mono_reflection_bind_generic_method_parameters): Return a
21850         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
21851         called directly from the interncall.
21852
21853 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
21854
21855         * reflection.c (load_public_key): Move loading of the public key
21856         into managed code.
21857
21858         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
21859
21860         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
21861         fields.
21862
21863         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
21864         culture, hash_alg and public_key. Fixes #49555.
21865
21866 2003-10-17  Martin Baulig  <martin@ximian.com>
21867
21868         * class.h (MonoGenericInst): Moved this declaration here and added
21869         `MonoMethod *generic_method'.
21870
21871         * icall.c
21872         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
21873         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
21874
21875         * metadata.c (mono_metadata_type_equal): Two types of
21876         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
21877         index; ie. don't compare the address of the `MonoGenericParam'
21878         structure.
21879         (mono_metadata_load_generic_params): Removed the `MonoMethod
21880         *method' argument.
21881
21882         * metadata.h (MonoGenericInst): Moved declaration to class.h.
21883         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
21884
21885         * reflection.c (method_encode_signature): Encode the number of
21886         generic parameters.
21887         (encode_generic_method_sig): New static function.
21888         (method_encode_methodspec): New static function; creates an entry
21889         in the MethodSpec table for a generic method.
21890         (mono_image_get_methodspec_token): New static function.
21891         (mono_image_create_token): Call mono_image_get_methodspec_token()
21892         for generic methods.
21893         (mono_reflection_bind_generic_method_parameters): New public
21894         function.  Instantiates a generic method.
21895
21896 2003-10-16  Martin Baulig  <martin@ximian.com>
21897
21898         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
21899         *gen_params' here from MonoMethodHeader.
21900
21901         * metadata.c (mono_metadata_parse_method_signature): If we have
21902         generic parameters, initialize `method->gen_params' and then set
21903         the correct `type->data.generic_param' in all the parameters.
21904
21905 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
21906
21907         * threads.c (mono_threads_get_default_stacksize): New function to 
21908         return the default stacksize.
21909
21910         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
21911         termination of the finalizer thread, since the previous method had
21912         race conditions. Fixes #49628.
21913
21914         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
21915         as for the other managed threads.
21916
21917 2003-10-16  Martin Baulig  <martin@ximian.com>
21918
21919         * class.c (inflate_generic_signature): Copy `generic_param_count'
21920         and `gen_params'.
21921
21922         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
21923         New interncall.
21924
21925         * metadata.c (mono_metadata_parse_method_signature): Actually set
21926         the `method->generic_param_count' here.
21927         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
21928
21929 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
21930
21931         * object.h: Add a new field to TypedRef to simplify the implementation
21932         of the REFANY opcodes in the JIT.
21933
21934         * icall.c: Make use of the new field.
21935
21936         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
21937         dynamically.
21938
21939 2003-10-15  Martin Baulig  <martin@ximian.com>
21940
21941         * class.c (mono_class_from_gen_param): Renamed to
21942         mono_class_from_generic_parameter() and moved most of the
21943         functionality from mono_reflection_define_generic_parameter()
21944         here; ie. we create a "real" class here.
21945         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
21946         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
21947         previously been called.
21948
21949         * class.h (MonoGenericParam): Moved the declaration of this struct
21950         here from metadata.h and added `MonoMethod *method'.
21951
21952         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
21953         interncall.
21954
21955         * loader.c (mono_get_method_from_token): If we have any generic
21956         parameters, call mono_metadata_load_generic_params() to read them
21957         from the MONO_TABLE_GENERICPAR.
21958
21959         * metadata.c (mono_metadata_load_generic_params): Added
21960         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
21961
21962         * metadata.h (MonoMethodSignature): Replaced
21963         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
21964         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
21965
21966         * reflection.c (mono_reflection_define_generic_parameter): Moved
21967         most of the functionality into the new
21968         mono_class_from_generic_parameter(); set the `method' field if
21969         we're a method parameter.       
21970
21971 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
21972
21973         * marshal.c (emit_struct_conv): if native size is 0
21974         emit no code.
21975
21976 2003-10-14  Martin Baulig  <martin@ximian.com>
21977
21978         * icall.c: The generics API has changed in the spec since it was
21979         added to System.Type; these modifications make it match the spec
21980         again.
21981         (ves_icall_Type_GetGenericParameters): Renamed to
21982         `ves_icall_Type_GetGenericArguments'.
21983         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
21984         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
21985         `ves_icall_MonoType_get_HasGenericArguments'.
21986         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
21987         `ves_icall_MonoType_get_IsGenericParameter'.
21988         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
21989         this is no interncall anymore.
21990         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
21991         `ves_icall_TypeBuilder_get_IsGenericParameter'.
21992
21993 2003-10-14  Martin Baulig  <martin@ximian.com>
21994
21995         * reflection.c (mono_reflection_bind_generic_parameters): Also
21996         inflate generic methods if we're reading the class from IL.
21997
21998 2003-10-13  Martin Baulig  <martin@ximian.com>
21999
22000         * reflection.c (mono_reflection_define_generic_parameter): This
22001         method isn't called directly from the icall anymore; take a
22002         `MonoReflectionAssemblyBuilder *' so we can use this for type and
22003         method generic parameters.
22004         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
22005         (method_builder_encode_signature): Encode generic parameters.
22006         (mono_image_get_method_info): Write generic params to the
22007         MONO_TABLE_GENERICPARAM table.
22008
22009         * reflection.h (MonoReflectionMethodBuilder): Added
22010         `MonoArray *generic_params'.
22011
22012         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
22013
22014         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
22015         wrapper for mono_reflection_define_generic_parameter().
22016         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
22017
22018 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
22019
22020         * marshal.h: Add missing function to fix build.
22021
22022         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
22023         the SetLastError pinvoke attribute.
22024
22025         * marshal.c (mono_marshal_set_last_error): New helper function called
22026         by the generated code.
22027         
22028         * marshal.c (mono_mb_emit_branch): New helper function.
22029
22030         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
22031
22032         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
22033         classes as parameters and return values of delegates. Fixes #29256. 
22034
22035 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
22036
22037         * locales.c: use gint32 in non HAVE_ICU case
22038
22039 2003-10-11  Martin Baulig  <martin@ximian.com>
22040
22041         * mono-debug.c (mono_debug_add_method): Added a workaround for
22042         bug #48591.
22043
22044 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
22045
22046         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
22047         delegates passed to native code must use the STDCALL calling 
22048         convention. Fixes #35987.
22049
22050 2003-10-10  Martin Baulig  <martin@ximian.com>
22051
22052         * class.c (inflate_generic_type): If we're inflating for a generic
22053         type instance (and not for a generic method), return
22054         MONO_TYPE_MVAR unchanged.
22055
22056 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22057
22058         * string-icalls.c: Join ignores null strings in the source array.
22059         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
22060         * threads.c: GetAvailableTheads is slightly more accurate.
22061
22062 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
22063
22064         * threads.h threads.c : add mono_threads_set_default_stacksize
22065         and pass default to CreateThread calls.
22066
22067 2003-10-09  Dick Porter  <dick@ximian.com>
22068
22069         * icall.c:
22070         * locales.h:
22071         * locales.c: Internal calls for constructing CultureInfo and
22072         related objects from libicu (if its available.)
22073
22074 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
22075
22076         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
22077
22078 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22079
22080         * threadpool.c: added an argument to async_invoke_thread that is the
22081         item to process, pass the MonoAsyncResult to the thread start function
22082         when creating a new thread. This way we don't need to acquire any lock
22083         when we're creating a new thread. Readded a semaphore for faster
22084         response times (instead of that Sleep i added).
22085
22086 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
22087
22088         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
22089         get daylight change dates better on Windows, fix handling
22090         of platforms without tm_gmtoff.
22091
22092 2003-10-06  Martin Baulig  <martin@ximian.com>
22093
22094         * class.c (inflate_generic_method): Renamed to
22095         mono_class_inflate_generic_method() and made public.
22096         (mono_class_init): Don't inflate the generic methods here.
22097         (mono_class_from_generic): Added `gboolean inflate_methods'
22098         argument.  Inflate the methods here.
22099
22100         * loader.c (mono_method_get_param_names): Ignore instances of
22101         generic types for the moment.
22102
22103         * reflection.c (fixup_method): Added support for inflated methods.
22104         (mono_image_create_token): Use mono_image_get_methodref_token()
22105         for inflated methods.
22106         (mono_custom_attrs_from_param): Ignore instances of generic types
22107         for the moment.
22108         (mono_reflection_bind_generic_parameters): New public function.
22109         Moved all the functionality from
22110         ves_icall_Type_BindGenericParameters() here and added support for
22111         dynamic types.
22112         (mono_reflection_define_generic_parameter): Initialize
22113         `klass->methods' here.
22114
22115         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
22116         functionality into mono_reflection_define_generic_parameter().
22117         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
22118         TypeBuilder, return that TypeBuilder.
22119
22120 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22121
22122         * appdomain.c: removed mono_delegate_semaphore.
22123
22124         * threadpool.c:
22125         (mono_thread_pool_add): moved hash table creation inside and the thread 
22126         creation outside of the critical region.
22127         (mono_thread_pool_finish): removed obsolete code.
22128         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
22129         continue or exit the thread depending on the queue.
22130
22131 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
22132
22133         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
22134         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
22135         handle more bool marshalling options
22136
22137 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
22138
22139         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
22140         arrays of structs. Also add a more descriptive error message when
22141         a structure member is marshalled as LPArray.
22142
22143 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
22144
22145         * marshal.c (mono_marshal_get_native_wrapper): Add support for
22146         marshalling arrays of complex types. Fixes #29098. Also remove an
22147         usused and incomplete function.
22148
22149 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
22150
22151         * gc.c: report heap_size - free_bytes as total memory allocated
22152         (bug#49362).
22153
22154 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
22155
22156         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
22157         fix timezone handling problems on Windows.
22158         
22159         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
22160         asserts when the year is outside the range handled by ms the functions.
22161
22162         * class.c (setup_interface_offsets): If the class is an interface,
22163         fill out its interface_offsets slot.
22164
22165 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22166
22167         * threadpool.c: mark threadpool threads as background.
22168
22169 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
22170
22171         * decimal.c - define DECINLINE to nothing if not using GCC
22172
22173 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
22174
22175         * assembly.c: More refcount fixes.
22176
22177 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22178
22179         * string-icalls.c: if we're not trimming, return the same string.
22180         When not splitting, don't create a new string.
22181
22182 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22183
22184         * image.c:
22185         (mono_image_open): increment the ref_count inside the critical section.
22186
22187 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
22188
22189         * image.c (mono_image_open): Fix reference counting bug.
22190
22191 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
22192
22193         * marshal.c (mono_marshal_type_size) struct alignment changed for 
22194         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
22195         64bits. Avoid leak in mono_marshal_get_native_wrapper when
22196         mono_lookup_pinvoke_call throws.        
22197
22198 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
22199
22200         * reflection.c (mono_reflection_parse_type): Fix #49114.
22201
22202         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
22203         temporary workaround for cygwin header problem.
22204
22205         * object.c (mono_object_isinst): Synchronize this with the code
22206         generated by the JIT for casts.
22207
22208 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
22209
22210         * reflection.c (encode_type): Fix #38332.
22211
22212 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
22213
22214         * marshal.c (mono_marshal_method_from_wrapper): New function to return
22215         the original method from the wrapper method.
22216
22217 2003-09-25  Martin Baulig  <martin@ximian.com>
22218
22219         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
22220         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
22221         (ves_icall_Type_get_IsGenericInstance): New interncall.
22222
22223 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
22224
22225         * object.c: fix cast warning in big endian code.
22226
22227 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
22228
22229         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
22230         
22231 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22232
22233         * assembly.c: don't call check_env from mono_assembly_load. It's
22234         already done once in mono_assemblies_init and may cause headaches when
22235         multiple threads are loading assemblies.
22236
22237 2003-09-19  Martin Baulig  <martin@ximian.com>
22238
22239         * reflection.c (mono_reflection_define_generic_parameter): Don't
22240         allocate `klass->methods', set `klass->flags' to
22241         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
22242
22243 2003-09-18  Martin Baulig  <martin@ximian.com>
22244
22245         * class.c (mono_class_init): Don't create `class->methods' if it's
22246         already initialized.
22247
22248         * metadata.c (mono_metadata_load_generic_params): Make this
22249         actually work.
22250
22251         * reflection.c (mono_reflection_define_generic_parameter): Set
22252         parent class and interfaces from the constraints.
22253
22254         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
22255         to keep this struct in sync with the declaration in TypeBuilder.cs.
22256
22257 2003-09-17  Martin Baulig  <martin@ximian.com>
22258
22259         * metadata.h (MonoType): Replaced the data's `int type_param'
22260         field with `MonoGenericParam *generic_param'.
22261         (MonoGenericParam): Added `MonoClass *klass'.
22262
22263         * class.c (mono_class_from_gen_param): Removed the
22264         `MonoImage *image' and `int type_num' arguments.
22265
22266         * metadata.c (mono_metadata_parse_generic_param): New static
22267         method; creates a MonoGenericParam which just contains the index.
22268         (do_mono_metadata_parse_type): Call
22269         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
22270         MONO_TYPE_MVAR.
22271
22272         * reflection.c (mono_image_typedef_or_ref): Generic type
22273         parameters may be in the same assembly, but never use a typedef
22274         for them.
22275         (mono_reflection_define_generic_parameter): We're now creating a
22276         "real" class for the type parameter; it's now safe to call
22277         mono_class_from_mono_type() on the class'es type, it'll do the
22278         right thing.
22279
22280 2003-09-16  Martin Baulig  <martin@ximian.com>
22281
22282         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
22283         `symfile->range_entry_size' and `symfile->class_entry_size' here;
22284         the `symfile' data structure must be fully initialized before it
22285         gets added to the table.
22286
22287 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
22288
22289         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
22290
22291         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
22292         class init trampolines.
22293
22294 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
22295
22296         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
22297         to the built-in profiler to turn off time and allocation profiling
22298         respectively.
22299
22300 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
22301
22302         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
22303         g_direct_equal.
22304
22305         * debug-helpers.c (mono_method_full_name): Print the wrapper type
22306         in human readable form.
22307
22308 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
22309
22310         * reflection.c icall.c: Fixed warnings.
22311
22312         * image.c (load_class_names): Use a temporary hash table to hold the
22313         namespaces in order to avoid doing many string comparisons.
22314
22315         * image.h: Fix typo.
22316
22317         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
22318         Pass NULL instead of g_direct_equal to the GHashTable constructor 
22319         since the NULL case is short-circuited inside g_hash_table_lookup, 
22320         leading to better performance.  
22321
22322         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
22323         obtain the first custom attribute for a given index. Depends on the
22324         CustomAttribute table being sorted by the parent field.
22325
22326         * reflection.c (mono_custom_attrs_from_index): Use the new function 
22327         for better performance.
22328
22329 2003-09-07  Martin Baulig  <martin@ximian.com>
22330
22331         * class.c (mono_class_init): If we're a generic instance, inflate
22332         all our methods instead of loading them from the image.
22333         (mono_class_from_generic): Set `class->methods = gklass->methods'.
22334
22335 2003-09-07  Martin Baulig  <martin@ximian.com>
22336
22337         * mono-debug-debugger.c: Added support for constructors.
22338
22339 2003-09-06  Martin Baulig  <martin@ximian.com>
22340
22341         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
22342         New interncall.
22343
22344         * reflection.c (mono_reflection_setup_generic_class): Call
22345         ensure_runtime_vtable() to create the vtable.
22346
22347 2003-09-05  Martin Baulig  <martin@ximian.com>
22348
22349         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
22350         MONO_TYPE_MVAR.
22351
22352 2003-09-04  Martin Baulig  <martin@ximian.com>
22353
22354         * reflection.c (mono_reflection_define_generic_parameter): Generic
22355         parameters start with zero.
22356
22357 2003-09-04  Martin Baulig  <martin@ximian.com>
22358
22359         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
22360
22361         * reflection.h (MonoReflectionGenericParam): New typedef.
22362         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
22363         the generic parameters from the managed TypeBuilder.
22364
22365         * reflection.c (mono_reflection_define_generic_parameter): New function.
22366         (mono_reflection_create_runtime_class): Encode generic parameters.
22367         (mono_reflection_setup_generic_class): New function; this is
22368         called after adding adding all generic params to the TypeBuilder.
22369         (encode_type): Added MONO_TYPE_VAR.
22370
22371 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
22372
22373         * class.h class.c (mono_class_needs_cctor_run): Moved this method
22374         here from the JIT.
22375
22376         * assembly.h assembly.c: Moved the AOT loading code into an assembly
22377         load hook.
22378
22379 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
22380
22381         * reflection.h reflection.c class.h class.c: Delete duplicate 
22382         definition of mono_type_get_name () from reflection.c and export the
22383         one in class.c.
22384
22385         * class.c: Class loading fixes from Bernie Solomon 
22386         (bernard@ugsolutions.com).
22387
22388         * reflection.c: Endianness fixes from Bernie Solomon 
22389         (bernard@ugsolutions.com).
22390         
22391 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
22392
22393         * assembly.h assembly.c: Define a file format version for AOT
22394         libraries.
22395         
22396         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
22397
22398         * appdomain.h (MonoJitInfo): New field to determine whenever the
22399         code is domain neutral.
22400         
22401 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
22402
22403         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
22404
22405 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
22406
22407         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
22408         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
22409         Avoid caching the result since strings must be domain specific. Fixes
22410         #48050.
22411
22412 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
22413
22414         * marshal.c (mono_marshal_init): Make this callable multiple times
22415         since it is hard to find a correct place to call it.
22416
22417         * object.c (mono_runtime_class_init): Execute static constructors in
22418         the correct appdomain.
22419
22420         * image.c (build_guid_table): Handle the case when multiple images have
22421         the same GUID.
22422
22423 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22424
22425         * icall.c: added a couple of icalls for System.Web.
22426
22427 2003-08-28  Martin Baulig  <martin@ximian.com>
22428
22429         * icall.c (ves_icall_Type_BindGenericParameters): Use
22430         `klass->generic_inst' instead of `&klass->byval_arg' in the
22431         mono_type_get_object() call.  The returned type must be
22432         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
22433
22434 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
22435
22436         * NOTES: New file.
22437
22438         * object.c (mono_class_proxy_vtable): Make it thread safe.
22439
22440         * pedump.c: Fix warning.
22441
22442         * object.c appdomain.h: Get rid of metadata_section. 
22443         It is no longer needed and it was causing deadlocks with domain->lock.
22444
22445         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
22446
22447 2003-08-26  Martin Baulig  <martin@ximian.com>
22448
22449         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
22450
22451 2003-08-26  Martin Baulig  <martin@ximian.com>
22452
22453         * pedump.c (main): Call mono_metadata_init(),
22454         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
22455         and mono_loader_init().
22456
22457 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
22458
22459         * loader.h: Add missing include to fix build.
22460
22461         * image.h: mono_image_load_references is no more.
22462
22463         * assembly.c: Reworked assembly loading to make it really thread safe.
22464         After these changes, the assembly returned by mono_assembly_open is
22465         fully initialized, i.e. all its references assemblies are loaded.
22466
22467         * assembly.c (mono_image_load_references): Renamed to 
22468         mono_assembly_load_references, and made private, since clients no
22469         longer need to call it.
22470
22471         * class.c: Removed calls to mono_assembly_load_references, since it was
22472         a source of deadlocks.
22473
22474         * loader.h loader.c class.h class.c: Protect data structures using a 
22475         new lock, the loader lock.
22476
22477         * class.c (mono_class_setup_vtable): Create temporary hash tables and
22478         GPtrArrays only when needed.
22479
22480         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
22481         into empty structures by mcs. Fixes pinvoke7.cs.
22482         
22483         * domain.c (mono_init): Call a new initialization function.
22484
22485         * appdomain.c (mono_runtime_init): Call the new initializer function
22486         of the marshal module.
22487
22488         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
22489         inserted into empty structures by mcs. Fixes pinvoke7.cs.
22490
22491         * marshal.h marshal.c: Added locks around the wrapper caches to make
22492         this module thread safe.
22493
22494         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
22495         this argument. Fixes pinvoke1.exe.
22496
22497 2003-08-25  Lluis Sanchez <lluis@ximian.com>
22498
22499         * object.h: Added call_type field to MonoMethodMessage and the corresponding
22500         enumeration of values. Removed fields to store remote call output values in
22501         MonoAsyncResult. Not needed any more.
22502         * object.c: Initialize call_type and async_result fields in mono_message_init.
22503         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
22504         dispatching the message.
22505         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
22506         async call to finish. To do it use a message with EndInvoke call type.
22507
22508 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
22509
22510         * loader.h loader.c (mono_method_hash_marhal_info): New function which
22511         determines whenever a method has marshalling info.
22512
22513 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22514
22515         * assembly.c: fix the build on windows.
22516
22517 2003-08-22 Lluis Sanchez <lluis@ximian.com>
22518
22519         * object.cs: Fixed bug #47785.
22520
22521 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
22522
22523         * string-icalls.c (StringReplace): If their are no occurances of
22524         the old string found return a reference to the supplied
22525         string. This saves some memory and matches MS behavoir.
22526         
22527 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22528
22529         * socket-io.c: fixed compilation for systems that define AF_INET6
22530         and don't define SOL_IP/SOL_IPV6.
22531
22532 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
22533
22534         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
22535         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
22536
22537         * rawbuffer.c rawbuffer.h: Make this module thread safe.
22538
22539         * domain.c: Make this module thread safe.
22540
22541         * domain.c (mono_init): Call new initialization function.
22542
22543         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
22544         reference types too. Fixes #38812.
22545
22546         * image.c (mono_image_init): Fixed warnings.
22547
22548         * class.c (mono_class_from_typeref): Handle assembly load failure
22549         correctly.
22550
22551         * appdomain.c (add_assemblies_to_domain): Handle the case when
22552         the references of an assembly are not yet loaded.
22553
22554         * metadata.c image.c assembly.c: Moved initialization of global
22555         variables to a separate function called at startup since lazy 
22556         initialization of these variables is not thread safe.
22557         
22558         * image.c assembly.c: Made this module thread safe by adding locks in 
22559         the appropriate places.
22560
22561         * domain.c (mono_init): Call the new initialization functions of the
22562         three modules.
22563
22564 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
22565
22566         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
22567           make a direct call. It is proxy's work to make the call asynchronous.
22568           mono_delegate_end_invoke(): If the targe is a proxy, just collect
22569           the return values.
22570         * object.cs: mono_method_call_message_new(): read AsyncResult and
22571           state object from parameters list, if this info is requested.
22572         * object.h: Added fields to store remote call output values in
22573           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
22574
22575 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
22576
22577         * object.h: add needed fields to MonoThread.
22578         * threads.c, threads.h: allow registering a function to cleanup data
22579         allocated per thread by the JIT.
22580
22581 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
22582
22583         * loader.h: portability fix by Bernie Solomon
22584         * <bernard@ugsolutions.com>.
22585
22586 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
22587
22588         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
22589         return a MonoArray. This simplifies the code and also ensures that
22590         the cache allways contains an object reference as a value.
22591
22592         * icall.c (ves_icall_get_parameter_info): Simplified using the new
22593         function.
22594
22595 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22596
22597         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
22598         fixes a problem with byte ordering when getting the address family for
22599         a socket.
22600
22601 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
22602
22603         * .cvsignore: Added monosn.
22604
22605         * reflection.h reflection.c loader.c: Added support for parameter
22606         marshalling to dynamically created types. Fixes #47295.
22607
22608 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
22609
22610         * rand.c: remove useless warnings.
22611
22612 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
22613
22614         * class.c: implemented ldtoken for methods and fieldrefs.
22615
22616 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22617
22618         * threadpool.c: when mono_async_invoke was called, no one took care of
22619         monitoring the queue. So if the method invoked took some time and we
22620         got new async invoke requests after 500 ms (the thread created waited
22621         that long in WaitForSingleObject), the new async invoke was not called
22622         until the previous one finished.
22623
22624         This is fixed now. Thanks to Totte for helping with it.
22625
22626 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22627
22628         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
22629
22630 2003-08-11  Martin Baulig  <martin@ximian.com>
22631
22632         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
22633
22634 2003-08-06  Martin Baulig  <martin@ximian.com>
22635
22636         * mono-debug-debugger.c: Added support for static fields,
22637         properties and methods.
22638
22639 2003-08-06  Martin Baulig  <martin@ximian.com>
22640
22641         * mono-debug-debugger.c: Don't store the MonoString's vtable to
22642         make this work for applications with multiple application domains.
22643
22644 2003-08-04  Martin Baulig  <martin@ximian.com>
22645
22646         * mono-debug-debugger.c: Completely reworked the type support; the
22647         most important thing is that we're now just using one single
22648         `MonoType' instance per type.
22649
22650 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
22651
22652         * mono-endian.h, mono-endian.c, icall.c: Added icall
22653         ves_icall_System_Double_AssertEndianity to assert double word endianity
22654         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
22655
22656 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
22657
22658         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
22659         support, icalls and fixes.
22660
22661 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
22662
22663         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
22664         classes that are a punctuation character in .NET is not the same a
22665         g_unichar_ispunct.
22666
22667 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
22668
22669         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
22670
22671 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
22672
22673         * icall.c: Add new MemCopy internalcall.
22674         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
22675         Simplified code; It is not necessary to handle all the cases here,
22676         as the C# code takes care of it.  Only handle the case of the name
22677         resource embedded into the assembly.
22678
22679         Changed signature to return the data pointer and the size of the
22680         data. 
22681
22682 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
22683
22684         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
22685         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
22686
22687 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
22688
22689         * socket-io.c: ignore EINTR error in select.
22690
22691 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
22692
22693         * class.h, class.c: removed unused subclasses field in MonoClass.
22694
22695 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
22696
22697         * icall.c: improve fix of get_base_definition(). If the parent class
22698           doesn't have the mehod, look at the parent of the parent.
22699         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
22700           to check if a parameter is an in or out parameter
22701           (PARAM_ATTRIBUTE_IN is not set by default).
22702           mono_method_return_message_restore(): Use mono_class_value_size to
22703           get the size of a value type. mono_type_stack_size (parameterType)
22704           does not return the correct value if parameterType is byRef.
22705           mono_load_remote_field(), mono_load_remote_field_new(),
22706           mono_store_remote_field(), mono_store_remote_field_new():
22707           raise exception if the remote call returns an exception.
22708
22709 2003-07-28  Martin Baulig  <martin@ximian.com>
22710
22711         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
22712         method.  This is a wrapper around mono_runtime_invoke() which
22713         boxes the instance object if neccessary.
22714
22715 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
22716
22717         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
22718         metadata.h, row-indexes.h, verify.c: first cut of generics support.
22719
22720 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
22721
22722         * icall.c: disable mcs bug workaround.
22723
22724 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
22725
22726         * object.c (mono_runtime_class_init): Take the metadata_section
22727         mutex before obtaining the domain mutex.
22728
22729         * appdomain.h: Added definition of metadata_section mutex here. 
22730
22731         * object.c: define metadata_mutex here.
22732
22733 2003-07-24  Ravi Pratap  <ravi@ximian.com>
22734
22735         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
22736         fixed.
22737
22738 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
22739
22740         * reflection.c: Fix bug #46669
22741
22742 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22743
22744         * exception.c:
22745         * exception.h:
22746         * icall.c:
22747         * object.h: fill in the type name for TypeLoadException.
22748
22749 2003-07-23  Ravi Pratap  <ravi@ximian.com>
22750
22751         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
22752         relationship between TypeBuilders while compiling corlib) and bug
22753         45993 (Array types returned from the runtime while compiling
22754         corlib were from the loaded corlib).
22755
22756 2003-07-22  Martin Baulig  <martin@ximian.com>
22757
22758         * mono-debug-debugger.c: Reworked the type support a bit more;
22759         distinguish between types and classes.
22760
22761 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
22762
22763         * icall.c: add IsArrayImpl icall.
22764
22765 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
22766
22767         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
22768         initializing real_size only once. Also fix bug #46602.
22769
22770 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
22771
22772         * object.c: Renamed mono_metadata_section to metadata_section.
22773
22774 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
22775
22776         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
22777           empty array if the type is an array. Fixed.
22778           ves_icall_MonoMethod_get_base_definition: if the base method
22779           is abstract, get the MethodInfo from the list of methods of
22780           the class.
22781         * reflection.c: ParameterInfo.PositionImpl should be zero-based
22782           and it was 1-based. Fixed in mono_param_get_objects.
22783
22784 2003-07-20  Martin Baulig  <martin@ximian.com>
22785
22786         * mono-debug.h: Set version number to 31.
22787         (mono_debug_init): Added `MonoDomain *' argument.
22788
22789         * mono-debug-debugger.c: Reworked the type support; explicitly
22790         tell the debugger about builtin types; pass the `klass' address to
22791         the debugger.
22792
22793 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
22794
22795         * image.c: Allow new metadata tables to be loaded without a
22796         warning. Also update the warning message to give the new constant value.
22797                 
22798 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
22799
22800         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
22801         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
22802         array type representation changes.
22803
22804 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
22805
22806         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
22807         on Environment.Exit () call.
22808
22809 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
22810
22811         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
22812         requires a matching corlib.
22813
22814 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
22815
22816         * Changelog: My editor decided to add a CR to each line. Sorry about that.
22817           Committed again without the CRs.
22818         
22819 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
22820
22821         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
22822           getting it from the "this" socket instance. Did not work
22823           if the socket is a subclass of Socket.
22824           Also fixed bug #35371.
22825
22826 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
22827
22828         * metadata.c: fixed size for TypedByRef.
22829         * loader.c: when searching for a method, consider the vararg amrker.
22830         * unicode.c, decimal.c: constify some arrays.
22831
22832 2003-07-15  Dick Porter  <dick@ximian.com>
22833
22834         * socket-io.c: Fixed compilation for gcc < 3.2.
22835
22836         Fixed compilation for machines that don't have AF_INET6 (thanks to
22837         Bernie Solomon <bernard@ugsolutions.com> for that part.)
22838
22839         Fixed compile warnings.
22840         
22841         Fixed formatting and line endings.
22842
22843 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
22844
22845         * socket-io.h:
22846         * socket-io.c: Added IPv6 support.
22847
22848 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
22849
22850         * class.c (mono_class_is_assignable_from): New function to implement
22851         the is_assignable_from logic. Used by mono_object_isinst, 
22852         Type::IsAssignableFrom () and the interpreter.
22853
22854         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
22855         Object, even interfaces.
22856         
22857         * object.c (mono_object_isinst): Implement in terms of 
22858         is_assignable_from.
22859
22860         * icall.c (ves_icall_type_is_assignable_from): New icall.
22861
22862 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
22863
22864         * domain.c (foreach_domain): fix compiler warning.
22865
22866 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
22867
22868         * image.c (load_metadata_ptrs): use g_strndup because strndup is
22869         not available on all plattforms
22870
22871 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
22872
22873         * image.h image.c: Store the metadata version string in MonoImage.
22874         * icall.c: New icall to retrieve the image version.
22875         * reflection.c (create_dynamic_image): Fill in the image version field
22876         * reflection.c (build_compressed_metadata): Use the image version
22877         from the image structure.
22878
22879 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22880
22881         * appdomain.c: modified comment.
22882         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
22883         That will be its last iteration when mono_gc_cleanup is called from
22884         mono_runtime_cleanup and before the domain is unloaded.
22885
22886         Fixes bug #45962.
22887
22888 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
22889
22890         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
22891         attributes.
22892
22893 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
22894
22895         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
22896         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
22897         Bernie Solomon <bernard@ugsolutions.com>.
22898
22899 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
22900
22901         * object.c, object.h: provide mono_object_new_fast() for faster
22902         allocation in some special cases.
22903
22904 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
22905
22906         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
22907         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
22908
22909 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
22910
22911         * threadpool.c: fix leaks.
22912
22913 2003-07-01  Dick Porter  <dick@ximian.com>
22914
22915         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
22916         using MonoGHashTables.  Fixes threadpool bug posted to list.
22917
22918 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
22919
22920         * image.h, image.c: added support to load an assembly from a byte array.
22921         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
22922         assembly bundle support.
22923
22924 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
22925
22926         * threadpool.c (mono_thread_pool_add): keep a reference to the
22927         AsyncResult to prevent GC
22928
22929 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
22930
22931         * class.c: leak fix.
22932
22933 2003-06-25  Dick Porter  <dick@ximian.com>
22934
22935         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
22936         for the async object, the WaitHandle object will close the handle.
22937         Fixes bug 45321.
22938
22939 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
22940
22941         * class.c: in mono_array_class_get (), lookup from the hash with the
22942         same type we insert: this works around a bug in
22943         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
22944         lluis. The real fix will have to wait for after the release.
22945
22946 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
22947
22948         * icall.c: fix memory leak when getting type members.
22949
22950 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
22951
22952         * reflection.c: added more pubtoken special cases.
22953
22954 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
22955
22956         * class.c: handle field offset correctly when class size
22957         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
22958
22959 2003-06-20  Martin Baulig  <martin@ximian.com>
22960
22961         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
22962         *image' field.
22963
22964 2003-06-20  Martin Baulig  <martin@ximian.com>
22965
22966         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
22967
22968 2003-06-20  Martin Baulig  <martin@ximian.com>
22969
22970         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
22971         just distinguish between variables in registers and variables at
22972         an offset relative to a register.
22973
22974 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22975
22976         * icall.c: #ifdef out latest changes until mcs is fixed.
22977
22978 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
22979
22980         * icall.c: return members in metadata order.
22981
22982 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
22983
22984         * icall.c: avoid infinite loop in GetTimeZoneData.
22985
22986 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
22987
22988         * icall.c: added Marshal.Prelink/All icalls.
22989
22990 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
22991
22992         * object.c, object.h: fix warnings and do some overflow checking
22993         when creating arrays.
22994
22995 2003-06-17  Dick Porter  <dick@ximian.com>
22996
22997         * file-io.h:
22998         * file-io.c: File attributes need to be tweaked slightly when
22999         passed from the managed to the w32 world.
23000
23001 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
23002         * profiler.h profiler-private.h profiler.c: Rework last patch
23003         based on suggestion by Paolo.
23004         
23005 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
23006
23007         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
23008         instruction level coverage data collection.
23009         * profiler.h profiler.c (: Added new callback function which can be
23010         used by the profiler to limit which functions should have coverage
23011         instrumentation.
23012         * profiler.c (mono_profiler_load): Call g_module_build_path to
23013         generate the file name of the profiler library.
23014
23015 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
23016
23017         * profiler.c, profiler.h, profiler-private.h: added basic block 
23018         coverage profiling API.
23019
23020 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
23021
23022         * reflection.c (mono_reflection_create_runtime_class): Add support
23023         for events in dynamically generated code.
23024
23025         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
23026         not allocated.
23027
23028 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
23029
23030         * icall.c: when getting timezone info, return reasonable values if we
23031         can't get the actual data.
23032
23033 2003-06-14  Dick Porter  <dick@ximian.com>
23034
23035         * threads.c (start_wrapper): Remove the reference to the thread
23036         object in the TLS data, so the thread object can be finalized.
23037         This won't be reached if the thread threw an uncaught exception,
23038         so those thread handles will stay referenced :-( (This is due to
23039         missing support for scanning thread-specific data in the Boehm GC
23040         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
23041
23042 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
23043
23044         * reflection.c: ensure streams and tables are first allocated with
23045         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
23046
23047 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
23048
23049         * icall.c: fixed GetElementType for byrefs (bug# 44792).
23050
23051 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
23052
23053         * reflection.c (mono_reflection_create_runtime_class): Add support for
23054         properties to dynamically created classes.
23055         * reflection.c: Fix a few places where non-MonoObjects were inserted
23056         into the tokens hashtable.
23057
23058 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23059
23060         * object.c: some support to handle out of memory exceptions.
23061
23062 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
23063
23064         * marshal.c (mono_marshal_get_native_wrapper): support reference
23065         return types
23066
23067 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
23068
23069         * object.h, object.c: more portability stuff from Bernie Solomon.
23070         Unexport mono_object_allocate(). Added mono_object_unbox ().
23071         Set exitcode when an unhandled exception is thrown.
23072
23073 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
23074
23075         * marshal.c (mono_marshal_get_native_wrapper): use custom
23076         marshaler for return types.
23077
23078 2003-06-10  Dick Porter  <dick@ximian.com>
23079
23080         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
23081         ip_mreq is available
23082
23083 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
23084
23085         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
23086         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
23087         by Bernie Solomon <bernard@ugsolutions.com>.
23088
23089 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
23090
23091         * gc.c (mono_gc_init): Avoid error message on shutdown when
23092         GC_DONT_GC=1 is used.
23093
23094         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
23095         New icall to return the GUID of a module.
23096
23097 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
23098
23099         * class.c: ensure instance size always includes the parent's size
23100         even whem class size is set explicitly (fixes bug#44294).
23101
23102 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
23103
23104         * profiler.h, profiler.c: made the simple profiler thread-safe,
23105         get more accurate timing info. Allow the loading of an
23106         externally-developed profiler module.
23107
23108 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
23109
23110         * marshal.c (mono_marshal_get_native_wrapper): improved
23111         class/byref arguments.
23112         (mono_marshal_get_native_wrapper): better string marshaling support.
23113
23114 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
23115
23116         * class.c: ensure .pack and .size are handled correctly and
23117         simplified layout of static fields.
23118
23119 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
23120
23121         * appdomain.c
23122         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
23123
23124         * loader.c (mono_lookup_pinvoke_call): look for modules in the
23125         current directory (fix bug 44008)
23126
23127 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
23128
23129         * marshal.c (mono_marshal_get_native_wrapper): started support for
23130         custom marshalers.
23131         (mono_delegate_to_ftnptr): consider marshalling specifications
23132
23133 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
23134
23135         * reflection.c, reflection.h: emit custom marshal info.
23136
23137 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23138
23139         * object.c: free the GError.
23140         * icall.c: added CloseEvent_internal.
23141         * threads.[ch]:
23142         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
23143         call.
23144
23145 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
23146
23147         * loader.c (mono_method_get_signature): Add support for dynamic
23148         assemblies.
23149
23150 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
23151
23152         * reflection.c: fixed bug #43905.
23153
23154 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
23155
23156         * class.c, domain.c, icall.c, metadata.h, object.h: support for
23157         handling TypedReference and ArgIterator.
23158         * loader.c, loader.h: added function to get signature at call site.
23159
23160 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23161
23162         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
23163         data readonly. Buglets and warning fixes. Some MethodSpec support.
23164
23165 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
23166
23167         * class.h, class.c, object.c: remove relative numbering support.
23168
23169 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
23170
23171         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
23172         free the string, until we get a chance to fix Gtk#
23173
23174 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23175
23176         * marshal.c: revert last patch.
23177
23178 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
23179
23180         * icall.c: updates for new mono_class_vtable() not calling
23181         the type constructor anymore.
23182
23183 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
23184
23185         * object.h, object.c: separate vtable creation from type
23186         initialization. Make running the .cctor thread safe.
23187
23188 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
23189
23190         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
23191
23192 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
23193
23194         * loader.c (mono_get_method): consider calling convention
23195
23196 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
23197
23198         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
23199         to return the invisible global type for a module.
23200
23201         * reflection.c (mono_image_build_metadata): Emit global fields too.
23202
23203 2003-05-20  Peter Williams  <peterw@ximian.com>
23204
23205         * loader.c (mono_lookup_internal_call): Add a few newlines.
23206
23207 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
23208
23209         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
23210         literal strings.
23211
23212         * appdomain.c (set_domain_search_path): Recalculate search path when
23213         AppDomainSetup.PrivateBinPath changes.
23214
23215         * object.c (mono_class_compute_gc_descriptor): It turns out some
23216         parts of the class libs (like System.Thread) holds pointers to
23217         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
23218         to treat native int a pointer type here.
23219         
23220 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
23221
23222         * appdomain.h, domain.c: add hashtable for jump target resolution.
23223
23224 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
23225
23226         * reflection.h reflection.c icall.c: Added new icalls 
23227         GetManifestResourceInfoInternal, GetModulesInternal and support
23228         infrastructure.
23229
23230 2003-05-16  Dick Porter  <dick@ximian.com>
23231
23232         * icall.c:
23233         * file-io.h:
23234         * file-io.c: Implement System.IO.MonoIO::GetTempPath
23235
23236 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
23237
23238         * object.c: mono_store_remote_field: little fix to previous patch.
23239
23240 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
23241
23242         * class.c: add constructors to array classes.
23243         * icall.c: special case array construction for InternalInvoke (),
23244
23245 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
23246
23247         * class.h class.c reflection.c object.c: Added support for field
23248         defaults in dynamically generated classes.
23249
23250 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
23251
23252         * reflection.c: properly encode charset for ddlimport.
23253
23254 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
23255
23256         * threads.c: allow compiling without GC.
23257
23258 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
23259
23260         * appdomain.h, object.c, object.h, threads.c, threads.h: added
23261         handling of thread static data.
23262
23263 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
23264
23265         * reflection.h, reflection.c: added mono_custom_attrs_free ().
23266
23267 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
23268
23269         * class.c (mono_array_class_get): always set the serializable flags
23270         (mono_array_class_get): always set the SEALED attribute for array types
23271
23272 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
23273
23274         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
23275         attributes (fix for bug 42021).
23276
23277 2003-05-12  Dick Porter  <dick@ximian.com>
23278
23279         * gc.c: Don't run finalizers when the finalizer thread is
23280         finishing up, because the default domain has already been
23281         destroyed.
23282
23283 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
23284
23285         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
23286         value is null, we should throw an exception.   This is slightly
23287         different than the other conventions used for the constructor.
23288
23289 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23290
23291         * socket-io.c: fixed windows build.
23292
23293 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23294
23295         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
23296
23297 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
23298
23299         * object.c (mono_string_new_wrapper): Compatibility fix for MS
23300         compilers.
23301
23302 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
23303
23304         * class.c (mono_class_layout_fields): Add experimental GC aware
23305         auto layout facility. Requires class library changes to work correctly.
23306
23307         (mono_class_setup_vtable): Avoid overriding explicit interface
23308         method implementations. Fixes iface3.exe test.
23309
23310         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
23311         object reference.
23312         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
23313         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
23314
23315         * metadata.h: Add new type classification macro which determines
23316         whenever the type holds an object reference.
23317
23318 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
23319
23320         * marshal.c (mono_marshal_get_native_wrapper): cleanups
23321
23322 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
23323
23324         * gc.c (finalizer_thread): Work around a GC bug.
23325
23326 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
23327
23328         * marshal.c (emit_struct_conv): allow unions
23329
23330         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
23331
23332 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
23333
23334         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
23335
23336 2003-05-06  Martin Baulig  <martin@ximian.com>
23337
23338         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
23339
23340 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23341
23342         * socket-io.c:
23343         (Select_internal): allow NULLs, don't create arrays if not needed.
23344         Coupled with Socket.cs changes.
23345
23346         * threadpool.c:
23347         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
23348         register a finalizer for it that will close the semaphore handle. This
23349         fixes the leak and make Lupus' test run with > 4080 loops.
23350
23351 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
23352
23353         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
23354         Jerome Laban (bug #42287)
23355
23356 2003-05-02  Martin Baulig  <martin@ximian.com>
23357
23358         * debug-mono-symfile.h
23359         (MonoSymbolFile): Moved declaration into mono-debug.h.
23360         (MonoDebugMethodJitInfo): Likewise.
23361         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
23362         argument.
23363         (_mono_debug_address_from_il_offset): Take a
23364         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
23365
23366         * mono-debug.h
23367         (MonoDebugDomainData): New struct.
23368         (mono_debug_get_domain_data): New function.
23369         (mono_debug_add_method): Take an additional `MonoDomain *'
23370         argument.
23371         (mono_debug_source_location_from_address): Likewise.
23372         (mono_debug_il_offset_from_address): Likewise.
23373         (mono_debug_address_from_il_offset): Likewise.
23374
23375 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
23376
23377         * reflection.c: one more check for null type in custom attrs.
23378
23379 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23380
23381         * reflection.c: avoid warning (comparison is always false due to limited
23382         range of data type).
23383
23384 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23385
23386         * icall.c: throw an exception in Type.GetField if the argument 'name'
23387         is NULL.
23388
23389 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
23390
23391         * reflection.c: fixed handling of enums in named arguments to custom
23392         attributes (bug #42123).
23393
23394 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
23395
23396         * reflection.c: use the right array element type and handle
23397         a null for a Type argument, too.
23398
23399 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
23400
23401         * reflection.c: handle arrays as arguments to custom attributes.
23402
23403 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
23404
23405         * reflection.c: handle a string value in a custom attr
23406         ctor that takes an object.
23407
23408 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
23409
23410         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
23411         (fix bug #42063)
23412
23413 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
23414
23415         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
23416
23417 2003-04-27  Martin Baulig  <martin@ximian.com>
23418
23419         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
23420         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
23421         MONO_DEBUGGER_EVENT_BREAKPOINT.
23422         (mono_breakpoint_trampoline_code): Removed.
23423         (mono_debugger_event_handler): The last argument is now a
23424         `guint32'.
23425         (mono_debugger_insert_breakpoint_full): Removed the
23426         `use_trampoline' argument.
23427         (mono_debugger_method_has_breakpoint): Likewise.
23428         (mono_debugger_trampoline_breakpoint_callback): Renamed to
23429         mono_debugger_breakpoint_callback(); take the method and
23430         breakpoint number as arguments.
23431
23432 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
23433
23434         * metadata.c: fix off by one when loading parameters attributes.
23435
23436 2003-04-24  Martin Baulig  <martin@ximian.com>
23437
23438         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
23439
23440 2003-04-24  Martin Baulig  <martin@ximian.com>
23441
23442         * mono-debug-debugger.c: Moved all code which interacts with the
23443         Mono Debugger here.
23444
23445         * debug-mono-symfile.c: This code now just deals with the symbol
23446         file itself, the debugger code is now in mono-debug-debugger.c.
23447
23448 2003-04-23  Martin Baulig  <martin@ximian.com>
23449
23450         * mono-debug.c (mono_debug_source_location_from_il_offset):
23451         New method; like mono_debug_source_location_from_address(), but
23452         takes an IL offset instead of a machine address.
23453
23454 2003-04-23  Martin Baulig  <martin@ximian.com>
23455
23456         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
23457         `line' field; this is now computed by the debugger.
23458
23459 2003-04-23  Martin Baulig  <martin@ximian.com>
23460
23461         * mono-debug.[ch]: New files.  This is the new debugging interface.
23462
23463         * mono-debug-debugger.[ch]: New files.  Moved all code which
23464         interacts with the Mono Debugger here.
23465
23466 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
23467
23468         * domain.c (mono_init): initialize mono_defaults.monitor_class
23469
23470 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
23471
23472         * reflection.c (method_encode_code): Add a spicy exception to help
23473         future compiler authors.
23474
23475 2003-04-21  Martin Baulig  <martin@ximian.com>
23476
23477         * icall.c
23478         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
23479         Make this work with relative pathnames; g_filename_to_uri() needs
23480         an absolute filename.
23481
23482 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
23483
23484         * icall.c: Track name changes in Object and ValueType.
23485
23486 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
23487
23488         * metadata.c (mono_type_stack_size): size should be a multiple of
23489         sizeof (gpointer)
23490
23491 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23492
23493         * gc.c:
23494         (internal_domain_finalize): moved into mono_domain_finalize. No need
23495         to create another thread because the finalizers will be run in the
23496         finalizer thread.
23497         
23498         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
23499         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
23500         to be run (MS does this too).
23501
23502 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
23503
23504         * object.c (mono_class_compute_gc_descriptor): Update comment.
23505
23506         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
23507
23508         * image.h: Add synchronized wrapper cache.
23509
23510         * image.c (do_mono_image_open): Initialize cache.
23511
23512         * reflection.c (create_dynamic_mono_image): Initialize cache.
23513
23514 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23515
23516         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
23517         ves_icall_System_Buffer_ByteLengthInternal.
23518
23519 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23520
23521         * reflection.c: setup klass->nested_in earlier. Allow
23522         a dash in the assembly name.
23523
23524 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
23525
23526         * metadata.c (mono_type_to_unmanaged): dont access
23527         type->data.klass for MONO_TYPE_OBJECT
23528         (mono_type_to_unmanaged): consider System.Delegate class
23529
23530 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
23531
23532         * class.c: just setup supertypes in the proper place instead of
23533         initializing the full element class for arrays.
23534
23535 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
23536
23537         * class.c: ensure the element class of arrays is initialized.
23538         Setup the supertype info for array classes, too.
23539
23540 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
23541
23542         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
23543
23544 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23545
23546         * Makefile.am: re-added -m option when running cygpath. This way,
23547         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
23548         separator.
23549         * mono-config.c: same codepath for locating mono config file for WIN32
23550         and the rest.
23551         * assembly.c: if mono_assembly_setrootdir is called, don't override
23552         the value set.
23553
23554 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23555
23556         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
23557         MONO_ASSEMBLIES variable.
23558
23559 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
23560
23561         * icall.c: added Assembly::GetNamespaces() icall.
23562
23563 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23564
23565         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
23566
23567 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
23568
23569         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
23570         * object.c: fixed bug in the construction of vtable for proxies
23571
23572 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
23573
23574         * object.c (mono_array_new): Mark mono_array_new as an icall.
23575
23576 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23577
23578         * class.c: fixed test for public method when overriding interfaces.
23579         Closes bug #40970.
23580
23581 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
23582
23583         * appdomain.h, domain.c: added mono_domain_foreach() to
23584         be able to access the currently loaded appdomains.
23585         * object.c: make string interning work across sppdomains.
23586         Mark some functions for use as icalls.
23587
23588 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
23589
23590         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
23591
23592         * reflection.h reflection.c: Allocate long living data using 
23593         GC_MALLOC_ATOMIC so the collector does not need to scan it.
23594
23595         * reflection.c: Double the allocation size in streams instead of
23596         increasing it, to prevent unneccesary copying on large assemblies.
23597         
23598         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
23599         creation if the assembly does not have the Run flag set.
23600
23601 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
23602
23603         * class.h: avoid the C++ keywords in header files (Jerome Laban
23604         spotted and fixed this).
23605
23606 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23607
23608         * object.c:
23609         (mono_unhandled_exception): fill in the arguments for the
23610         UnhandledException event. Only trigger that event for the default
23611         domain (as MS does).
23612
23613 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
23614
23615         * object.c: Improve typed allocation stuff based on suggestions from
23616         Paolo. Also turn it on if the GC library supports it.
23617
23618 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
23619
23620         * object.c object.h class.h: Added experimental typed allocation
23621         facility using the interfaces in gc_gcj.h.
23622
23623         * os/gc_wrapper.h: Added new include files.
23624         
23625 2003-04-03  Martin Baulig  <martin@ximian.com>
23626
23627         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
23628         which is not yet enabled by default.
23629
23630         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
23631         functions.
23632         (mono_gc_lock, mono_gc_unlock): New static functions.
23633
23634         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
23635         functions; stop/start the world for the garbage collector.  This
23636         is using the windows API; we need to complete the SuspendThread()/
23637         ResumeThread() implementation in the io-layer to make this work on Unix.
23638         (mono_gc_push_all_stacks): New public function; tells the garbage
23639         collector about the stack pointers from all managed threads.
23640
23641 2003-04-03  Martin Baulig  <martin@ximian.com>
23642
23643         * object.h (MonoThread): Added `gpointer stack_ptr'.
23644
23645         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
23646
23647 2003-04-03  Martin Baulig  <martin@ximian.com>
23648
23649         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
23650
23651 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
23652
23653         * reflection.c (typebuilder_setup_fields): Initialize field.first and
23654         field.last.
23655
23656 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
23657
23658         * loader.c (mono_lookup_internal_call): Report the corlib that is
23659         out of sync.
23660
23661 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
23662
23663         * icall.c (ves_icall_type_GetTypeCode): fixed check for
23664         System.DBNull (it's class not valuetype).
23665
23666 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
23667
23668         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
23669         if the array method was already assigned a token (fixes bug#40646).
23670
23671 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
23672
23673         * reflection.c (mono_reflection_get_type): Attempt type resolve even
23674         if no assembly is given.
23675
23676 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
23677
23678         * metadata.h: Added the new tables.
23679
23680         * row-indexes.h: Added definitions for new tables.
23681
23682         * metadata.c: Add schemas for new tables, and add support for
23683         computing the sizes of them.
23684
23685         * class.c: Update for handling the new type cases.
23686
23687 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
23688
23689         * metadata.h (MONO_TYPE_IS_VOID): new macro
23690
23691 2003-03-31  Martin Baulig  <martin@ximian.com>
23692
23693         * threads.h (MonoThreadCallbacks): Added `thread_created'.
23694
23695         * threads.c (mono_thread_new_init): Call `thread_created' in the
23696         mono_thread_callbacks.
23697
23698 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
23699
23700         * loader.h: added marshalbyrefobject_class to mono_defaults
23701         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
23702         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
23703           generation of output parameters.
23704           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
23705         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
23706           contextbound and the target object belongs to the context of the caller.
23707         * object.h: added context and unwrapped_server variables in MonoRealProxy.
23708         * object.c: Implemented support for interfaces and abstract classes
23709           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
23710           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
23711
23712 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
23713
23714         * class.h class.c (mono_class_is_subclass_of): New function.
23715         
23716         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
23717         routines for most common case (calls from ArrayList::ToArray).
23718
23719         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
23720         routine so programs which call Environment::Exit() can be profiled.
23721
23722         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
23723         Added MONO_ARCH_SAVE_REGS.
23724
23725         * icall.c (ves_icall_type_is_subtype_of): Use new function.
23726
23727 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
23728
23729         * blob.h: Add a couple of new MonoType types definitions.
23730
23731         * tabledefs.h: Add a couple of new call convs.
23732
23733 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
23734
23735         * reflection.h (MonoReflectionDynamicAssembly): track changes in
23736         the layout of the class.
23737
23738         * reflection.c (alloc_table): double the size on overflow to avoid
23739         unnecessary copying.
23740
23741         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
23742         avoid filling out metadata tables and blobs. Also set mb->ilgen to
23743         null so it can be garbage collected.
23744         
23745 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
23746
23747         * reflection.c (mono_reflection_get_type): Return the resolved type
23748         only if it is in the assembly we searched.
23749
23750         * reflection.c (ensure_runtime_vtable): Initialize method slots.
23751
23752         * class.c (mono_class_setup_vtable): Set the slot of the overriding
23753         method.
23754
23755 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23756
23757         * appdomain.c:
23758         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
23759         the right one is 'file:///blah', but MS allows it.
23760         * assembly.c:
23761         (mono_assembly_open): allow 'file://blah'
23762
23763         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
23764
23765 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
23766
23767         * socket-io.c: fixes bug #40310.
23768
23769 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
23770
23771         * reflection.c (mono_reflection_parse_type): handle deeply nested
23772         types correctly.
23773
23774         * reflection.c (mono_image_create_token): Use unique token values
23775         since they will be put into a hash table.
23776
23777         * class.c (mono_class_setup_vtable): If a method occurs in more than
23778         one place in the vtable, and it gets overriden, then change the
23779         other occurances too.
23780
23781         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
23782         object as return type.
23783
23784 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
23785
23786         * icall.c: Deleted "ToString" implementation for double and float
23787         because they are full implemented in managed code.
23788
23789 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
23790
23791         * reflection.c, reflection.h: implemented and exported functions
23792         to retrieve info about custom attributes.
23793
23794 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23795
23796         * appdomain.c: moved Uri handling to assembly.c
23797         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
23798         work when using a file Uri in *nix and windows.
23799
23800         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
23801         GetReferencedAssemblies.
23802
23803 2003-03-18  Dick Porter  <dick@ximian.com>
23804
23805         * icall.c: Rename a couple of internal calls
23806
23807         * threads.c: Set the thread state to Stopped when a thread exits.
23808         Fixes bug 39377.
23809
23810 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
23811
23812         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
23813         New icall.
23814
23815         * object.c (mono_class_vtable): fix warning.
23816
23817 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
23818
23819         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
23820
23821         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
23822         memory.
23823         (method_encode_clauses): Create exception info structures in the right
23824         order.
23825         (mono_reflection_setup_internal_class): Initialize supertypes field.
23826
23827         * class.c object.c: Handle interfaces which implement other interfaces 
23828         correctly.
23829
23830         * class.h class.c: Move the supertypes array initialization code into 
23831         a separate function so it can be used for dynamic types too. Also call
23832         it earlier, in mono_class_init(), since it can be used before the
23833         type is initialized.
23834
23835 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23836
23837         * Makefile.am:
23838         * assembly.c:
23839         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
23840
23841         * appdomain.c:
23842         * appdomain.h:
23843         * marshal.c:
23844         * object.c: remove warnings.
23845
23846 2003-03-13  Martin Baulig  <martin@ximian.com>
23847
23848         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
23849         (MonoDebugLexicalBlockEntry): New types.
23850
23851         * debug-mono-symfile.c
23852         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
23853
23854 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23855
23856         * process.c: ret can be any non-zero value accroding to MS doc.
23857
23858 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
23859
23860         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
23861         fixing a warning for a miss-used prototype, would have cause
23862         random memory corruption.
23863
23864 2003-03-07  Martin Baulig  <martin@ximian.com>
23865
23866         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
23867         getting really annoying ....
23868
23869 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
23870
23871         * reflection.c (fixup_method): added support for array methods.
23872
23873 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
23874
23875         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
23876         (pointed out by Michael Adams).
23877
23878 2003-03-04  Dick Porter  <dick@ximian.com>
23879
23880         * icall.c: Temporarily reverted the Double and Single ToString()
23881         change, because it broke nunit.
23882
23883 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
23884
23885         * object.h, threads.h: make include files compatible with C++
23886         (patch by Jerome Laban <jlaban@wanadoo.fr>).
23887
23888 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
23889
23890         * icall.c: Erased ToString helper functions for Double and Single.
23891         Now, that implementations ar all in managed code (Double and Single
23892         Formatters).
23893
23894 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
23895
23896         * appdomain.c: Added method for initializing the default context of
23897         a domain. Added internal call for getting the default context.
23898         * appdomain.h: Added context variable in MonoDomain struct.
23899         * domain.c: mono_domain_set also sets the default context of the domain
23900         * icall.c: Mapped internal method InternalGetDefaultContext.
23901         * object.c: mono_object_get_virtual_method returns always a remoting
23902         wrapper if the object is a transparent proxy.
23903         mono_runtime_invoke_array: when creating an object by calling the
23904         constructor, if the created object is a proxy, then the constructor should
23905         be called using the a remoting wrapper.
23906
23907 2003-03-03  Dick Porter  <dick@ximian.com>
23908
23909         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
23910         variable so it compiles on solaris.  Problem spotted by
23911         Christopher Taylor <ct@cs.clemson.edu>
23912
23913 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23914
23915         * appdomain.c:
23916         (get_info_from_assembly_name): don't leak value.
23917
23918         * icall.c:
23919         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
23920         result.
23921
23922 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
23923
23924         * assembly.c: export mono_image_load_references ().
23925         * class.c: handle function pointers. mono_class_from_name() now
23926         supports nested type names directly.
23927
23928 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
23929
23930         * reflection.h reflection.c: Encode already created dynamic methods 
23931         and fields correctly as a DEF instead of a REF.
23932
23933         * reflection.c: Get rid of the force_ref argument to 
23934         mono_image_typedef_or_ref since it was wrong in the first place.
23935
23936         * string-icalls.c: add error checking to string constructors according
23937         to the MSDN docs.
23938
23939         * reflection.c: Emit types in the order their TypeBuilders were 
23940         created. Previously, a new table index was assigned to each type before
23941         the tables were emitted. This was wrong because the signature blob
23942         might already refer to a type by its original table index.
23943
23944 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
23945
23946         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
23947         change.
23948         
23949 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23950
23951         * Makefile.am: make assemblies dir have \ instead of / on windows.
23952
23953 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
23954
23955         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
23956         iterate over the NESTEDCLASS table using a linear search since the
23957         table is not guaranteed to be sorted by the secondary key.
23958
23959         * class.c (mono_class_create_from_typedef): fixed up call to
23960         mono_metadata_nesting_typedef.
23961         
23962 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
23963
23964         * marshal.c (mono_string_to_byvalstr): clear the memory as
23965         suggested by Jerome Laban <jlaban@wanadoo.fr>
23966
23967 2003-02-26  Dick Porter  <dick@ximian.com>
23968
23969         * process.c: Cope with padding in .rsrc blocks
23970
23971 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
23972
23973         * metadata.h: reverted the filter_len change, it breaks reflection
23974         
23975 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
23976
23977         * metadata.h: added a new field to store the filter_len
23978         
23979
23980 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
23981
23982         * reflection.c: handle custom attributes for types and members
23983         created with Reflection.Emit (bug#38422).
23984
23985 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
23986
23987         * reflection.c: define RTSpecialName automatically for constructors for
23988         compatibility with MS.NET.
23989
23990         * reflection.c (mono_reflection_create_runtime_class): initialize
23991         nested_in field of dynamically created classes.
23992
23993 2003-02-22  Martin Baulig  <martin@ximian.com>
23994
23995         * debug-mono-symfile.h: Incremented version number.
23996
23997 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
23998
23999         * object.h icall.c process.c: fix warnings.
24000
24001 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
24002
24003         * appdomain.h appdomain.c:
24004         (mono_domain_try_type_resolve): split the 
24005         name_or_tb argument into a name and a tb argument.
24006         (mono_domain_has_type_resolve): new function to check whenever the
24007         application has registered a TypeResolve event handler.
24008         
24009         * icall.c reflection.h reflection.c: move the type resolve logic into
24010         mono_reflection_get_type () so it will be invoked when 
24011         Assembly::GetType () is called.
24012
24013         * reflection.c:
24014         (mono_reflection_get_type): renamed to get_type_internal.
24015         (mono_reflection_get_type): fixed type name generation so it works 
24016         for nested types too.
24017         (mono_reflection_get_type): call has_type_resolve () to avoid the 
24018         costly type name generation if there is no resolve event handler.
24019
24020 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
24021
24022         * class.c, image.c: load exported types from file references.
24023
24024 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
24025
24026         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
24027           used to cache the managed methods used to create proxies and make 
24028           remote invocation of methods.
24029         * class.h: Added in MonoVTable a flag to indicate that a class needs 
24030           to be remotely created.
24031         * object.c: Modified the method mono_class_vtable(). It now initializes 
24032           the remote flag of the vtable. Modified mono_object_new_specific(), 
24033           so now it checks the remote flag.
24034         * icall.c: Added a couple of internal methods, one for enabling instance 
24035           creation interception for a type, and one for creating objects bypassing
24036           the remote check.
24037
24038 2003-02-18  Martin Baulig  <martin@ximian.com>
24039
24040         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
24041         New interncall to get a method's metadata token.
24042
24043         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
24044         New interncall for the debugger.
24045
24046 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
24047
24048         * class.c (mono_class_setup_vtable): allocate supertype array
24049
24050 2003-02-18  Martin Baulig  <martin@ximian.com>
24051
24052         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
24053
24054 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24055
24056         * reflection.c:
24057         (assembly_name_to_aname): jump over unknown properties (i've found
24058         something like: 'type, assembly, version=xxx, custom=null, public...',
24059         so now will ignore custom=null and still get the rest of the values).
24060
24061 2003-02-17  Dick Porter  <dick@ximian.com>
24062
24063         * threads.c: Have Thread.Start() wait for a semaphore to signal
24064         that the thread has set up all its local data.  This fixes bug
24065         34323, where Abort() raced the new thread's TLS data.
24066
24067         Also removes the handle_store() call from start_wrapper, because
24068         threads are now always created suspended and there is no longer a
24069         race between the parent and child threads to store the info.
24070
24071 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
24072
24073         * image.c: explain the #- heap issue in a message, hopefully
24074         avoiding FAQs on mono-list.
24075
24076 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24077
24078         * icall.c:
24079         (GetEntryAssembly): if the domain has not invoked
24080         AppDomain.ExecuteAssembly yet, return the assembly of the default
24081         AppDomain.
24082
24083 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
24084
24085         * class.c (mono_ldtoken): make it work in dynamic assemblies.
24086
24087 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
24088
24089         * metadata.c, reflection.c: simple speedup to type hash
24090         and equals code.
24091
24092 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
24093
24094         * image.c, image.h, class.c, assembly.c: move module loading
24095         to MonoImage. When loading metadata, consider alignemnet from
24096         the start of metadata, not from the metadata address in memory.
24097
24098 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
24099
24100         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
24101         AssemblyBuilder objects. Factored out custom attribute creation into
24102         a separate function.
24103         (create_custom_attr): new function to create custom attributes.
24104
24105 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
24106
24107         * Makefile.am: Got tired of typing the full pathname to pedump.
24108         Until there is another option, am installing this.
24109
24110 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
24111
24112         * class.c (class_compute_field_layout): always set field->parent 
24113         (mono_ldtoken): use mono_defaults.fieldhandle_class;
24114
24115 2003-02-11  Dick Porter  <dick@ximian.com>
24116
24117         * threads-types.h:
24118         * monitor.c: Rewrote Monitor, making lock much faster and
24119         Pulse/Wait work as specified.  Also uses much fewer handles, and only
24120         creates them as needed.
24121
24122         * exception.c: Added SynchronizationLockException
24123
24124         * threads.c: Deleted old Monitor implementation.  The new one is
24125         in a new file.
24126
24127 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
24128
24129         * class.c: handled TypedReference type code. Set the correct size for
24130         class data. Setup interface_offsets for interface classes, too.
24131
24132 2003-02-09  Martin Baulig  <martin@ximian.com>
24133
24134         * debug-mono-symfile.h: Reflect latest symbol writer changes.
24135
24136 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
24137
24138         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
24139         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
24140         * object.c: fixed mono_object_get_virtual_method () for interfaces.
24141         * verify.c: check for code that runs after the end of the method.
24142
24143 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
24144
24145         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
24146         "System.Math::Round2".
24147         * sysmath.h: Added Floor, Round and Round2 definitions.
24148         * sysmath.c: Modified certain functions that were not 100% compliant
24149         with MS.NET (math precision) and added the implementation of Floor,
24150         Round and Round2.
24151
24152 2003-02-07  Martin Baulig  <martin@ximian.com>
24153
24154         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
24155
24156 2003-02-07  Martin Baulig  <martin@ximian.com>
24157
24158         * debug-mono-symfile.c: Reflected latest symwriter changes.
24159         (mono_debug_create_mono_symbol_file): Removed.
24160         (mono_debug_open_mono_symbol_file): Take an argument which
24161         specifies whether to create a dynamic symbol file.
24162
24163 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
24164
24165         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
24166
24167 2003-02-05  Martin Baulig  <martin@ximian.com>
24168
24169         * reflection.c (mono_image_build_metadata): Make this public,
24170         protect it against being called multiple times, don't create
24171         resources and don't build the compressed metadata here.
24172         (mono_image_create_pefile): Do this here.
24173
24174         * icall.c
24175         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
24176
24177 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24178
24179         * socket-io.c: fixed bug #36322.
24180
24181 2003-02-06  Piers Haken <piersh@friskit.com>
24182
24183         * appdomain.[ch]:
24184         * class.h:
24185         * debug-mono-symfile.c:
24186         * icall.c:
24187         * loader.c:
24188         * mono-config.c:
24189         * monosn.c:
24190         * reflection.c:
24191         * socket-io.c: warning cleanups
24192
24193 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
24194
24195         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
24196         function. works like remoting invoke, but does a check for the Proxy first.
24197
24198 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
24199
24200         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
24201
24202 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
24203
24204         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
24205         array of pointers.
24206         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
24207         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
24208
24209         * object.c (mono_store_remote_field_new): used by the new jit
24210         instead of mono_store_remote_field
24211         (mono_load_remote_field_new): used by the new jit
24212         instead of mono_load_remote_field
24213
24214 2003-02-05  Patrik Torstensson
24215
24216         * appdomain.c: changed unload to take the domain id instead
24217         of domain
24218         
24219         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
24220
24221
24222 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24223
24224         * appdomain.c: don't look for assemblies in ApplicationBase if
24225         PrivateBinPathProbe is set.
24226
24227 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24228
24229         * object.c: make the first argument in main_args contain the absolute
24230         path to the assembly. Fixes bug #37511.
24231
24232 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24233
24234         * icall.c: get correct UTC offset for countries not using daylight
24235         time saving. Fixes bug #30030.
24236
24237 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24238
24239         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
24240         and 1 are the family).
24241
24242 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
24243
24244         * icall.c (ves_icall_InternalExecute): removed wrong assertion
24245
24246         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
24247
24248 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
24249
24250         * reflection.c: added support for SignatureHelper tokens, which is
24251         needed by the Calli opcode.
24252
24253         * reflection.h: track changes to SignatureHelper class.
24254
24255         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
24256
24257 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24258
24259         * appdomain.c: fixed loading assemblies from PrivateBinPath.
24260
24261 2003-02-03  Patrik Torstensson
24262         * appdomain.[c|h], domain.c : 
24263          - Added support for getting a domain via domain id
24264          - Support for setting and getting domain from System.AppDomain 
24265            (used in cross appdomain channel)
24266          - Added support for get/set for a MonoAppContext on a thread 
24267            (Context class in System.Runtime.Remoting.Contexts),
24268          - Removed hack in Get/SetData and ExecuteAssembly.
24269         
24270         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
24271         the managed world to get control when a proxy is created.
24272
24273         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
24274         
24275 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
24276
24277         * icall.c
24278         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
24279         Populate the codebase field as well.
24280
24281 2003-02-02  Martin Baulig  <martin@ximian.com>
24282
24283         * debug-mono-symfile.c
24284         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
24285         (mono_debug_symfile_add_method): Allow interncalls.
24286
24287 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24288
24289         * icall.c: throw parse exception if strtod fails or the string is empty.
24290
24291 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
24292
24293         * marshal.c: handle object type separately from defined
24294         class types.
24295
24296 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
24297
24298         * marshal.c: handle NATIVE_LPSTR for strings when it's
24299         explicitly specified.
24300
24301 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
24302
24303         * reflection.c, reflection.h, icall.c: setup the reflection
24304         handle cache for ModuleBuilders and AssemblyBuilders.
24305
24306 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
24307
24308         * reflection.c (reflection_methodbuilder_to_mono_method): set
24309         pinvoke flag
24310
24311 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24312
24313         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
24314
24315 2003-01-29  Dick Porter  <dick@ximian.com>
24316
24317         * threads.c: No need for the fake_thread kludge now that Thread
24318         doesn't run a class constructor
24319         
24320 2003-01-29  Dick Porter  <dick@ximian.com>
24321
24322         * threads.c: Use g_direct_hash instead of the rather bogus
24323         g_int_hash
24324
24325 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
24326
24327         * marshal.c (mono_marshal_get_native_wrapper): add check for null
24328         (fix pinvoke12.exe)
24329         (mono_marshal_get_struct_to_ptr): generate valid IL code
24330         (mono_marshal_get_ptr_to_struct): generate valid IL code
24331         (*): correctly set sig->pinvoke, we need to memdup the signature
24332         to do that
24333
24334 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
24335
24336         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
24337         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
24338
24339 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
24340
24341         * profiler.c: provide more callers information.
24342
24343 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
24344
24345         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
24346
24347         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
24348
24349         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
24350
24351 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24352
24353         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
24354         exception instead of going into an infinite loop on dates which it 
24355         can't yet handle.
24356
24357         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
24358         out-of-range exception if needed.
24359
24360         * class.c (mono_class_setup_vtable): allow a virtual method to provide
24361         an implementation for an interface method and to override an inherited
24362         method at the same time. 
24363         Imagine a scenario when a virtual method is used to override a
24364         virtual abstract method in a parent class, and this same method 
24365         provides an implementation for an method inherited from an interface. 
24366         In this case, the interface resolution code will set im->slot, which 
24367         means that the virtual method override pass will skip this method 
24368         which means a pointer to the abstract method inherited from the parent
24369         will remain in the vtable of this non-abstract class.
24370
24371         * class.c: (mono_class_setup_vtable): continue search for a real 
24372         method if only an abstract method is found.     
24373
24374 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
24375
24376         * reflection.c: add size to encoding for ByValStr and ByValArray
24377         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
24378
24379 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24380
24381         * class.c (mono_class_setup_vtable): pass the override info as an
24382         argument.
24383
24384         * class.c (mono_class_setup_vtable): set the slot of overriding methods
24385         correctly.
24386         
24387         * reflection.c (ensure_runtime_vtable); add support for method 
24388         overrides.
24389         
24390 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24391
24392         * reflection.c (resolution_scope_from_image): Hack to work to work with
24393         dynamic assemblies.
24394
24395         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
24396         added a 'force_ref' argument to force this function to allways return 
24397         a TypeRef. This is needed by mono_image_get_memberref_token ().
24398         
24399 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24400
24401         * reflection.c (mono_image_get_type_info): interfaces really don't have
24402         a parent.
24403
24404         * reflection.c (mono_image_basic_init): fill out missing fields of
24405         image structure.
24406
24407         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
24408         dynamic assemblies. This is required so dynamic assemblies show up in
24409         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
24410         Type::GetType() etc. This is consistent with MS behaviour.
24411
24412         * image.c image.h reflection.c: add newly created classes to the name 
24413         cache so mono_class_get () will find them.      
24414
24415 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24416
24417         First part of changes to get IKVM.NET running under mono.
24418         
24419         * appdomain.h, appdomain.c: added new function 
24420         mono_domain_try_type_resolve() which will emit TypeResolve events. 
24421         This function will call AppDomain::DoTypeResolve to do the actual work.
24422
24423         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
24424         moved existing code dealing with dynamic tokens to a new function 
24425         called mono_reflection_lookup_dynamic_token (). This function will 
24426         raise TypeResolve events when appropriate. Since reflection.c is not 
24427         part of libmetadata, a new hook function called 
24428         mono_lookup_dynamic_token() is added to class.c which will call this.
24429
24430         * assembly.h assembly.c: make the invoke_load_hook function public,
24431         so it can be called for dynamic assemblies.
24432
24433         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
24434
24435         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
24436         type isn't found.
24437
24438         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
24439         MonoGHashTable, since it contains pointers to objects which the GC 
24440         needs to track.
24441
24442         * assembly.c (search_loaded): remove unused variable.
24443         
24444 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
24445
24446         * object.c: fixed issue exposed by gcc-generated IL programs
24447         that use RVA data for pointers.
24448
24449 2003-01-25  Martin Baulig  <martin@ximian.com>
24450
24451         * threads.c (start_wrapper): Moved the initialization of
24452         `start_func' above the mono_new_thread_init() call to which we
24453         pass it as argument.
24454
24455 2003-01-24  Martin Baulig  <martin@ximian.com>
24456
24457         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
24458         the MonoThread pointer.
24459
24460 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
24461
24462         * icall.c: Rename `PowImpl' to Pow.
24463
24464 2003-01-23  Dick Porter  <dick@ximian.com>
24465
24466         * threads.c (start_wrapper): Create a Thread object if needed, so
24467         the Main() thread can do the class initialisation in a subthread
24468         that has been set up to allow managed code execution.
24469
24470         Pass the thread ID instead of the MonoThread pointer to the thread
24471         start and attach callbacks.  This change is required, because the
24472         jit thread start callback must be called _before_ the Thread
24473         object can be created.
24474         
24475         (mono_thread_init): Removed much object creation code that is no
24476         longer needed.  No managed code is called from here now.
24477
24478         * object.c (mono_runtime_exec_managed_code): Create a subthread
24479         for Main, and call back to the runtime to use it.
24480         Set the exit code when Main exits.
24481
24482         * gc.c: Make sure domain finalisation happens in a subthread.
24483         Re-enable threaded GC, fixing bug 31333 (again).
24484
24485         * environment.c: System.Environment internall calls (so far just
24486         ExitCode is here, the others are still in icall.c)
24487
24488         * appdomain.c (mono_runtime_cleanup): All threads running managed
24489         code should have finished before mono_runtime_cleanup() is
24490         reached, so no need to clean up threads.
24491
24492 2003-01-22  Martin Baulig  <martin@ximian.com>
24493
24494         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
24495         `gpointer func' arguments.      
24496         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
24497         but added `MonoThread *thread' argument.
24498         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
24499
24500         * threads.c (mono_new_thread_init): Added `gpointer func' argument
24501         and pass it to the mono_thread_start_cb callback.
24502         (mono_install_thread_callbacks): New public function to install a
24503         set of callbacks which are set by the debugger.
24504         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
24505
24506 2003-01-22  Martin Baulig  <martin@ximian.com>
24507
24508         * Makefile.am: Install debug-mono-symfile.h.
24509
24510 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
24511
24512         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
24513
24514 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
24515
24516         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
24517         * class.c (mono_ptr_class_get): correctly set access levels of pointers
24518         (mono_array_class_get): correctly set access levels of arrays
24519
24520 2003-01-20      Patrik Torstensson
24521         * image.h (MonoAssemblyName): changed major, minor, build, revision
24522         from signed to unsigned.
24523
24524 2003-01-20  sean kasun <skasun@azstarnet.com>
24525
24526         * reflection.c (load_cattr_value): Now this handles
24527         MONO_TYPE_SZARRAY.  Fixes bug #35629
24528
24529 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
24530
24531         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
24532         integer value
24533
24534 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24535
24536         * decimal.c: fixed bug #26056.
24537
24538 2003-01-17  Martin Baulig  <martin@ximian.com>
24539
24540         * gc.c: Raise an ExecutionEngineException instead of using g_error().
24541
24542 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24543
24544         * exception.[ch]:
24545         (mono_get_exception_type_initialization): new function.
24546
24547         * object.c: throw a TypeInitializationException when an exception is
24548         thrown invoking the class constructor.
24549
24550 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24551
24552         * reflection.c: fixed attribute reading.
24553
24554 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24555
24556         * icall.c:
24557         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
24558         provided, look for the type in the calling assembly and then in
24559         mscorlib; if the assembly name is provided, only try that one.
24560
24561 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
24562
24563         * object.c: register the vtable before there is a chance it's
24564         queried again recursively.
24565
24566 2003-01-13  Duncan Mak  <duncan@ximian.com>
24567
24568         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
24569         gc-internal.h. 
24570         
24571 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
24572
24573         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
24574
24575 2003-01-11  Martin Baulig  <martin@ximian.com>
24576
24577         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
24578         this to 20 for the release.
24579
24580 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
24581
24582         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
24583
24584         * loader.c (mono_method_get_marshal_info): bug fix
24585
24586         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
24587         structures with explicit layout
24588
24589 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
24590
24591         * profiler.c: made the output more readable (and sorted). 
24592         Added caller information for the allocation profiler.
24593
24594 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
24595
24596         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
24597
24598 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24599
24600         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
24601         to get value types.
24602         
24603 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
24604
24605         * object.c, profiler.h, profiler.c, profiler-private.h:
24606         Added object allocation profiler.
24607
24608 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
24609
24610         * reflection.h, reflection.c: handle global methods.
24611         Compress blob entries.
24612
24613 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
24614
24615         * marshal.c: fix compilation.
24616
24617 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
24618
24619         * loader.c (mono_method_get_marshal_info): impl.
24620
24621         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
24622
24623 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24624
24625         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
24626         for reference types.
24627
24628 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
24629
24630         * loader.c: fixed off by one error in loaded parameter names.
24631
24632 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
24633
24634         * marshal.c (mono_marshal_get_icall_wrapper): like
24635         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
24636         instead of a MonoMethod.
24637
24638 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24639
24640         * decimal.c: fixed bug #36537.
24641
24642 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
24643
24644         * marshal.c: throw a missing method exception if a
24645         P/Invoke method is not found.
24646
24647 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
24648
24649         * icall.c: allow a null this for constructors.
24650
24651 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
24652
24653         * icall.c: raise the proper exceptions if the arguments to the
24654         internal Invoke are incorrect.
24655
24656 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
24657
24658         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
24659
24660 2003-01-03  Martin Baulig  <martin@ximian.com>
24661
24662         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
24663
24664 2002-12-31  Martin Baulig  <martin@ximian.com>
24665
24666         * debug-mono-symfile.c: Completely rewrote the type section.
24667         Instead of using individual malloc()ed fields, we use one big
24668         continuous memory area and offsets into this area.
24669         See the comments in the source code for details.
24670
24671 2002-12-30  Martin Baulig  <martin@ximian.com>
24672
24673         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
24674
24675 2002-12-30  Martin Baulig  <martin@ximian.com>
24676
24677         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
24678         line number table in this data blob instead of using an external
24679         pointer.
24680
24681 2002-12-28  Martin Baulig  <martin@ximian.com>
24682
24683         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
24684
24685 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
24686
24687         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
24688         as a boxed return type.
24689
24690 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
24691
24692         * appdomain.c
24693         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
24694         g_build_filename to properly get separators on the filename created.
24695
24696         * object.h: Small change, introduce MonoMarshalByRefObject to
24697         track the layout of that structure in the C# universe as we make
24698         changes there.
24699
24700 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
24701
24702         * object.c: removed assert to allow static fields on interfaces.
24703         * loader.c: a TypeSpec may be used for any type, not just arrays.
24704
24705 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
24706
24707         * class.c, class.h: added mono_class_array_element_size ().
24708         Ignore static methods in interfaces.
24709
24710 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24711
24712         * threads.c: fixed the build under cygwin.
24713
24714 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
24715
24716         * reflection.c: handle nullref constants. Allocate keys for
24717         reflection handles with the GC.
24718
24719 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
24720
24721         * threads.c, threads.h: added mono_thread_get_abort_signal()
24722         to get a suitable signal for thread abort.
24723
24724 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
24725
24726         * metadata.c: fix handling of ExportedType table.
24727
24728 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24729
24730         * icall.c: added WriteWindowsDebugString internal call.
24731
24732 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24733
24734         * reflection.h: added fields to match C# implementation.
24735
24736 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24737
24738         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
24739
24740 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
24741
24742         * gc.h, gc-internal.h: Rename header for GC internal calls to
24743         gc-internal.h from gc.h as to not clash with Boehm GC having its
24744         header installed as <gc.h> in outside include paths.
24745         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
24746         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
24747
24748 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24749
24750         * icall.c: assign minor, build and revision in FillName.
24751
24752 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
24753
24754         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
24755         Added support for running code generated by Reflection.Emit.
24756
24757 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24758
24759         * appdomain.c: check for NULL argument in LoadFrom.
24760
24761 2002-12-10  Dick Porter  <dick@ximian.com>
24762
24763         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
24764
24765 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24766
24767         * appdomain.c: fix buglet when building exe file name.  Handle full
24768         assembly name (needed after latest changes to AssemblyName).
24769         * image.c:
24770         (mono_image_close): free some hashtables.
24771
24772 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
24773
24774         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
24775         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
24776         on some systems (redhat 7.3) 
24777
24778 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
24779
24780         * threads.c: delete the critical section of a sync block,
24781         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
24782
24783 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
24784
24785         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
24786
24787 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24788
24789         * appdomain.[ch]: handle the assembly preload event to try loading the
24790         assemblies using the paths we have in the current domain.
24791
24792         * assembly.[ch]: created an assembly preload hook that is called to try
24793         loading the assembly by other means that the ones provided here.
24794
24795         * domain.c: initialize the domain search path.
24796
24797         From now on, assemblies (TODO: except corlib and System) are loaded
24798         according to these rules when using mono_assembly_load ():
24799
24800                 1. It tries to load the assembly from the ApplicationBase
24801                 of the current domain appending .dll and .exe (TODO: have to
24802                 try loading from name/name.dll and name/name.exe).
24803
24804                 2. It tries the search path specified in PrivateBinPath for the
24805                 current domain (if any).
24806
24807                 3. Previous behavior.
24808
24809 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
24810
24811         * icall.c: implemented GetInterfaceMap() related icall.
24812         * domain.c, loader.h: load MethodInfo in mono_defaults.
24813
24814 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
24815
24816         * gc.c: disable the finalizer thread for now, untill all the issues
24817         with it are resolved.
24818
24819 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
24820
24821         * string-icalls.c: handle embedded nulls in string ctor when the
24822         length is specified.
24823
24824 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
24825
24826         * class.c: look for explicit interface implementation in parent
24827         classes, too.
24828
24829 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
24830
24831         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
24832
24833 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
24834
24835         * gc.c: protect handles with a critical section.
24836
24837 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24838
24839         * icall.c:
24840         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
24841         parameters. If no assembly specified, try getting the type from all
24842         the assemblies in the current domain, else, load the assembly and get
24843         the type from it.
24844
24845 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24846
24847         * marshal.c: applied patch from Aleksey Demakov that fixes
24848         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
24849
24850 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24851
24852         * icall.c: fixed get_location.
24853
24854 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
24855
24856         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
24857         declarations to make it work with older gcc. 
24858
24859         * loader.c (mono_get_method): set signature->pinvoke for native calls
24860
24861 2002-11-20  Dick Porter  <dick@ximian.com>
24862
24863         * threads.c (mono_thread_init): Set the main thread's handle
24864
24865 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
24866
24867         * gc.c: allow compilation without GC support. Changed to match the
24868         mono coding style.
24869
24870 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
24871
24872         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
24873
24874 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
24875
24876         * reflection.c: set a public key token on the core assemblies.
24877
24878 2002-11-18  Dick Porter  <dick@ximian.com>
24879
24880         * threads.c: Split out some thread initialisation so that other
24881         files can set the start callback function.
24882
24883         * gc.c: Run finalisers in a separate thread, to avoid stack
24884         overflow.  Fixes bug 31333.
24885
24886         * appdomain.c: Set up GC finalisation thread.
24887
24888         * reflection.c: 
24889         * object.c: 
24890         * domain.c: Use gc.h macros for GC_malloc
24891         
24892 2002-11-15  Dick Porter  <dick@ximian.com>
24893
24894         * threadpool.c: 
24895         * threads.c:
24896         * appdomain.c: Removed mono_runtime_init_with_attach(),
24897         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
24898         merging the extra parameter with the existing function.  Removed
24899         unneeded code in mono_thread_attach().
24900
24901 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
24902
24903         * image.c (mono_image_loaded_by_guid): a method to get loaded
24904         images by guid. 
24905         (load_metadata_ptrs): we store the guid as string.
24906
24907 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
24908
24909         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
24910
24911         * metadata.c (mono_guid_to_string): imported method form Zoltan
24912         Varga (slightly modified)
24913
24914         * assembly.c (mono_assembly_open): load precompiled code
24915
24916         * loader.h (MonoMethod): we store the method token for use in the
24917         aot compiler. 
24918
24919 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24920
24921         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
24922         the hook function called when an assembly is loaded.
24923         
24924         * domain.c: Modified file.
24925         (mono_domain_assembly_load): removed hash table insertion of assemblies.
24926
24927         Fixes bug #33196.
24928
24929 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
24930
24931         * reflection.c: Map PEFileKind to the value expected by the WinNT
24932         image loader. 
24933
24934 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24935
24936         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
24937         Read until the buffer is filled completely.
24938
24939 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24940
24941         * icall.c: implemented MonoType.InternalGetEvent ().
24942
24943 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24944
24945         * appdomain.c: implemented InitAppDomainSetup. Delayed
24946         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
24947         the entry_assembly.
24948
24949         * assembly.c: base_dir is now an absolute path ending with
24950         G_DIR_SEPARATOR.
24951
24952         * icall.c: modified get_location according to the above changes.
24953
24954         * object.c: init AppDomain.SetupInformation for the default domain after
24955         we have the entry assembly.
24956
24957         * domain.c: when unloading a domain, setup = NULL.
24958
24959 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
24960
24961         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
24962
24963 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
24964
24965         * object.h, object.c: introduced mono_object_get_virtual_method ()
24966         to lookup the method invoked on an object when a callvirt is done on
24967         a method.
24968         * icall.c: make MethodInfo::Invoke() always do a virtual call.
24969
24970 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24971
24972         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
24973         current domain when loaded an assembly and failed to load it.
24974
24975         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
24976
24977 2002-10-31  Dick Porter  <dick@ximian.com>
24978
24979         * icall.c: 
24980         * file-io.h: 
24981         * file-io.c: Return the error status in a parameter, as the
24982         GetLastError() value has long since been blown away if we try and
24983         look it up in a subsequent internal call invocation.  Delete the
24984         GetLastError() internal call, because it's useless.
24985
24986 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
24987
24988         * class.[ch]: added cast_class to fix bug 29517
24989
24990 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
24991
24992         * marshal.c: create valid IL code in the filter clause:
24993         the new JIT is less forgiving:-)
24994
24995 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24996
24997         * icall.c: removed get_property internal call.
24998
24999 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
25000
25001         * appdomain.h domain.c: Added an ID to appdomains.
25002         
25003         * threads.c threads.h icall.c: Implement icall
25004         Thread:GetDomainID(), and remove unused icall 
25005         CurrentThreadDomain_internal.
25006
25007 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25008
25009         * icall.c: Don't recurse through the base types in GetConstructor.
25010         Fixes bug #32063. 
25011
25012 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
25013
25014         * mempool.h, mempool.c: added mono_mempool_empty() and
25015         mono_mempool_stats().
25016
25017 2002-10-23  Dick Porter  <dick@ximian.com>
25018
25019         * file-io.c: 
25020         * file-io.h: 
25021         * icall.c: Added MonoIO.GetFileType internal call
25022
25023 2002-10-17  Dick Porter  <dick@ximian.com>
25024
25025         * appdomain.c (mono_runtime_cleanup): Don't signal the async
25026         delegate semaphore before waiting for all threads to finish,
25027         because new threads can also call async delegates.  Fixes bug
25028         32004.
25029
25030         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
25031         of 3 seconds, in case another async job is queued.  (This part is
25032         needed because the bug fix reintroduced the 3s exit lag.)  This
25033         makes the mono_runtime_shutdown flag superfluous.
25034
25035 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
25036
25037         * reflection.c: include ehader size in method section headers.
25038         Really check for suplicated modules entries.
25039
25040 2002-10-17  Martin Baulig  <martin@gnome.org>
25041
25042         * debug-mono-symfile.c: Added back support for locals.
25043
25044 2002-10-14  Martin Baulig  <martin@gnome.org>
25045
25046         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
25047         MONO_TYPE_VOID.
25048
25049 2002-10-14  Martin Baulig  <martin@gnome.org>
25050
25051         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
25052         mono_class_get() instead of looking in the class cache. 
25053
25054 2002-10-13  Martin Baulig  <martin@gnome.org>
25055
25056         * debug-mono-symfile.c: Set version number to 28, include the
25057         signature in method names.
25058
25059 2002-10-13  Martin Baulig  <martin@gnome.org>
25060
25061         * debug-mono-symfile.h: Set version number to 27.
25062
25063 2002-10-11  Martin Baulig  <martin@gnome.org>
25064
25065         * gc.c: Don't register/unregister NULL pointers as disappearing links.
25066
25067 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
25068
25069         * metadata.c, metadata.h: added helper function to allocate signatures.
25070
25071 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25072
25073         * icall.c: added internal call to get the location of machine.config.
25074
25075 2002-10-08  Martin Baulig  <martin@gnome.org>
25076
25077         * debug-mono-symfile.c: Ignore classes with a pending init for the
25078         moment.
25079
25080 2002-10-03  Dick Porter  <dick@ximian.com>
25081
25082         * threads.c: Freebsd pthread_t is a pointer
25083
25084 2002-10-03  Dick Porter  <dick@ximian.com>
25085
25086         * socket-io.c: Implemented GetHostName_internal
25087
25088 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25089
25090         * mono-config.c:
25091         (mono_config_parse_file): don't leak the text.
25092
25093 2002-10-02  Martin Baulig  <martin@gnome.org>
25094
25095         * debug-mono-symfile.c: Added support for methods.
25096
25097 2002-10-01  Martin Baulig  <martin@gnome.org>
25098
25099         * debug-mono-symfile.c: Don't emit methods and line numbers for
25100         the dynamic symbol file, just write the type table.  We can easily
25101         have an external helper program which creates a symbol file for an
25102         IL file.        
25103
25104 2002-10-01  Dick Porter  <dick@ximian.com>
25105
25106         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
25107         Only add the handle to the cleanup array when we're about to
25108         launch the thread.  Bug 31425 deadlocked when the test was run on
25109         mono under w32.
25110
25111 2002-10-01  Martin Baulig  <martin@gnome.org>
25112
25113         * debug-mono-symfile.c: Added support for properties.
25114
25115 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
25116
25117         * reflection.c: unaligned store fix from Mark Crichton
25118         <crichton@gimp.org>.
25119
25120 2002-09-27  Martin Baulig  <martin@gnome.org>
25121
25122         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
25123         New interncall.
25124
25125 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
25126
25127         * assembly.h, assembly.c: use a sane API to hook into the assembly
25128         loading process instead of a useless special-purpouse hack
25129         (ngen needs a hook, too, for example).
25130
25131 2002-09-27  Dick Porter  <dick@ximian.com>
25132
25133         * threads.c (mono_thread_init): Call GetCurrentProcess() so
25134         io-layer can set up some process handle info.  Not needed on w32,
25135         but doesn't hurt either.
25136
25137         * process.c: Pass the program name in the second parameter to
25138         CreateProcess, so the path is searched.  Include the working
25139         directory. Implemented process name, process enumeration, and some
25140         process detail internal calls.
25141         
25142         * icall.c: Added internal calls for process lookup, and some
25143         process details
25144
25145 2002-09-26  Martin Baulig  <martin@gnome.org>
25146
25147         * assembly.c (mono_install_open_assembly_hook): New global
25148         function to install a function to be invoked each time a new
25149         assembly is loaded.
25150         (mono_assembly_open): Run this callback function if set.
25151
25152         * debug-mono-symfile.c: Put back line numbers for the dynamic
25153         symbol file and also record the .il file as source file.  This
25154         allows us to install the temporary symbol file as `file.dbg' just
25155         like a compiler-generated one.
25156
25157 2002-09-26  Nick Zigarovich <nick@chemlab.org>
25158
25159         * Corrected typo in gc.c (BOHEM vs BOEHM).
25160
25161 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25162
25163         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
25164         GetProperties. Also avoid calling g_slist_length in GetProperties and
25165         GetMethods.
25166
25167 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
25168
25169         * reflection.c: avoid unaligned stores (bug spotted by
25170         Mark Crichton  <crichton@gimp.org>).
25171
25172 2002-09-25  Martin Baulig  <martin@gnome.org>
25173
25174         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
25175         instead of guint64 for addresses and added prologue/epilogue info.
25176
25177 2002-09-25  Martin Baulig  <martin@gnome.org>
25178
25179         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
25180         store line number info.  For the dynamic symbol file, we only need
25181         to provide the JIT generated dynamic line number info for the dynamic
25182         symbol file.
25183
25184 2002-09-25  Martin Baulig  <martin@gnome.org>
25185
25186         * debug-mono-symfile.h: Incremented version number.
25187
25188 2002-09-24  Martin Baulig  <martin@gnome.org>
25189
25190         * class.c (mono_debugger_class_init_func): New global function
25191         pointer variable.
25192         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
25193         call it.
25194
25195         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
25196         function.  This is called via the mono_debugger_class_init_func
25197         hook to add all types to the dynamic type table.
25198         (ves_icall_MonoDebugger_GetType): New interncall to get a class
25199         from its metadata token.
25200
25201         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
25202         New interncall for the debugger.
25203
25204 2002-09-24  Nick Drochak <ndrochak@gol.com>
25205
25206         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
25207         before using it in case it is null.
25208         
25209 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
25210
25211         * metadata.c: allow custom modifiers in local var signatures
25212         (bug spotted by Zoltan Varga).
25213
25214 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
25215
25216         * class.c: deal with the <Module> class that may have a NULL vtable.
25217         Eliminate warnings.
25218
25219 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
25220
25221         * image.c, image.h: more strong name helpers.
25222         * monosn.c: more work: convert pem keys to cryptoapi format.
25223
25224 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
25225
25226         * string-icalls.c: speedup IndexOf.
25227
25228 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25229
25230         * icall.c: updates from Zoltan.2.Varga@nokia.com.
25231
25232 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
25233
25234         * icall.c: cleanup: use mono_object_domain ().
25235
25236 2002-09-23  Martin Baulig  <martin@gnome.org>
25237
25238         * debug-mono-symfile.c: Improved type support.
25239
25240 2002-09-22  Martin Baulig  <martin@gnome.org>
25241
25242         * debug-mono-symfile.c: Added support for reference types and strings.
25243
25244 2002-09-22  Martin Baulig  <martin@gnome.org>
25245
25246         * debug-mono-symfile.c: Started to work on the type table.
25247
25248 2002-09-21  Martin Baulig  <martin@gnome.org>
25249
25250         * debug-mono-symfile.c: Largely reworked the symbol table format.
25251         The symbol table is now incrementally updated each time a new
25252         method is added.  We're now also using our own magic and version
25253         so that you don't need to recompile all your classes if the
25254         dynamic table changes.
25255         (mono_debug_update_mono_symbol_file): Removed.
25256         (mono_debug_symfile_add_method): New function to add a method.
25257
25258 2002-09-21  Martin Baulig  <martin@gnome.org>
25259
25260         * icall.c
25261         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
25262         New interncall.
25263
25264         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
25265         New interncall to get a method from its metadata token.
25266
25267 2002-09-21  Martin Baulig  <martin@gnome.org>
25268
25269         * debug-mono-symfile.c: Create type table.
25270
25271 2002-09-20  Martin Baulig  <martin@gnome.org>
25272
25273         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
25274
25275 2002-09-20  Martin Baulig  <martin@gnome.org>
25276
25277         * debug-mono-symfile.c: Provide information about params and locals.
25278
25279 2002-09-20  Martin Baulig  <martin@gnome.org>
25280
25281         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
25282         New interncall.
25283
25284         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
25285         interncall to get a method from its metadata token.
25286
25287 2002-09-20  Martin Baulig  <martin@gnome.org>
25288
25289         * debug-mono-symfile.c: Added a few checks for method->header
25290         being non-NULL.  This should never happen, but for the moment
25291         let's use a g_warning() rather than a g_assert().
25292
25293 2002-09-19  Mark Crichton  <crichton@gimp.org>
25294
25295         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
25296         even if support for it isn't present.  Added an #ifdef to fix this.
25297
25298         * socket-io.c: Added checks back for Solaris support.
25299
25300 2002-09-19  Martin Baulig  <martin@gnome.org>
25301
25302         * debug-mono-symfile.c (read_string, write_string): Reflect latest
25303         changes in the symbol file format.
25304
25305 2002-09-18  Martin Baulig  <martin@gnome.org>
25306
25307         * debug-mono-symfile.c: Set version number to 21.
25308
25309 2002-09-18  Dick Porter  <dick@ximian.com>
25310
25311         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
25312         on netbsd.  Fixes bug 30051.
25313
25314 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25315
25316         * reflection.c:
25317         (set_version_from_string): little fix.
25318
25319 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25320
25321         * monosn.c, Makefile.am: added strong name utility.
25322         * reflection.h, reflection.c: implemented delayed signing,
25323         locale, version and hash id assembly attributes.
25324
25325 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
25326
25327         * loader.c, metadata.c: load param attributes in signatures.
25328
25329 2002-09-16  Martin Baulig  <martin@gnome.org>
25330
25331         * debug-mono-symfile.c: Added string table with all method names.
25332
25333 2002-09-14  Martin Baulig  <martin@gnome.org>
25334
25335         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
25336         fast method lookup.
25337
25338 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
25339
25340         * reflection.c: record the public key token of referenced assemblies.
25341
25342 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
25343
25344         * image.c, image.h: added functions to get the strong name and the
25345         public key of an assembly.
25346         * pedump.c: use them.
25347
25348 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
25349
25350         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
25351
25352 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
25353
25354         * marshal.c (mono_marshal_get_managed_wrapper): Added
25355         MONO_TYPE_BOOLEAN 
25356
25357 2002-09-11  Martin Baulig  <martin@gnome.org>
25358
25359         * gc.c: Call GC_unregister_disappearing_link() on all links when
25360         finalizing them, this is necessary to aviod a crash in boehm's
25361         finalize handler.
25362
25363 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
25364
25365         * gc.c: handle GetTarget for finalized objects spotted and fixed by
25366         nick@chemlab.org.
25367
25368 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
25369
25370         * icall.c: implemented MonoType::Module.
25371         * reflection.c, reflection.h: mono_module_get_object () from
25372         Tomi Pakarinen <tomi.pakarinen@welho.com>.
25373
25374 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
25375
25376         * icall.c: ignore overridden methods in GetMethods ().
25377         Fix for FieldInfo::SetValue().
25378         * object.c: handle float/double in runtime invoke.
25379
25380 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
25381
25382         * object.c: allow a constructor to be called again on an object.
25383
25384 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
25385
25386         * class.h, class.c: move field layout code to it's own function and
25387         export it. Get an interface id earlier. Move fields in MonoClass
25388         so they are more cache friendly and align the bitfields.
25389         * loader.c: temporary handle get_param_names() for a runtime method.
25390         * reflection.c, reflection.h: more code to handle runtime creation of
25391         types.
25392
25393 2002-09-09  Martin Baulig  <martin@gnome.org>
25394
25395         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
25396         signature with the pinvoke field being set for the actual call.
25397
25398 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
25399
25400         * icall.c: removed some unused icalls. Start of map of glib charsets
25401         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
25402
25403 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
25404
25405         * debug-helpers.c: break infinite loop (found and fixed by
25406         Holger Arnold <harnold@gmx.de>).
25407
25408 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
25409
25410         * icall.c: target may be null in create_delegate.
25411
25412 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25413
25414         * marshal.c: handle a boolean return type.
25415
25416 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
25417
25418         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
25419
25420 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
25421
25422         * gc.c: fix weakreferences.
25423
25424 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
25425
25426         * icall.c: added icall to get default codepage.
25427
25428 2002-09-03  Dick Porter  <dick@ximian.com>
25429
25430         * threads.h: 
25431         * threads.c: Use MonoThread instead of MonoObject where
25432         apropriate.
25433
25434         Store running thread objects in a hash table, so that we have all
25435         the info to hand when waiting for them to finish
25436         (means we don't need OpenThread() any more, so mingw builds should
25437         be fully functional again.)
25438
25439         * verify.c:
25440         * object.h: Added thread ID to MonoThread
25441
25442 2002-09-03  Martin Baulig  <martin@gnome.org>
25443
25444         * icall.c (System.Reflection.Assembly::get_location): New interncall.
25445
25446 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25447
25448         * icall.c: fixed leak in get_temp_path. Thanks lupus.
25449
25450 2002-09-03  Martin Baulig  <martin@gnome.org>
25451
25452         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
25453         argument to store the end address of the disassembled instruction.
25454
25455         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
25456         here from debug-symfile.h.
25457         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
25458         JIT into this struct.
25459         (MonoSymbolFile): Added `char *image_file' field.
25460         (MonoDebugGetMethodFunc): Removed.
25461         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
25462         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
25463         (mono_debug_find_method): New method.
25464
25465         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
25466         create a full symbol file.
25467         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
25468         and static symbol files.
25469         (mono_debug_find_method): The symbol file keeps an internal method hash,
25470         call this to get a MonoDebugMethodInfo from a MonoMethod.
25471
25472         * debug-symfile.[ch]: Removed.
25473
25474 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
25475
25476         * image.c (do_mono_image_open): Remove linker version check.
25477
25478 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
25479
25480         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
25481         wrappers for instance methods.
25482         
25483 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25484
25485         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
25486
25487 2002-08-28  Dick Porter  <dick@ximian.com>
25488
25489         * Makefile.am: Export HOST_CC for w32 builds
25490
25491 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
25492
25493         * file-io.c process.c: MonoString are null terminated, no
25494         need for mono_string_to_utf16() anymore.
25495
25496 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
25497
25498         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
25499
25500 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
25501
25502         * icall.c, reflection.h: speedup System.MonoType.
25503
25504 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
25505
25506         * reflection.c: allow null as the value of a string argument in
25507         custom attributes constructors.
25508
25509 2002-08-27  Martin Baulig  <martin@gnome.org>
25510
25511         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
25512         `trampoline_address' field.
25513
25514 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
25515
25516         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
25517         check (fixes bug #29486) 
25518
25519 2002-08-27  Martin Baulig  <martin@gnome.org>
25520
25521         * debug-mono-symfile.c: Changed the file format in a way that allows us
25522         open it read-only and to use a specially malloced area for all the
25523         dynamic data.  We can now also generate a symbol file on-the-fly if we're
25524         debugging IL code and there is no MCS generated symbol file for it.
25525
25526 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
25527
25528         * object.c: added a define for a good string and array
25529         creation speedup (not enabled by default because we need to deal with
25530         the synch stuff).
25531
25532 2002-08-26  Martin Baulig  <martin@gnome.org>
25533
25534         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
25535         function to create a dynamic symbol file.  This is used by the
25536         debugger to create a symbol file for IL code on-the-fly.
25537
25538 2002-08-26  Martin Baulig  <martin@gnome.org>
25539
25540         * loader.c (mono_lookup_pinvoke_call): Include the error message
25541         from g_module_error() in the error message.
25542
25543 2002-08-24  Martin Baulig  <martin@gnome.org>
25544
25545         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
25546         function to update the symbol file.  The symbol file is mmap()ed
25547         writable, but private.  This allows us to install the symbol file
25548         together with the assembly.
25549
25550 2002-08-24  Martin Baulig  <martin@gnome.org>
25551
25552         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
25553         but they can read the new symbol file format which mcs is now creating.
25554
25555         * debug-symfile.c (mono_debug_find_source_location): Moved to
25556         debug-mono-symfile.c; this is now operating on the new symbol file.
25557
25558 2002-08-23  Martin Baulig  <martin@gnome.org>
25559
25560         * debug-helpers.c (mono_method_desc_from_method): New function to get
25561         a MonoMethodDesc from a MonoMethod.
25562
25563 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
25564
25565         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
25566         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
25567
25568 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
25569
25570         * string-icalls.[ch]: make helper methods static.
25571
25572 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25573
25574         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
25575         types to it and to SetValueInternal.
25576
25577         * object.c: Moved handle_enum label to its proper place. This was the
25578         f... bug! ;-)
25579
25580         This time i compiled mcs and gtk-sharp and they both work.
25581
25582 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25583
25584         * icall.c: reverted partially my previous patch until 
25585         object.c:set_value handles enums correcly.
25586
25587 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25588
25589         * icall.c:
25590         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
25591         (ves_icall_System_Environment_get_MachineName): removed warning when
25592         compiling under cygwin.
25593
25594 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
25595
25596         * object.c: fixed field_get_value() for reference types.
25597
25598 2002-08-22  Dick Porter  <dick@ximian.com>
25599
25600         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
25601         Don't free a buffer while it's still needed.  Patch from Jonathan
25602         Liger <Jonathan.liger@wanadoo.fr>
25603
25604 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
25605
25606         * icall.c (ves_icall_System_Environment_get_Platform): Add new
25607         internal call.
25608
25609 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
25610
25611         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
25612         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
25613
25614         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
25615         we call unmanaged code which throws exceptions.
25616
25617 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
25618
25619         * appdomain.h: added per-domain entry_assembly.
25620         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
25621         arguments.
25622         * icall.c: Assembly::GetEntryAssembly icall.
25623         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
25624         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
25625
25626 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
25627
25628         * appdomain.h, gc.c: added mono_domain_finalize ().
25629
25630 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25631
25632         * object.c:
25633         (mono_print_unhandled_exception): changed g_warning by g_printerr
25634         because g_log has a 1024 characters limit (yeah, i got a big stack
25635         trace). Don't print exception name, that should be in ToString 
25636         returned string.
25637
25638 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25639
25640         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
25641         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
25642
25643 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25644
25645         * object.c:
25646         (mono_print_unhandled_exception): after previous commit, i realized
25647         that MS calls ToString on the exception. I changed this function to
25648         do that. This way we get stack_trace for free.
25649
25650 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25651
25652         * object.c:
25653         (mono_print_unhandled_exception): invoke Message property instead of
25654         getting 'message' field from Exception. Don't allocate memory for
25655         'trace' and 'message' if not needed.
25656
25657 2002-08-18  Dick Porter  <dick@ximian.com>
25658
25659         * unicode.c: Fix asserts to match Encoder.cs checks
25660
25661 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25662
25663         * marshal.c: fix unaligned store issue and a few wrong
25664         opcode argument types.
25665
25666 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25667
25668         * icall.c: added GetUninitializedObjectInternal internal call.
25669
25670 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
25671
25672         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
25673         to the right domain.
25674
25675 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
25676
25677         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
25678
25679         * class.c (class_compute_field_layout): set blittable to false for Strings
25680
25681         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
25682
25683 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
25684
25685         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
25686         first chunk of code to create types at runtime. Code to
25687         handle ReflectedType/DeclaringType. Make reflection handles
25688         domain specific.
25689
25690 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
25691
25692         * class.c: set correct name in arrays.
25693
25694 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
25695
25696         * appdomain.c (mono_domain_transfer_object): make it work with
25697         valuetypes. bug fixes.
25698
25699 2002-08-12  Dick Porter  <dick@ximian.com>
25700
25701         * object.h: Rename some parameters to avoid c++ keywords (Patch
25702         from Joseph Wenninger <kde@jowenn.at>)
25703
25704 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
25705
25706         * icall.c: added icall to implement Assembly.GetFile*.
25707
25708 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
25709
25710         * reflection.h, reflection.c: code to embed managed resources.
25711
25712 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
25713
25714         * class.c: move all the type size stuff into
25715         class_compute_field_layout().
25716
25717 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
25718
25719         * class.c: ensure enums have always the correct instance size.
25720         * unicode.c: remove wrong assert.
25721
25722 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
25723
25724         * assembly.c: fix mem corruption issue.
25725         * image.h, image.c: added mono_image_get_resource () to access
25726         managed resources.
25727         * icall.c: implemented Assembly.EntryPoint property and some
25728         Managed Resources related internalcalls.
25729
25730
25731 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
25732
25733         * image.c, image.h: impemented mono_image_get_entry_point ().
25734         * appdomain.c: use mono_image_get_entry_point.
25735
25736 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
25737
25738         * reflection.c: support the object type argument when loading
25739         custom attributes.
25740
25741 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
25742
25743         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
25744         String as return type.
25745
25746 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
25747
25748         * reflection.c: fix encoding of named args for custom attrs to match
25749         the ms implementation. Read them back when instantiating custom
25750         attributes.
25751
25752 2002-08-02  Radek Doulik  <rodo@ximian.com>
25753
25754         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
25755         by Dietmar as quick fix
25756         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
25757         16 as stack size, used on more places as quick fix before Dietmar
25758         will fix it properly
25759
25760 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
25761
25762         * object.h, object.c: added accessors for fields and properties.
25763
25764 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
25765
25766         * class.c, class.h: made mono_class_get_field_from_name ()
25767         loop on parent types.
25768         Added mono_class_get_property_from_name ().
25769
25770 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
25771
25772         * class.c, class.h: move the code to setup the type vtable in its own
25773         function so that it can be reused also for types created at runtime.
25774         Eliminate the "class" identifier from the header file.
25775         * reflection.c: setup the vtable for enums so that we can create
25776         objects for use in SetConstant ().
25777
25778 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
25779
25780         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
25781         instead of the delegate itself as this pointer (bug #28383)
25782
25783 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
25784
25785         * marshal.c (mono_marshal_get_managed_wrapper): added return type
25786         conversions.
25787
25788 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
25789
25790         * loader.c: don't set the pinvoke bit on icalls.
25791
25792 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
25793
25794         * debug-helpers.c (mono_method_full_name): only print a number to
25795         indicate wrapper type (so that the output is more readable in traces).
25796
25797 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
25798
25799         * class.c (mono_class_init): include method override patch from Paolo
25800
25801 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
25802
25803         * icall.c: fixed GetTypeCode().
25804
25805 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
25806
25807         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
25808         use real delegate invoke function to make it work with multicast
25809         delegates (fix bug# 28291).
25810
25811 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
25812
25813         * object.c: load constant strings.
25814
25815 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
25816
25817         * reflection.c: no magic numbers.
25818         * tabledefs.h: security action enum.
25819
25820 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
25821
25822         * assembly.c: fix possible memory corruption.
25823
25824 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
25825
25826         * reflection.h, reflection.c: added support for linking resources.
25827         * verify.c: check we have an updated corlib.
25828
25829 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
25830
25831         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
25832         string arrays.
25833         (mono_marshal_string_array): null terminate unmanaged string arrays.
25834         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
25835
25836 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
25837
25838         * icall.c: Type.GetType () can now return also types from the
25839         calling assembly.
25840
25841 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
25842
25843         * loader.h, loader.c: stack walking support.
25844         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
25845         GetCallingAssembly.
25846
25847 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
25848
25849         * marshal.c: added optimisations for blittable types 
25850
25851         * class.c (mono_array_class_get): do not set blittable attribute on arrays
25852         (mono_class_setup_mono_type): set blittable attribute for single
25853         and double.
25854
25855         * marshal.c (mono_string_utf8_to_builder): impl.
25856         (mono_string_builder_to_utf8): impl.
25857         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
25858
25859 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
25860
25861         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
25862         (mono_marshal_get_managed_wrapper): impl. byref types
25863
25864 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25865
25866         * icall.c:
25867         (search_method): don't display debug message. 
25868
25869 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
25870
25871         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
25872
25873 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
25874
25875         * appdomain.c: set the missing filename when throwing exception.
25876
25877 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
25878
25879         * metadata.c (mono_type_size): code cleanup
25880         (mono_type_stack_size): removed some test code
25881
25882 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
25883
25884         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
25885         mono_get_exception_file_not_found now.
25886
25887         * exception.c (mono_exception_from_name_two_strings): New version
25888         that will call a constructor with two string arguments. 
25889         (mono_get_exception_file_not_found): New helper routine, used to
25890         report file-not-found errors.
25891
25892 2002-07-20  Dick Porter  <dick@ximian.com>
25893
25894         * process.h:
25895         * process.c: Pass file handles to CreateProcess
25896         
25897         * icall.c:
25898         * file-io.h:
25899         * file-io.c: Implemented CreatePipe
25900
25901 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
25902
25903         * metadata.c (mono_get_param_info): set alignment for value types
25904
25905 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
25906
25907         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
25908         Constify mono_domain_assembly_open().
25909         * loader.c: handle null namespace in icalls.
25910
25911 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
25912
25913         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
25914         (emit_str_to_ptr_conv): marshal object as structs
25915
25916         * metadata.c (mono_type_to_unmanaged): marshal object as structs
25917
25918         * marshal.c (mono_marshal_get_runtime_invoke): support value types
25919
25920 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
25921
25922         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
25923         (mono_marshal_get_native_wrapper): we an now return value types
25924
25925 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
25926
25927         * verify.c: more checks implemented.
25928
25929 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
25930
25931         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
25932         (fix bug #27695)
25933         (mono_marshal_get_native_wrapper): allow byref arguments
25934         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
25935         impl. PtrToStringXXX methods
25936         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
25937         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
25938         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
25939         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
25940         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
25941
25942 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25943
25944         * reflection.c: fix buglet in parsing an assembly name.
25945
25946 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
25947
25948         * marshal.c (emit_ptr_to_str_conv): first impl.
25949
25950 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
25951
25952         * object.c, class.h: cache the vtable in the class as suggested by
25953         vargaz@freemail.hu (Zoltan Varga).
25954
25955 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
25956
25957         * class.h, loader.c: added mono_field_from_token().
25958         * verify.c: first cut of type checking code.
25959
25960 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
25961
25962         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
25963
25964 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
25965
25966         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
25967         (fix bug #27782)
25968         (mono_marshal_get_remoting_invoke): impl.
25969         (mono_delegate_begin_invoke): impl.
25970         (mono_mb_emit_save_args): impl.
25971         (mono_delegate_end_invoke): impl.
25972         (mono_marshal_get_delegate_begin_invoke):
25973         (mono_marshal_get_delegate_end_invoke):
25974         (mono_marshal_get_delegate_invoke): generate a special name for
25975         those methods (including the signature) and associate them whith
25976         the delegate class. 
25977
25978 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
25979
25980         * reflection.[ch]: 
25981         (mono_reflection_type_from_name): now it has a MonoImage parameter
25982         which is used as the default image to search the type in. If the image
25983         is NULL or getting the type from it fails, it defaults to corlib.
25984
25985         * icall.c: changed 1 call to mono_reflection_type_from_name to match
25986         new parameter.
25987
25988 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
25989
25990         * reflection.c: update the parameter table index.
25991
25992 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
25993
25994         * domain.c: don't include the mark byte in the string hash.
25995
25996 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
25997
25998         * icall.cs: icall for Type.GetTypeCode ().
25999         * verify: a couple of fixes and disabled local initialization checks.
26000
26001 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
26002
26003         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
26004
26005         * debug-helpers.c (mono_method_full_name): print the type of the
26006         runtime wrapper
26007
26008         * metadata.c (mono_signature_hash): a hash function for signatures
26009         (mono_signature_hash): better hash algorithm
26010
26011         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
26012
26013         * debug-helpers.c (mono_method_full_name): this can now generate
26014         method names with signatures
26015
26016         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
26017         method dont have this pointers.
26018
26019 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
26020
26021         * reflection.c: fixup typebuilder tokens.
26022         * image.c: fix buglet.
26023         * marshal.h: remove whitespace.
26024         * metadata.h, metadata.c: reinstate code that was removed.
26025         * verify.c: handle catch directives and fix another couple of bugs.
26026
26027 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
26028
26029         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
26030         (mono_marshal_get_native_wrapper): make it comp. with the old code
26031         (mono_marshal_get_native_wrapper): support boolean
26032         (mono_marshal_get_managed_wrapper): support more types
26033
26034 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
26035
26036         * class.c (class_compute_field_layout): compute class->blittable attribute.
26037
26038 2002-07-09  Dick Porter  <dick@ximian.com>
26039
26040         * threads.c: Make the thread cleaning up cope with threads that
26041         call ExitThread()
26042
26043 2002-07-08  Radek Doulik  <rodo@ximian.com>
26044
26045         * reflection.c (method_encode_code): use non-translated values to
26046         compute finally_start, this fixes exception handling on ppc, yay!
26047
26048         * decimal.h (struct signscale): fix endianess
26049
26050 2002-07-07  Radek Doulik  <rodo@ximian.com>
26051
26052         * reflection.c: swap box_val and not val
26053
26054 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
26055
26056         * reflection.c, reflection.h: handle full assembly info in type name.
26057         Handle Type arguments when loading custom attributes.
26058         * icall.c: updated to use new mono_reflection_type_from_name () method.
26059
26060 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26061
26062         * loader.c:
26063         (method_from_memberref): also print assembly name when method not found.
26064
26065 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26066
26067         * icall.c:
26068         (ves_icall_TypeGetProperties): fixed bug #27473. 
26069
26070 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26071
26072         * reflection.c: display image name and token when cannot find the
26073         .ctor for an attribute.
26074
26075 2002-07-05  Martin Baulig  <martin@gnome.org>
26076
26077         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
26078
26079 2002-07-04  Dick Porter  <dick@ximian.com>
26080
26081         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
26082         compile on mingw.  This will cause mingw builds to not wait for
26083         subthreads to terminate after the main thread does.  I've lodged a
26084         bug with the mingw developers for them to wrap OpenThread().
26085
26086 2002-07-03  Dick Porter  <dick@ximian.com>
26087
26088         * threads.c: Store thread IDs instead of handles, because
26089         GetCurrentThread() returns a pseudohandle and therefore stores
26090         useless values.  mono_thread_cleanup() continues checking the
26091         array of threads until it is empty, to cope with subthreads
26092         spawning new threads after the main thread has finished.
26093
26094         * profiler.h:
26095         * profiler.c:
26096         * profiler-private.h: Pass the thread ID to thread profiler
26097         functions, instead of a handle
26098
26099 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26100
26101         * verify.c: fixes to make it more usable.
26102         * pedump.c: added --verify code to verify IL code in an assembly.
26103
26104 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26105
26106         * reflection.c: turn errors into warnings to allow compiling corlib.
26107
26108 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
26109
26110         * reflection.c: add special cases to compile corlib.
26111
26112 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26113
26114         * reflection.c: handle properties with only a set method.
26115
26116 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26117
26118         * opcodes.h: add enum with opcodes in opval order.
26119
26120 2002-07-01  Dick Porter  <dick@ximian.com>
26121         
26122         * object.h:
26123         * object.c (mono_runtime_run_main): Removed unneeded argument
26124
26125 2002-06-28  Martin Baulig  <martin@gnome.org>
26126
26127         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
26128
26129 2002-06-27  Dick Porter  <dick@ximian.com>
26130
26131         * threads.c: Store the handle in both the parent thread and in the
26132         subthread, to minimise the time between starting a new thread and
26133         storing its ID.
26134
26135 2002-06-26  Dick Porter  <dick@ximian.com>
26136
26137         * appdomain.c (mono_runtime_cleanup): Close the socket library
26138         after all the threads have finished, not before
26139
26140 2002-06-26  Martin Baulig  <martin@gnome.org>
26141
26142         * debug-symfile.c (mono_debug_find_source_location): Added
26143         `guint32 *line_number' argument.  If it's not NULL, store the line number
26144         there and return the file name without the line number.
26145
26146 2002-06-25  Dick Porter  <dick@ximian.com>
26147
26148         * icall.c:
26149         * process.h:
26150         * process.c: Process forking and other support functions
26151
26152 2002-06-25  Dick Porter  <dick@ximian.com>
26153
26154         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
26155         things dont happen when the image is closed.
26156         (mono_image_lookup_resource): Walk the resource section looking
26157         for a particular entry
26158
26159         * cil-coff.h: PE resource section decoding
26160
26161 2002-06-25  Dick Porter  <dick@ximian.com>
26162         
26163         * assembly.h:
26164         * assembly.c: 
26165         (mono_assembly_foreach): Accessor functions to walk the list of
26166         loaded assemblies
26167         (mono_assembly_set_main):
26168         (mono_assembly_get_main): Process methods need to know which
26169         assembly is the "main" one
26170
26171         * object.c (mono_runtime_run_main): Record the main assembly
26172
26173         * debug-helpers.c: Fix typo
26174
26175 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
26176
26177         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
26178         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
26179
26180 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
26181
26182         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
26183
26184 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
26185
26186         * image.c (do_mono_image_open): Initialize reference count,
26187         otherwise we leak the MonoImage.
26188
26189 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
26190
26191         * reflection.c: small tweak to handle self-hosting.
26192
26193 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
26194
26195         * reflection.c: fix type name parse code.
26196
26197 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26198
26199         * reflection.c: break out of the loop.
26200         * image.c: special case corlib.
26201
26202 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26203
26204         * reflection.c: add all the custom attrs at the end to ensure the
26205         ctors have been properly initialized when the attributes are defined
26206         in the current assembly.
26207
26208 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26209
26210         * reflection.c: handle correctly multiple-nested types.
26211
26212 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
26213
26214         * row-indexes.h: fix typos.
26215         * reflection.c: adjust for typos and fix method_def_or_ref
26216         encoding in MethodImpl table.
26217
26218 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26219
26220         * reflection.c: fix entry point patching (thanks Serge!).
26221
26222 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
26223
26224         * verify.c: add check for System.Exception
26225
26226 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
26227
26228         * image.c, class.c: minifix for code just c&p'ed.
26229         * reflection.c: warning fix.
26230         * object.h, loader.h, domain.c: load also StringBuilder.
26231
26232 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26233
26234         * marshal.h, marshal.c: some support code to handle complex marshaling.
26235
26236 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26237
26238         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
26239         Better signatures with vtable error dump.
26240
26241 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
26242
26243         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
26244
26245 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
26246
26247         * icall.c (ves_icall_Type_GetField): impl.
26248
26249 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26250
26251         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
26252         to retrieve a marshal description blob for a field or param.
26253
26254 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
26255
26256         * reflection.h, reflection.c: change order of nested type emission
26257         to avoid table corruption. The NestedTypes table is sorted.
26258         * icall.c: change order of GetConstructor results to workaround mcs bug.
26259
26260 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26261
26262         * reflection.h, reflection.c: handle field and param marshal
26263         information.
26264
26265 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26266
26267         * icall.c, marshal.c marshal.h: more Marshal class implementation.
26268
26269 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26270
26271         * reflection.c: fix call convention.
26272
26273 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26274
26275         * reflection.h, reflection.c: mono_image_get_memberref_token()
26276         takes a type instead of a class, now. Added
26277         mono_image_get_array_token() to create tokens for the special
26278         multi-dim array methods.
26279
26280 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
26281
26282         * assembly.c: handle modules (no assembly table). Split
26283         loading references in its own function.
26284         * class.c: handle moduleref resolution scope.
26285         * image.c, image.h: cache module name in image.
26286
26287 2002-06-07  Martin Baulig  <martin@gnome.org>
26288
26289         * reflection.c (mono_image_get_type_info): Only add a class layout entry
26290         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
26291
26292 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
26293
26294         * icall.c: more signature fixes that used uint instead of int.
26295
26296 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26297
26298         * reflection.c: fixed signature of field refs.
26299
26300 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26301
26302         * class.c, reflection.c: handle typerefs of nested types
26303         (both on read and when writing files).
26304
26305 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
26306
26307         * icall.c: fix method signatures that tried to workaround the previous
26308         typo, d'oh!
26309
26310 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
26311
26312         * debug-helpers.c: fix typo.
26313
26314 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
26315
26316         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
26317         rewrote the PE/COFF writing code (our programs are understood by the
26318         ms runtime, now).
26319
26320 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
26321
26322         * gc.c, gc.h, icall.c: weakreference support.
26323
26324 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26325
26326         * Makefile.am, mono-config.c: use $(sysconfdir).
26327
26328 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26329
26330         * icall.c: changed default precision of Double.ToString() to 15.
26331         Fixed memory leak. Unified with Single.ToString.
26332
26333 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
26334
26335         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
26336
26337 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
26338
26339         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
26340         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
26341         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
26342         and myself.
26343
26344 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26345
26346         * debug-symfile.c, sysmath.c: yet more compilation fixes.
26347
26348 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26349
26350         * reflection.c, socket-io.c: more compilation fixes.
26351
26352 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
26353
26354         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
26355         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
26356         unicode.c: warning and compiler compatibility fixes.
26357
26358 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
26359
26360         * class.h, metadata.c: fixed warnings/compilation errors.
26361
26362 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
26363
26364         * Makefile.am, mono-config.c, mono-config.h: configuration file
26365         support routines.
26366         * loader.c, loader.h: make Dll mapping configurable at runtime in the
26367         config file. Export methods to insert and lookup mappings.
26368
26369 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
26370
26371         * reflection.c: handle types and boxed objects in custom attr
26372         constructors.
26373
26374 2002-05-30  Martin Baulig  <martin@gnome.org>
26375
26376         * debug-symfile.c
26377         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
26378
26379 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
26380
26381         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
26382         to lookup the implmap row for a P/Invoke method.
26383         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
26384         P/Invoke method from the runtime on an as needed basis.
26385
26386 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
26387
26388         * metadata.c (mono_metadata_parse_signature): impl.
26389
26390 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26391
26392         * class.c: handle .pack directive.
26393
26394 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
26395
26396         * object.c: initialize static fields with RVA data.
26397
26398 2002-05-25  Martin Baulig  <martin@gnome.org>
26399
26400         * debug-symfile.c
26401         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
26402
26403 2002-05-24  Martin Baulig  <martin@gnome.org>
26404
26405         * debug-symfile.c
26406         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
26407         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
26408         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
26409
26410 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
26411
26412         * object.c: special case string ctros in invoke.
26413         * gc.c: silly whitespace changes.
26414
26415 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
26416
26417         * threadpool.[ch]: impl. a threadpool that can
26418         be used by mint and mono.
26419
26420 2002-05-22  Martin Baulig  <martin@gnome.org>
26421
26422         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
26423         The first argument is now a `MonoReflectionModuleBuilder *', the return
26424         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
26425         `methods' field to get the method builder.  The `token' argument is the
26426         unfixed token.
26427
26428         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
26429         invalid characters instead of g_assert_not_reached()ing.  This seems
26430         to be the behaviour of mscorlib.
26431
26432 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
26433
26434         * object.c (mono_runtime_invoke_array): applied patch from Rachel
26435         Hestilow to fix bug #25104
26436
26437 2002-05-21  Martin Baulig  <martin@gnome.org>
26438
26439         * debug-symfile.c (mono_debug_find_source_location): New function.
26440         Looks up an IL offset in the line number table and returns the source
26441         location as a string.
26442
26443 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26444
26445         * icall.c:
26446         (mono_double_ToStringImpl): changed %f by %g until we have something
26447         better.
26448
26449 2002-05-21  Nick Drochak  <ndrochak@gol.com>
26450
26451         * icall.c : Use different name for Math.Pow's icall.  Needed to check
26452         parameters first in C#.
26453
26454 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26455
26456         * icall.c, reflection.h: added icall to get info about an event.
26457
26458 2002-05-20  Radek Doulik  <rodo@ximian.com>
26459
26460         * object.c (mono_value_box): don't use memcpy for boxing on BIG
26461         endian
26462         (mono_value_box): don't use memcpy for small sizes on
26463         architectures with unaligned access
26464
26465 2002-05-20  Martin Baulig  <martin@gnome.org>
26466
26467         * reflection.c (mono_reflection_setup_internal_class): Don't crash
26468         if `tb->parent == NULL'.
26469         (mono_reflection_create_internal_class): New function.  This is
26470         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
26471         for enum types.
26472
26473         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
26474         New interncall.
26475
26476 2002-05-19  Martin Baulig  <martin@gnome.org>
26477
26478         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
26479         argument to get the length, don't default to the array length.
26480
26481 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
26482
26483         * assembly.c (mono_assembly_setrootdir): New function used to
26484         override the MONO_ASSEMBLIES directory.
26485
26486 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
26487
26488         * icall.c: ValueType_GetHashCode() initialize local var.
26489
26490 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
26491
26492         * reflection.c: sort custom attributes table.
26493
26494 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
26495
26496         * reflection.c: support named args in custom attributes (write support).
26497
26498 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
26499
26500         * reflection.c: fix finally position calculation.
26501
26502 2002-05-15  Radek Doulik  <rodo@ximian.com>
26503
26504         * reflection.c: fixed endianess at many places
26505
26506         * icall.c (ves_icall_InitializeArray): comment out debug msg
26507
26508 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
26509
26510         * object.c (mono_unhandled_exception): new function to handle
26511         unhandled exceptions.
26512         (mono_unhandled_exception): call the UnhandledException event.
26513         (mono_runtime_delegate_invoke): impl.
26514
26515 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
26516
26517         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
26518         returns the RVA, not the direct pointer to the data. Handle the case
26519         when the class size is fixed.
26520
26521 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
26522
26523         * reflection.c: fix some endianess issues.
26524
26525 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
26526
26527         * object.c (mono_runtime_invoke): is now able to catch exceptions.
26528
26529         * threads.c (mono_thread_init): added a callback which is invoked
26530         at thread start.
26531
26532 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
26533         
26534         * icall.c: make GetHashCode return non-negative values.
26535
26536 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
26537
26538         * object.c, icall.c, gc.c: revert to address-based hashcode.
26539
26540 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
26541
26542         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
26543
26544 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26545
26546         * icall.c, class.c: special case <Module>.
26547
26548 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
26549
26550         * icall.c: fix bug in GetNow().
26551
26552 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
26553
26554         * object.c (mono_runtime_class_init): make sure that we call all
26555         static class constructors.
26556
26557 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
26558
26559         * reflection.c: sort methodsemantics table.
26560
26561 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
26562
26563         * reflection.h, reflection.c: honour init locals setting.
26564
26565 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
26566
26567         * icall.c: copied Double ToStringImpl for Single ToStringImpl
26568
26569 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
26570
26571         * reflection.c: support ContructorBuilders in attribute blob creation.
26572
26573 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26574
26575         * reflection.c: some changes to build a binary that can be run
26576         directly in windows.
26577
26578 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
26579
26580         * loader.c: print a big message when an icall can't be found.
26581
26582 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26583
26584         * string-icalls.c: fix bug 24248.
26585
26586 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
26587
26588         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
26589         icall.c, reflection.h: separate assembly loading by pathname and by
26590         assembly name. Use the MONO_PATH env var to search for assemblies.
26591
26592 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26593
26594         * assembly.c, image.h: add some support for assemblies
26595         with multiple modules.
26596         * class.c, class.h: export mono_class_from_typeref().
26597         * loader.c: remove duplicated code and use mono_class_from_typeref(),
26598         instead.
26599
26600 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26601
26602         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
26603         documentation says (the ECMA one is correct).
26604
26605 2002-05-02  Dick Porter  <dick@ximian.com>
26606
26607         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
26608         Don't name the synchronisation mutex.
26609
26610 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
26611
26612         * rand.c
26613         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
26614         Make the prototypes match.
26615         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
26616         Same.
26617
26618         * icall.c
26619         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
26620         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
26621         all systems have tm.tm_zone, so use strftime() with %Z to print
26622         the timezone abreviation into a temp string.
26623
26624         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
26625         rather than mono_array_addr() on a MonoString on Big Endian
26626         machines.
26627
26628 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
26629
26630         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
26631         fix bug 24041
26632
26633 2002-04-30  Dick Porter  <dick@ximian.com>
26634
26635         * socket-io.c: Cope with SOCKET being an integer rather than a
26636         pointer now.
26637
26638         * threads.c: Added Thread_free_internal, to deal with thread
26639         handle cleanup.  Moved calls to handle_store() and handle_remove()
26640         to start_wrapper(), so each can only be called once.  Allocate
26641         synchronisation blocks with GC_malloc(), and use GC finalisation
26642         to close the handles.
26643
26644         * icall.c: added System.Threading.Thread::Thread_free_internal
26645
26646 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26647
26648         * icall.c: support Environment.Exit, CommandLineArgs().
26649
26650 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26651
26652         * object.c, object.h: added mono_runtime_run_main () and
26653         mono_runtime_get_main_args () for use in System.Environment.
26654
26655 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26656
26657         * gc.c: fix thinko, enable actual finalization since the jit is now
26658         fixed.
26659
26660 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26661
26662         * gc.c, object.c: take into account that an object may be offset wrt the address
26663         returned by GC_malloc().
26664
26665 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
26666
26667         * image.c: handle files without entries in the assembly table (modules).
26668
26669 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
26670
26671         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
26672         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
26673         allowed to be null when it's System.Object class setup.
26674
26675 2002-04-27  Martin Baulig  <martin@gnome.org>
26676
26677         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
26678         if `tb->parent == NULL' rather than crashing.
26679
26680 2002-04-28  Nick Drochak  <ndrochak@gol.com>
26681
26682         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
26683         calling acos() where asin() should have been called.
26684
26685 2002-04-26  Martin Baulig  <martin@gnome.org>
26686
26687         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
26688         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
26689         there's a subdirectory called `System', but we don't want to read that
26690         subdirectory as an assembly.
26691
26692 2002-04-25  Martin Baulig  <martin@gnome.org>
26693
26694         * debug-symfile.c: Reflect latest MonoString changes.
26695
26696 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
26697
26698         * rand.c, rand.h: instance method icalls need to have an explicit
26699         this pointer as first argument in the C implementation.
26700
26701 2002-04-25  Nick Drochak <ndrochak@gol.com>
26702
26703         * icall.c: Fix typo in map for GetNonZeroBytes
26704
26705 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
26706
26707         * string-icalls.c : String does now passes unit tests without any 
26708         errors, the following changes has been made:
26709         
26710         Implemented replace methods.
26711         Renaming of methods to (try) follow the standard.
26712         Fixed compare ordinal
26713         Made all memory allocated directly to function instead of via icall function.
26714         Small performance fix in is_in_array function
26715                         
26716  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
26717
26718         c (mono_string_Internal_ctor_charp_int_int):
26719         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
26720         sindex < 0, throw ArgumentOutOfRangeException instead of
26721         ArgumentNullException.
26722
26723         Added new check for length == 0, however
26724         I need to make it return String.Empty from the C code.
26725         
26726         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
26727         that calculate the length for us here.
26728         
26729         (mono_string_Internal_ctor_sbytep_int_int): Replaced
26730         mono_string_new_utf16 with mono_string_new, since value is utf8.
26731
26732 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26733
26734         * object.c: register the object for finalization if needed.
26735         Allocate one more char in the string for the terminating 0 char.
26736
26737 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26738
26739         * class.c, class.h, image.c: check if a type implemenst a destructor.
26740         Use the proper key for array class lookups.
26741         * icall.c: register the icalls in the System.GC class.
26742         * gc.c, gc.h: GC-related functions and icalls.
26743
26744 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26745
26746         * icall.c:
26747         * socket-io.c:
26748         * unicode.c: free some strings gotten from mono_string_to_utf8 and
26749         changed a couple of free () by g_free ().
26750
26751         * decimal.c: one-liner in the comments for decimal2string ().
26752
26753 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
26754
26755         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
26756
26757 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
26758
26759         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
26760         * object.c (mono_runtime_invoke_array) : handle null in params
26761
26762 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
26763
26764         * string-icalls.c: fixed bug in split (one off bug)
26765
26766 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
26767
26768         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
26769         * icalls.c: added String::Equals as internal method
26770
26771 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
26772
26773         * threads.c: fixed bug in the double interlocked functions
26774
26775 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
26776
26777         * threads.c: implemented all of the new interlocked icalls.
26778         * string-icalls.c: fix a bug in insert.
26779         * icalls.c: added the icalls for interlocked, removed old string functions.
26780         
26781 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
26782
26783         * loader.c: fix off-by-one error when reading argument names.
26784
26785 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26786
26787         * profiler.c: win32 counter implementation (untested).
26788         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
26789         (the latter needs testing and more complete impl. from win32 folks).
26790
26791 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
26792
26793         * object.c: mono_array_new_full workaround mono_array_class_get
26794         problem.
26795
26796 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26797
26798         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
26799         * object.h (mono_string_chars): Changed casting type.
26800
26801 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26802
26803         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
26804                            method signatures to use gunichar2 instead of gint16.
26805
26806 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
26807
26808         * object.h, object.c: domain-specific versions of mono_object_new and
26809         mono_array_new.
26810
26811 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
26812
26813         * object.c: changed String layout
26814
26815         * string-icalls.c (mono_string_Internal_ctor_chara): added
26816         internal string constructors.
26817
26818 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
26819
26820         * threads.c: pass 'this' to the thread start routine.
26821
26822 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26823
26824         * string-icalls.c: fix IndexOf and LastIndexOf. Now
26825         InternalCompareStr don't call twice mono_string_cmp_char for the last
26826         character. Improved performance in mono_string_cmp_char.
26827
26828 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
26829
26830         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
26831         code into its own library: libmonoruntime.
26832
26833 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
26834
26835         * object.h, object.c: changed array format so that szarrays do not
26836         require a bounds structure.
26837         * icall.c, appdomain.c: support for new szarray format.
26838
26839 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
26840
26841         * metadata.c: compare also the retuns type when comparing signatures:
26842         we didn't do this as an optimization since really overloaded methods
26843         must differ also in the arguments, but this doesn't work with
26844         low-level IL code (or when using explicit conversion operators: see
26845         bug#23498 for an example).
26846
26847 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26848
26849         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
26850
26851 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
26852
26853         * icall.c: make MonoType::GetElementType its own icall.
26854
26855 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26856
26857         * icall.c: remove MonoMethod_get_Name().
26858         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
26859         object.
26860
26861 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26862
26863         * string-icalls.c: optimized a few methods.
26864
26865 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
26866
26867         * icall.c: added all new string internal calls
26868         * string-icalls.c: added, new string internal call implementation.
26869         * object.c: added mono_string_new_size for allocating a string a size
26870
26871 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
26872
26873         * object.c (mono_object_isinst): use the same code as in the
26874         optimized x86 version.
26875
26876 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26877
26878         * profiler.c: TSC-based timer code (faster and more accurate).
26879         Not hooked up in configure, yet (set USE_X86TSC to 1).
26880
26881 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
26882
26883         * profiler.c, profiler.h: track time spent compiling methods.
26884         * threads.c: track thread creation/destruction.
26885
26886 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
26887
26888         * profiler.c, profiler.h, profiler-private.h: profiling interface
26889         and sample implementation. Moved here so that it can be used also by
26890         the jit.
26891
26892 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
26893
26894         * reflection.c, reflection.h: keep types and other handles separate in
26895         the hash tables for referred tokens. Add guid for modules.
26896
26897 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
26898
26899         * assembly.c: fix bugs found with valgrind.
26900         * metadata.h, metadata.c: added mono_metadata_guid_heap().
26901
26902 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
26903
26904         * threads: added icall support for getting current domain for
26905                    the thread.
26906  
26907 2002-04-13  Martin Baulig  <martin@gnome.org>
26908
26909         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
26910         (MonoDebugVarInfo): Added `index' field for register based addresses.
26911         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
26912         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
26913         `MonoDebugVarInfo *params' and `guint32 this_offset' with
26914         `MonoDebugVarInfo *this_var'.
26915
26916         * debug-symfile.c (relocate_variable): New static function to write
26917         a location description for a local variable or method parameter.
26918
26919 2002-04-12  Martin Baulig  <martin@gnome.org>
26920
26921         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
26922         stack offset and begin/end scope address of a local variable.
26923         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
26924         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
26925         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
26926
26927         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
26928         Added new relocation types for start/end scope of a local variable.
26929
26930 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26931
26932         * object.h: add mono_object_domain() macro.
26933         * reflection.c: handle typespecs.
26934         * icall.c: MonoMethod::get_Name() implementation.
26935
26936 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26937
26938         * icall.c: String::GetHashCode() icall implementation.
26939
26940 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26941
26942         * icall.c: String::IndexOfAny icall.
26943         * object.c, object.h: make array->max_length more useful.
26944         Intrduced mono_object_class() and mono_string_length() macros.
26945
26946 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26947
26948         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
26949         instead of g_unichar_isdigit.
26950
26951 2002-04-11  Nick Drochak  <ndrochak@gol.com>
26952
26953         * icall.c: Implement a simple Double.ToString().
26954
26955 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
26956
26957         * appdomain.h: only io-layer.h is supposed to be included.
26958         * icall.c: explicitly import environ. Fix warning.
26959
26960 2002-04-10  Nick Drochak  <ndrochak@gol.com>
26961
26962         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
26963                 return true even if it's not Daylight Savings time.
26964                 Only return false for the case where the function isn't
26965                 implemented for a plaform (read Windows).
26966
26967 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26968
26969         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
26970         data with a mutex.
26971
26972 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
26973
26974         * mempool.c (mono_mempool_alloc): only use g_malloc when
26975         absolutely necessary.
26976
26977 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
26978
26979         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
26980
26981         * class.c (mono_class_vtable): use domain mempool to allocate vtable
26982         (mono_class_proxy_vtable): use domain mempool
26983
26984 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
26985
26986         * appdomain.h, appdomain.c: split initialization that requires the
26987         execution engine support into mono_runtime_init().
26988
26989 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
26990
26991         * class.c (mono_class_init): don't include vtable inside MonoClass
26992         to save some memory, gather some statistics.
26993         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
26994
26995 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
26996
26997         * icall.c: internalcall implementation for ValueType.Equals().
26998
26999 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
27000
27001         * object.c (mono_message_init): moved 
27002         (mono_runtime_exec_main): new arch. independent impl.
27003         (mono_runtime_invoke_array): new method - like
27004         mono_runtime_invoke, but you can pass an array of objects.
27005         (mono_remoting_invoke): new arch. independent impl.
27006         (mono_message_invoke): new arch. independent impl.
27007         (mono_runtime_class_init): new arch. independent impl.
27008         (mono_runtime_object_init): new arch. independent impl.
27009
27010 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
27011
27012         * metadata.c, object.c, reflection.c: documented the exported
27013         functions.
27014
27015 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
27016
27017         * icall.c: simpler code to pass the assembly builder data to corlib.
27018         Implement GetNestedTypes() internalcall.
27019
27020 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
27021
27022         * class.c: warn if a type can't be loaded.
27023
27024 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
27025
27026         * image.h: typedef MonoImageOpenStatus
27027         * types.h: removed unused file
27028         
27029 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
27030
27031         * icall.c: Enum_ToObject accepts enum value arguments.
27032
27033 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
27034
27035         * class.c: move initialization of properties, events and nested
27036         classes, so that they happen for interfaces, too.
27037
27038 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
27039
27040         * icall.c: cleanup some ugly casts in Array_SetValue*.
27041
27042 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
27043
27044         * icall.c: the values array fro enums is of the correct type, now.
27045         Implement (correctly) getFullName instead of assQualifiedName for
27046         MonoType.
27047         * reflection.h, reflection.c: added mono_type_get_name ().
27048
27049 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
27050
27051         * assembly.c, image.h: for each MonoImage, record from wich assembly
27052         it was loaded.
27053         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
27054         Make Type.Assembly work.
27055
27056 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
27057
27058         * debug-symfile.h: use char* instead of gpointer to avoid
27059         unnecessary casts.
27060
27061         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
27062
27063         * icall.c (ves_icall_InternalExecute): impl. FielSetter
27064         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
27065
27066 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
27067
27068         * icall.c (mono_message_init): impl. (code cleanup)
27069         (ves_icall_InternalExecute): impl. FieldGetter
27070
27071         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
27072         defined we call all (non-static)methods through the vtable. 
27073
27074 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
27075
27076         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
27077         finalizer even though the memory is still referenced (and the chunk of
27078         memory is not freed).
27079
27080 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
27081
27082         * assembly.c: fix brokeness.
27083
27084 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
27085
27086         * class.c: kill some warnings. Check explicit interface method
27087         implementation also without considering the namespace.
27088         Load also literal strings in static class data.
27089
27090 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
27091
27092         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
27093         (default_assembly_name_resolver): Make the resolver take the
27094         "base" directory where the assembly was originally defined, so we
27095         can load DLLs that are in the same directory as the assembly that
27096         is being referenced.
27097
27098 2002-03-28  Dick Porter  <dick@ximian.com>
27099
27100         * file-io.h: 
27101         * file-io.c:
27102         * socket-io.c: 
27103         * unicode.h: 
27104         * unicode.c: Warning cleanups
27105
27106 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
27107
27108         * object.h, reflection.h: use the correct type instead of MonoObject.
27109
27110 2002-03-28  Martin Baulig  <martin@gnome.org>
27111
27112         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
27113         (mono_debug_update_symbol_file): Initialize classes if necessary.
27114
27115 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
27116
27117         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
27118         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
27119
27120 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
27121
27122         * assembly.h: fix function prototype.
27123         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
27124         * mono-endian.h: use const cast.
27125
27126 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
27127
27128         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
27129
27130 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
27131
27132         * loader.c: don't assert when a typeref can't be loaded, give
27133         a chance to the runtime to trow an exception instead.
27134         * loader.h: fix warning.
27135
27136 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
27137
27138         * class.c (mono_class_proxy_vtable): added proxy support
27139
27140 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
27141
27142         * icall.c: removed last of PAL calls, added System.Environment
27143         * file-io.h, file-io.c: MonoIO implementation
27144         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
27145
27146 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
27147
27148         * appdomain.c: do not use the byte marker in ldstr table lookup.
27149         * debug-helpers.c: allow two ':' to separate class and method name.
27150         * object.c: allocate arrays bounds with the GC, too.
27151         * verify: add a few more checks.
27152
27153 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
27154
27155         * reflection.c: output also literal strings. Allocate parameter data
27156         with GC_malloc() (thanks, Martin, for catching this!).
27157
27158 2002-03-26  Martin Baulig  <martin@gnome.org>
27159
27160         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
27161         include the `this' offset in the `param_offsets'.
27162
27163 2002-03-25  Martin Baulig  <martin@gnome.org>
27164
27165         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
27166         mono_debug_get_class() function to get the classes. Added new
27167         relocation types for arrays and strings.
27168         (mono_debug_get_class): New static function to search in all
27169         referenced assemblies for a metadata token.
27170
27171         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
27172
27173 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
27174
27175         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
27176         hold gc-allocated objects. Make the string heap a stream like the
27177         others. Removed duplicated code when writing stream info.
27178         Added asserts to catch possible buffer overflows. Set the sorted map
27179         for tables that need sorting. Added some documentation.
27180
27181 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
27182
27183         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
27184         for interned strings and vtables.
27185
27186 2002-03-24  Martin Baulig  <martin@gnome.org>
27187
27188         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
27189         it in the array since it was created with g_slist_prepend().
27190
27191 2002-03-24  Martin Baulig  <martin@gnome.org>
27192
27193         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
27194         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
27195         (mono_debug_method_from_token): Renamed to
27196         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
27197         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
27198
27199         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
27200         relocation types.
27201
27202         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
27203
27204 2002-03-24  Martin Baulig  <martin@gnome.org>
27205
27206         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
27207         (mono_debug_method_from_token): New func.
27208
27209         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
27210         New interncall, calls mono_debug_local_type_from_signature().
27211         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
27212         calls mono_debug_method_from_token().
27213
27214 2002-03-23  Martin Baulig  <martin@gnome.org>
27215
27216         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
27217         specifies the number of bytes to be converted, not the array size.
27218         Return the number of chars, not the number of bytes.
27219         (ves_icall_iconv_get_chars): The `byteCount' argument
27220         specifies the number of bytes to be converted, not the array size.
27221
27222 2002-03-23  Martin Baulig  <martin@gnome.org>
27223
27224         * reflection.h (MonoReflectionSigHelper): New type.
27225
27226         * reflection.c (mono_reflection_sighelper_get_signature_local),
27227         (mono_reflection_sighelper_get_signature_local): New functions.
27228
27229         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
27230         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
27231         interncalls.
27232
27233 2002-03-23  Martin Baulig  <martin@gnome.org>
27234
27235         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
27236         is_writeable is set.
27237         (mono_raw_buffer_update): New function to write the modified map
27238         back to disk.
27239
27240         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
27241
27242         * debug-symfile.c (mono_debug_update_symbol_file): Call
27243         mono_raw_buffer_update() when done writing.
27244
27245 2002-03-23  Martin Baulig  <martin@gnome.org>
27246
27247         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
27248
27249         * debug-symfile.c: Added support for arguments and local variables.
27250
27251 2002-03-23  Dick Porter  <dick@ximian.com>
27252
27253         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
27254         protected by ifdefs, hence breaking the w32 build.
27255
27256 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27257
27258         * object.c: implement is_interned() the right way.
27259
27260 2002-03-21  Martin Baulig  <martin@gnome.org>
27261
27262         * debug-symfile.[ch]: New files to handle debugging information
27263         files. There's also support to dynamically update these symbol
27264         files to include machine dependent information.
27265
27266 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
27267
27268         * threads.c (mono_thread_create): new function to create thread
27269         from C
27270
27271 2002-03-20  Martin Baulig  <martin@gnome.org>
27272
27273         * icall.c (ves_icall_InternalInvoke): Create a new object if the
27274         method is a constructor.
27275         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
27276         points to ves_icall_InternalInvoke().
27277
27278 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
27279
27280         * file-io.c: Flush shouldn't throw exceptions.
27281
27282 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
27283
27284         * file-io.c: FileStream flush support; FileSetLength now
27285         restores file pointer.
27286
27287 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
27288
27289         * class.c: set image for pointer classes.
27290
27291 2002/03/19  Nick Drochak <ndrochak@gol.com>
27292
27293         * sysmath.c: Forgot one.
27294
27295 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
27296
27297         * sysmath.c: Avoid redefining existing names.
27298
27299 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
27300
27301         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
27302         handled by runtime as icall rather than dllimport from libm.so
27303         * file-io.c, file-io.h: fixed handle argument type.
27304
27305 2002-03-18  Dick Porter  <dick@ximian.com>
27306
27307         * reflection.c (mono_image_get_type_info): rename interface to
27308         iface, because of "#define interface struct" on windows.
27309
27310 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
27311
27312         * class.c, class.h: rename and export mono_ptr_class_get().
27313         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
27314         * reflection.c, reflection.h, icall.c: better/saner type name
27315         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
27316         method signatures.
27317
27318 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
27319
27320         * class.c (mono_class_init): removed hardcoded GHC_SLOT
27321
27322         * icall.c (ves_icall_InternalInvoke): impl.
27323
27324 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
27325
27326         * reflection.c: output the interface map table, too.
27327
27328 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
27329
27330         * class.c (class_compute_field_layout): separate computation of 
27331         static field layout
27332
27333 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
27334
27335         * icall.c: added System.Buffer support.
27336         * file-io.c: moved file icalls from PAL to FileStream.
27337
27338 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
27339
27340         * icall.c (ves_icall_System_Object_GetHashCode): impl.
27341
27342 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
27343
27344         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
27345
27346 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27347
27348         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
27349
27350 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
27351
27352         * debug-helpers.{c,h}: moved here from monograph some useful functions
27353         to locate a method by name/signature in a class or image. Included
27354         also a small and flexible IL disassembler.
27355
27356 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
27357
27358         * reflection.c: fixup tokens in methods with small header size, too.
27359
27360 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
27361
27362         * object.c (mono_string_to_utf8): remove assert(!error), instead
27363         print a warning. 
27364
27365 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
27366
27367         * icall.c: update to the new mono_Array_class_get interface.
27368
27369 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
27370
27371         * appdomain.c, object.c: Boehm-GC enable.
27372         * icall.c: make get_data_chunk() support split data requests.
27373         Ensure a class is initialized in more cases. Return only the first
27374         property found in GetProperties() or the compiler gets confused. 
27375         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
27376         * reflection.h, reflection.c: add fixup mechanism for field and method
27377         tokens. Initialize assembly->typeref in a single place. Output
27378         properties after events. Support custom attributes for events, too.
27379         Typo fix for paramter custom attrs.
27380
27381 2002-03-07  Martin Baulig  <martin@gnome.org>
27382
27383         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
27384
27385 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
27386
27387         * class.c (mono_array_class_get): fix. for multi. dim. arrays
27388
27389 2002-03-06  Martin Baulig  <martin@gnome.org>
27390
27391         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
27392         non-zero lower bounds. See testcases #F10-#F13.
27393
27394 2002-03-05  Martin Baulig  <martin@gnome.org>
27395
27396         * exception.c (mono_get_exception_argument_out_of_range): New exception.
27397
27398         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
27399         ves_icall_System_Array_GetValue(), only calculate the absolute array position
27400         here.
27401         (ves_icall_System_Array_SetValue): Likewise.
27402         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
27403         as argument and does the actual work. This function is used when copying a
27404         multi-dimensional array.
27405         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
27406         now do all the widening conversions of value types.
27407         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
27408
27409 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27410
27411         * class.c: remove some magic numbers and use the smbolic names,
27412         instead. Added init_events() to load event info at class init time.
27413         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
27414         and mono_metadata_methods_from_event().
27415         * reflection.h, reflection.c: added support for writing out the evnets
27416         related information.
27417
27418 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
27419
27420         * reflection.h, icall.c: use a different method (GetInterfaces)
27421         to gather interface info and add isbyref, isprimitive and
27422         ispointer to the ves_icall_get_type_info() return value.
27423
27424 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
27425
27426         * class.h: stared adding support for events.
27427         * icall.c: split find_members implementation. Added debug icall to get
27428         the address of an object.
27429         * reflection.c: handle TypeBuilders in mono_type_get_object().
27430
27431 2002-03-01  Martin Baulig  <martin@gnome.org>
27432
27433         * icall.c (ves_icall_System_Array_GetLength): This must throw an
27434         ArgumentOutOfRangeException(), not an ArgumentException().
27435         (ves_icall_System_Array_GetLowerBound): Likewise.
27436         (ves_icall_System_Array_GetValue): Improved argument checking.
27437         (ves_icall_System_Array_SetValue): Improved argument checking.
27438
27439 2002-03-01  Martin Baulig  <martin@gnome.org>
27440
27441         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
27442         called with invalid arguments rather than just dying with g_assert().
27443         (ves_icall_System_Array_SetValue): Likewise.
27444         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
27445         raise a NotImplementedException instead.
27446         (ves_icall_System_Array_GetLength): Added argument checking.
27447         (ves_icall_System_Array_GetLowerBound): Added argument checking.
27448
27449 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
27450
27451         * object.h (mono_assert): new macros mono_assert and
27452         mono_assert_not_reached
27453
27454 2002-02-28  Martin Baulig  <martin@gnome.org>
27455
27456         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
27457         and "System::String::IsInterned" to "System::String::_IsInterned".
27458
27459 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
27460
27461         * icall.c: remove hacks for typebuilder. Added icall to create a
27462         modified type from a tybebuilder.
27463         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
27464         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
27465         to create a backing MonoClass for a TypeBuilder.
27466
27467 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
27468
27469         * class.c, class.h: more refactoring of class init.
27470         Export mono_class_setup_mono_type() and mono_class_setup_parent().
27471
27472 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
27473
27474         * marshal.c, marshal.h: start of marshaling interface.
27475
27476 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
27477
27478         * icall.c: fix order in assembly qualified name icall.
27479
27480 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
27481
27482         * class.c: do not free str, since we store it in the hash table.
27483         * reflection.h: add label field to MonoILExceptionInfo.
27484         * reflection.c: handle references to more than one assembly. Handle
27485         case when there isn't a module created in the assembly.
27486
27487 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
27488
27489         * class.c: Fix typo. Start refactoring of class init code.
27490
27491 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
27492
27493         * appdomain.c: exit with 1 on error.
27494         * class.c: we already have the name in MonoClassField.
27495         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
27496         MonoStreamHeader instead of an offset of image->raw_metadata.
27497
27498 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
27499
27500         * appdomain.c (mono_init): Be even more descriptive about the error.
27501
27502 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
27503
27504         * appdomain.c: give the user an informative message when corlib can't
27505         be loaded.
27506
27507 2002-02-26  Martin Baulig  <martin@gnome.org>
27508
27509         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
27510         New icall to get the time zone data.
27511
27512 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
27513
27514         * reflection.c: set virtual and raw size of section correctly.
27515         * threads.c: transfer domain information to newly created threads.
27516
27517 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
27518
27519         * class.c: when instancing a class in a domain, load the default
27520         vaules for static fields from the constant table. Fix System.Enum to
27521         not be an enum.
27522         * icall.c: implement Object::GetType() internalcall. Implemented
27523         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
27524         Fixed checking of binding flags in find_members().
27525         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
27526         * reflection.c: handle enumerations when writing to the constant
27527         table. Use a different object cache for types.
27528
27529
27530 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
27531
27532         * object.c (mono_object_isinst): fix for arrays
27533
27534         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
27535
27536 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
27537
27538         * object.c: don't use mprotect ()  and fix intern pool hash table
27539         lookup for big endian systems.
27540
27541 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
27542
27543         * icall.c: change type_is_subtype_of () signature.
27544
27545 2002-02-21  Mark Crichton  <crichton@gimp.org>
27546
27547         * rand.c, rand.h: Added random number generator for
27548         System.Security.Cryptography classes.
27549
27550         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
27551
27552         * icall.c: Added System.Security.Cryptography calls.
27553
27554 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
27555
27556         * class.c, icall.c, metadata.c: better support for pointer types.
27557         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
27558         * reflection.c: Add support for getting custom attrs for properties
27559         and simplify some code.
27560
27561 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
27562
27563         * icall.c: change getToken () and add custom attribute GetBlob()helper
27564         method.
27565         * reflection.h: add custom attrs array to the reflection builder structures.
27566         * reflection.c: encode and emit custom attributes for all the relevant
27567         reflection objects. Cache fieldref and methodref tokens. Change
27568         mono_image_create_token() interface to take a MonoDynamicAssembly.
27569         More complete custom attributes decoder. Load custom attributes for
27570         Assembly, Field, Method and Constructor objects, too. Make the
27571         returned array an Attribute[] one, not object[]. Added
27572         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
27573         custom attribute constructor.
27574
27575 2002-02-20  Dick Porter  <dick@ximian.com>
27576
27577         * icall.c:
27578         * rawbuffer.c:
27579         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
27580         problem code out for now).
27581
27582 2002-02-19  Radek Doulik  <rodo@ximian.com>
27583
27584         * object.c (mono_ldstr): use hash table to avoid multiple swapping
27585
27586 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
27587
27588         * icall.c: register the GetCustomAttributes method.
27589         * object.c, object.h: add mono_string_new_len ().
27590         * reflection.h, reflection.c: added mono_runtime_invoke(),
27591         mono_install_runtime_invoke(). Added
27592         mono_reflection_get_custom_attrs () to load custom attributes and
27593         create the attribute objects.
27594
27595 2002-02-19  Dick Porter  <dick@ximian.com>
27596         * threads-dummy-types.c:
27597         * threads-dummy-types.h:
27598         * threads-dummy.c:
27599         * threads-dummy.h:
27600         * threads-pthread-types.c:
27601         * threads-pthread-types.h:
27602         * threads-pthread.c:
27603         * threads-pthread.h:  Deleted obsolete files
27604
27605 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
27606
27607         * class.c (mono_class_vtable): runtime init the class when we
27608         allocate static class data.
27609
27610         * icall.c (ves_icall_System_Array_SetValue): check for null values.
27611
27612         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
27613         and String - but we will need generic marshalling support in the
27614         future. 
27615         (mono_init): set the domain name in a ms compatible way
27616
27617         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
27618         String[].
27619
27620 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
27621
27622         * object.c (mono_array_clone): use alloca() instead of g_malloc  
27623         for sizes
27624
27625         * appdomain.c (mono_domain_unload): impl.
27626
27627 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
27628
27629         * appdomain.c, object.c: fix intern pool implementation.
27630         * class.c: fix alignment code.
27631
27632 2002-02-16  Radek Doulik  <rodo@ximian.com>
27633
27634         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
27635         and s2 > s1, just copy lower bytes to be compatible with little
27636         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
27637         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
27638
27639         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
27640         force big_endian to be 1 for big endian machines 
27641         (ves_icall_iconv_new_decoder): ditto
27642
27643 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
27644
27645         * socket-io.c (convert_sockopt_level_and_name): If the system
27646         doesn't define SOL_IP or SOL_TCP, get them by hand using
27647         getprotobyname() and caching the values (because this could be a
27648         slow operation).
27649         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
27650         Use the appropriate struct when the system does support it. Ie,
27651         not all systems have struct ip_mreqn so use struct ip_mreq when
27652         appropriate.
27653
27654 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
27655
27656         * reflection.c: handle finally clauses.
27657
27658 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
27659
27660         * socket-io.c: use g_snprintf() instead of snprintf.
27661
27662 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
27663
27664         * reflection.c (mono_param_get_objects): Cast second argument to
27665         mono_method_get_param_names to a const char** to silence the
27666         compiler warning.
27667
27668         * appdomain.c (mono_domain_assembly_open): Put parens around the
27669         truth statement in the for-loop.
27670
27671         * unicode.c (iconv_convert): Got rid of a compiler warning about
27672         int i being unused when the system has a new iconv.
27673         (iconv_get_length): Same.
27674
27675         * image.c (load_class_names): Cast the second argument to
27676         g_hash_table_insert() to char* to hush compiler warnings about the
27677         arg being a const.
27678         (mono_image_open): Same here.
27679
27680         * socket-io.c: Don't conditionally include sys/filio.h or
27681         sys/sockio.h here anymore since we now get them from
27682         io-layer/io-layer.h
27683         (inet_pton): If the system doesn't support inet_aton, implement
27684         using inet_addr and also #define INADDR_NONE if it isn't defined
27685         by the system.
27686
27687 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
27688
27689         * metadata.c, metadata.h: added function to get packing and size info
27690         of a typedef.
27691         * reflection.h, reflection.c: handle field RVA data. Save info about
27692         the table layout if needed. Assign typedef indexes to all the types
27693         before dumping the info about them to avoid forward reference problems.
27694
27695 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
27696
27697         * socket-io.c (convert_sockopt_level_and_name): ifdef
27698         SO_ACCEPTCONN because it is not defined on my system (old debian)
27699
27700 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
27701
27702         * opcode.c: use stddef.h to get NULL.
27703
27704 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
27705
27706         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
27707         for FIONBIO, FIONREAD and SIOCATMARK.
27708         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
27709         define INADDR_NONE and besides, inet_addr() is deprecated and
27710         should not be used. Use inet_pton() instead - it also has the
27711         added bonus that it can easily handle IPv6 addresses as well.
27712         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
27713
27714 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
27715
27716         * decimal.c: remove _MSC_VER conditional.
27717
27718 2002-02-13  Dick Porter  <dick@ximian.com>
27719
27720         * socket-io.c: 
27721         * icall.c: Internal calls for Blocking, Select, Shutdown,
27722         GetSocketOption and SetSocketOption
27723
27724 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27725
27726         * assembly.cs: better resolver: use it instead of some kludgy
27727         code.
27728
27729 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
27730
27731         * reflection.c: the best way to speed-up the compiler is to avoid
27732         infinite loops.
27733
27734 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
27735
27736         * class.c (mono_class_vtable): changed the object layout
27737         (obj->vtable->class). 
27738         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
27739
27740 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27741
27742         * assembly.c: look for assemblies in the assembly dir, too.
27743
27744 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27745
27746         * class.c: fix thinko in mono_class_from_type().
27747
27748 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
27749
27750         * exception.h, exception.c: added TypeLoadException.
27751         * object.h, object.c: added mono_array_clone ().
27752         * icall.c: handle throwOnError in AssemblyGetType().
27753         Added Array.Clone().
27754         * opcode.h, opcode.c: use a single value for the opcode val.
27755         Compile fix for non-gcc compilers.
27756
27757 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
27758
27759         * opcodes.c, opcodes.h: export interesting info about opcodes.
27760
27761 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
27762
27763         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
27764         icalls. 
27765
27766         * class.c (class_compute_field_layout): set element_class for enums
27767         (mono_class_create_from_typedef): set element_class for normal classes
27768
27769         * icall.c (ves_icall_System_Enum_get_value): impl.
27770
27771         * class.c (mono_class_create_from_typedef): do not set valuetype
27772         flag for System.ValueType and System.Enum
27773
27774 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
27775
27776         * unicode.c (iconv_convert): fix big endian problem.
27777
27778 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
27779
27780         * class.c: add asserts if we are ever going to scribble over memory.
27781         * socket-io.c: not all systems have AF_IRDA defined.
27782
27783 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
27784
27785         * class.c (class_compute_field_layout): do not consider static
27786         fields to compute alignment
27787
27788 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
27789
27790         * appdomain.c (mono_appdomain_get): impl.
27791         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
27792
27793 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
27794
27795         * icall.c: ignore "file://" prefix when loading an assembly.
27796
27797 2002-01-23  Dick Porter  <dick@ximian.com>
27798
27799         * socket-io.c:
27800         * icall.c:
27801         * Makefile.am: Added socket support
27802
27803 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
27804
27805         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
27806         code back.  This should return the assemblies that are loaded by
27807         the runtime on behalf of an application domain. 
27808
27809         The current implementation is still broken, it just returns every
27810         assembly loaded, but until we get real applications domain this
27811         will do.
27812
27813 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
27814
27815         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
27816         AppDomain object.
27817
27818 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
27819
27820         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
27821         the mono_class_from_name lookup.
27822         (ves_icall_get_parameter_info): ditto.
27823         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
27824         method.
27825         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
27826
27827 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
27828
27829         * class.c: load also nested classes on class init.
27830         System.ValueType instance methods gets passed boxed
27831         values, unless methods in derived classed that get a pointer to the
27832         data.
27833         * icall.c: use better name parsing code in GetType().
27834         * image.c, image.h: add mono_image_loaded ().
27835         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
27836         * reflection.c, reflection.h: added mono_reflection_parse_type().
27837
27838 2002-01-22  Veronica De Santis <veron78@interfree.it>
27839
27840         * icall.c : Added mapping of internal calls for Manual and Auto reset events
27841         * threads.c : Added the implementation of internal calls for events
27842         * threads.h : Added prototypes of internal calls for events
27843         
27844 2002-01-21  Radek Doulik  <rodo@ximian.com>
27845
27846         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
27847
27848 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
27849
27850         * class.c (mono_class_init): set min_align to 1 (instead of 0)
27851         (mono_class_value_size): use min_align
27852
27853 2002-01-20  Dick Porter  <dick@ximian.com>
27854
27855         * threads.h:
27856         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
27857         so it compiles on w32.
27858
27859 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
27860
27861         * metadata.c (mono_type_stack_size): impl.
27862
27863         * class.c (mono_class_get_field): impl. memberref token
27864
27865 2002-01-16 Veronica De Santis <veron78@@interfree.it>
27866
27867         * icall.h : Added the internal calls mapping for CreateMutex_internal
27868                     and ReleaseMutex_internal.
27869         * threads.h : Added the prototype of mutexes internal calls.
27870         * threads.c : Added the implementations of mutexes internal calls.
27871
27872 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
27873
27874         * metaparse.h: removed unused file.
27875         * reflection.c, reflection.h: added stream_data_align () function 
27876         to align data in streams and keep stream aligned. Add support for
27877         exception support in method headers.
27878
27879 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
27880
27881         * unicode.c: make iconv_convert () return the number of bytess written
27882         in the output buffer.
27883
27884 2002-01-15  Dick Porter  <dick@ximian.com>
27885         * threads.c: Make the runtime's idea of infinite timeouts coincide
27886         with the class library's
27887
27888         Fix a particularly egregious bug in mono_thread_cleanup(). That
27889         code was so utterly bogus it must have been written on a Monday.
27890
27891 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
27892
27893         * reflection.h: add subtypes field to TypeBuilder.
27894         * reflection.c: encode constants for literal fields.
27895         Handle subtypes. Fix user string token (and add a zero byte)
27896         at the end.
27897         
27898 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
27899
27900         * class.c (mono_class_init): bug fix: assign slot numbers for
27901         abstract methods.
27902
27903 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27904
27905         * reflection.c: don't try to output a code RVA for abstract methods.
27906         Small fixes for method header format. Output parameter info to the
27907         ParamDef table. Save method overriding info to MethodImpl table.
27908         Fix property support. Allow typedef.extends to be a type in the
27909         building assembly.
27910         * verify.c: fix off-by-one error.
27911
27912 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
27913
27914         * class.c: fix mono_class_from_mono_type () for szarray types.
27915         Remove unused cache check in mono_class_from_type_spec().
27916         * icall.c: *type_from_name () functions handle simple arrays and byref.
27917         * reflection.c: handle byref and szarray types. Handle methods without
27918         body (gets P/Invoke compilation working). Handle types and fields in
27919         get_token ().
27920         * reflection.h: add rank to MonoTypeInfo.
27921
27922 2002-01-10  Dick Porter  <dick@ximian.com>
27923
27924         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
27925         internal calls
27926
27927 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
27928
27929         * icall.c: initialize class in type_from_handle ().
27930         Loop also in parent classes for get_method ().
27931         * reflection.c: properly encode class and valuetype types.
27932         Start on encoding TypeBuilder types. Handle fieldrefs.
27933         Use correct length when registering a user string.
27934         Handle ConstructorBuilder and MonoMethod in get_token ().
27935         Make mono_type_get_object () aware of cached types.
27936         * object.c: back out change to mono_string_new ().
27937
27938 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
27939         * object.c: mono_string_new should return a NULL when the string 
27940         passed in is NULL -- not try to deference it.
27941         
27942 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
27943
27944         * icall.c: hack to make IsSubType work for TypeBuilders.
27945         * reflection.c: emit constructors before methods.
27946         Retrieve param names in mono_param_get_objects().
27947
27948 2002/01/05  Nick Drochak  <ndrochak@gol.com>
27949
27950         * Makefile.am: fix list of headers and sources so automake 1.5
27951         doesn't complain. Removed \# at end of list.
27952
27953 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
27954
27955         * reflection.c: get token for a method ref. Set return type of
27956         constructor to void.
27957         * loader.c: debug message.
27958         * class.c: typo fix.
27959
27960 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
27961
27962         * icall.c: fix array init with rank > 1. FindMembers
27963         loops in parent class as well.
27964         * image.c: do not insert nested types in name cache.
27965         * reflection.c: warning fix.
27966         * reflection.h: add override method (for interface impl).
27967
27968 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
27969
27970         * metadata.c: fix customattr decoding.
27971
27972 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
27973
27974         * rawbuffer.cs: Added native Win32 implementation, avoids using
27975         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
27976
27977 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
27978
27979         * class.c: make the low-level routines handle the cache.
27980
27981 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
27982
27983         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
27984
27985 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
27986
27987         * class.c: fix mono_array_element_size() for objects.
27988         * class.h, class.c: add properties to MonoClass and load them
27989         at init time.
27990         * icall.c: check with isinst() when assigning a value to an array
27991         instead of requiring the classes to match exactly.
27992         Implemented icall for System.Type::GetType().
27993         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
27994         enums. Handle bindingflags when looking for methods and fields.
27995         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
27996         and mono_metadata_methods_from_property().
27997         * reflection.h, reflection.c: added structures for propreties,
27998         parameters and enums. Implemented mono_property_get_object() and
27999         mono_param_get_objects().
28000
28001 2001-12-18  Dick Porter  <dick@ximian.com>
28002
28003         * file-io.c: Use mono_string_to_utf16() instead of
28004         mono_string_chars()
28005
28006         * object.c: Added mono_string_to_utf16(), which copies the non
28007         NULL-terminated MonoString into a new double-null-terminated
28008         buffer.
28009
28010 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
28011
28012         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
28013
28014 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
28015
28016         * file-io.c: raise exceptions if handle is invalid.
28017
28018 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
28019
28020         * assembly.c: yet another check for mscorlib.
28021         * class.c, class.h: load nesting info for classes.
28022         * icall.c: many new functions to support the Reflection classes.
28023         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
28024         * reflection.h, reflection.c: mono_image_create_token(),
28025         mono_assembly_get_object(), mono_type_get_object(),
28026         mono_method_get_object(), mono_field_get_object(): methods to return
28027         objects that parallel the C representation of assemblies, types,
28028         methods, fields.
28029
28030 2001-12-11  Dick Porter  <dick@ximian.com>
28031
28032         * icall.c:
28033         * file-io.c: Internal calls for file IO.
28034
28035 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
28036
28037         * tabledefs.h: missing FileAttributes.
28038         * verify.h, verify.c: use is_valid_string () to simplify and check for
28039         valid strings more correctly. Fix warnings and speeling.
28040         Check more tables: Filed, File, ModuleRef, StandAloneSig.
28041         Check code: branches, maxstack, method calls.
28042
28043 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
28044
28045         * object.c (mono_object_allocate): removed static, so that the jit
28046         can allocate value types.
28047
28048         * icall.c (ves_icall_System_DateTime_GetNow): impl.
28049
28050 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28051
28052         * class.c: init enum types right away and register the
28053         token->MonoClass map in mono_class_create_from_typedef ().
28054         * verify.h, verify.c: first cut of the verifier.
28055         * pedump.c: add --verify switch to verify metadata tables.
28056         * tabledefs.h: add some missing enums.
28057
28058 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
28059
28060         * class.c (mono_install_runtime_class_init): impl.
28061         (mono_class_init): renamed mono_class_metadata_init to
28062         mono_class_init, also removed the metadata_inited flag
28063
28064         * object.c (mono_object_isinst): use faster algorithm
28065
28066 2001-11-30  Radek Doulik  <rodo@ximian.com>
28067
28068         * mono-endian.h: reverted last change
28069         added function prototypes
28070
28071         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
28072         add mono-endian.c back
28073
28074         * mono-endian.c: returned back, as Paolo pointed out, it's needed
28075         for unaligned access, I've mistaked it with endianess. I am
28076         sorry.
28077         (mono_read16): fix reverted endianess
28078         (mono_read64): ditto
28079         (mono_read32): ditto
28080
28081 2001-11-30  Dick Porter  <dick@ximian.com>
28082
28083         * exception.c: Implement mono_exception_from_name()
28084
28085 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
28086
28087         * metadata.h, metadata.c: remove params_size and locals_size and their
28088         calculation from the metadata code: they are only usefult to the
28089         interp.
28090
28091 2001-11-29  Radek Doulik  <rodo@ximian.com>
28092
28093         * object.c (mono_ldstr): swap bytes here, it's probably not the
28094         best place, but works for me now, I'll redo it once I know mono
28095         better, also note that I add PROT_WRITE and don't reset back, also
28096         note that it's only affects big endians, so x86 should be OK
28097
28098         * mono-endian.h (read16): use just glib macros for both endians
28099
28100         * mono-endian.c: removed as glib macros are used in in
28101         mono-endian.h so we don't need to care about endianess for read
28102         macros as glib does that for us already
28103
28104 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
28105
28106         * class.h, class.h: take minimum alignment into consideration so
28107         that the fields of a class remain aligned also when in an array.
28108
28109 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28110
28111         * loader.h, loader.c: add mono_method_get_param_names().
28112         * class.c: 0-init class fields.
28113
28114 2001-11-26  Dick Porter  <dick@ximian.com>
28115
28116         * icall.c:
28117         * threads-types.h:
28118         * threads.c: New file that handles System.Threading on all platforms
28119
28120         * object.c: 
28121         * object.h: Remove the synchronisation struct from MonoObject,
28122         replace it with a pointer that gets initialised on demand
28123
28124         * Makefile.am: Replace all the system-specific threading code with
28125         a single file that uses the new wrapper library
28126
28127 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
28128
28129         * class.c, class.h: add mono_install_trampoline() so that the runtime
28130         can register a function to create a trampoline: removes the ugly
28131         requirement that a runtime needed to export arch_create_jit_trampoline.
28132         * object.h, object.c: added mono_install_handler() so that the runtime
28133         can install an handler for exceptions generated in C code (with
28134         mono_raise_exception()). Added C struct for System.Delegate.
28135         * pedump.c: removed arch_create_jit_trampoline.
28136         * reflection.c: some cleanups to allow registering user strings and
28137         later getting a token for methodrefs and fieldrefs before the assembly
28138         is built.
28139         * row-indexes.h: updates and fixes from the new ECMA specs.
28140
28141 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
28142
28143         * class.h, class.c: add enum_basetype field to MonoClass.
28144         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
28145         to get index in the constant table reated to a field, param or
28146         property.
28147         * reflection.h, reflection.c: handle constructors. Set public-key and
28148         version number of the built assembly to 0.
28149         * row-indexes.h: update from new ECMA spec.
28150
28151 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
28152
28153         * class.h, class.c: add a max_interface_id to MonoClass.
28154         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
28155         since it's used to do that. Added mono_type_type_from_obj().
28156         Make GetType() return NULL instead of segfaulting if the type was not
28157         found. Handle simple arrays in assQualifiedName.
28158         * object.h: add a struct to represent an Exception.
28159         * reflection.c: output call convention in method signature.
28160         Add code to support P/Invoke methods and fixed offsets for fields.
28161
28162 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
28163
28164         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
28165         the value.
28166         * icall.c: use mono_array_addr instead of array->vector: fixes the
28167         reflection image writing.
28168         * reflection.c: init call convention byte to 0 in method signature.
28169         Encode the property signature. Don't output property-related methods
28170         twice. Really process the properties for a type (don't cast a field to
28171         a property, my mom always told me that).
28172         Fix 64 bit issues in pointer alignment in a different and more
28173         readable way.
28174
28175 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
28176
28177         * loader.h: Removed type class from MonoDefaults, added monotype
28178
28179         * loader.c: Loaded MonoType, removed loading of Type
28180
28181         * icall.c (my_mono_new_object): Now returns a System.MonoType,
28182         and fills in System.Type._impl with a RuntimeTypeHandle rather
28183         than the actual MonoClass *
28184
28185         (ves_icall_type_from_handle): change from type_class to
28186         monotype_class
28187
28188         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
28189         implemented
28190
28191         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
28192         implemented
28193
28194         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
28195
28196         (ves_icall_System_Reflection_Assembly_GetType): implemented
28197
28198         (ves_icall_System_MonoType_assQualifiedName): implemented
28199
28200         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
28201
28202 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
28203
28204         * assembly.c (mono_assembly_open): Implement a cache for the
28205         assemblies. 
28206
28207         (mono_assembly_close): only destroy the assembly when the last
28208         reference is gone.
28209         
28210 2001-11-09  Dick Porter  <dick@ximian.com>
28211
28212         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
28213
28214 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
28215
28216         * class.c (mono_class_metadata_init): bug fix: compute the right slot
28217
28218 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
28219
28220         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
28221         from Martin Weindel.
28222         * object.h: add mono_string_chars ().
28223
28224 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
28225
28226         * reflection.c (build_compressed_metadata): Eliminates warnings
28227         and uses 64-bit clean code.
28228
28229         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
28230         (mono_type_equal): Change signature to eliminate warnings.
28231
28232 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28233
28234         * icall.c, loader.c: remove the internalcall array constructors.
28235         Changes to match the new MonoArray structure.
28236         * object.h, object.c: an array object doesn't allocate an extra
28237         vector. Add mono_array_new_full () to create jagged arrays easily.
28238
28239 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
28240
28241         * metadata.h, metadata.c: add mono_metadata_field_info () to
28242         retreive all the info about a field from vairous tables.
28243         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
28244         * class.h, class.c: augment MonoClassField with more info.
28245         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
28246         policy and load a field's RVA if needed.
28247
28248 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
28249
28250         * class.c (mono_class_metadata_init): create a trampoline for all
28251         virtual functions instead of actually compiling them.
28252
28253 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
28254
28255         * class.h, class.c: include name in MonoClassField.
28256         * class.c: fix fundamental type of System.Object and System.String.
28257         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
28258         tokens in ldtoken.
28259         * icall.c: remove internalcalls for the Reflection stuff that is now
28260         done in C# code.
28261         * loader.c: mono_field_from_memberref () implementation.
28262         * mono-endian.c: thinko (s/struct/union/g).
28263         * object.c, object.h: make the mono_string_* prototypes actually use
28264         MonoString instead of MonoObject.
28265         * reflection.c, reflection.h: updates for changes in the reflection
28266         code in corlib: we use C structures that map to the actual C# classes.
28267         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
28268         fat method header if needed and use the info from the ILGenerator for
28269         methods. Handle fields in types. Misc fixes.
28270
28271 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
28272
28273         * class.c (mono_class_metadata_init): bug fix: always allocate
28274         space for static class data
28275
28276 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
28277
28278         * class.c (mono_compute_relative_numbering): use relative
28279         numbering to support fast runtime type checks.
28280
28281 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
28282
28283         * class.c (mono_class_create_from_typeref): added debugging output
28284         to print class name when MonoDummy is returned instead of real class
28285
28286 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
28287
28288         * class.c (mono_class_metadata_init): interface offset table now
28289         contains pointers into the vtable - this is more efficient for the jit
28290
28291 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
28292
28293         * class.c (mono_class_metadata_init): use a temporary vtable (the
28294         old algorithm only worked for the interpreter, but not for the jit)
28295
28296 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
28297
28298         * loader.c (method_from_memberref): use mono_class_get to get the
28299         class of an array instead of using System.Array directly.
28300         (mono_get_method): also add MEMBERREF methods to the method cache
28301         which usefull for arrays.
28302
28303 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
28304
28305         * pedump.c (arch_compile_method): added to compute vtable entry
28306
28307         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
28308         number of interfaces.
28309         
28310         * class.h: merged MonoArrayClass into MonoClass
28311
28312         * class.c (mono_class_create_from_typedef): compute the vtable size and
28313         allocate space to include the vtable inside MonoClass
28314         (mono_class_metadata_init): initialize the vtable
28315
28316 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
28317
28318         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
28319         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
28320         * image.c: endian fixes by Laurent Rioux.
28321         * object.h, object.c: rename MonoStringObject to MonoString and
28322         MonoArrayObject to MonoArray. Change some function names to conform to
28323         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
28324         guint16* as first argument, so don't use char*.
28325         Provide macros to do the interesting things on arrays in a portable way.
28326         * threads-pthread.c: updates for the API changes and #include <sched.h>
28327         (required for sched_yield()).
28328         * icall.c: updates for the API changes above.
28329         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
28330         platforms that need them.
28331
28332 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
28333
28334         * class.c: set the correct type for all the fundamental
28335         type when loading the class.
28336
28337 2001-10-05  Dick Porter  <dick@ximian.com>
28338
28339         * threads-pthread.c (pthread_mutex_timedlock): Simple
28340         compatibility version for C libraries that lack this call.
28341
28342 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
28343
28344         * class.c: MonoTypes stored in MonoClass are stored as
28345         fundamental MonoTypes when the class represents a
28346         fundamental type (System.Int32, ...).
28347         The TypeHandle return by ldtoken is a MonoType*.
28348         * icall.c: ves_icall_get_data_chunk () write out all the
28349         PE/COFF stuff. Implement ves_icall_define_method (),
28350         ves_icall_set_method_body (), ves_icall_type_from_handle ().
28351         * image.c: properly skip unknown streams.
28352         * loader.h, loader.c: add type_class to mono_defaults.
28353         * metadata.c, metadata.h: export compute_size () as
28354         mono_metadata_compute_size () with a better interface.
28355         Typo and C&P fixes.
28356         * pedump.c: don't try to print the entry point RVA if there is no entry point.
28357         * reflection.c, reflection.h: many cleanups, fixes, output method
28358         signatures and headers, typedef and typeref info, compress the metadata
28359         tables, output all the heap streams, cli header etc.
28360         * row-indexes.h: typo fixes.
28361
28362 2001-10-04  Dick Porter  <dick@ximian.com>
28363
28364         * object.h: Add a synchronisation mutex struct to MonoObject
28365
28366         * object.c (mono_new_object): Initialise the object
28367         synchronisation mutexes
28368
28369         * icall.c: System.Threading.Monitor internal calls
28370         
28371         * threads-pthread.h:
28372         * threads-pthread.c: System.Threading.Monitor internal calls
28373
28374         * threads-types.h: New file, includes the system-specific thread
28375         structures
28376         
28377         * threads-pthread-types.h:
28378         * threads-pthread-types.c: New files, handle pthread-specific
28379         synchronisation types
28380
28381         * threads-dummy-types.h: 
28382         * threads-dummy-types.c: New files of dummy support for
28383         thread-specific types
28384
28385         * metadata.c:
28386         * image.c:
28387         * pedump.c: include mono-endian.h not endian.h
28388         
28389         * Makefile.am: More threads files.
28390         Name mono-endian.h not endian.h
28391
28392 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
28393
28394         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
28395         stuff and implement a few more bits.
28396         * icall.c: a field needs to be dereferenced twice. Do not use the same
28397         name for two variables in the same scope.
28398         * image.c, image.h: cleanups.
28399
28400 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
28401
28402         * class.c (mono_class_metadata_init): bug fix: compute the right size
28403
28404 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
28405
28406         * icall.c: implemented some of the Reflection internalcalls.
28407         * image.c, image.h: start writing out the PE/COFF image.
28408         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
28409         that does the reverse than decode_blob_size ().
28410         * object.c: use mono_metadata_encode_value (). Move here
28411         temporary implementation of mono_string_to_utf8 ().
28412         * rawbuffer.c: make malloc_map static.
28413
28414 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
28415
28416         * metadata.c: fix type comparison for arrays.
28417         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
28418         Added a couple of new classes to monodefaults.
28419         * icall.c: added a couple of Reflection-related internalcalls.
28420         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
28421         Added a byval_arg MonoType to MonoClass.
28422
28423 2001-09-28  Dick Porter  <dick@ximian.com>
28424
28425         * icall.c:
28426         * threads-pthread.h: 
28427         * threads-pthread.c: Implemented internal calls for
28428         LocalDataStoreSlot operations.  Applied mutexes around all shared
28429         data.  Reworked the thread creation and Start() operations to
28430         avoid a race condition.
28431         
28432         * threads-dummy.h:
28433         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
28434
28435 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
28436
28437         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
28438
28439 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
28440
28441         * class.c, loader.c: warn and return NULL instead of erroring out.
28442         * icall.c: added System.AppDomain::getCurDomain().
28443         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
28444
28445 2001-09-25  Dick Porter  <dick@ximian.com>
28446
28447         * threads-pthread.h:
28448         * threads-pthread.c: Implemented timed thread joining and added
28449         System.Threading.Thread::Join_internal internal call
28450
28451         * icall.c: Added System.Threading.Thread::Join_internal internal call
28452
28453         * threads-dummy.h:
28454         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
28455
28456 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
28457
28458         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
28459         mono_string_intern () to implement the semantics of the ldstr opcode
28460         and the interning of System.Strings.
28461         * icall.c: provide hooks to make String::IsIntern and String::Intern
28462         internalcalls.
28463
28464 2001-09-23  Dick Porter  <dick@ximian.com>
28465
28466         * threads-dummy.c: 
28467         * threads-dummy.h: New files of dummy threading routines
28468
28469         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
28470         support code based on system specifics
28471
28472         Rename PTHREAD_LIBS to THREAD_LIBS
28473         
28474 2001-09-23  Dick Porter  <dick@ximian.com>
28475
28476         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
28477         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
28478         internal calls.
28479         (mono_thread_init): Set up a Thread object instance to return when
28480         the main thread calls Thread.CurrentThread
28481         (mono_thread_cleanup): Wait for all subthreads to exit
28482
28483         * icall.c: New internal calls for System.Threading.Thread::Sleep
28484         (including Schedule) and CurrentThread
28485
28486         * threads.h: New file, to insulate thread-specific stuff from the
28487         rest of the code
28488
28489 2001-09-21  Dick Porter  <dick@ximian.com>
28490
28491         * threads-pthread.h: 
28492         * threads-pthread.c: New file, for handling pthreads-style
28493         threading support.  Start() now starts a new thread and executes
28494         the ThreadStart delegate instance.
28495
28496         * icall.c: Added the internalcall for
28497         System.Threading.Thread::Start_internal
28498
28499         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
28500
28501 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
28502
28503         * loader.c: work around the different signatures for delegates
28504         constructors csc generates in compiled code vs the ones compiled in mscorlib.
28505
28506 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
28507
28508         * class.h, class.c: add mono_class_get_field_from_name ().
28509         * *: Fix C comments and other ANSI C issues.
28510
28511 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
28512
28513         * endian.h, assembly.c: fix some endianness issues.
28514
28515 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
28516
28517         * loader.h, load.c: add delegate_class to mono_defaults.
28518         Handle runtime provided methods in mono_get_method ().
28519
28520 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
28521
28522         * loader.c (mono_get_method): use pinvoke for internal call
28523
28524         * icall.c: use pinvoke for internal call
28525
28526         * loader.c (method_from_memberref): set the method name
28527
28528 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
28529
28530         * metadata.c: help the compiler generate better code for
28531         mono_class_from_mono_type ().
28532
28533 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
28534
28535         * class.c (mono_class_metadata_init): delayed computing of the
28536         class size to mono_class_metadata_init ()
28537
28538 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
28539
28540         * class.c, class.h: add an interfaces member to MonoClass.
28541         * image.c, image.h: add assembly_name field to MonoImage
28542         from the assembly table.
28543         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
28544
28545 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
28546
28547         * class.c: Handle Array in mono_class_from_mono_type ().
28548         * metadata.c, pedump.c: some endian fixes.
28549
28550 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
28551
28552         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
28553         * metadata.c: fix small problem introduced with the latest commit.
28554
28555 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
28556
28557         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
28558         We don't need a MonoMetadata pointer anymore to compare signatures in
28559         mono_metadata_signature_equal (), update callers.
28560         Reduced memory usage an number of allocations for MonoMethodHeader and
28561         MonoMethodSignature.
28562
28563 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
28564
28565         * metadata.c: added compare for szarray.
28566
28567 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
28568
28569         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
28570         and add a couple more types to it and mono_defaults. Give an hint on
28571         classes that need implementing in our corlib and are referenced
28572         in mscorlib.
28573
28574 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
28575
28576         * class.h, class.c: keep track if a class is also an Enum.
28577         * loader.c: Implement a couple more types for use in libffi
28578         marshalling. Gives better diagnostics when failing to dlopen
28579         a library. Set method->klass for P/Invoke methods, too.
28580
28581 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
28582
28583         * class.c, class.h: add a MonoType this_arg to MonoClass that
28584         represents a pointer to an object of the class' type that
28585         can be used by the interpreter and later the type cache.
28586         Add best guess alignment info for valuetype objects.
28587
28588 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
28589
28590         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
28591         into MonoType: one less level of indirection and allocation and
28592         simplifies quite a bit of code. Added cache for MonoTypes that are
28593         used frequently, so that we don't need to allocate them all the time.
28594
28595 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
28596
28597         * class.c (mono_class_create_from_typedef): System.Enum is also a
28598         value type, although it does not derive from System.ValueType
28599         (maybe a bug in the ms compiler?)
28600
28601         * metadata.c (mono_type_size): return the right size for value types
28602
28603         * loader.c (mono_get_method): only initialize method header if not abstract
28604
28605         * class.c (mono_class_from_mono_type): use mono_default values. 
28606
28607 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
28608
28609         * *: use MonoClass pointers instead of <type_tokens>
28610         
28611         * class.h: new flag: metadata_inited.
28612
28613         * class.c (mono_class_metadata_init): impl.
28614         (mono_class_instance_size): impl.
28615         (mono_class_data_size): impl.
28616
28617 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
28618
28619         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
28620         MonoClass now has the name and name_space fields. 
28621         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
28622         mono_get_method () takes and optional MonoClass as argument.
28623         Removed mono_typedef_from_name() and added mono_class_token_from_name()
28624         instead that takes advantage of a map from class names to typedef
28625         tokens in MonoImage.
28626
28627 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
28628
28629         * metadata.c: zero is not a valid alignment boundary.
28630         Merge MONO_TYPE_VOID in default decoding code.
28631
28632 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
28633
28634         * image.h: merged MonoMetadata into MonoImage
28635
28636         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
28637         identify the type of elements.
28638
28639 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
28640
28641         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
28642         * cil-coff.h: split MonoMSDOSHeader and add size info.
28643         * image.c: add some consistency checks.
28644         * metadata.c: fix row size computation: one programmer
28645         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
28646         add explanation for the locator routine.
28647         Fix decoding of size in method header.
28648         
28649 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
28650
28651         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
28652         (g_concat_dir_and_file): Bring g_concat_dir_and_file
28653         function from gnome-libs.  This uses the right path separator
28654         based on the OS, and also works around a bug in some systems where
28655         a double slash is not allowed. 
28656         (default_assembly_name_resolver): Use g_concat_dir_and_file
28657         (mono_assembly_open): ditto.
28658
28659 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
28660
28661         * metadata.c (mono_metadata_signature_equal): impl.
28662
28663         * *: void is now a realy MonoType (instead of using NULL)
28664         
28665         * metadata.c (do_mono_metadata_parse_type): use
28666         mono_metadata_parse_type to parse void value.
28667
28668 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
28669
28670         * metadata.c, metadata.h: in the signature and method header store
28671         only the space required for holding the loca vars and incoming arguments.
28672
28673 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
28674
28675         * metadata.c (do_mono_metadata_parse_type): treat void like any
28676         other type (instead of assigning NULL);
28677
28678 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
28679
28680         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
28681
28682 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
28683
28684         * image.c (do_mono_image_open): added a cache for arrays.
28685
28686 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
28687
28688         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
28689         decode a single column from a row in a metadata table and changes
28690         to take advantage of it in the typedef locator (gives a nice speed up).
28691         Store offset info for function params.
28692
28693 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
28694
28695         * image.h (MONO_IMAGE_IS_CORLIB): removed 
28696
28697 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
28698
28699         * assembly.c: how could mono_assembly_close () had ever worked?
28700         * metadata.c, metadata.h: provide offset info for local vars.
28701         Implement mono_type_size () to take care of alignment as well
28702         as size (it was mono_field_type_size in cli/class.c before).
28703
28704 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
28705
28706         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
28707
28708         * assembly.h (CORLIB_NAME): set to corlib.dll
28709
28710         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
28711
28712 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
28713
28714         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
28715         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
28716         tokentype.h: massive namespace cleanup.
28717
28718 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
28719
28720         * metadata.h, metadata.c: decode exception clauses when parsing method header.
28721
28722 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
28723
28724         * metadata.c (mono_metadata_free_type): added check for type !=
28725         NULL (void) before calling mono_metadata_free_type()
28726
28727 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
28728
28729         * metadata.h, row_indexes.h: added header with enumerations to use
28730         to index in the columns from tables in metadata and to decode coded
28731         tokens: we should start using this instead of embedding magic numbers
28732         all over the code.
28733
28734 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
28735
28736         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
28737         Move metadata_t info from cli_image_info_t to MonoImage, where
28738         it's easily accessible. Changed all the uses accordingly.
28739         Added the method and class caches to MonoImage.
28740         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
28741         and mono_metadata_decode_value () signature to be more consistent
28742         with the other parse functions (and simplify code). Taken advantage
28743         of zero-length array allocation with GCC. Removed reduntant (and
28744         wrong) MonoFieldType struct and use MonoParam instead. Changed
28745         mono_metadata_parse_field_type () to use common code for parsing.
28746         Added mono_metadata_typedef_from_field () and
28747         mono_metadata_typedef_from_method () to lookup a typedef index from a
28748         field or method token.
28749         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
28750
28751 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
28752
28753         * metadata.c (mono_metadata_parse_field_type): Implement. 
28754         (do_mono_metadata_parse_type): Split engine from
28755         mono_metadata_parse_type, so that we can create smaller structures
28756         for things that just have one pointer to the MonoType (look at
28757         the MonoFieldType)
28758
28759 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
28760
28761         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
28762         as Jan Gray found out, it is incorrect. 
28763
28764 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
28765
28766         * assembly.c: Implement asssembly loading.  This loads an image
28767         and loads all the referenced assemblies.  Come to think of it, we
28768         could always do lazy loading of the assemblies. 
28769
28770         * image.c (mono_image_open): Keep loaded images in a hashtable.
28771
28772         * image.h (MonoImage): Add reference count.
28773
28774 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
28775
28776         * assembly.c (mono_assembly_open): Keep track of the file name in
28777         case the assembly has no ASSEMBLY table.
28778
28779         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
28780         from get.c here.
28781
28782 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
28783
28784         * metadata.c, metadata.h: decode local vars in method header
28785         parse function. Change callers accordingly.
28786
28787 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
28788
28789         * metadata.h, cil-coff.h: protect against multiple inclusion.
28790         Added some new structures to hold information decoded from metadata:
28791         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
28792         and relevant decoding/free functions.
28793         * metadata.c: implement decoding functions. Add warning for out of bounds
28794         index in mono_metadata_locate(). Implement mono_get_method () to retreive
28795         all the info about a method signature and invocation. Remove check on
28796         uninitialized local var in parse_mh() and fix memory leak.
28797
28798 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
28799
28800         * metadata.h: More macros.
28801
28802         * tokentype.h: New file.
28803
28804 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
28805
28806         * assembly.c: added a consistency check and initialize
28807         some structures with g_new0().
28808         * metadata.c: fixed a couple more bugs in table size computation
28809         and add other checks for out-of bound access to metadata.
28810
28811 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
28812
28813         * metatada.c: fix bugs computing table sizes. Spew a
28814         warning when index in string heap is out of bounds.
28815
28816 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
28817
28818         * metadata.h: Add a couple of macros to manipulate tokens. 
28819
28820 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
28821
28822         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
28823         cli_section_tables).
28824
28825 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
28826
28827         * metadata.c (mono_metadata_user_string): New function, provides
28828         access to the UserString heap. 
28829
28830 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
28831
28832         * metadata.c: Add inline documentation.
28833
28834 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
28835
28836         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
28837         files. 
28838
28839 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
28840
28841         * typeattr.h: New file, TypeAttribute flags. 
28842
28843 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
28844
28845         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
28846         mono_assembly_ensure_section): Section loading code.
28847         (load_section_tables): Load the sections.
28848
28849         * mono/metadata/metadata.c (mono_metadata_locate_token,
28850         mono_metadata_locate): Functions to locate the information
28851         definition given a token or a table and an index.
28852         (mono_metadata_compute_table_bases): New.
28853         (compute_size): New function to compute the sizes of the various
28854         tables.
28855
28856         * mono/metadata/metadata.h: Finish listing the different index
28857         types. 
28858
28859         * mono/metadata/pedump.c: Improve to dump new information.
28860
28861 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
28862
28863         * mono/metadata/metadata.c: Entered all the tables matching
28864         Beta2. 
28865
28866         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
28867
28868
28869
28870