2009-12-01 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / ChangeLog
1 2009-12-01  Jb Evain  <jbevain@novell.com>
2
3         * class.c (make_generic_param_class): set the namespace of
4         the generic parameter class from its owner, if available.
5
6 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
7
8         * verify.c (code_bounds_check): Do proper overflow checking.
9
10         * verify.c (mono_method_verify): The number of switch entries is
11         an unsigned int. Properly bounds check it.
12
13         Fixes #558594.
14
15 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
16
17         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
18         mono_metadata_method_has_param_attrs which only checks if a given param
19         list has a non zero flags entry.
20
21         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
22         to inform how many params should we expect to decode.
23
24         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
25         as it's faster than mono_metadata_get_param_attrs.
26
27         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
28         add mono_metadata_method_has_param_attrs.
29
30 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
31
32         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
33         failures.
34
35         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
36         is -1 but its class is broken.
37
38         Fixes #558522.
39
40 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
41
42         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
43         for parameter overflow.
44
45         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
46         of mono_metadata_get_param_attrs.
47
48         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
49         API.
50
51         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
52
53 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
54
55         * class.c (mono_class_setup_fields): Check for fields with broken types.
56
57         Fixes #558741.
58
59 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
60
61         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
62         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
63         its TypeBuilder::CreateType ().
64
65         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
66         if not needed.
67
68         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
69         to make setup_interface_offsets happy.
70
71         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
72         compilation now works.
73
74 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
75
76         * appdomain.c (create_exceptions): New helper function extracted from
77         mono_runtime_init () to precreate objects used during exception handling.
78         (mono_runtime_init): Call it.
79         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
80
81 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
82
83         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
84         compilation until the proper one is found.
85
86 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
87
88         * class.c (mono_class_setup_vtable_general): Cache the result of
89         get_virtual_methods () since it can be slow because of the metadata
90         optimization.
91
92         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
93         from a MonoValueHashTable for now, since the later is based on an earlier
94         version of hpj's internal probing code and seems to have serious collision
95         issues.
96
97         * loader.c (mono_get_method_full): Update after the change above.
98
99 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
100
101         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
102
103 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
104
105         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
106         the GTD instead of the DGC instead of crashing.
107
108         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
109         required. Inflate fields if needed.
110
111         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
112         finished. Renamed.
113
114 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
115
116         * class.c (check_interface_method_override): Check for NULL signatures and fail
117         the type.
118
119         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
120
121         Fixes #553428.
122
123 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
124
125         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
126         the MONO_METHOD_FLAGS column instead of decoding the whole row.
127
128 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
129
130         * loader.c (field_from_memberref): Resolve the class first then the field
131         signature. Remove a lot of duplicated code and make sure we don't pass valid
132         values to mono_loader_set_error_field_load.
133
134         Fixes #553306.
135
136 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
137
138         * class.c (inflate_generic_type): Change code to use new signature of
139         mono_error_set_bad_image.
140
141         Fixes #558124.
142
143 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
144
145         * verify.c (mono_method_verify): Don't free ctx.params items if 
146         we aborted while inflating the ctx.locals. Complete previous fix
147
148 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
149
150         * verify.c (mono_method_verify): Use the uninflated type name, 
151         when the inflated is null, to report errors. Also take care when
152         freeing, not to free everything since, in case of an error, some
153         stuff would be copies (i.e. not allocated by the function itself)
154         Fix bug #558145
155
156 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
157
158         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
159         or overflow. The caller must have done this check explicitly. This guard us
160         from accessing invalid memory.
161
162         * verify.c (do_push_static_field): Check for stack overflow.
163
164         Fixes #553333.
165
166 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
167
168         * loader.c (find_method_in_class): Don't crash if the signature cannot
169         be resolved.
170
171         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
172         of asserting for the case of invalid params.
173
174         Fixes #553304.
175
176 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
177
178         * image.c (mono_image_load_module): Fix crash when a bad assembly
179         has no module at all (fix bug #553412) and also replace the 
180         g_assert with a return NULL (documented return value for failure)
181
182 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
183
184         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
185
186 2009-11-23  Miguel de Icaza  <miguel@novell.com>
187
188         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
189         file attribute to managed code and avoid doing the mask/attribute
190         checks here. 
191
192 2009-11-22  Miguel de Icaza  <miguel@novell.com>
193
194         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
195         the managed world.
196
197         * icall-def.h: New entry points.
198         
199 2009-11-19  Mark Probst  <mark.probst@gmail.com>
200
201         * process.c: Don't put references to managed objects into a
202         g_ptr_array.
203
204 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
205
206         * class.c (can_access_internals): Allow CoreCLR to participate in
207         allowing (or not) [InternalsVisibleTo] between assemblies.
208         * security-core-clr.c|h: Make sure that only trusted code (a 
209         superset of platform code) can access the internals of platform
210         code.
211
212 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
213
214         * reflection.c: use the correct base class to get the virtual method
215         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
216
217 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
218
219         * security-core-clr.c (get_caller_no_reflection_related): 
220         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
221         it's still reflection and must be filtered correctly.
222
223 2009-11-16  Mark Probst  <mark.probst@gmail.com>
224
225         * object.c (compute_class_bitmap): Fix for large bitmaps.
226
227 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
228
229         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
230
231         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
232         koush@koushikdutta.com). Disable GC_no_dls on android.
233
234 2009-11-12  Mark Probst  <mark.probst@gmail.com>
235
236         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
237         tlab_next points outside the TLAB because the allocator was
238         interrupted.
239
240 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
241
242         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
243
244 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
245
246         * object-internals.h: Change signature for mono_string_to_utf8_image.
247
248         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
249         argument.
250
251         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
252         exceptions due to mono_string_to_utf8.
253
254 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
255
256         * object-internals.h: Change signature for mono_string_to_utf8_mp.
257
258         * object.c (mono_remote_class): Make sure all resources are released before
259         raising an exception.
260
261         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
262
263 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
264
265         * mono-perfcounters.c (network_get_impl): Change variable initialization
266         ordering to fix potential memory leak in case of exceptions.
267
268         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
269         encoded strings.
270         
271 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
272
273         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
274         variable initialization ordering to fix potential memory leak in case
275         of exceptions.
276
277 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
278
279         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
280         needed.
281
282 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
283
284         * appdomain.c: Fix shadow path code to better deal with exceptions.
285
286 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
287
288         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
289         exception in the middle of the runtime code.
290
291 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
292
293         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
294         leak memory with broken envvar value.
295
296 2009-11-06  Mark Probst  <mark.probst@gmail.com>
297
298         * reflection.c (mono_reflection_setup_internal_class): Because
299         nested classes are not added to the name cache, we must put them
300         in the reflection_info_unregister_classes list.
301
302 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
303
304         * class.c: When CoreCLR is enabled don't call mono_init_com_types
305         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
306         platform (trusted) code. Instead we return a TypeLoadException to
307         be thrown later. This is the exception thrown by Silverlight 2 if
308         a type, inside application (user) code is marked with [ComImport]
309
310 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
311
312         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
313         mono_is_debugger_attached () too.
314
315         * mono-debug.c (mono_is_debugger_attached): New helper function.
316         (mono_set_is_debugger_attached): Ditto.
317
318 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
319
320         * object-internals.h: Add mono_string_to_utf8_checked.
321
322         * object.c: Implement mono_string_to_utf8_checked.
323
324 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
325
326         * class.c: Add missing check for load errors after every
327         call to mono_class_setup_fields
328
329         Fixes #552282.
330
331 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
332
333         metadata-verify.c (verify_tables_schema): Fix the error message.
334
335 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
336
337         * metadata.c: Change event table schema to use TDOR for event type
338         as this is what it's meant to be.
339
340         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
341         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
342         entry.
343
344         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
345         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
346         rows in MONO_TABLE_GENERICPARAM.
347
348         Fixes #552289.
349
350 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
351
352         * class.c (mono_image_add_to_name_cache): Assert on duplicate
353         insertion.
354
355         * reflection.c (mono_reflection_setup_internal_class): Avoid
356         registering a gc root the same MonoClass multiple times.
357         Don't register nested types on the global scope as they should
358         not be available there.
359
360 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
361
362         * culture-info-tables.h: regenerated.
363
364 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
365
366         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
367
368 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
369
370         * string-icalls.c|h: Remove string internal calls that are not 
371         used anymore by the class libraries.
372         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
373         which is not used in the class librairies.
374         * icall-def.h: Update tables.
375
376 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
377
378         * class.h: Move mono_class_inflate_generic_type_checked...
379
380         * class-internals.h: to here and make it internal. We don't want to
381         further expose MonoGenericContext. 
382
383 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
384
385         * verify.c (mono_method_verify): Improve error message.
386
387 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
388
389         * reflection.c (fieldref_encode_signature): If field_image is NULL then
390         the token is already properly encoded. Fixs 4.0 build.
391
392 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
393
394         * locales.c (construct_number_format): Check if the number index is
395         valid before trying to use it, if not, just return.
396         
397 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
398
399         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
400         since that loses the abort state. Fixes #539394.
401
402 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
403
404         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
405         explicit this argument to the call signature.
406         (mono_marshal_get_icall_wrapper): Ditto.
407
408 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
409
410         * reflection.c (fieldref_encode_signature): Add new field_image parameter
411         to indicate which assembly to use when resolving a custom-mod.
412
413         Fixes handling of volatile fields used across assemblies as reported in #551513.
414
415 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
416
417         * loader.c: Improve error messages.
418
419 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
420
421         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
422         of interfaces. Fixes IKVM.
423
424         * class.c (mono_class_setup_vtable_general): Improve debug spew.
425
426 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
427
428         * verify.c (verifier_inflate_type): Return the inflated type on success.
429
430 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
431
432         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
433
434         * threads.c (mono_thread_attach): Call the profiler thread start callback.
435
436         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
437
438         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
439         flag set.
440
441         * profiler.c: Add new profiler callbacks for runtime invoke.
442
443         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
444
445 2009-11-01  Mark Probst  <mark.probst@gmail.com>
446
447         * sgen-gc.c: Keep track of the reason for a major collection and
448         write it to the heap-dump file.
449
450 2009-10-31  Miguel de Icaza  <miguel@novell.com>
451
452         * threads.c: refactor the code that initializes the
453         thread_start_args into a reusable function and use this in the two
454         methods that start up threads.
455
456 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
457
458         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
459         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
460
461 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
462
463         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
464         Until now, we only had the per-cpu(core) counters.
465
466 2009-10-28  Mark Probst  <mark.probst@gmail.com>
467
468         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
469         mono_gc_get_suspend_signal(), which returns the suspend signal
470         number used by the GC.
471
472 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
473
474         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
475
476         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
477         signalling start_notify.
478
479 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
480
481         * appdomain.c: do not test the st_mode field for shadow-copies.
482         Fixes bug #545276.
483
484 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
485
486         * threadpool.[ch]: added hooks for thread start/finish and item
487         processing begin/end. For monotouch use only.
488
489 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
490
491         * threads.c (mono_thread_get_name): New helper function.
492
493         * reflection.c (resolve_object): Set handle_class for strings too.
494         (mono_reflection_create_custom_attr_data_args): New helper function to decode
495         a cattr blob into a set of arrays and structures without creating the custom
496         attributes themselves.
497         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
498
499         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
500
501         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
502         function.
503
504 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
505
506         * verify.c: Replace calls to mono_class_inflate_generic_type with
507         mono_class_inflate_generic_type_checked. Fixes #480005.
508
509 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
510
511         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
512         object since not all paths lead to callees initing it.
513
514 2009-10-23  Alp Toker  <alp@nuanti.com>
515
516         Fix embedding API breakage from r144688. mono-compiler.h is an internal
517         header and should not be shipped:
518
519         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
520         which is specific to the mono build. Not going to work.
521
522 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
523
524         * security-manager.c: Report if core-clr is active from
525         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
526         to allow Moonlight BCL to behave appropriately (both in browser
527         and outside, e.g. smcs)
528
529 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
530
531         * mono-config.c: ignore UTF-8 BOM and report parser errors.
532         Fixes bug #549108.
533
534 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
535
536         * class.c: fix typo.
537
538 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
539
540         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
541         a MonoError parameter.
542
543         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
544         version that can does proper error handling.
545
546         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
547
548         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
549
550         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
551
552 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
553
554         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
555         NO_UNALIGNED_ACCESS is defined.
556
557 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
558
559         * marshal.c (mono_string_builder_to_utf16): Applied patch from
560         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
561         Fixes #549173.
562
563 2009-10-22  Mark Probst  <mark.probst@gmail.com>
564
565         * sgen-gc.c: Shorten sections whenever possible.
566
567 2009-10-22  Mark Probst  <mark.probst@gmail.com>
568
569         * sgen-gc.c: Use our portable semaphore #defines.
570
571 2009-10-22  Mark Probst  <mark.probst@gmail.com>
572
573         * sgen-gc.c: A debug option for dumping the heap layout to a file
574         after each collection.
575
576 2009-10-21  Mark Probst  <mark.probst@gmail.com>
577
578         * sgen-gc.c: Make managed write barriers atomic via
579         thread-restarts.
580
581 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
582
583         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
584         methods. Fixes #543021.
585
586 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
587
588         * socket-io.[ch]: fix VS build.
589
590 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
591
592         * icall-def.h:
593         * socket-io.[ch]: implemented SendFile.
594
595 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
596
597         * class.c (mono_class_create_from_typedef): Initialize class->element_class
598         before the interfaces to avoid crashes later if class initialization fails.
599         Fixes #548417.
600
601         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
602         Fixes #548276.
603
604 2009-10-20  Marek Safar  <marek.safar@gmail.com>
605
606         * domain.c: Bump 4.0 version.
607
608 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
609
610         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
611         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
612         check since 'pubkey' can't be NULL at this stage
613         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
614         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
615         initialization of 'iter'
616
617 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
618
619         * cominterop.c : Search the interface parts of vtable to find 
620           method matches.  Fixes 547030.
621
622         Code is contributed under MIT/X11 license.
623
624 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
625
626         * marshal.c: BeginInvoke cannot be called on multicast delegates with
627         multiple targets. Fixes bug #574426.
628
629 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
630
631         * profiler.h: Put here the definition of
632         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
633         (and fix the build...).
634
635 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
636
637         * profiler.c, profiler.h, profiler-private.h:
638         Added support for different ways of getting call chains in stat mode.
639
640 2009-10-12  Mark Probst  <mark.probst@gmail.com>
641
642         * object.c, object-internals.h: New function for computing the
643         size of an array, factored out of mono_array_new_full().  Use
644         SGen's functions for allocating arrays and vectors.
645
646         * sgen-gc.c, gc-internal.h: Special functions for allocating
647         arrays and vectors without race conditions.  A managed array
648         allocator method.
649
650         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
651
652 2009-10-12  Mark Probst  <mark.probst@gmail.com>
653
654         * object.c, object.h, icall.c: Write barriers do the copying now,
655         as well, so no need for an additional memcpy.
656
657         * sgen-gc.c: Lock when storing remsets.  Do the memory
658         copying/moving in the write barriers.
659
660         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
661
662         * reflection.c: Added an assert.
663
664 2009-10-12  Mark Probst  <mark.probst@gmail.com>
665
666         * threads.c, process.c: A few missing write barriers.
667
668 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
669
670         * mono-perfcounters.c, mono-perfcounters-def.h: Add
671         network performance counters for bytes sent per second, bytes
672         received per second, and bytes total per second.
673
674         Code is contributed under MIT/X11 license.
675
676 2009-10-09  Mark Probst  <mark.probst@gmail.com>
677
678         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
679         Fix warning.
680
681 2009-10-09  Mark Probst  <mark.probst@gmail.com>
682
683         * threads.c, object-internals.h, object.c: Move code for
684         transferring an object to a different domain (via
685         serialization/remoting) to object.c.
686
687         * object.c (call_unhandled_exception_delegate): If the exception
688         is in a different domain than the delegate, transfer the exception
689         to that domain.
690
691 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
692
693         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
694         Fixes #322934.
695
696 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
697
698         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
699
700 2009-10-06  Mark Probst  <mark.probst@gmail.com>
701
702         * object.c (mono_method_return_message_restore): Handle the case
703         where the argument is an instance of a generic type.  Fixes
704         #544446.
705
706 2009-10-06  Mark Probst  <mark.probst@gmail.com>
707
708         * object.c (set_value): Write barrier fix - we must pass the
709         count, not the size.
710
711 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
712
713         * domain.c (mono_init_internal): Print a useful error message when encountering
714         an old mscorlib, instead of crashing. Fixes #544307.
715
716 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
717
718         * appdomain.c (copy_app_domain_setup): Fix a warning.
719
720         * debug-helpers.c (dis_one): Ditto.
721
722 2009-10-04  Mark Probst  <mark.probst@gmail.com>
723
724         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
725         into the new domain, instead of referencing the original one.
726
727         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
728         non-static.
729
730         * appdomain.c: Corlib version bump.
731
732 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
733
734         * threadpool.c: one more...
735
736 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
737
738         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
739         threads to die because we're shutting down. delgate5.exe works again.
740
741 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
742
743         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
744           ccw_interface_hash table when a ccw is finalized.
745
746         Code is contributed under MIT/X11 license.
747
748 2009-09-30  Mark Probst  <mark.probst@gmail.com>
749
750         * assembly.c, domain.c, image.c, metadata-internals.h: Split
751         domain and image unloading into two steps.  We must do this
752         because clearing the domain in SGen requires the class metadata to
753         be intact, but we need to free the mono_g_hash_tables in case a
754         collection occurs during domain unloading and the roots would trip
755         up the GC.
756
757 2009-09-30  Mark Probst  <mark.probst@gmail.com>
758
759         * object-internals.h: Remove serialized culture fields from
760         MonoInternalThread.
761
762         * icall-def.h, thread-types.h, threads.c: Remove serialized
763         culture icalls.
764
765         * appdomain.c: Corlib version bump.
766
767 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
768
769         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
770         Fixes #543133.
771
772 2009-09-30  Mark Probst  <mark.probst@gmail.com>
773
774         * sgen-gc.c: Try to shorten the new section after a major
775         allocation to avoid ever-growing sections.
776
777 2009-10-13  Martin Baulig  <martin@ximian.com>
778
779         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
780         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
781         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
782         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
783
784         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
785
786 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
787
788         * threadpool.c: fixed the order in which 'completed' and the wait
789         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
790         No need to use the wait_handle field of ASyncCall. Make sure the
791         threadpool is active when adding a job or queueing an idle thread.
792
793 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
794
795         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
796
797         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
798         when using --compile-all.
799
800 2009-09-27  Mark Probst  <mark.probst@gmail.com>
801
802         * metadata.c (free_generic_class): Unregister the field_objects
803         roots if we're using SGen.
804
805 2009-09-27  Mark Probst  <mark.probst@gmail.com>
806
807         * reflection.c (mono_dynamic_image_free): Deregister the GC root
808         for GenericParamTableEntry.gparam.
809
810 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
811
812         * marshal.c: don't create the handle when calling. It is created later
813         if needed.
814
815 2009-09-26  Mark Probst  <mark.probst@gmail.com>
816
817         * sgen-gc.c: Warning fixes.
818
819 2009-09-26  Mark Probst  <mark.probst@gmail.com>
820
821         * sgen-gc.c: New debug option "xdomain-checks", which scans the
822         whole heap for cross-domain references before each collection.
823
824         * sgen-scan-object.h: The scan action can now use SCAN to scan the
825         object.
826
827         * threadpool-internals.h, threadpool.c: New function
828         mono_thread_pool_is_queue_array() for checking whether a given
829         array is used as a (cross-domain) queue by the thread pool code.
830
831 2009-09-26  Mark Probst  <mark.probst@gmail.com>
832
833         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
834         searches the whole heap for objects containing a specific
835         reference.  Only for debugging.
836
837 2009-09-26  Mark Probst  <mark.probst@gmail.com>
838
839         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
840
841         * icall-def.h, threads.c, threads-types.h: New icalls for copying
842         byte arrays between domains.
843
844 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
845
846         * threadpool.c:
847         * class-internals.h:
848         * mono-perfcounters-def.h:
849         * mono-perfcounters.c:
850         -There is a list of idle threads
851         -Each of those idle threads wait on their own WaitHandle instead
852         of all of them using the same semaphore. When a new work item is
853         added, the job is assigned directly to an idle thread or a newly
854         created one if possible and then the handle for that thread is
855         signaled. Compare that to the current approach where all the
856         threads in the pool compete to dequeue a job from the same
857         queue.
858         -New struct ThreadPool that brings together the bunch of static
859         variable for each threadpool (IO and regular).
860         -New performance counters: # of items added and its rate per
861         threadpool. The rate will be used later, perhaps together with
862         other perf. counters, to decide when idle threads should exit.
863
864 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
865
866         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
867         Fix typo on Windows build.      
868         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
869         
870         Code is contributed under MIT/X11 license.
871
872 2009-09-25  Mark Probst  <mark.probst@gmail.com>
873
874         * object-internals.h: The Thread class is split up into Thread and
875         InternalThread now.  We have exactly one InternalThread per
876         thread, and at most one Thread per appdomain per thread.  Most
877         data is stored in InternalThread.  All InternalThread objects live
878         in the root domain.
879
880         * class-internals.h: Add internal_thread_class to MonoDefaults.
881
882         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
883         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
884         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
885         resulting from the split of the Thread class.
886
887         * gc-internal.h: Prototype for new function for checking whether a
888         thread is the finalizer thread.
889
890         * appdomain.c: Corlib version bump.
891
892 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
893
894         * appdomain.c|h: Add a mono_domain_try_unload method which is
895         equivalent to mono_domain_unload, except that it returns an exception
896         instead of throwing it. Make mono_domain_unload use the
897         mono_domain_try_unload method to avoid code-duplication.
898
899 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
900
901         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
902         a problem.
903
904 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
905
906         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
907         aborting when a conversion is not implemented.
908
909 2009-09-23  Miguel de Icaza  <miguel@novell.com>
910
911         * verify.c: when comparing culture strings, use g_ascii_strcmp
912
913         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
914         when comparing public key tokens to use memcmp on 16 bytes.   I do
915         not believe this ever worked as advertised in the past.
916
917         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
918         which would have always failed earlier.
919
920 2009-06-25  Miguel de Icaza  <miguel@novell.com>
921
922         * gc.c: Raise a NullArgumentException if the object passed is
923         null.
924
925 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
926
927         * image.c (mono_image_close): Atomically decrement the reference count and
928         remove the image from the hash tables, to prevent another thread from seeing a
929         dying MonoImage. Fixes #541194.
930
931 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
932
933         * threadpool.c: actually use the minimum number of 'completion ports'
934         (for us is just a potential worker thread).
935
936 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
937
938         * threadpool.c: remove ares_htable. It does not make sense any more
939         since the same objects are now stored in GC-tracked arrays while they are
940         in the queue.
941
942 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
943
944         * threadpool.c: increase the minimum length of the queues to 128.
945         Remove warning.
946
947 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
948
949         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
950         return the modified signature used by string ctors.
951
952 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
953
954         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
955         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
956         method, to be used by full-aot.
957
958 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
959
960         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
961         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
962         be known to be good.
963
964         * class.c (mono_class_init): Fail array types if their element type fails initialization
965         as well.
966
967         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
968         initialization, additionally we request the element_type vtable to be initialized as well.
969
970         This is fine and should not increase the working set in any meaningful way since it's reasonable
971         to assume       that most code will create an array and eventually populate it, which will require the
972         type's vtable to be initialized.
973
974         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
975
976 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
977
978         * normalization-tables.h : regenerated.
979
980 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
981
982         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
983         a leb128 encoding can take up to 5 bytes.
984
985 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
986
987         * class.c (verify_class_overrides): Remove useless argument.
988
989         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
990         before interface enumeration as this is no longer required.
991
992 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
993
994         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
995         used under mono_class_init context. This functions avoid any code path that
996         calls mono_class_init, which leads it to be slow as some things like the interface
997         bitmap are not available.
998
999         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
1000         of it's own broken version. Fixes the verifier part of #538588.
1001
1002         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
1003         API.
1004
1005 2009-09-15  Mark Probst  <mark.probst@gmail.com>
1006
1007         * class.c (mono_class_init): Always set an exception in a class if
1008         vtable setup fails.  Fixes #538577.
1009
1010         * generic-sharing.c: Raise an exception if mono_class_vtable()
1011         returns NULL.
1012
1013 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
1014
1015         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
1016         methods of vtypes, as they could be incorrectly shared with static methods
1017         taking an IntPtr argument.
1018
1019 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
1020
1021         * domain.c:
1022         * object.c:
1023         * class-internals.h: renamed waithandle_class to
1024         manualresetevent_class.
1025         * marshal.c: propagate the exception if a remoting BeginInvoke call
1026         fails.
1027
1028 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1029
1030         * object.c: Properly handle vtable failures.
1031
1032 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1033
1034         * socket-io.c: Assert on vtable failure.
1035
1036         * mono-mlist.c: Assert on vtable failure.
1037
1038 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1039
1040         * marshal.c: Assert on vtable failure.
1041
1042 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1043
1044         * icall.c: Properly handle vtable failures.
1045
1046 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1047
1048         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
1049
1050 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1051
1052         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
1053
1054         * console-unix.c (do_console_cancel_event): Same.
1055
1056 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1057
1058         * class-internals.h: Add mono_class_vtable_full function that allows control
1059         if an exception should be raised or not.
1060
1061         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
1062         to do what its documentation say, that is to return NULL and set exception_type on
1063         failure.
1064
1065         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
1066         and change the code to honor it.
1067
1068 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1069
1070         * verify.c: Fix typo in error message.
1071
1072 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
1073
1074         * security-core-clr.c: Fix default_platform_check so it can run
1075         the runtime coreclr tests (without an infinite recursion when
1076         throwing an exception).
1077
1078 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1079
1080         object.c (mono_delegate_ctor_with_method): Guard against null method.
1081
1082 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1083
1084         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
1085         that should be replaced with error handling later.
1086
1087 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1088
1089         * marshal.c (mono_delegate_end_invoke): Fix warning.
1090
1091 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1092
1093         * loader.c (mono_field_from_token): Properly handle invalid
1094         dynamic tokens.
1095
1096 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1097
1098         * pedump.c (verify_image_file): Skip types that can't be
1099         decoded.
1100
1101 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1102
1103         * verify.c: Look for recursive valuetypes only against the
1104         type been initialized as this is a lot simpler and works.
1105
1106 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1107
1108         * verify.c: Ensure that fields are properly loaded before
1109         checking them.
1110
1111 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
1112
1113         * object.c (mono_object_get_virtual_method) : Call 
1114           mono_cominterop_get_invoke if the object is a COM object.
1115
1116         Code is contributed under MIT/X11 license.
1117
1118 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
1119
1120         * verify.c: Check for recursive valuetype definitions.
1121
1122 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
1123
1124         Use inheritance-aware interface offsets. Inherited types use the same offsets
1125         of their parents. This reduce offset duplication in case more than one type in
1126         the inheritance tree explicitly implements the same interface.
1127
1128         This also removes a source of vtable bubbles found in #532409. An abstract type
1129         isn't required to provide abstract methods to all interfaces it implements, which
1130         resulted in a bubble with the previous scheme as the child would get a non-full
1131         vtable from its parent. We fail all concrete types with vtable bubbles, so this
1132         should be fixed.
1133
1134         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
1135         it's expected to not cause any significant increase beyond that.
1136
1137         * class.c (setup_interface_offsets): Compute super class iface offsets
1138         first to force sharing.
1139
1140         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
1141         dumping only the relevant ones.
1142
1143         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
1144         methods a new slot regardless if they belong to an interface or not. This allows
1145         an inherited type to override the iface method separately from the class one.
1146
1147 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
1148
1149         * threadpool.c: make the Sleep() alertable to prevent delays exiting
1150         applications that take less than 2s to execute.
1151         Bug #524984 fixed.
1152
1153 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
1154
1155         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
1156
1157         * object.c (mono_get_runtime_callbacks): New helper function to return
1158         the runtime callbacks.
1159
1160         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
1161         mono_get_runtime_build_info () as the display name.
1162         
1163 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
1164
1165         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
1166         argument, since NEWARR expects a native int. Fixes #481559.
1167
1168 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1169
1170         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
1171         against broken SRE methods.
1172
1173 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1174
1175         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
1176         a NULL variable. Abort early on failure.
1177
1178 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1179
1180         * class.c (can_access_type): Fail visibility test for non nested
1181         types with nested visibility.
1182
1183 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
1184
1185         * assembly.c (parse_public_key): Avoid allocating (and not 
1186         freeing) the public key array when it's not requested by the 
1187         caller.
1188         * threads.c (mono_thread_manage, mono_thread_create_internal, 
1189         ves_icall_System_Threading_Thread_Thread_internal): Free 
1190         allocated memory on error.
1191
1192 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1193
1194         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
1195
1196 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1197
1198         * class.c (mono_class_setup_fields): Remove duplicated local variable
1199         named gklass.
1200         Rename gklass to gtd to reflect the fact that it points to the generic
1201         type definition.
1202         Remove the duplicated call to mono_class_setup_fields on gtd and move
1203         the error check to the beginning.
1204
1205 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1206
1207         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
1208         Remove cruft of the previous patch.
1209
1210 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1211
1212         * metadata-verify.c (verify_method_table): Check for abstract + final.
1213         Fixes #534175.
1214
1215 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1216
1217         * verify.c (verify_class_fields): Check for duplicate fields.
1218
1219 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1220
1221         * metadata-verify.c: Verify the typeref table for duplicates.
1222
1223 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1224
1225         This reverts r140936 and properly handles interfaces with static methods. The
1226         right fix is to ensure vtables without bubles which is an easier to verify
1227         constraint. We should avoid such special cases as of the reverted patch as those
1228         only make the runtime more brittle.
1229
1230         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
1231         static methods on interfaces.
1232
1233         * class.c (setup_interface_offsets): Use the number of virtual methods when
1234         calculating interface offsets instead of the number of methods. This way we
1235         avoid bubles on the layout.
1236
1237 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
1238
1239         * metadata-verify.c (verify_metadata_header): Some very smart
1240         obfuscators like to add extra stream headers. Ignore them.
1241
1242 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
1243
1244         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
1245         methods correctly.
1246
1247 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
1248
1249         * metadata-verify.c: Verify for duplicated types.
1250
1251 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
1252
1253         * metadata-verify.c (verify_typedef_table): Verify for nested types
1254         without an entry on the nested class table.
1255
1256 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
1257
1258         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
1259         <tom_hindle@sil.org>. Add locking around hash table accesses.
1260
1261 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1262
1263         * verify.c (mono_verifier_verify_class): Verify all interface if
1264         really are interfaces. Fixes #534184.
1265
1266 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
1267
1268         * pedump.c: Initialize all types during metadata validation so we report
1269         errors only detected as part of class initialization.
1270
1271 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
1272
1273         * metadata-verify.c (verify_method_table): PInvoke requires method to
1274         be static. Fixes #534189
1275
1276 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
1277
1278         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
1279         being NULL.
1280
1281 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1282
1283         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
1284         for holes or bad methods. Fixes #525314.
1285
1286 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1287
1288         * class.c (setup_interface_offsets): Don't allocate slot
1289         for the same interface multiple times. This creates bubbles
1290         that waster space and make vtable verification harder.
1291
1292         The same interface get a slot multiple times since we need
1293         to get the closure of all implemented interfaces, which means
1294         the same interface is reported multiple times.
1295
1296 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1297
1298         * verify.c (mono_verifier_verify_class): Don't check the fields
1299         of generic instances since the context on which they got expanded
1300         might lead to false positives.
1301
1302         Such thing happens when a generic type is inflated in the context
1303         of a generic method and the inflated type of a field turns into a
1304         generic method argument, which causes the checking code to think
1305         it's an invalid class when it's not.
1306
1307 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1308
1309         * verify.c (mono_type_is_valid_in_context): Verify if type
1310         is NULL and remove duplicate test.
1311
1312 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1313
1314         * verify.c (mono_verifier_verify_class): Check fields for
1315         invalid generic arguments.
1316
1317 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1318
1319         * class.c (verify_class_overrides): Verify if for static
1320         and non virtual methods.
1321
1322 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1323
1324         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
1325         Check for errors after retrieving the vtable.
1326
1327 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1328
1329         * class.c (mono_class_setup_vtable_general): Verify
1330         if method overrides are valid before processing them.
1331
1332 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1333
1334         * marshal.c (mono_array_to_lparray): Fix minimal build with
1335         cominterop disabled.
1336
1337         * marshal.c (mono_free_lparray): Same.
1338
1339 2009-08-21  Mark Probst  <mark.probst@gmail.com>
1340
1341         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
1342         the hash function for the ares_htable.
1343
1344 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
1345
1346         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
1347         bit for assembly flags. MS is ok with it but there is no spec anywhere
1348         on its mean
1349
1350 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1351
1352         * class.c (mono_class_create_from_typedef): Emit profiler events
1353         in all cases.
1354
1355 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1356
1357         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
1358         Release memory on failure.
1359
1360 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1361
1362         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
1363         to the internal API.
1364
1365         * metadata.c (get_constraints): Use a single-linked table as we don't
1366         traverse it backward. Fail and return FALSE if only of the contraint types
1367         is not found.
1368
1369         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
1370         to mono_metadata_load_generic_param_constraints except for having a return value.
1371         This has to be done since the later is part of the public API.
1372
1373         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
1374         and fail the type.
1375
1376         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
1377         and fail the method.
1378
1379 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1380
1381         * metadata-verify.c (is_valid_method_header): Add work-around to deal
1382         with MS broken behavior of emmitting EH section sizes without the
1383         header size added.
1384
1385 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1386
1387         * metadata.c (mono_type_create_from_typespec): Don't allocate image
1388         memory until we're sure that we'll need it. This avoids leaking for
1389         broken types or duplicated instantiation.
1390
1391 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1392
1393         * metadata-verify.c (is_valid_method_header): Fix stupid formating
1394         mistake.
1395
1396 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1397
1398         * metadata-verify.c (is_valid_method_header): Fix number of clauses
1399         and expected size calculation.
1400
1401 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1402
1403         * class.c (mono_class_get_field_idx): Add fixme for broken
1404         behavior for types with multiple fields with the same name.
1405         I would rather fix it, but have no idea on how to generate
1406         such artifact for testing.
1407
1408 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1409
1410         * verify.c (verifier_load_field): We should allow references to
1411         fields to be made using the generic type definition. It's up to
1412         the loader system to fail invalid ops.
1413
1414         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
1415         are invalid.
1416
1417 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1418
1419         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
1420
1421         * metadata-internals.h: Fix declaration of 
1422         mono_metadata_interfaces_from_typedef_full.
1423
1424         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
1425         heap_alloc_result parameter that controls if the result should be
1426         g_malloc'd.
1427
1428         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
1429         array be g_malloc'd and properly document this public API function.
1430
1431 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1432
1433         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
1434         remove METHOD_HEADER_TINY_FORMAT1.
1435
1436         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
1437
1438         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
1439
1440         Both spec and MS uses only 2 bits to enumerate the kind of header.
1441         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
1442         is superfluous, only used for tiny headers with odd code lengths.
1443
1444         This change also make sure that mono doesn't wronly interpret bit 2
1445         of fat header flags, which is currently reserved.
1446
1447 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1448
1449         * metadata.c (do_mono_metadata_parse_type): Do error
1450         checking for element types. Don't abort if presented
1451         with a broken type kind.
1452
1453 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1454
1455         * metadata.c (mono_metadata_parse_method_signature_full):
1456         Gracefully fail bad vararg signatures.
1457
1458 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1459
1460         * profiler.c:
1461         * class.c: Fix warnings for uninitialized variables.
1462
1463 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1464
1465         * icall.c: Fix _NSGetEnviron method declaration warning.
1466
1467 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1468
1469         * icall.c:
1470         * reflection.c: Make bitwise checks explicit.
1471
1472 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1473
1474         * debug-helpers.c:
1475         * marshal.c: Fix printf warnings.
1476
1477 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
1478
1479         * reflection.c (encode_cattr_value): Fix a warning.
1480
1481 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1482
1483         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
1484         of array bounds.
1485
1486 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1487
1488         * loader.c (mono_method_signature): Don't assert on broken
1489         signature. Print a more useful error message.
1490
1491 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1492
1493         * loader.c (mono_method_get_marshal_info): Assert if
1494         signature is invalid. Bounds check stores to the
1495         mspecs array;
1496
1497 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1498
1499         * loader.c (field_from_memberref): Fix warning.
1500
1501 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1502
1503         * loader.c (mono_method_get_param_names): Check if signature
1504         is null. Don't store beyond the size of the name array.
1505
1506 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1507
1508         * loader.c (mono_get_method_constrained): Check if signature
1509         is null.
1510
1511 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1512
1513         * loader.c (mono_loader_set_error_bad_image): Improve
1514         error messages.
1515
1516 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1517
1518         * loader.c (mono_get_method_full): Convert an assertion
1519         into a loader error.
1520
1521 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1522
1523         * class-internals.h, class.c: Better naming and documentation.
1524
1525 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
1526
1527         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
1528         obj is NULL.
1529
1530 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1531
1532         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
1533         parsing fails.
1534
1535 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1536
1537         * loader.c (mono_loader_error_prepare_exception): Handle missing field
1538         errors with no class set.
1539
1540         * loader.c (field_from_memberref): If the field signature is of the wrong
1541         type fail with a MissingFieldException instead of a BadImageException as
1542         this is the behavior observed on MS. 
1543
1544 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1545
1546         * loader.c (field_from_memberref): Don't crash if either the field
1547         signature or the typespec class are invalid.
1548
1549 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1550
1551         * verify.c (verifier_load_field): Don't allow field related
1552         ops to reference fields on generic type definition.
1553
1554 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1555
1556         * metadata-verify.c: Add new warning level for errors specified
1557         by ECMA 335 but that MS ignores.
1558
1559         * metadata-verify.c (verify_method_table): Make compiler controled
1560         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
1561         this check is safe because the end result will only be some visibility
1562         exceptions been thrown.
1563
1564 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1565
1566         * verify.c (get_boxable_mono_type): Don't allow the
1567         use of the generic type definition on boxed type positions.
1568
1569         Fixes #531237.
1570
1571 2009-08-14  Mark Probst  <mark.probst@gmail.com>
1572
1573         * threadpool.c: Make sure no cross-domain references remain in
1574         ares_htable or the arrays that are thrown away when resizing.
1575
1576 2009-08-14  Mark Probst  <mark.probst@gmail.com>
1577
1578         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
1579         list of classes for which we have to unregister reflection_info
1580         with the GC and which are not in the namespace cache.
1581
1582         * reflection.c (mono_reflection_initialize_generic_parameter): Add
1583         the class to the list.
1584
1585 2009-08-14  Mark Probst  <mark.probst@gmail.com>
1586
1587         * domain.c (mono_domain_free): Unregister the GC roots in
1588         MonoDomain.
1589
1590 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
1591
1592         * reflection.c (mono_reflection_type_get_handle): Fix typo.
1593
1594 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
1595
1596         * class.c: Add mono_class_get_field_from_name_full which does
1597         the same as mono_class_get_field_from_name but does check field
1598         signature as well.
1599
1600         * class-internals.h: Export mono_class_get_field_from_name_full as
1601         part of the internal API.
1602
1603         * loader.c (field_from_memberref): Search fields by name and signature
1604         as it's valid to have two fields with same name but different types.
1605
1606         Fixes #528055.
1607
1608 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
1609
1610         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
1611
1612         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
1613
1614         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
1615         System.Type.
1616
1617 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
1618
1619         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
1620
1621         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
1622
1623 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1624
1625         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
1626         to sgen-scan-object.h, which can be included and parameterized via
1627         macros.
1628
1629         * Makefile.am: sgen-scan-object.h added.
1630
1631 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1632
1633         * gc.c: #define GC_dont_gc if we're compiling with SGen.
1634
1635 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1636
1637         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
1638         before clearing a domain in the GC.
1639
1640 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1641
1642         * exception.c (mono_exception_from_name_domain): Actually create
1643         the exception in the specified domain.
1644
1645         * appdomain.c (mono_domain_create_appdomain_internal): Create the
1646         OutOfMemoryException a bit later so that the domain is inialized
1647         "enough" that it works.
1648
1649 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1650
1651         * threads.c (thread_cleanup): Clean up the cached_culture_info
1652         array to prevent cross-domain references.
1653
1654 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
1655
1656         * metadata.c: more documentation for MonoType accessors.
1657
1658 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
1659
1660         Fix incorrect size definitions where the tail array isn't a list
1661         of pointers
1662         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
1663         define size.
1664         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
1665         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
1666         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
1667
1668 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1669
1670         * reflection.h:
1671         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
1672
1673 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1674
1675         * metadata.c:
1676         * loader.c:
1677         * metadata-internals.h:
1678         * method-builder.c:
1679         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
1680
1681 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1682
1683         * cominterop.c:
1684         * metadata.c:
1685         * metadata.h:
1686         * loader.c:
1687         * marshal.c:
1688         * reflection.c: #define for sizeof in MonoType and
1689         MonoMethodSignature.
1690
1691 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1692
1693         * domain.c:
1694         * domain-internals.h: add and use #define's instead of sizeof()
1695         for MonoJitInfo and MonoJitInfoTable.
1696
1697 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1698
1699         * object.c:
1700         * class.h: use #define instead of sizeof() for MonoRemoteClass.
1701
1702 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
1703
1704         * metadata.c:
1705         * metadata.h:
1706         * object.c:
1707         * class-internals.h:
1708         * generic-sharing.c:
1709         * marshal.c: use a #define instead of sizeof() for a few
1710         structures that use a zero-length array.
1711
1712 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
1713
1714         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
1715         to handle inflated generic methods.
1716
1717         * appdomain.c: Bump corlib version.
1718
1719         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
1720         instances.
1721
1722         * reflection.c (fixup_method): Same
1723
1724         * reflection.c (resolve_object): Same.
1725
1726         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
1727         g_error and a decent message.
1728
1729 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
1730
1731         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
1732         from the object because it could not yet be available globally
1733         (it happens if the profiler tries to create a gchandle on the
1734         MonoThread object of a thread that is still registering itself
1735         with the runtime).
1736
1737 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
1738
1739         * reflection.c (mono_generic_class_get_object): Initialized the
1740         managed type arguments array.
1741
1742         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
1743
1744         * appdomain.c: Bump corlib version.
1745
1746 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
1747
1748         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
1749         #527902.
1750
1751 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
1752
1753         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
1754         Avoid a crash if synch_cs is not set.
1755         
1756         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
1757         Handle the case when the handle is 0.
1758
1759         * appdomain.c: Bump corlib version.
1760
1761 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
1762
1763         * reflection.c (mono_type_get_object): Fix a warning.
1764
1765 2009-08-01  Mark Probst  <mark.probst@gmail.com>
1766
1767         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
1768         descriptor here.  We assume it's already been computed.
1769
1770         * generic-sharing.c (instantiate_other_info): Compute the GC
1771         descriptor for info type MONO_RGCTX_INFO_KLASS.
1772
1773 2009-08-01  Mark Probst  <mark.probst@gmail.com>
1774
1775         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
1776         type, so don't use MONO_OBJECT_SETREF to set a field.
1777
1778 2009-08-01  Mark Probst  <mark.probst@gmail.com>
1779
1780         * gc.c: We were missing one case where invoking a finalizer would
1781         not reset the domain.  Also, in the finalizer thread loop, assert
1782         that we're in the root domain.
1783
1784 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
1785
1786         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
1787         if the type is not an array.
1788
1789 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
1790
1791         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
1792         method bound to the declaring type of the method. Raise an exception
1793         if the type is not a generic param.
1794
1795 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
1796
1797         * class.c (print_unimplemented_interface_method_info): Print the
1798         full type name.
1799
1800         * class.c (mono_class_setup_vtable_general): When dealing with a
1801         generic instance first check if the generic type definition is
1802         not broken.
1803
1804 2009-02-11 Tom Hindke <tom_hindle@sil.org>
1805
1806         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
1807
1808         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
1809
1810         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
1811
1812         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
1813
1814         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
1815
1816         Code is contributed under MIT/X11 license
1817
1818 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
1819
1820         * verify.c: Fix naming of stelem and ldelem.
1821
1822 2009-07-30  Mark Probst  <mark.probst@gmail.com>
1823
1824         * generic-sharing.c: Replace the templates lock with the loader
1825         lock because of very hard to resolve deadlock issues.
1826
1827 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
1828
1829         * icall.c (ves_icall_Type_GetMethodsByName): Use 
1830         mono_class_get_vtable_size () instead of accessing klass->vtable_size
1831         directly. Fixes #525338.
1832
1833         * class.c (mono_class_get_vtable_size): New helper function.
1834
1835         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
1836         the field belongs to the type. Fixes #525733.
1837
1838 2009-07-30  Mark Probst  <mark.probst@gmail.com>
1839
1840         * sgen-gc.c: When we stop a thread and its stack top is not within
1841         its allocated stack (because it's in an altstack signal handler),
1842         restart it and stop it again, until it is.
1843
1844 2009-07-30  Mark Probst  <mark.probst@gmail.com>
1845
1846         * sgen-gc.c: Take a thread's stack top and registers from the
1847         sigcontext in the suspend signal handler.
1848
1849         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
1850         stuff to sgen-archdep.h.
1851
1852         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
1853         caller, because have code in sgen-archdep.h to acquire that data.
1854
1855 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
1856
1857         * profiler.c, profiler.h, profiler-private.h:
1858         Added support for keeping track of code chunks and buffers.
1859
1860 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
1861
1862         * metadata-verify.c: Fix endianness problems on decoding functions.
1863         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
1864
1865 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
1866
1867         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
1868         schema for vectors and one dimension SZARRAY.
1869
1870 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
1871
1872         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
1873         schema for vectors and one dimension SZARRAY.
1874
1875 2009-07-27  Mark Probst  <mark.probst@gmail.com>
1876
1877         * icall-def.h, thread-types.h, threads.c: New separate icalls for
1878         Interlocked.(Compare)Exchange with object arguments, which invoke
1879         write barriers.
1880
1881 2009-07-26  Miguel de Icaza  <miguel@novell.com>
1882
1883         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
1884         passed invalid arguments.   Fixes another crasher in the
1885         Silverlight test suite.
1886
1887         * class.c (mono_class_array_element_size): Return 0 for the size
1888         of the class;  This fixes the crasher exposed by :
1889
1890         typeof (void).MakeArrayType ();
1891
1892         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
1893         if there is no method to dereference.    Put all the code that
1894         depends on this inside the if (method) block.
1895
1896         This fixes the crasher exposed by Microsoft's Silvelright CLR test
1897         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
1898
1899         With this change, we pass the test.
1900         
1901         * reflection.c (mono_reflection_sighelper_get_signature_local):
1902         Only dereference the assembly if it has been set.    Fixes a
1903         crasher exposed by #525328
1904
1905 2009-07-25  Mark Probst  <mark.probst@gmail.com>
1906
1907         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
1908         don't perform the store in mono_gc_wbarrier_generic_nostore().
1909         Remove the second argument (value), which is not needed.
1910
1911 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
1912
1913         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
1914         the build.
1915
1916         * boehm-gc.c: Ditto.
1917         
1918 2009-07-24  Mark Probst  <mark.probst@gmail.com>
1919
1920         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
1921         not perform the store itself.  Introduce
1922         mono_gc_wbarrier_generic_nostore(), which is the same as
1923         mono_gc_wbarrier_generic_store(), except it doesn't perform the
1924         store.
1925
1926 2009-07-24  Mark Probst  <mark.probst@gmail.com>
1927
1928         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
1929         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
1930         we still need the memcpy().
1931
1932 2009-07-22  Mark Probst  <mark.probst@gmail.com>
1933
1934         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
1935         so that big arrays are handled correctly.  Always use
1936         safe_object_get_size() to calculate array object sizes, which
1937         takes bounds into account.
1938
1939 2009-07-22  Mark Probst  <mark.probst@gmail.com>
1940
1941         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
1942         GC descriptor is computed before we use it.
1943
1944 2009-07-22  Mark Probst  <mark.probst@gmail.com>
1945
1946         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
1947         write barrier if necessary.
1948
1949 2009-07-22  Mark Probst  <mark.probst@gmail.com>
1950
1951         * icall-def.h, icall.c, thread-types.h: New separate icall for
1952         VolatileWrite(object&,object) that uses a write barrier.
1953
1954         * console-unix.c, file-io.c, icall.c, threads.c: Use write
1955         barriers in icalls which write to "ref" or "out" arguments.
1956
1957 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
1958
1959         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
1960         handler in a separate icall, to reduce the size of the wrappers.
1961
1962 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
1963
1964         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
1965
1966 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
1967
1968         * metadata-verify.c (parse_field): Allow byref field.
1969
1970         * metadata-verify.c (parse_locals_signature): Allow byref locals.
1971
1972         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
1973
1974 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
1975
1976         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
1977         Fixes #522784.
1978
1979 2009-07-20  Robert Jordan  <robertj@gmx.net>
1980
1981         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
1982         Fix invalid IL in valuetype handling (STOBJ must push the
1983         corresponding class). Fixes bug #523149.
1984
1985         Code is contributed under MIT/X11 license.
1986
1987 2009-07-20  Geoff Norton  <gnorton@novell.com>
1988
1989         * gc.c: Use proper semaphores where available on posix and darwin.
1990
1991 2009-07-19  Geoff Norton  <gnorton@novell.com>
1992
1993         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
1994
1995 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
1996
1997         * refletion.c (is_sre_usertype): Change name to is_usertype and
1998         invert it's result so it returns true if the type is an user type
1999         and not the opposite.
2000
2001         * reflection.c (is_*_type): Change all of those to use new macro
2002         check_corlib_type_cached that cached the type lookup so we don't
2003         need to do string comparisons all the type. Changed the signature
2004         to take a MonoClass instead.
2005
2006         * reflection.c: Change mono_image_create_token and resolve_object
2007         to use is_sre_* functions.
2008
2009 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2010
2011         * sgen-gc.c: Check for writes to the stack in the managed
2012         wbarrier as well.
2013
2014 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2015
2016         * sgen-gc.c: When a thread is unregistered, don't free its remsets
2017         but put them on a list which is processed with the other thread's
2018         remsets.
2019
2020 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2021
2022         * sgen-gc.c: Fix and enable the internal allocator instead of
2023         using malloc/free (which causes deadlocks).
2024
2025 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
2026
2027         * refletion.c: Fix builds with SRE disabled by adding a minimal
2028         implementation of mono_reflection_type_get_handle.
2029
2030 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2031
2032         * refletion.c: Make mono_reflection_type_get_handle non static.
2033
2034         * object-internals.h: Export mono_reflection_type_get_handle.
2035
2036         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
2037         unmanaged handle using mono_reflection_type_get_handle.
2038
2039 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2040
2041         * refletion.c: Replace all reads of MonoReflectionType::type with
2042         calls to mono_reflection_type_get_handle. Only the functions that
2043         deal with constructing TypeBuilder::type have not been changed
2044         because they have to deal with NULL values.
2045
2046         This is a first step into supporting reflection types that don't
2047         map directly into their unmanaged counterpart.
2048
2049 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
2050
2051         * metadata-verify.c (parse_locals_signature): Don't complain
2052         on signature with zero locals since MS generates it and doesn't
2053         bother with.
2054
2055 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
2056
2057         * reflection.c (mono_image_get_array_token): Resolve return
2058         type using mono_reflection_type_get_handle.
2059
2060         * reflection.c (mono_image_get_array_token): Resolve array method
2061         parent type using mono_reflection_type_get_handle.
2062
2063 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
2064
2065         * reflection.c (mono_image_basic_init): Applied patch from
2066         <Dax@daxxfiles.net>. Set the public key token from the assembly
2067         builder. Fixes #518909.
2068
2069         * appdomain.c: Bump corlib version.
2070
2071 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
2072
2073         * class.c (mono_class_needs_cctor_run): Make this return false if
2074         the class has no cctor.
2075
2076 2009-07-13  Mark Probst  <mark.probst@gmail.com>
2077
2078         * sgen-gc.c: When the minor GC needs to allocate a new section,
2079         invoke the major GC afterwards.
2080
2081 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
2082
2083         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
2084           Applying the window_style field to the SHELLEXECUTEINFO struct.
2085
2086         Code is contributed under MIT/X11 license.
2087
2088 2009-07-13  Mark Probst  <mark.probst@gmail.com>
2089
2090         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
2091         locking earlier.  Fix it in the managed allocator by making sure
2092         that no thread is stopped there before the GC runs.  If we do stop
2093         a thread there, we restart it and let it run a but, until it stops
2094         somewhere else.
2095
2096         * gc-internal.h, gc.c: Function for getting the IP from a signal
2097         context via a function registered by mini.
2098
2099 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
2100
2101         * object-internals.h (MonoIntPtr): New structure describing a boxed
2102         IntPtr.
2103
2104         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
2105         returns. Fixes #519953.
2106
2107         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
2108
2109 2009-07-09  Mark Probst  <mark.probst@gmail.com>
2110
2111         * class-internals.h, generic-sharing.c: New RGCTX info type for
2112         getting a remoting invoke with check wrapper.
2113
2114 2009-07-07  Geoff Norton  <gnorton@novell.com>
2115
2116         * icall-def.h: Fix the enable-minimal build.
2117
2118 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2119
2120         * object-internals.h: Add MonoReflectionDerivedType.
2121
2122         * reflection.c: Implement support for PointerType.
2123         Fixed tons of warnings.
2124
2125 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2126
2127         * object-internals.h: Add MonoReflectionByRefType.
2128
2129         * reflection.c: Implement support for ByRefType.
2130
2131 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2132
2133         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
2134
2135         * object-internals.h: Add MonoReflectionArrayType and
2136         mono_reflection_create_unmanaged_type.
2137
2138         * reflection.c: Implement support for ArrayType.
2139
2140 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2141
2142         * metadata-verify.c (is_valid_method_header): Parse EH block
2143         flags correctly.
2144
2145 2009-07-03  Mark Probst  <mark.probst@gmail.com>
2146
2147         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
2148         processing the disappearing links, and process disappearing links
2149         in a loop until no new objects are copied.
2150
2151 2009-07-03  Mark Probst  <mark.probst@gmail.com>
2152
2153         * object.c (handle_enum): Invoke the write barrier when copying
2154         value type instances.
2155
2156         * sgen-gc.c: Register remsets for unmanaged write barriers only
2157         when the address written to is actually on the heap.  This makes
2158         set_value() in object.c work without requiring that the result be
2159         on the heap.
2160
2161 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
2162
2163         The runtime wrappers are all bound to a given type that must
2164         exist in the same image. For regular images we use the <Module>
2165         type, which is required to exist for all images.
2166
2167         The <Module> type can't be used for dynamic images because it
2168         might not exist at the time the wrapper is required, so we create
2169         a synthetic type to use instead.
2170
2171         The current code works because of the 2 stage setup of MonoClass,
2172         but once this is gone it will no longer work.
2173
2174         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
2175
2176         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
2177
2178         * object-internals.h: Export mono_image_set_wrappers_type icall
2179         as part of the internal API.
2180
2181         * marshal.c (get_wrapper_target_class): If the image is dynamic,
2182         use MonoDynamicImage::wrappers_type instead of the <Module> type.
2183
2184         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
2185         image wrappers_type to the provided value.
2186
2187 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
2188
2189         * appdomain.c (deregister_reflection_info_roots): No need
2190         to use the image lock here.
2191
2192 2009-07-02  Mark Probst  <mark.probst@gmail.com>
2193
2194         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
2195
2196 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
2197
2198         * threads.c: Store the thread start argument in a hash table instead of
2199         registering it as a root, as libgc doesn't support unregistering roots
2200         under windows, leading to 'too many root sets' errors when many threads
2201         are created.
2202
2203         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
2204         shutdown, they can still be referenced by the other dying objects.
2205         Fixes #514506.
2206
2207 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
2208
2209         * socket-io.c: DontLinger does not allow LingerOptions.
2210
2211 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2212
2213         * metadata-verify.c: The spec doesn't mention that it's possible to add
2214         custom attribute to a generic parameter. Fixed.
2215
2216 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2217
2218         * class.c (inflate_generic_type): Don't crash while trying to output a message
2219         on why we're aborting.
2220
2221 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
2222
2223         * socket-io.c: DontLinger can take an int or a boolean too.
2224
2225 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
2226
2227         * gc.c: check for a null argument to SuppressFinalize () and
2228         ReRegisterForFinalize ().
2229
2230 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2231
2232         * loader.c (method_from_methodspec): Call into the verifier to check
2233         the signature.
2234
2235         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
2236
2237         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
2238         part of the internal API.
2239
2240 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2241
2242         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
2243         the signature.
2244
2245         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
2246
2247         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
2248         part of the internal API.
2249
2250 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2251
2252         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
2253         the signature.
2254
2255         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
2256         blob verification.
2257
2258         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
2259         part of the internal API.
2260
2261 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2262
2263         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
2264         when doing basic verification. 
2265
2266         This check must be done since the runtime peeks into signatures in much
2267         more places than it does decoding so it makes sense to ensure that all
2268         pointers to blob objects are well formed.
2269
2270 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2271
2272         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
2273         Use proper overflow dectection. Fix usage of it.
2274
2275 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2276
2277         * loader.c (field_from_memberref): Call into the verifier to check
2278         the signature.
2279
2280         * loader.c (mono_method_get_signature_full): Same.
2281
2282         * loader.c (method_from_memberref): Same.
2283
2284         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
2285
2286         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
2287         part of the internal API.
2288
2289 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2290
2291         * threadpool.c (mono_thread_pool_add): If the domain is unloading
2292         or unloaded, still return an AsyncResult, but don't add it to the
2293         threadpool.
2294
2295 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
2296
2297         * threads.c: fix missing colon when DEBUG is defined.
2298
2299 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2300
2301         * threadpool.c: Don't add new calls to a threadpool if the domain
2302         of the call is unloading or unloaded.  When dequeuing a job, null
2303         the reference in the queue.
2304
2305 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2306
2307         * sgen-gc.c (null_link_in_range): Add the dislink for the old
2308         generation if an object was moved.
2309
2310 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
2311
2312         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
2313           parameters of type SAFEARRAY[VARIANT].
2314
2315         * reflection.c (encode_marshal_blob): Properly generate element type
2316           (SafeArraySubType marshal attribute option).
2317
2318         Code is contributed under MIT/X11 license.
2319
2320 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
2321
2322         * reflection.c: in mono_method_clear_object () really ensure all the
2323         objects are removed.
2324
2325 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2326
2327         * loader.c (mono_method_signature): Call into the verifier to check
2328         the method signature.
2329
2330         * metadata-verify.c (verify_method_table): Move signature verification
2331         to verify_method_table_full.
2332
2333         * metadata-verify.c: Add mono_verifier_verify_method_signature.
2334
2335         * verify-internals.h: Export mono_verifier_verify_method_signature as
2336         part of the internal API.
2337
2338 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2339
2340         * loader.c (mono_method_get_header): Call into the verifier to
2341         check the method header.
2342
2343         * metadata-verify.c: Add mono_verifier_verify_method_header.
2344
2345         * verify-internals.h: Export mono_verifier_verify_method_header as
2346         part of the internal API.
2347
2348 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2349
2350         * class.c (mono_class_find_enum_basetype): Call into the verifier to
2351         check the field signature. Replace an assert with an explicit check.
2352
2353         * class.c (mono_class_setup_fields): Call into the verifier to check
2354         the field signature.
2355
2356         * metadata-verify.c: Add mono_verifier_verify_field_signature.
2357
2358         * verify-internals.h: Export mono_verifier_verify_field_signature as
2359         part of the internal API.
2360
2361 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2362
2363         * class.c (mono_class_find_enum_basetype): Simplify this function
2364         by moving code outside of the loop and not decoding static fields.
2365
2366 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2367
2368         * metadata-verify.c (verify_typedef_table): Check the extends
2369         token here. Move to here a flags check from verify_typedef_table_full.
2370
2371 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
2372
2373         * metadata-verify.c (is_valid_method_header): Fix a warning.
2374
2375         * metadata-internals.h (MonoImage): Remove the unused 
2376         static_rgctx_invoke_wrapper_cache.
2377
2378         * image.c marshal.c: Ditto.
2379
2380 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2381
2382         * image.c (do_mono_image_load): Enable table data verification.
2383
2384 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2385
2386         * metadata-verify.c (is_valid_constant): Fix nullref check.
2387
2388 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2389
2390         * metadata-verify.c (is_valid_constant): Fix string bounds check.
2391
2392 2009-06-22  Mark Probst  <mark.probst@gmail.com>
2393
2394         * sgen-gc.c: Managed allocation with pthreads TLS.
2395
2396         * threads.c, threads-types.h: Functions for the JIT to tell the
2397         runtime whether it supports the MONO_TLS opcode.
2398
2399 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2400
2401         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
2402         without methods.
2403
2404 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2405
2406         * metadata-verify.c (is_valid_constant): Fix the string length check.
2407         Use safe overflow checking. Add decent error messages.
2408
2409 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2410
2411         * metadata-verify.c: Move remaininh blob checks to the offline
2412         verification path.
2413
2414 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2415
2416         * metadata-verify.c: Move more blob checks to the offline verification
2417         path.
2418
2419 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
2420
2421         * object-internals.h : Adding interrupt_on_stop field.
2422
2423         * threads.c (mono_thread_request_interruption) : On Windows exit the
2424           thread if interrupt_on_stop is set.
2425
2426         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
2427          Removing old interrupt logic and setting the interrupt_on_stop for the
2428          thread when calling accept.
2429
2430         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
2431          setting the interrupt_on_stop for the thread when calling accept.
2432
2433         Contributed under MIT/X11 license.
2434
2435 2009-06-20  Martin Baulig  <martin@ximian.com>
2436
2437         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
2438
2439 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
2440
2441         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
2442         running in no-exec mode.
2443
2444 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2445
2446         * metadata-verify.c (verify_method_table): Move header
2447         checking to verify_method_table_full.
2448
2449         * metata-verify.c (mono_verifier_verify_full_table_data):
2450         Call verify_method_table_full.
2451
2452 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2453
2454         * metadata-verify.c (verify_field_table): Move signature
2455         checking to verify_field_table_full.
2456
2457         * metata-verify.c (mono_verifier_verify_full_table_data):
2458         Call verify_field_table_full.
2459
2460 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2461
2462         * metadata-verify.c (verify_typedef_table): Move remaining
2463         stuff to verify_typedef_table_full.
2464
2465 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2466
2467         * metadata-verify.c: Kill is_corlib from VerifyContext.
2468         It is only used by the offline mode.
2469         So we better remove it from the runtime path.
2470
2471 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2472
2473         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
2474         function that perform the offline metadata verification steps.
2475
2476         * metadata-verify.c (verify_typedef_table): Move some checks to
2477         verify_typedef_table_full and make it been called by new function
2478         mono_verifier_verify_full_table_data.
2479
2480         * pedump.c: Call mono_verifier_verify_full_table_data.
2481
2482         * verify-internals.h: Export mono_verifier_verify_full_table_data as
2483         part of the internal API.
2484
2485 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2486
2487         * metadata-verify.c (typedef_is_system_object): Fix System.Object
2488         check.
2489
2490         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
2491         flags bits. SupportLastError was confused as bit 7 instead of 6.
2492
2493         * metadata-verify.c (verify_implmap_table): Fix import scope verification
2494         to check against the module ref table instead of module.
2495
2496         * metadata-verify.c (verify_implmap_table): Fix corlib check.
2497
2498         * pedump.c: Call mono_image_load_names.
2499
2500 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2501
2502         * image.c: Extract mono_image_load_names from do_mono_image_load.
2503
2504         * metadata-internals.h: Export mono_image_load_names as part of
2505         the internal API.
2506         
2507 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
2508
2509         * metadata.c (mono_metadata_cleanup): Free the generic method cache
2510         first, as it could reference data in the other caches.
2511
2512 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
2513
2514         * metadata-verify.c: Finished with method header verification.
2515
2516 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
2517
2518         * metadata-verify.c: Added more header verification code.
2519         Now only EH clauses are missing.
2520
2521 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
2522
2523         * marshal.c (get_runtime_invoke_type): Don't share primitive types
2524         for return values.
2525
2526 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
2527
2528         * metadata-verify.c: Initial method header verification.
2529
2530 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
2531
2532         * metadata-verify.c (verify_import_table): The IAT contents
2533         might end been patched by the windows DL when running with
2534         coree enabled.
2535
2536 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
2537
2538         * class.c (mono_class_from_typeref): If the enclosing type is not
2539         found return null instead of crashing. Fixes #508487.
2540
2541 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
2542
2543         * normalization-tables.h : updated to the latest unicode charcter
2544           data.
2545         * appdomain.c : bump corlib version.
2546
2547 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
2548
2549         * class.c (mono_class_from_name): Fix support for assembly references
2550         in the EXPORTEDTYPE table. Fixes #511704.
2551
2552 2009-06-13  Geoff Norton  <gnorton@novell.com>
2553
2554         * domain.c: Ensure that mono_domain_assembly_open actually opens the
2555         assembly in the target domain.
2556
2557 2009-06-12  Robert Jordan  <robertj@gmx.net>
2558
2559         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
2560         because "this" of the managed signature has become an
2561         ordinary parameter in the unmanaged signature.
2562
2563 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
2564
2565         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
2566         field for owner-less generic containers.
2567
2568         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
2569         image field of the owner-less generic containers created here.
2570
2571         * metadata.c (mono_metadata_load_generic_params): Ditto, the
2572         contain is ownerless until the caller sets its owner.
2573
2574         * metadata.c (type_in_image): Handle owner-less generic containers
2575         correctly.
2576         
2577 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
2578
2579         * image.c (mono_image_close): Support debug_assembly_unload for
2580         dynamic images too.
2581
2582 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
2583
2584         * class.c: Fix some typos in comments.
2585
2586 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
2587
2588         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
2589
2590         * threads.c (mono_thread_execute_interruption): Avoid creating the
2591         abort exception object while holding the synch_cs lock.
2592
2593 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2594
2595         * metadata-verify.c: Verify basic cattr content.
2596
2597 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
2598
2599         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
2600         nested types.
2601         
2602         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
2603         support for nested types. Fixes #511704.
2604
2605 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2606
2607         * metadata-verify.c: Verify methodspec signatures.
2608
2609 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2610
2611         * metadata-verify.c: Verify typespec signatures.
2612
2613 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
2614
2615         * metadata.c (free_inflated_method): Call 
2616         mono_marshal_free_inflated_wrappers (), which was missed earlier.
2617
2618 2009-06-08  Miguel de Icaza  <miguel@novell.com>
2619
2620         * mono-config.c: Small change to report the PPC64/ILP32 model.
2621
2622 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2623
2624         * metadata-verify.c (parse_type): Check szarray.
2625
2626 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2627
2628         * metadata-verify.c (parse_type): Check fnptr.
2629
2630 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2631
2632         * metadata-verify.c (parse_type): Check generic instances.
2633
2634 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2635
2636         * metadata-verify.c (parse_type): Check array shape.
2637
2638 2009-06-05  Robert Jordan  <robertj@gmx.net>
2639
2640         * class.c (mono_class_create_from_typedef): Check only for
2641         mscorlib's System.Array.
2642
2643 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2644
2645         * metadata-verify.c (parse_type): Check pointer, class/valuetype
2646         and generic params. 
2647
2648         * metadata-verify.c (parse_field): Check the signature.
2649
2650 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2651
2652         * metadata-verify.c: Implement locals signature check.
2653
2654 2009-06-04  Marek Safar  <marek.safar@gmail.com>
2655
2656         * domain.c: Add .NET 4.0 Beta 1 version.
2657
2658 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
2659
2660         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
2661           For QueryInterface on CCWs consider the base class
2662           interfaces as well.
2663
2664         Code is contributed under MIT/X11 license.
2665
2666 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
2667
2668         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
2669
2670         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
2671         used.
2672
2673         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
2674         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
2675
2676         * generic-sharing.c (inflate_other_data): Ditto.
2677         
2678 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2679
2680         * metadata-verify.c: Implement property signature check.
2681
2682 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2683
2684         * sgen-gc.h: Register saving support for PPC.
2685
2686 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2687
2688         * sgen-gc.c: Fixed a pthread TLS screwup.
2689
2690 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2691
2692         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
2693         supported.
2694
2695 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2696
2697         * sgen-gc.c: Disable TLA and managed allocation if the __thread
2698         keyword is not supported.
2699
2700 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
2701
2702         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
2703         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
2704         the inflated method is freed. Fixes #508389.
2705
2706         The code is contributed under the MIT/X11 license.
2707         
2708 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
2709
2710         * marshal.c (get_wrapper_target_class): New helper function.
2711         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
2712         the <Module> class of the image. Fixes #509049.
2713
2714 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2715
2716         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
2717         Check if the thread was interrupted and proccess it straight away.
2718         Makes abortion much more responsive.
2719
2720 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2721
2722         * threads.c (mono_thread_execute_interruption): Use atomic cas with
2723         MonoThread::interruption_requested to match it's counterpart.
2724
2725         Fixes a hang in abort-stress-1 on a 2 core x86.
2726
2727         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
2728         Fix warning.
2729
2730 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2731
2732         Change MonoImage::name_cache to be protected by the image lock
2733         instead of the loader lock.
2734
2735         * appdomain.c (deregister_reflection_info_roots): Protect access
2736         to name_cache.
2737
2738         * class.c (mono_image_init_name_cache): Change from the loader lock
2739         to the image lock. Check if the cache wasn't already created.
2740
2741         * class.c: Change from the loader to the image lock.
2742
2743         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
2744         the code to hold the image lock while iterating over name_cache and
2745         not go into mono_array_new holding it.
2746
2747         * metadata-internals.h: Add a comment about this change.
2748
2749 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2750
2751         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
2752         Under the 2.0 profile raise the loader error.
2753
2754         Fixes #508532.
2755
2756 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2757
2758         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
2759         of ldind opcode for generic instances so we don't fail for direct wrappers.
2760         This only affect direct calls.
2761
2762 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
2763
2764         * reflection.c (create_dynamic_mono_image): Fix warnings.
2765
2766         * generic-sharing.c (other_info_equal): Ditto.
2767         
2768 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2769
2770         * metadata-verify.c: Implement field signature check.
2771
2772 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2773
2774         * metadata-verify.c: Implement standalone signature check.
2775
2776 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2777
2778         * metadata-verify.c: Implement methodref signature check.
2779
2780 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
2781
2782         * object-internals.h (MonoRuntimeCallbacks): New structure containing
2783         callbacks supplied by the runtime.
2784
2785         * object.c (mono_install_callbacks): New internal function to install
2786         the callbacks.
2787
2788         * object.c (mono_create_ftnptr): Move the implementation of this to
2789         mini/.
2790
2791         * object.c (mono_get_addr_from_ftnptr): Ditto.  
2792
2793 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2794
2795         * metadata-verify.c (parse_return_type): Proper byref check.
2796         * metadata-verify.c (is_valid_method_signature): Check for zero arity
2797         generic signatures and method params.
2798
2799 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2800
2801         * metadata-verify.c (decode_signature_header): Fix bounds check.
2802
2803         * metadata-verify.c (parse_custom_mods): Check custom mods.
2804
2805         * metadata-verify.c (parse_type): Do initial basic verification
2806         of valid values.
2807         
2808         * metadata-verify.c (is_valid_method_signature): Parse the generic
2809         param count.
2810
2811 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
2812
2813         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
2814         discarded based on their most specific definition so we set the method_slots
2815         array before checking if the method is acceptable or not.
2816
2817         Fixes #506757.
2818
2819 2009-05-26  Mark Probst  <mark.probst@gmail.com>
2820
2821         * icall.c: Free the old array when resizing a mono_ptr_array.
2822
2823 2009-05-26  Mark Probst  <mark.probst@gmail.com>
2824
2825         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
2826         for the hashes whose keys are managed objects.
2827
2828 2009-05-26  Mark Probst  <mark.probst@gmail.com>
2829
2830         * object-internals.h, threads.c: Set the execution context on
2831         thread start here, not in corlib.
2832
2833         * appdomain.c: Bump corlib version.
2834
2835 2009-05-27  Martin Baulig  <martin@ximian.com>
2836
2837         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
2838         if `_mono_debug_using_mono_debugger' is set to make things work
2839         properly when embedding Mono.
2840
2841 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
2842
2843         * class.c (mono_class_setup_fields): Don't mark simd types as having
2844         16 bytes alignment as the whole runtime doesn't support.
2845
2846 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
2847
2848         * metadata-verify.c (safe_read): Use endian safe read macros.
2849
2850 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
2851
2852         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
2853         it is read-only when using full aot.
2854
2855 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
2856
2857         * metadata-verify.c (is_valid_method_signature): Verify parts
2858         of the return type. Provide an error message in case of failure.
2859
2860 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
2861
2862         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
2863
2864 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
2865
2866         * metadata-verify.c: Include the size prefix in the bounds check.
2867
2868 2009-05-22  Miguel de Icaza  <miguel@novell.com>
2869
2870         * icall.c: Remove warnings.
2871
2872         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
2873         prevent auto-detection based on GCC defines.
2874
2875         Add PS3
2876
2877         * metadata-verify.c: Do not include signal.h
2878
2879         * generic-sharing.c, marshal.c: Add returns to avoid some warning
2880         messages.  Not sure why the g_assert_not_reached is not enough to
2881         quiet the compiler.
2882         
2883
2884         * appdomain.c: Remove code that is not used when
2885         DISABLE_SHADOW_COPY is set.
2886
2887         * image.c: use g_getenv
2888
2889 2009-05-21  Miguel de Icaza  <miguel@novell.com>
2890
2891         * reflection.c: Remove code that it not used with
2892         DISABLE_REFLECTION_EMIT is defined.
2893
2894 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
2895
2896         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
2897         invoke wrappers.
2898
2899 2009-05-20  Miguel de Icaza  <miguel@novell.com>
2900
2901         * socket-io.c
2902         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
2903         the ifdef here and instead put that on io-layer
2904
2905 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2906
2907         * metadata-verify.c: Verify the generic param constraint table.
2908
2909 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2910
2911         * metadata-verify.c (verify_generic_param_table): Fix
2912         thinko on the valid flags bits for generic params.
2913
2914 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2915
2916         * metadata-verify.c: Verify the methodspec table.
2917
2918 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2919
2920         * metadata-verify.c: Verify the generic param table.
2921
2922 2009-05-19  Mark Probst  <mark.probst@gmail.com>
2923
2924         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
2925
2926 2009-05-19  Mark Probst  <mark.probst@gmail.com>
2927
2928         * sgen-gc.c: Use generation enum more consistently and use the
2929         correct generation in mono_gc_register_for_finalization().
2930
2931 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
2932
2933         * metadata-verify.c: Verify the nested class table.
2934
2935 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
2936
2937         * metadata-verify.c: Verify the manifest resource table.
2938
2939 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
2940
2941         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
2942
2943 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
2944
2945         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
2946         wrappers, this is now done in the JIT.
2947         
2948         * class.c (mono_set_generic_sharing_supported): New internal function.
2949         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
2950
2951 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2952
2953         * metadata-verify.c: Verify the exported type table.
2954
2955 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2956
2957         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
2958
2959 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2960
2961         * metadata-verify.c: Verify the file table.
2962
2963 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2964
2965         * metadata-verify.c (verify_assembly_table): Fix an error message.
2966
2967         * metadata-verify.c: Verify the assemblyref table.
2968
2969 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2970
2971         * metadata-verify.c (verify_assembly_table): Fix the valid
2972         bits mask for flags.
2973
2974 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
2975
2976         * debug-helpers.c (mono_method_full_name): Print generic parameters of
2977         generic methods as well.
2978
2979 2009-05-15  Geoff Norton  <gnorton@novell.com>
2980
2981         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
2982         use-case and is significantly more performant than the wapi layer.
2983
2984 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
2985
2986         * metadata-verify.c: Verify the assembly table.
2987
2988 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
2989
2990         * metadata-verify.c: Fix rows limit check.
2991
2992 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
2993
2994         * metadata-verify.c: Verify the fieldrva table.
2995
2996 2009-05-13  Mark Probst  <mark.probst@gmail.com>
2997
2998         * sgen.c: Speed up weak links and finalizers by grouping them by
2999         generation.
3000
3001 2009-05-13  Mark Probst  <mark.probst@gmail.com>
3002
3003         * marshal.c (delegate_hash_table_add): When overwriting an entry,
3004         free the old GCHandle (only applies to SGen).
3005
3006 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
3007
3008         * loader.c (mono_get_method_from_token): Avoid the expensive call to
3009         mono_metadata_load_generic_params () for non-generic methods.
3010
3011 2009-05-12  Mark Probst  <mark.probst@gmail.com>
3012
3013         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
3014         New function for returning a monitor's weak link if it has one.
3015
3016         * sgen-gc.c: Remove an object's monitor's weak link (if it has
3017         one) when clearing a domain.  These can still be around because
3018         the object might not have been collected.
3019
3020 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
3021
3022         * gc.c: Fix a warning.
3023
3024 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
3025
3026         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
3027         prevous wait that resulted in a deadlock on Windows when initializing
3028         the runtime form DllMain. Also results in improved startup time.
3029         (finalizer_thread): Get rid of thread_started_event.
3030         * threads.c, threads-types.h (mono_thread_create_internal): Return the
3031         resulting MonoThread.
3032
3033         Contributed under MIT/X11 license.
3034
3035 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
3036
3037         * metadata-verify.c: Verify the implmap table.
3038         Don't require that #US and #Strings be present.
3039
3040 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
3041
3042         * security-core-clr.c: Delegate checks are done at creation time,
3043         not a invocation time. Fix exception for Telerik Silverlight demo
3044
3045 2009-05-11  Mark Probst  <mark.probst@gmail.com>
3046
3047         * sgen-gc.c (need_remove_object_for_domain): Remove the special
3048         case for the Thread class.
3049
3050         * threads.c: Do clean-up of abort exception/state in
3051         thread_cleanup() instead of Thread.free_internal().  Also clean up
3052         current_appcontext.  The reason we have to do that is because
3053         those references might point into another domain and if that
3054         domain is unloaded before the thread is finalized, they point to
3055         invalid data.
3056
3057 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
3058
3059         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
3060         stub signatures.
3061         
3062         Contributed unter MIT/X11 license.
3063
3064 2009-05-09  Miguel de Icaza  <miguel@novell.com>
3065
3066         * verify.c, metadata-verifier.c: Add support for disabling the
3067         verifier in some builds.
3068
3069         [ Sorry, my previous commit accidentally commited some work in
3070         progress ]
3071
3072 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
3073
3074         * class.c (mono_class_setup_fields): Set class->field.first for
3075         generic instances.
3076
3077 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
3078
3079         * metadata-verify.c: Verify the typespec table.
3080
3081 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
3082
3083         * metadata-verify.c: Verify the module table.
3084
3085 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3086
3087         * metadata-verify.c: Verify the methodimpl table.
3088
3089 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3090
3091         * metadata-verify.c: Verify the property table.
3092
3093 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
3094
3095         * debug-helpers.c (mono_method_desc_match): Add support for generic
3096         glob patterns.
3097
3098 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
3099
3100         * metadata-verify.c: Verify the propertymap table.
3101
3102 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
3103
3104         * metadata-verify.c: Verify the event table.
3105
3106         * metadata-verify.c (search_sorted_table): Fix offset
3107         calculation.
3108
3109 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
3110
3111         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
3112
3113 2009-05-01  Mark Probst  <mark.probst@gmail.com>
3114
3115         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
3116         because mono_delegate_free_ftnptr() needs it.
3117
3118 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3119
3120         * metadata-verify.c: Verify the eventmap table.
3121
3122 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3123
3124         * metadata-verify.c: Verify the standalonesig table.
3125
3126 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3127
3128         * metadata-verify.c: Verify the field layout table.
3129
3130 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3131
3132         * class.c (mono_type_get_name_recurse): Don't crash
3133         for ownerless generic params.
3134
3135         * debug-helpers.c (mono_type_get_desc): Correct the format
3136         for ownerless generic params.
3137
3138 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3139
3140         * metadata-verify.c: Verify the class layout table.
3141
3142 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3143
3144         * metadata-verify.c: Verify the decl security table.
3145
3146 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3147
3148         * domain.c (mono_domain_set_internal_with_options): Don't do
3149         anything if the old domain is the same as the old one.  Fixes
3150         #499326.
3151
3152 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3153
3154         * appdomain.c: Deregister the reflection_info roots when unloading
3155         a domain.
3156
3157         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
3158         memory allocated by a domain and frees its disappearing links.
3159
3160         * boehm-gc.c, null-gc.c: Empty implementation of
3161         mono_gc_clear_domain().
3162
3163 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3164
3165         * appdomain.c (clear_cached_vtable): Free the static fields memory
3166         block.
3167
3168 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3169
3170         * gc.c: Set the correct domain when invoking finalizers.
3171
3172         * appdomain.c: Set the correct domain when creating threads.
3173
3174 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3175
3176         * sgen-gc.c: Fix skip size for vectors.
3177
3178 2009-05-03  Martin Baulig  <martin@ximian.com>
3179
3180         * mono-debug-debugger.c
3181         (mono_debugger_check_breakpoints): Check class init handlers even
3182         if we don't have any method load handers.
3183
3184 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
3185
3186         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
3187         returning refonly assemblies if refonly is FALSE. Fixes #499013.
3188
3189 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
3190
3191         * metadata-verify.c: Verify the field marshal table.
3192
3193 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
3194
3195         * metadata-verify.c: Verify the custom attribute table.
3196
3197 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3198
3199         * metadata-verify.c: Verify the constant table.
3200
3201 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3202
3203         * metadata-verify.c: Verify the memberef table.
3204
3205 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3206
3207         * metadata-verify.c (get_coded_index_token): Remove
3208         dead argument.
3209
3210 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3211
3212         * metadata-verify.c: Verify the interfaceimpl table.
3213
3214 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3215
3216         * verify.c: Improve error message.
3217
3218         * debug-helpers.c (mono_type_get_desc): Harden the code that
3219         deals with VAR and MVAR.
3220
3221 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
3222
3223         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
3224         part of #498692.
3225
3226 2009-04-23 Tom Hindle <tom_hindle@sil.org>
3227
3228         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
3229         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
3230
3231 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
3232
3233         * security-core-clr.c: Avoid redundant checks for platform code, 
3234         e.g. check for method and for class (very common) and check
3235         for class and outer class (less common)...
3236
3237 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
3238
3239         * reflection.c: Avoid returning random cattrs for synthetic methods.
3240         Fixes #498545.
3241
3242 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3243
3244         * assembly.c: assemblies in the GAC should never be shadow-copied.
3245
3246 2009-04-26  Mark Probst  <mark.probst@gmail.com>
3247
3248         * domain.c, domain-internals.h: Disable
3249         track_resurrection_{objects,handles}_hash in MonoDomain if using
3250         SGen.
3251
3252 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3253
3254         * metadata-verify.c: Verify the param table.
3255
3256 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3257
3258         * metadata-verify.c (verify_typedef_table): Range check FieldList and
3259         MethodList.
3260
3261         * metadata-verify.c (verify_method_table): Proper check the ParamList
3262         field.
3263
3264 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3265
3266         * metadata-verify.c (verify_method_table): Check for runtime
3267         implemented functions such as delegate .ctors. Remove spurious
3268         printf.
3269         
3270 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3271
3272         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
3273
3274 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3275
3276         Don't allocate MonoGenericInfo for ownerless generic params.
3277         * class-internals.h (MonoGenericParam::info): Move field to ...
3278         (MonoGenericParamFull): ... this.  New struct.
3279         (MonoGenericContainer::type_params): Change type to
3280         MonoGenericParamFull.
3281         (MonoGenericParam, MonoGenericContainer): Update accessors.
3282         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
3283         'info' field for ownerless generic param.
3284         (mono_metadata_load_generic_params): Update to changes.
3285         * reflection.c (mono_reflection_create_generic_class): Likewise.
3286         (reflection_methodbuilder_to_mono_method): Likewise.
3287         (mono_reflection_initialize_generic_parameter): Likewise.
3288
3289 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3290
3291         Don't use MonoGenericParamInfo for ownerless generic params.
3292         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
3293         use ParamInfo class at all.
3294         (mono_class_from_generic_parameter): Use them.
3295         (make_generic_param_class): Fix a couple of instances where 'pinfo
3296         == NULL' wasn't handle.
3297
3298 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3299
3300         * class.c (make_generic_param_class): Carve out of ...
3301         (mono_class_from_generic_parameter): ... here.
3302
3303 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3304
3305         Simplify mono_class_from_generic_parameter
3306         * class-internals.h (MonoGenericParamInfo::token): New field.
3307         * metadata.c (mono_metadata_load_generic_params): Initialize it
3308         from metadata.
3309         * class.c (mono_class_from_generic_parameter): Use it instead of
3310         searching through metadata.
3311
3312 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3313
3314         * metadata-verify.c: Add verification of the method table.
3315
3316 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3317
3318         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
3319         Delegate::Invoke optimization.
3320
3321 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3322
3323         * appdomain.c (mono_domain_create_appdomain_internal): Free the
3324         string returned by get_shadow_assembly_location_base.
3325
3326         * appdomain.c (get_shadow_assembly_location_base): Add a comment
3327         about caller's ownership.
3328
3329 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3330
3331         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
3332         reflection memory on domain unload.
3333
3334         * domain.c (mono_domain_free): Don't free refobject_hash, let the
3335         reflection cleanup code do it.
3336
3337         * domain-internals.h: Add mono_reflection_cleanup_domain.
3338
3339         This fixes a memory leak for managed mirrors of reflection objects
3340         on domain unload. 
3341
3342 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
3343
3344         * metadata-verify.c: Implement more verification of the field table.
3345
3346 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
3347
3348         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
3349         doesn't try to parse the input assembly, which can be broken.
3350
3351 2009-04-23  Mark Probst  <mark.probst@gmail.com>
3352
3353         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
3354         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
3355         by using the lowest bit in the link to store whether the link is
3356         tracked.  Move the track_resurrection hashes into boehm-gc.c.
3357
3358 2009-04-22  Miguel de Icaza  <miguel@novell.com>
3359
3360         * Makefile.am: Split the console support in platform specific code
3361         and put together a framework for making this easy in the future so
3362         that we can start splitting code instead of having a mess of PLATFORM_WIN32
3363
3364 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3365
3366         * pedump.c: Fix a warning.
3367
3368 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3369
3370         * verify.c (mono_delegate_type_equal): Compare valuetypes using
3371         mono_class_from_mono_type to avoid bad interactions with the dual representation
3372         of the generic type definition.
3373
3374 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3375
3376         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
3377         get the MonoClass for the call context type as it might be a generic
3378         instance.
3379
3380         Fixes #491483.
3381
3382 2009-04-21  Mark Probst  <mark.probst@gmail.com>
3383
3384         * object-internals.h: The Thread object has no execution_context
3385         member anymore.
3386
3387         * threads.c, threadpool.c, threads-types.h: Accessor functions for
3388         the execution context.
3389
3390         * appdomain.c: Bump corlib version.
3391
3392 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3393
3394         * verify.c (do_newobj): Improve error message.
3395
3396 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3397
3398         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
3399         is nested in the filter block.
3400
3401         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
3402         block is not fully nested.
3403
3404         Fixes #495656.
3405
3406 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3407
3408         * verify.c (verify_type_compatibility_full): Compare MonoClass and
3409         not MonoType to check for equality of valuetypes as the generic type
3410         definition allows for two different encodings: the generic type definition
3411         class or a generic instance over the GTD arguments.
3412
3413         Fixes #496175.
3414
3415 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3416
3417         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
3418
3419         * verify.c (do_initobj): Improve error message.
3420
3421 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3422
3423         * metadata-verify.c: Enable pe verification as the issue with #496453
3424         is that the authenticode data directory have a different unspecified
3425         format. Ignore it for now.
3426
3427         * pedump.c: Run the metadata verifier together with the IL verifier.
3428
3429         Fixes ##496453.
3430
3431 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3432
3433         * metadata-verify.c: Temporarily disable pe verification due to #496453.
3434
3435 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3436
3437         * class.c (can_access_type): Check visibility against
3438         the element type for pointers and arrays.
3439
3440         Fixes #496150.
3441
3442 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3443
3444         * metadata-verify.c: Fix cli and table verification to use information
3445         from the MonoImage. A lot of duplicated code got killed.
3446
3447 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3448
3449
3450         This patch starts to integrate the metadata verifier with the runtime code.
3451
3452         This patch causes major regression in functionality for the metadata verifier
3453         as cli and table verification are disabled since they require to be ported to
3454         use MonoImage information.
3455
3456         * image.c (do_mono_image_load): Split the code in this function
3457         into mono_image_load_pe_data and mono_image_load_cli_data.
3458         Add     care_about_pecoff parameter to not load pecoff data.
3459         Call into the metadata verifier for pecoff and cli verification.
3460
3461         * image.c (mono_image_open_raw): New function that doesn't perform
3462         any parsing of the image contents.
3463         
3464         The reason for the 3 new functions is to give pedump better control
3465         into the interaction with the verifier.
3466
3467         * metadata-internals.h: Add new functions from image.c as part of the
3468         internal mono API.
3469
3470         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
3471         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
3472         to make those functions work together with the runtime.
3473
3474         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
3475         true if the image needs to be verified.
3476
3477         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
3478
3479         * pedump.c: Use new metadata verifier API.
3480
3481 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
3482
3483         * object.c (mono_install_vtable_trampoline): Make this receive a
3484         trampoline creation function instead of trampoline, allowing the JIT
3485         to use a different trampoline for each vtable.
3486
3487 2009-04-18  Mark Probst  <mark.probst@gmail.com>
3488
3489         * object.c (mono_raise_exception): Don't reset the thread abort
3490         exception state here.
3491
3492 2009-04-18  Mark Probst  <mark.probst@gmail.com>
3493
3494         * icall-def.h: New icall for getting the thread abort exception
3495         state for a thread.
3496
3497         * object.c, thread.c, object-internals.h: A thread's abort
3498         exception state is now a GC handle.  To get the object it stands
3499         for, we must move it into the current app domain, if it's
3500         different than the one where it originated from.
3501
3502         * appdomain.c: Bump corlib version.
3503
3504         * domain.c, domain-internals.h: New function for setting the
3505         domain and migrate the thread abort exception or not.
3506
3507 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3508
3509         * metadata-verify.c: Add initial verification of the
3510         field table.
3511
3512 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3513
3514         * metadata-verify.c: Add a macro to conditionally enable
3515         dumping of verification information. Add  make_coded_token
3516         and search_sorted_table to enable search sorted tables
3517         by a given coded token.
3518
3519 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3520
3521         * metadata-verify.c: Add array mapping from table index
3522         to description offset. Add get_col_offset and get_col_size
3523         functions.
3524
3525 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3526
3527         * metadata-verify.c: Add remaining table descriptions offsets.
3528         Add remaining coded index descriptions.
3529
3530 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3531
3532         * metadata-verify.c: Fixed constant table description.
3533         Fixed calculation of HasCustomAttribute coded index size.
3534         Fixed calculation of size for many table indexes. 
3535
3536 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3537
3538         * pedump.c (dump_metadata): Dump table offset instead
3539         of useless pointer in memory.
3540
3541 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3542
3543         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
3544
3545 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3546
3547         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
3548         a missing of for interface types.
3549
3550 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3551
3552         * metadata-verify.c (verify_pe_optional_header): Add comment of why
3553         the code is commented.
3554
3555         * metadata-verify.c (verify_resources_table): Remove spurious printf
3556         and don't fail if there are unmanaged resources. Gmcs generates a useless
3557         one     for all assemblies - I bet it's some MS compatibility junk.
3558
3559 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3560
3561         * metadata-verify.c (verify_typedef_table): Verify the extends field.
3562
3563         * metadata-verify.c (mono_image_verify): Add a is_corlib.
3564
3565         * verify-internals.h: Same.
3566
3567         * pedump.c: Fix for mono_image_verify new signature.
3568
3569 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3570
3571         * metadata-verify.c (verify_typedef_table): Verify for some invalid
3572         flags combinations.
3573
3574 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3575
3576         * metadata-verify.c (verify_module_table): Ignore the generation field.
3577
3578 2009-04-15  Martin Baulig  <martin@ximian.com>
3579
3580         * debug-mono-symfile.c
3581         (mono_debug_symfile_lookup_location): Don't print a warning for
3582         unknown extended opcodes if they're within 0x40 and 0x7f.
3583
3584 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
3585
3586         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
3587         invoke signatures returning an enum. Fixes #494847.
3588
3589 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3590
3591         * metadata-verify.c: Initial code to verify the typedef table.
3592
3593 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3594
3595         * verify.c (mono_method_verify): Don't fail if an unconditional branch
3596         with non empty stack happens before the beginning of a try block.
3597
3598         Fixes #494812.
3599
3600 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3601
3602         * metadata-verify.c: Verify typename and typenamespace fields of
3603         the typeref table.
3604
3605 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
3606
3607         * metadata-verify.c: Initial code to verify the typeref table.
3608
3609 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
3610
3611         * verify.c (verify_delegate_compatibility): Fix error message.
3612
3613 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
3614
3615         * security-core-clr.c: Fix typo
3616
3617 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
3618
3619         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
3620         a MonoGHashTable to keep its values alive.
3621         (emit_marshal_boolean): Fix a warning.
3622
3623 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
3624
3625         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
3626         not have any interface configured for IPv4/IPv6.
3627
3628 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
3629
3630         * assembly.c: fix typo in error message.
3631
3632 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
3633
3634         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
3635         allocating the location holding the this argument to prevent
3636         'too many root sets' errors.
3637
3638         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
3639         to mark fields as special static.
3640         (mono_field_static_get_value): Handle special static fields.
3641         (mono_field_static_set_value): Ditto.
3642
3643         * class-internals.h (struct _MonoClassField): Document this.
3644
3645 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
3646
3647         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
3648           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
3649           case.  This will handle when managed code returns null to native code.
3650
3651         Code is contributed under MIT/X11 license.
3652
3653 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
3654
3655         * object.c (build_imt_slots): Changing a free to a g_free to match
3656           the g_malloc0 in add_imt_builder_entry that allocated this memory.
3657
3658         Code is contributed under MIT/X11 license.
3659
3660 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
3661
3662         * marshal.c (emit_marshal_boolean): Adding code to ensure that
3663           the correct TRUE value is passed through the marshaling layer.
3664
3665         Code is contributed under MIT/X11 license.
3666
3667 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
3668
3669         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
3670         correctly. Fixes #492330.
3671         
3672         * marshal.c: Fix the embedding of object pointers into JITted code in
3673         the native-to-managed wrappers by allocating some GC tracked memory, and
3674         embedding the address of that.
3675
3676 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
3677
3678         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
3679         pointers into the vtable.
3680
3681 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
3682
3683         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
3684
3685         * verify.c (verify_ldftn_delegate): Improve error message.
3686
3687 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
3688
3689         * reflection.c (my_mono_class_from_mono_type): Remove.
3690
3691 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
3692
3693         Prepare to reduce memory usage of owner-less generic parameters (1/n)
3694         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
3695         and constraints fields into ...
3696         (MonoGenericParamInfo): ... this.
3697         (mono_generic_param_info, mono_generic_container_get_param_info):
3698         New accessors.
3699         * class.c, debug-helpers.c, icall.c: Update to changes.
3700         * metadata.c, reflection.c, verify.c: Likewise.
3701
3702 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
3703
3704         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
3705
3706         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
3707         
3708         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
3709         booleans with sbytes.
3710
3711 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3712
3713         * class.c (can_access_instantiation): Verify accesibility of element types
3714         for arrays and pointers.
3715
3716         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
3717
3718         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
3719
3720         Fixes #493068.
3721
3722 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3723
3724         * verify.c (do_invoke_method): Improve error messages.
3725
3726 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
3727
3728         * verify.c:  Fixing the MSVC build.
3729
3730         Code is contributed under MIT/X11 license.
3731
3732 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
3733
3734         * security-core-clr.c: Simplify get_reflection_caller not to call
3735         mono_method_get_last_managed (another stack walk) and adjust the
3736         callers to handle a (should not happen) NULL return value.
3737
3738 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
3739
3740         Add accessors to some MonoGenericParam fields
3741         * class-internals.h (mono_generic_param_owner): New accessor.
3742         (mono_generic_param_num): Likewise.
3743         (mono_type_get_generic_param_owner): New helper.
3744         (mono_type_get_generic_param_num): New helper.
3745         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
3746
3747 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
3748
3749         * class-internals.h (mono_generic_container_get_param): New wrapper.
3750         * class.c, icall.c, metadata.c, verify.c: Use it.
3751
3752 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
3753
3754         Fix gtest-252.cs
3755         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
3756         the standard case/loop.  In particular, don't complain about
3757         references to generic type definitions.
3758
3759 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
3760
3761         * debug-helpers.c (dis_one): Decode string arguments.
3762
3763 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
3764
3765         * pedump.c (dump_verify_info): Dump type name correctly.
3766
3767 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
3768
3769         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
3770         are larger than code size.
3771
3772         This can happen in valid code if the try/catch block is not followed by any instruction
3773         and do a backward branch on the leave instruction.
3774
3775         Fixes #492494.
3776
3777 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
3778
3779         * security-core-clr.c: Fix typo while comparing second method names
3780         in can_avoid_corlib_reflection_delegate_optimization
3781
3782 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
3783
3784         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
3785
3786         Fixes #487738.
3787
3788 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
3789
3790         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
3791         a MVAR using a class context.
3792
3793         Fixes #490335.
3794
3795 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
3796
3797         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
3798
3799         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
3800
3801         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
3802         functions supplied by the JIT for the SGEN GC.
3803
3804         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
3805         
3806 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
3807
3808         monitor.c (mono_monitor_try_enter_internal):
3809         Added calls to profile monitor contentions.
3810         Also duplicated a small piece of code (the "get the monitor" logic)
3811         from the fast path to the slow path, and changed the relevant goto
3812         statements, so that monitor acquisition events can be emitted from the
3813         slow path (this is by Paolo Molaro).
3814
3815 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
3816
3817         * profiler.c, profiler.h, profiler-private.h:
3818         Added support for profiling monitor contentions.
3819
3820 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
3821
3822         * metadata-verify.c: Verify the modules table.
3823
3824 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
3825
3826         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
3827         using the context of the method been verifier and not of the method been called.
3828
3829         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
3830         safely inflate generic types. 
3831
3832 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
3833
3834         * security-core-clr.c: Change the strategy for checking the 
3835         "reflection using delegates optimization" to avoid unneeded 
3836         attributes in multiple class libraries.
3837
3838 2009-04-02  Mark Probst  <mark.probst@gmail.com>
3839
3840         * sgen-gc.c: Remove object element in the disappearing link struct
3841         by storing the object pointer in the link.
3842
3843 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
3844
3845         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
3846
3847 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
3848
3849         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
3850
3851         * verify.c (mono_method_verify): Do proper bounds checking of exception
3852         clause ranges.
3853
3854 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
3855
3856         * loader.c (mono_field_from_token): Don't crash if the field parent could
3857         not be decoded.
3858
3859 2009-03-31  Mark Probst  <mark.probst@gmail.com>
3860
3861         * sgen-gc.c: Execute critical finalizers after ordinary
3862         finalizers.
3863
3864         * class-internals.h, domain.c: Add CriticalFinalizerObject to
3865         mono_defaults.
3866
3867 2009-03-31 Jb Evain <jbevain@novell.com>
3868
3869         * verify.c (do_ldstr): don't check if a string is in the user strings
3870         heap if the current image is dynamic.
3871
3872 2009-03-31  Mark Probst  <mark.probst@gmail.com>
3873
3874         * sgen-gc.c: Wait until the last finalizer has executed when
3875         returning from WaitForPendingFinalizers.
3876
3877 2009-03-31  Martin Baulig  <martin@ximian.com>
3878
3879         * mono-debug-debugger.h (MonoDebuggerEvent): Add
3880         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
3881         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
3882         (mono_debugger_event_create_appdomain): New function.
3883         (mono_debugger_event_unload_appdomain): New function.
3884
3885         * appdomain.c (mono_domain_create_appdomain_internal): Call
3886         mono_debugger_event_create_appdomain().
3887
3888 2009-03-31  Martin Baulig  <martin@ximian.com>
3889
3890         * mono-debug-debugger.c
3891         (mono_debugger_register_class_init_callback): Also register the
3892         class init callback if the class is already initialized to make
3893         things work with shadow copied assemblies.
3894
3895 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
3896
3897         * security-core-clr.c
3898         (mono_security_core_clr_ensure_reflection_access_field): Let 
3899         critical code access the field (just like we do for methods). Use
3900         check_field_access helper.
3901         (mono_security_core_clr_ensure_reflection_access_method): Use 
3902         check_field_access helper.
3903
3904 2009-03-31  Mark Probst  <mark.probst@gmail.com>
3905
3906         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
3907         call the run-finalize function directly.
3908
3909         * gc.c, gc-internal.h: Make run_finalize() non-static.
3910
3911 2009-03-31  Mark Probst  <mark.probst@gmail.com>
3912
3913         * sgen-gc.c: Use a separate struct for disappearing links.
3914
3915 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3916
3917         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
3918         * MaxIOVectorLength enabled, just ignore them.
3919         Fixes bug #349688.
3920
3921 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
3922
3923         * metadata-verify.c: Fix eglib build.
3924
3925 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
3926
3927         * threads-types.h: Fix the win32 build.
3928
3929 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
3930
3931         * class.c: move coreclr inheritance/override checks to 
3932         security-core.clr.c
3933         * security-core.clr.c|h: add code from class.c with additional
3934         documentation. Fix override check when the method is not critical.
3935
3936 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
3937
3938         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
3939         (match_class): Ditto.
3940
3941 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
3942
3943         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
3944
3945         * metadata-verify.c: Implement table layout row size calculation. Verify
3946         the total size of the tables.
3947
3948 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
3949
3950         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
3951
3952 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3953
3954         * appdomain.c:
3955         * console-io.[ch]: added new mono_console_init() to make sure that
3956         file descriptors 0, 1 and 2 are opened.
3957         Bug #489019 fixed.
3958
3959 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
3960
3961         * appdomain.h: Export a new callback type and a new function to
3962         set this callback. This allow a mono host to provide it's own
3963         definition for "platform code".
3964         * metadata-internals.h: Add a core_clr_platform_code flag on 
3965         _MonoImage to (cache and) know if it is representing platform 
3966         code.
3967         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
3968         on platform code images.
3969         * security-core-clr.c|h 
3970         (mono_security_set_core_clr_platform_callback): Allow the host
3971         to provide it's own platform check definition.
3972         (mono_security_core_clr_determine_platform_image): Detect if an 
3973         image is platform code (using the specified callback).
3974         (mono_security_core_clr_is_platform_image): Return cached value 
3975         for platform code.
3976
3977 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
3978
3979         * threads.c (mono_create_thread): New helper function to wrap CreateThread
3980         which has different parameter types for the 'tid' argument in windows and
3981         the io-layer.
3982
3983         * appdomain.c attach.c threads.c: Use the new helper.
3984
3985 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
3986
3987         * metadata-verify.c: Verify valid table bits.
3988
3989 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
3990
3991         * metadata-verify.c (verify_metadata_header): Store size in the size field.
3992
3993         * metadata-verify.c: Add initial table schema verification.
3994
3995 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
3996
3997         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
3998         obtain the refclass argument needed by mono_param_get_objects (). Fixes
3999         #488383.
4000
4001         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
4002
4003         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
4004
4005 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
4006
4007         * security-core-clr.c: Add/update documentation
4008
4009 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
4010
4011         * marshal.c (emit_marshal_object): Generate code to throw an exception
4012         instead of throwing it. Fixes #488670.
4013
4014 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
4015
4016         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
4017         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
4018         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
4019         and add a call to mono_security_core_clr_ensure_delegate_creation
4020         to do the extra checks required by CoreCLR.
4021         * security-core-clr.c|h: Add function to check delegate creation,
4022         both in the binding and accessibility, under CoreCLR.
4023
4024 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
4025
4026         * reflection.c (mono_reflection_create_dynamic_method): when 
4027         coreclr is enabled make sure that every resolved object are
4028         checked (e.g. field and method access).
4029         * security-core-clr.c|h: Add function to check objects resolved
4030         when a dynamic method is created.
4031
4032 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4033
4034         * metadata-verify.c: Cache directory rva translations.
4035
4036         * metadata-verify.c: Add cli-header and streams verification.
4037
4038 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4039
4040         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
4041         the wrong offset (8 instead of 6).
4042
4043 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
4044
4045         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
4046         methods, return the native function address itself. Fixes
4047         #487758.
4048
4049 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
4050
4051         * console-io.c: some of the values for control characters might not be
4052         present.
4053
4054 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
4055
4056         * exception.c|h: Add helpers to create [Field|Method]AccessException
4057         * icall.c: Add required coreclr check calls for field reflection.
4058         Move the existing (method) check logic into security-core-clr.c
4059         * security-core-clr.c: Add functions to check if the access of a
4060         field or method is allowed when reflecting under coreclr. This is
4061         mostly done using a stack walk to find the "real" caller: i.e. the
4062         code that is calling the reflection
4063
4064 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
4065
4066         * gc-internal.h: Change location of gc_wrapper.h
4067
4068 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
4069
4070         * class.c: Simplification to coreclr checks for overrides that
4071         makes it easier to set breakpoints.
4072
4073 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
4074
4075         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
4076         mono_security_core_clr_method_level): Avoid potential 
4077         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
4078         user/application code) and make it easier to set breakpoints
4079
4080 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4081
4082         * metadata-verify.c: Reject cli header tables that mono don't handle.
4083
4084 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4085
4086         * pedump.c: Fix CLI header dumping.
4087
4088 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4089
4090         * metadata-verify.c: More CLI header verification.
4091
4092 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
4093
4094         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
4095
4096 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
4097
4098         * metadata-verify.c: Initial verification of the CLI header.
4099
4100 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
4101
4102         * metadata-verify.c (verify_resources_table): Fix verification of zero
4103         sized resource section and id entries count.
4104
4105 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
4106
4107         * icall.c: Handle user types in many Type icalls. Fixes #486303.
4108
4109 2009-03-17  Jb Evain  <jbevain@novell.com>
4110
4111         * profiler.c: call mono_gc_base_init from mono_profiler_load.
4112
4113 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
4114
4115         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
4116         (mono_gc_make_descr_for_array): Ditto.
4117
4118 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
4119
4120         * verify.c (mono_verifier_is_class_full_trust): Add support for
4121         CoreCLR security mode where trusted assemblies are defined as
4122         "platform code".
4123
4124 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4125
4126         * metadata-verify.c: Add minimal PECOFF resource verification.
4127
4128 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4129
4130         * metadata-verify.c: Be less restrictive with some coff fields.
4131
4132 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4133
4134         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
4135         params as boxed values on stack. Fixes #485706.
4136
4137 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
4138
4139         * console-io.c: the termios values may vary in different flavors of unix.
4140
4141 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
4142
4143         * console-io.[ch]: return the entire set of control characters when
4144         initializing the terminal.
4145         * appdomain.c: bump corlib version.
4146
4147 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
4148
4149         * mono-perfcounters.c: added support for in-process custom
4150         performance counters.
4151
4152 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4153
4154         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
4155
4156 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4157
4158         * metadata-verify.c: Verify the data pointed by the import table. 
4159
4160 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4161
4162         * metadata-verify.c (load_data_directories): Store data
4163         directory contents.
4164
4165         * metadata-verify.c: Verify the import table. 
4166
4167 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4168
4169         * metadata-verify.c: Verify data directories.
4170
4171 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4172
4173         * metadata-verify.c: Check section header flags.
4174
4175 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
4176
4177         * appdomain.c: if the assembly name is a shadow-copied file, return
4178         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
4179         in mono_make_shadow_copy.
4180         * icall.c: if the assembly name is a shadow-copied file, replace it
4181         with the original assembly path.
4182
4183         Bug #484244 fixed. NUnit tests for corlib can be run without
4184         --noshadow now.
4185
4186 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
4187
4188         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
4189         entries when the table is reallocated.
4190
4191         * icall.c: Allocate the memory used by the mono_ptr_array macros using
4192         mono_gc_alloc_fixed () since it contains GC refs.
4193
4194 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
4195
4196         * reflection.c (ensure_complete_type): New helper function to call
4197         type resolve handlers for unfinished dynamic types.
4198         (resolve_object): Call it for MonoClassFields. Fixes #483852.
4199
4200 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
4201
4202         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
4203         #483247.
4204
4205 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
4206
4207         * appdomain.c (get_shadow_assembly_location): Fix memleak.
4208
4209 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
4210
4211         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
4212         between GCHandles of type WeakTrackResurrection and the objects they
4213         point to.
4214
4215         * gc.c: Partly implement the sematics of GCHandles of type 
4216         WeakTrackResurrection: these handles should only be cleared after the
4217         finalizer of the object they are pointing to has ran.
4218
4219 2009-03-06  Mark Probst  <mark.probst@gmail.com>
4220
4221         * icall.c: Partially revert r126631 because using the jump
4222         trampolines for generic shared methods makes it superfluous.
4223
4224 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
4225
4226         * threads.c (handle_store): Create the 'threads' hash table with the proper
4227         MONO_HASH_VALUE_GC type.
4228
4229 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
4230
4231         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
4232         FIRST_GC_TRACKED.
4233
4234         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
4235         and LAST_GC_TRACKED as a GC root.
4236
4237         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
4238
4239         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
4240         the static data even if it consists of 1 reference.
4241
4242         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
4243         if there is a GC descriptor.
4244
4245         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
4246         instead of through the GC since they contain no object references.
4247
4248 2009-03-05  Mark Probst  <mark.probst@gmail.com>
4249
4250         * generic-sharing.c (instantiate_other_info): Always return a jump
4251         trampoline for method code.
4252
4253 2009-03-05  Marek Habersack  <mhabersack@novell.com>
4254
4255         * culture-info-tables.h: generated to include the en-tt culture.
4256
4257 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
4258
4259         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
4260         capture the thread context.
4261
4262         * object.c (mono_async_result_new): Cache the invoke wrappers to
4263         ExecutionContext::Capture.
4264
4265 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
4266
4267         * marshal.h: Add a prototype for what mono_compile_method returns
4268         for invoke wrappers.
4269
4270         * gc.c: Use the new prototype declaration.
4271
4272 2009-03-04  Geoff Norton  <gnorton@novell.com>
4273
4274         * boehm-gc.c: Add some MONO_LOG tracing for the GC
4275         * gc-internal.h:
4276         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
4277
4278 2009-03-04  Martin Baulig  <martin@ximian.com>
4279
4280         * mono-debug.h
4281         (mono_debugger_runtime_invoke): Removed.
4282
4283         * mono-debug-debugger.c
4284         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
4285
4286 2009-03-02  Martin Baulig  <martin@ximian.com>
4287
4288         * mono-debug.h
4289         (mono_debugger_unhandled_exception): Removed.
4290         (mono_debugger_handle_exception): Removed.
4291         (mono_debugger_throw_exception): Removed.
4292
4293         * mono-debug.c
4294         (mono_debug_debugger_version): Bump to 5.
4295
4296         * mono-debug-debugger.c: Moved the exception handling code to
4297         ../mini/debug-mini.c
4298
4299 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
4300
4301         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
4302         finalize_objects_hash.
4303
4304         * gc.c: Use the separate lock to access the finalize_objects_hash field.
4305         
4306         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
4307         field.
4308
4309         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
4310         cache.
4311
4312         * image.c (mono_image_close): Free it.
4313         
4314         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
4315         allowing a creation of a wrapper which invokes its method using a CALLVIRT
4316         on the this argument.
4317
4318         * gc.c (run_finalize): Optimize the calling of the finalizers.
4319
4320 2009-03-03  Martin Baulig  <martin@ximian.com>
4321
4322         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
4323         of the `MonoGenericInst' changes.
4324
4325 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4326
4327         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
4328         mono_array_class_get_cached to reduce locking contention. Extract
4329         a domain var.
4330
4331         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
4332         intermediary managed arrays. Use caching version of mono_array_new
4333         to allocate the result array.
4334
4335         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
4336
4337         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
4338
4339         * locales.c (create_names_array_idx):  Use mono_array_new_cached
4340         to reduce locking contention.
4341
4342 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
4343                 
4344         * object.c (mono_method_add_generic_virtual_invocation): Put back the
4345         thunk builder code for the non-interface case.
4346
4347 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
4348
4349         * object.c (get_generic_virtual_entries): New helper function to collect
4350         the virtual generic method instances which need to be added to an IMT
4351         thunk.
4352         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
4353         Instead of creating a new IMT thunk, reset the vtable slot to the
4354         trampoline, the thunk will be created the next time the trampoline is called.
4355         (build_imt_slots): Add support for virtual generic methods in interfaces by
4356         adding to the IMT thunk all the methods registered using 
4357         mono_method_add_generic_virtual_invocation ().
4358
4359         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
4360         (struct _MonoIMTCheckItem): Ditto.
4361
4362         * object.c (mono_method_add_generic_virtual_invocation): Take a
4363         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
4364         the IMT thunk to include all items.
4365         
4366         * object.c (mono_class_create_runtime_vtable): Add a missing
4367         mono_loader_unlock ().
4368
4369 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4370
4371         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4372
4373         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
4374
4375 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4376
4377         * object-internals.h: Rename _MonoReflectionEvent to
4378         MonoReflectionMonoEvent so it reflects the right managed type.
4379         Add a MonoReflectionEvent that correctly represents System.EventInfo.
4380
4381         * icall.c:
4382         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
4383         type.
4384
4385 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4386
4387         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
4388         intermediary managed arrays. Use caching version of mono_array_new
4389         to allocate the result array.
4390
4391 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4392
4393         * reflection.c: Use cached version of mono_array_new alongside
4394         the mono_reflection_get_custom_attrs_by_type call path.
4395
4396 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4397
4398         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
4399         intermediary managed arrays. Use caching version of mono_array_new
4400         to allocate the result array.
4401
4402         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
4403
4404 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4405
4406         * icall.c: Add small implementation of a growable stack bound array.
4407
4408         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
4409
4410         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
4411         intermediary managed arrays. Use caching version of mono_array_new
4412         to allocate the result array.
4413
4414 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
4415
4416         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
4417         helps Enum::CompareTo to be implemented without reboxing all enums
4418         to their underlying type.
4419 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
4420
4421         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
4422         since it acquires a global lock leading to scalability problems.
4423
4424         * profiler.c: Make the stat profiler work with multiple appdomains, this
4425         currently only works when no appdomains are unloaded.
4426
4427 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4428
4429         * appdomain.c: make the check to avoid copying when the assembly is
4430         already shadow copied actually work.
4431
4432 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
4433
4434         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4435
4436         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
4437         changes to the managed side.
4438
4439 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
4440
4441         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
4442         classes + a separate lock for it, as it is used frequently at runtime, not
4443         just during metadata loading/JIT compilation.
4444
4445         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
4446         for szarrays.
4447         
4448         * object-internals.h (mono_class_from_name_cached): New macro to cache
4449         the results of the lookup locally without having to declare a static
4450         variable to hold it.
4451         (mono_class_get_field_from_name_cached): Ditto.
4452         (mono_array_class_get_cached): Ditto.
4453
4454         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
4455         the new macros.
4456         
4457         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
4458         slower search in metadata.
4459
4460         * pedump.c: Fix a warning.
4461
4462 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
4463
4464         * reflection.c (encode_locals): Add checks for user types.
4465         (method_encode_clauses): Ditto.
4466         (method_encode_code): Ditto.
4467         (mono_image_create_token): Ditto.
4468
4469         * object-internals.h: Change the type of more fields from MonoReflectionType*
4470         to MonoObject*.
4471
4472 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
4473
4474         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
4475         the a thread does not suspend within 100ms.
4476
4477         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
4478         in addition to StopRequested as well.
4479
4480         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
4481
4482         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
4483         search the method_hash before inserting a new entry, to avoid crashes when
4484         the same method is inserted multiple times, causing the old 
4485         MonoDebugMethodInfo structure to be freed by the value dtor function.
4486
4487 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4488
4489         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
4490         SO_EXLUSIVEADDRUSE where available.
4491
4492 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
4493
4494         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
4495         runtime invoke wrappers, this time it is string ctor wrappers, which
4496         pass a dummy string as 'this' instead of their obj argument. Fixes
4497         #478473.
4498
4499 2009-02-21  Jb Evain  <jbevain@novell.com>
4500
4501         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
4502         only get create_culture once.
4503
4504 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
4505
4506         * reflection.c (mono_reflection_setup_internal_class): Move the user type
4507         check before the locking.
4508         
4509         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
4510         (mono_reflection_create_runtime_class): Ditto.
4511         (mono_reflection_sighelper_get_signature_local): Ditto.
4512         (mono_reflection_sighelper_get_signature_field): Ditto.
4513
4514         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
4515         is a System.MonoType object or similar.
4516         (monotype_cast): New helper function to cast a MonoObject to a 
4517         MonoReflectionType object.
4518
4519         * object-internals.h: Change MonoReflectionType* members in structures to
4520         MonoObject* members to force the usage of the monotype_cast () function.
4521
4522         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
4523         structures/arrays. This causes us to assert instead of crashing when 
4524         instances of user defined subclasses of System.Type are encountered.
4525
4526 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
4527
4528         * cil-coff.h:
4529         * icall-def.h:
4530         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
4531         win32 resource loaded from a PE file.
4532
4533         * image.c: fix mono_image_lookup_resource.
4534
4535 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
4536
4537         * icall-def.h:
4538         * threads-types.h:
4539         * threads.c: added internal call for WaitHandle.SignalAndWait.
4540
4541 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
4542
4543         * cominterop.c : Adding cominterop_type_from_handle and 
4544           registering it as an icall.  Replacing all references
4545           to type_from_handle.
4546
4547         Code is contributed under MIT/X11 license.
4548
4549 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
4550
4551         * Makefile.am: Add lock-tracer.h and lock-trace.c.
4552
4553         * appdomain.c: Call the tracer init function.
4554
4555         * domain-internals.h: Enable the tracer for the domain locks.
4556
4557         * image.c: Enable the tracer for image locks.
4558
4559         * loader.c: Enable the trace for the loader lock.
4560
4561         * lock-tracer.h:
4562         * lock-tracer.c: Initial implementation of the lock trace utility.
4563         The tracer requires a compile time define to be enabled and a env var
4564         to be enabled at runtime.
4565
4566 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
4567
4568         * domain.c (mono_domain_code_foreach): Improve documentation.
4569
4570 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
4571
4572         * appdomain.c:
4573         * generic-sharing.c:
4574         * object.c:
4575         * reflection.c:  Adjust locking order to the new semantics where the loader lock
4576         comes first.
4577
4578 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4579
4580         * domain.c: Add mono_domain_code_* functions that perform locking
4581         around the domain codeman.
4582
4583         * domain-internals.h: Export those functions.
4584
4585         * object.c: Use new functions instead of acquiring the domain lock.
4586
4587 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
4588
4589         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
4590         delegate. Fixes #477396.
4591
4592 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
4593
4594         * reflection.c (create_custom_attr): Get rid of alloca.
4595
4596 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
4597
4598         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
4599           Adding exception handling for all CCW calls.
4600
4601         Code is contributed under MIT/X11 license.
4602
4603 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
4604
4605         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
4606
4607         * marshal.c (emit_marshal_boolean): Add null checks to the new 
4608         native->managed marshalling code. Fixes #476247.
4609
4610 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
4611
4612         * class.c (mono_class_get_vtable_entry): Move the addition of
4613         static rgctx invoke wrappers for vtable methods here, this simplifies
4614         a lot of code and causes fewer rgctx wrappers to be created.
4615
4616         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
4617         name of the statistics to begin with an uppercase.
4618
4619 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
4620
4621         * reflection.c: Revert previous change as it breaks the build.
4622         
4623 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
4624
4625         * verify.c: Properly handle SZARRAY element type.
4626
4627         Fixes #474271.
4628
4629 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
4630
4631         * reflection.c (mono_image_create_method_token): Correctly encode
4632         MethodDef MemberRefParent token.
4633
4634         Fixes #472845.
4635
4636 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
4637
4638         * image.c (mono_image_close): Delete the critical section before
4639         freeing the memory holding it.
4640
4641 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4642
4643         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
4644         Fixes #476257.
4645
4646 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4647
4648         * pedump.c (main): Call mono_marshal_init so pedump
4649         doesn't crash.
4650
4651 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4652
4653         * loader.c (method_from_memberref): Properly fix #474271 and
4654         don't break the runtime bad.
4655
4656 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
4657
4658         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
4659         (mono_domain_alloc0): Ditto.
4660
4661 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4662
4663         * loader.c (method_from_memberref): Don't abort if the array
4664         method is not found. A regular loader failure is more informative
4665         and correct.
4666
4667         Fixes #474271.
4668
4669 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4670
4671         *loader.c: Guard MonoImage::method_cache/methodref_cache
4672         using the image lock instead of the loader lock.
4673
4674         * metadata.h: Add comments about which fields are protected by
4675         the image lock.
4676
4677 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
4678
4679         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
4680
4681         * generic-sharing.c (mono_method_construct_object_context): Remove the
4682         wrapper_type == NONE assert, it is not needed.
4683
4684 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
4685
4686         * reflection.c (clear_cached_object): New helper function.
4687         (mono_method_clear_object): New function to clear the cached reflection
4688         objects for a dynamic method.
4689
4690         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
4691         Partly fixes # 463323.
4692         
4693 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
4694
4695         * class.c:
4696         * loader.c:
4697         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
4698
4699 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
4700
4701         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
4702         take the image lock instead of the loader lock.
4703
4704         * metadata-internals.h: Export new functions.
4705
4706 2009-02-12  Miguel de Icaza  <miguel@novell.com>
4707
4708         * domain.c (app_config_parse): Remove another use of stat that is
4709         not necessary as g_file_get_contents already does the presence
4710         check. 
4711
4712 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
4713
4714         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
4715
4716         * marshal.c: Move the bstr handling code to cominterop.c.
4717
4718         * marshal.c: Remove some COM interop code missed previously.
4719
4720 2009-02-12  Miguel de Icaza  <miguel@novell.com>
4721
4722         More Paolo patches from the Wii port:
4723         
4724         * security.c: Remove ves_icall_System_Environment_get_UserName
4725         from here.
4726
4727         * icall.c: And put ves_icall_System_Environment_get_UserName
4728         here. 
4729
4730         * appdomain.c (mono_set_private_bin_path_from_config): Remove
4731         redundant call to stat that was only used to test for the file
4732         existence.   Patch from Paolo.
4733
4734         * gc.c (run_finalize): If COM is disabled, do not link in
4735         mono_marshal_free_ccw.
4736
4737         * generic-sharing.c: Use alloca.h here as well.
4738
4739 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
4740
4741         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
4742
4743 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
4744
4745         * cominterop.c cominterop.h: New files.
4746
4747         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
4748         function/typedefs which are needed by cominterop.c global.
4749
4750 2009-02-12  Mark Probst  <mark.probst@gmail.com>
4751
4752         * generic-sharing.c: Don't take the loader lock to guard image
4753         mempool allocs.
4754
4755 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4756
4757         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
4758         called without the loader lock which is required to guard MonoImage:tokens.
4759
4760 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4761
4762         * class.c:
4763         * metadata.c:
4764         * method-builder.c:
4765         * marshal.c:
4766         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
4767
4768 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4769
4770         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
4771         Rework the code to use regular mono_image_alloc/0.
4772
4773         * loader.c: Rework the code to use regular mono_image_alloc/0.
4774
4775         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
4776
4777 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
4778
4779         * object-internals.h : Fixing a typo in the 
4780           MonoReflectionComVisibleAttribute struct.
4781
4782         * marshal.c (cominterop_com_visible): Check the implemented 
4783           interfaces for ComImport.
4784
4785         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
4786           assume that bools should be treated as VARIANTBOOLs.
4787
4788         * marshal.c (emit_marshal_boolean): Adding cases for 
4789           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
4790
4791         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
4792           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
4793
4794         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
4795           should be treated as VARIANTBOOLs.    
4796
4797         Code is contributed under MIT/X11 license.
4798
4799 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4800
4801         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
4802         allocation with the image lock.
4803
4804 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4805
4806         This patch is the last of a series to remove explicit reference of MonoImage::mempool
4807         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
4808
4809         * object.c: Add mono_string_to_utf8_image.
4810
4811         * object-internals.h: Export mono_string_to_utf8_image.
4812
4813         * reflection.c: Rework all explicit references to the the image mempool to go thought
4814         the mono_image_alloc set of functions.
4815
4816 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4817
4818         This patch is the third of a series to remove explicit reference of MonoImage::mempool
4819         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
4820         and generics-sharing.c.
4821
4822         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
4823         as first argument. Note that this function remains broken as it doesn't perform locking around the
4824         mempool allocation.
4825
4826         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
4827
4828         * image.c: Add g_slist_append_image.
4829
4830         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
4831         the supplied image for allocation. Move code into mono_metadata_field_info_full.
4832
4833         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
4834         Fix all related code to do the same.
4835
4836         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
4837
4838         * metadata-internals.h: Fix the signatures.
4839
4840 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4841
4842         This patch is the second of a series to remove explicit reference of MonoImage::mempool
4843         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
4844         and similar to work using MonoImage.
4845
4846         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
4847         MonoMemPool.
4848
4849         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
4850
4851         * class.c (mono_metadata_signature_deep_dup): Same.
4852
4853         * class.c (inflate_generic_type): Same.
4854
4855         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
4856
4857         * metadata.c (mono_metadata_signature_dup_full): Same.
4858
4859         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
4860         mono_metadata_signature_dup_full.
4861
4862         * metadata.c (mono_metadata_type_dup): Same.
4863
4864         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
4865
4866         * reflection.c: Same.
4867
4868         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
4869
4870         * metadata-internals.h: Fix the signatures.
4871
4872         * class-internals.h: Same.
4873
4874 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
4875
4876         This patch is the first of a series to remove explicit reference of MonoImage::mempool
4877         and use mono_image_alloc set of functions instead. 
4878
4879         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
4880         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
4881         of a MonoMemPool.
4882
4883         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
4884
4885         * class.c (g_list_prepend_mempool): Removed.
4886
4887         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
4888
4889         * image.c: Add g_list_prepend_image.
4890
4891         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
4892
4893         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
4894
4895
4896 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
4897
4898         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
4899         mono_image_unlock.
4900
4901         * image.c (mono_image_init): Init the lock field.
4902  
4903         * image.c (mono_image_init): Cleanup the lock field.
4904
4905         * image.c: Add mono_image_(un)lock functions.
4906
4907 2009-02-11  Mark Probst  <mark.probst@gmail.com>
4908
4909         * class.c, class-internals.h: mono_method_get_context_general()
4910         combines the functionality of mono_method_get_context() and
4911         mini_method_get_context().
4912
4913         * generic-sharing.c, domain-internals.h:
4914         mono_method_construct_object_context() and
4915         mono_domain_lookup_shared_generic() moved from mini.
4916
4917         * icall.c (ves_icall_InternalInvoke): Handle the case where the
4918         method doesn't have the correct instantiation because it's shared
4919         generic code.  Fixes #473999.
4920
4921 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
4922
4923         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
4924
4925         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
4926         
4927 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
4928
4929         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
4930
4931         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
4932
4933         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
4934         and recheck the cache for dups after it.
4935
4936         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
4937
4938         Fixes one of the deadlocks found in #473150.
4939
4940 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
4941
4942         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
4943           For Win32, add additional break conditions for accept.
4944
4945         Code is contributed under MIT/X11 license.
4946
4947 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
4948
4949         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
4950         lazily initialize the native wrapper cache.
4951         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
4952         cache, since they are different from the normal wrappers.
4953
4954         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
4955
4956         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
4957         AOT compiled native wrappers.
4958
4959 2009-02-09  Geoff Norton  <gnorton@novell.com>
4960
4961         * appdomain.h:
4962         * security-core-clr.c: Allow enabling core-clr from the embedding
4963         API.
4964
4965 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
4966
4967         * socket-io.c: when requesting all the local ips, if there are no
4968         interfaces up and running, MS returns 127.0.0.1.
4969
4970 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
4971
4972         * mono-perfcounters-def.h: processor time is an inverse time.
4973         Fixes bug #468625.
4974
4975 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
4976
4977         * socket-io.c: an empty host name returns the list of local IPs.
4978         Fixes bug #386637 part 1/2.
4979
4980 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
4981
4982         * verify.c (mono_class_interface_implements_interface): Call
4983         mono_class_setup_interfaces ().
4984         (merge_stacks): Ditto.
4985
4986 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
4987
4988         * class.c (mono_class_setup_interfaces): New function to lazily initalize
4989         klass->interfaces.
4990         (mono_generic_class_get_class): Don't initalize klass->interfaces.
4991         (mono_generic_class_get_class): Ditto.
4992
4993 2009-02-06  U-QUACK\miguel  <miguel@quack>
4994
4995         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
4996         they live in security.c
4997
4998         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
4999         another bit from Paolo's code.
5000
5001 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
5002
5003         * object.c (build_imt_slots): Add a small optimization to avoid inflating
5004         methods which will be discarded by add_imt_builder_entry ().
5005
5006         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
5007         need to be boxed.
5008
5009         * loader.c: Add a statistics for the size of the memberref signature cache.
5010         
5011         * loader.c (find_cached_memberref_sig): New helper function.
5012         (cache_memberref_sig): Ditto.
5013
5014         * loader.c: Cache the result of parsing memberref signatures, since otherwise
5015         they will be parsed again for every generic instantiation, leading to unbounded
5016         memory growth.
5017
5018 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5019
5020         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
5021         parameters of generic methods.
5022
5023         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
5024         after the original method is copied to the inflated method.
5025         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
5026
5027         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
5028         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
5029
5030         * class.c metadata.c: Update after the changes above.
5031
5032 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
5033
5034         * metadata-verify.c: Simplified error handling and added
5035         section table validation.
5036
5037 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5038
5039         * class-internals.h (MonoClassExt): New structure containing rarely used
5040         fields of MonoClass.
5041         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
5042         through a new 'ext' field.
5043
5044         * class.c (mono_class_alloc_ext): New helper function to allocate 
5045         class->ext.
5046
5047         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
5048
5049 2009-02-05  Mark Probst  <mark.probst@gmail.com>
5050
5051         * object.c (mono_object_get_virtual_method): Properly inflate
5052         generic methods.  Fixes #472692.
5053
5054 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
5055
5056         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
5057         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
5058         for the parent type, the created type must be ready to be used on a generic
5059         instantiation.
5060         We fill this_arg/byval_arg if the parent is a generic instance to make sure
5061         we won't have duplicated entries in generic_inst_cache.
5062
5063         Fixes #469553.
5064
5065 2009-02-05  Miguel De Icaza  <miguel@novell.com>
5066
5067         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
5068         replace with plain BSD per the comments on the bug MONO77637.
5069
5070 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5071
5072         * class.c (mono_class_get_generic_class): New accessor function.
5073         (mono_class_get_generic_container): Ditto.
5074
5075         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
5076         fields, similar to the ones in MonoMethod.
5077
5078         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
5079         (mono_class_create_from_typedef): Set klass->is_generic if needed.
5080
5081         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
5082         
5083         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
5084         the same information as element_class->byval_arg.
5085
5086         * class.c reflection.c: Remove references to class->byval_arg.
5087
5088         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
5089         klass->enum_basetype directly.
5090
5091         * verify.c metadata.c object.c icall.c reflection.c: Use 
5092         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
5093         directly.
5094
5095 2009-02-04  Miguel de Icaza  <miguel@novell.com>
5096
5097         * icall-def.h: Remove internal calls for sockets when
5098         DISABLE_SOCKET is defined, file system writing features when the
5099         OS only support reading and not writing data and Policy support if
5100         the Policy is disabled.
5101         
5102         * image.c (do_mono_image_open): Apply Paolo's patches for using
5103         mono_file_map_ APIs here.
5104
5105         * assembly.c: Add support for platforms to avoid prefix
5106         auto-detection. 
5107
5108 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
5109
5110         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
5111         warning.
5112
5113         * class.c (mono_class_inflate_generic_class): New helper function.
5114
5115         * class.c: Use mono_class_inflate_generic_class in a few places. Add
5116         statistics for inflated methods/classes.
5117
5118         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
5119
5120         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
5121         the call is made from Delegate.CreateDelegate () for the invoke method of
5122         a delegate.
5123
5124         * loader.c: Add a statistics for the memory occupied by inflated signatures.
5125
5126         * metadata.c (mono_metadata_signature_size): New helper function.
5127
5128         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
5129         generic instances.
5130
5131         * metadata.c (inflated_method_in_image): Avoid calling 
5132         mono_method_signature () if the method does not already have a signature.
5133
5134 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5135
5136         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
5137         valuetype is compatible with target type, check by inheritance as a
5138         VT is not really compatible with System.ValueType, for example.
5139
5140         * verify.c (do_invoke_method): Improve error message.
5141
5142         * verify.c (do_box_value): If boxing a nullable, use the type argument
5143         on stack instead.
5144
5145         * verify.c (do_newobj): Improve error message.  
5146
5147         Fixes #469549.
5148
5149 2009-02-03  Miguel de Icaza  <miguel@novell.com>
5150
5151         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
5152
5153 2009-02-03  Mark Probst  <mark.probst@gmail.com>
5154
5155         * generic-sharing.c: Don't hold domain lock when calling
5156         instantiate_other_info().  Fixes #471958.
5157
5158         * domain-internals.h, loader.c: Describe locking policy of domain
5159         lock vs loader lock.
5160
5161 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5162
5163         * verify.c (mono_delegate_signature_equal): Make it possible to check
5164         first-arg-bound delegates to static method.
5165
5166         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
5167         static methods with the first arg bound.
5168
5169         Fixes #469529.
5170
5171 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5172
5173         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
5174         errors.
5175
5176         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
5177         under strict mode. Any type, when boxed can be seen as a reference type.
5178
5179         Fixes #469528.
5180
5181 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5182
5183         * object.h: The lower bound of an array is a signed integer value.
5184         Introduce mono_array_lower_bound_t typedef. It should be used instead of
5185         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
5186
5187         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
5188         calculate the upper bound.
5189         
5190         Fixes #471252.
5191
5192 2009-02-02  Miguel de Icaza  <miguel@novell.com>
5193
5194         From Paolo's work, refactored, cleared up:
5195         
5196         * threadpool.c, icall.c: ifdef code that requires a working socket
5197         stack.
5198
5199         * metadata.c (mono_metadata_field_info): Do not attempt to return
5200         a value from a function declared as void.
5201
5202         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
5203         from the console stack.
5204
5205         * assembly.c: use strrchr instead of rindex.
5206
5207         * class.c, object.c, marshal.c, icall.c, reflection.c: include
5208         alloca.h on systems that have it.
5209
5210         * environment.c: Avoid code that uses stuff from
5211         HAVE_SYS_UTSNAME_H
5212         
5213         * appdomain.c: Include sys/time.h.
5214
5215         * console-io.c: include sys/ioctl.h if it is available.
5216
5217 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
5218
5219         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
5220
5221         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
5222         the method builder.
5223
5224         * marshal.c: Set mb->skip_visibility instead of setting it on the method
5225         after it was created and cached, as the later is not thread safe.
5226         
5227 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
5228
5229         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
5230         called while the debugging module is not initialized. Fixes #471669.
5231
5232 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
5233
5234         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
5235
5236         Fixes #471255.
5237
5238 2009-02-02  Mark Probst  <mark.probst@gmail.com>
5239
5240         * generic-sharing.c (lookup_or_register_other_info): Make sure the
5241         loader lock is not taken while the templates lock is held.  Fixes
5242         #471089.
5243
5244 2009-02-02  Mark Probst  <mark.probst@gmail.com>
5245
5246         * metadata.c (type_in_image): Added a check to fix a monodis
5247         crash.
5248
5249 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
5250
5251         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
5252         nullable arguments.
5253
5254         * object.c (mono_runtime_invoke_array): Ditto.
5255         
5256         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
5257         freeing wrappers of dynamic methods.
5258
5259         * loader.c (mono_free_method): Call it. Fixes #463323.
5260         
5261         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
5262         methods taking vtype/byref arguments, to fix yet another bug caused by
5263         the sharing of runtime invoke wrappers. Partly fixes #471259.
5264
5265 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
5266
5267         * debug-mono-symfile.c (check_line): Return NULL instead of returning
5268         <first file in file table>:1 when the IL offset does not have an associated
5269         line number.
5270
5271 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
5272
5273         * mono-debug.c (mono_debug_lookup_locals): New function to return local
5274         variable info for a method.
5275
5276         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
5277         
5278 2009-01-30  Jb Evain  <jbevain@novell.com>
5279
5280         * pedump.c: reuse code from monodis to make sure pedump honors
5281         MONO_PATH, which is needed to verify net_2_1 assemblies.
5282
5283 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
5284
5285         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
5286         there is no line number info.
5287
5288 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
5289
5290         Avoid some MonoType allocations
5291         * reflection.c (mono_reflection_initialize_generic_parameter):
5292         Reuse MonoType from param->pklass rather than allocating one.
5293         (mono_dynamic_image_free): Update to changes.
5294
5295 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
5296
5297         Rearrange some code to improve consistency
5298         * reflection.c (mono_reflection_setup_generic_class): Move body ...
5299         (mono_reflection_initialize_generic_parameter): ... here.
5300
5301 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
5302
5303         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
5304         with type constraints as an experiment.
5305
5306         * boehm-gc.c (on_gc_notification): Update mono_stats.
5307
5308 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
5309
5310         Avoid some allocations
5311         * class-internals.h (_MonoGenericInst::type_argv): Convert from
5312         pointer to tail array to avoid extra allocation.
5313         * metadata.c (free_generic_inst): Update to changes.
5314         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
5315         on-stack struct.
5316
5317 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
5318
5319         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
5320         return TRUE if the two type objects are the same.
5321
5322 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5323
5324         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
5325         (mono_class_native_size): Use klass->marshal_info->min_align instead of
5326         klass->min_align, since klass->min_align contains the managed alignment,
5327         while the native alignment can be different, like for longs on x86.
5328         Fixes #469135.
5329
5330         * class-internals.h (MonoMarshalType): Add a min_align field.
5331
5332 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
5333
5334         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
5335         the 1.0 format.
5336
5337 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5338
5339         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
5340         some comments about the usage of the used_regs field.
5341
5342         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
5343         Fixes #469217.
5344
5345 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
5346
5347         * appdomain.c: return NULL instead of throwing FileNotFoundException
5348         when LoadAssembly() fails.
5349
5350 2009-01-23  Mark Probst  <mark.probst@gmail.com>
5351
5352         * metadata.c (mono_metadata_generic_param_equal): Only compare the
5353         image if the owner is NULL.  Fixes the AOT failures.
5354
5355 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
5356
5357         * metadata.c (mono_metadata_load_generic_params): Initialize the 
5358         MonoGenericParam structure using memset so the image field is initialized
5359         as well.
5360
5361 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5362
5363         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
5364         a plain store.
5365
5366 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
5367
5368         * class.c (mono_class_setup_vtable_general): In the generic instance
5369         optimization, set method->slot for abstract virtual methods. Fixes part of
5370         #467834.
5371
5372 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5373
5374         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
5375         which signals that the unloading has started but all appdomain services must
5376         remain operational.
5377
5378         * appdomain.c (mono_domain_unload): The initial state for unloading now
5379         is unloading_start and we switch to unloading after the managed call to
5380         AppDomain::DomainUnload has finished.
5381
5382         The new unloading state has to be created because managed code in the
5383         DomainUnload event can depend on things like the threadpool still working.
5384         The domain must remain fully functional while the event executes.
5385
5386         This shown as an issue due to Process::WaitForExit, which waits for
5387         async reads of stdout and stderr to complete. Since those are processed
5388         in the threadpool the code deadlocks because the DomainUnload callback 
5389         waits for the async read finished event, which should have been set by a
5390         threadpool job but has been discarded due to the domain been in unload
5391         state.
5392
5393 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5394
5395         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
5396         image must match.
5397
5398 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5399
5400         * reflection.c (resolve_object): For fields, inflate the class and
5401         then get the field in the inflated class.
5402
5403 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5404
5405         * object-internals.h (struct _MonoException): Added a comment
5406         explaining the new use of trace_ips.
5407
5408 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5409
5410         * generic-sharing.c (inflate_other_data): Inflate array methods
5411         correctly.
5412
5413         * loader.c, class-internals.h: Rename search_in_array_class() to
5414         mono_method_search_in_array_class() and make it non-static.
5415
5416 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
5417
5418         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
5419         Hopefully fixes #458168.
5420
5421 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
5422
5423         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
5424         as it is performed elsewhere.
5425
5426         Code is contributed under MIT/X11 license
5427
5428 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
5429
5430         * mono-perfcounters-def.h: Add counters for asp.net requests total and
5431         requests queued.
5432         * object.c (mono_raise_exception): Increment the exceptions total
5433         counter when an exception is thrown.
5434         * class-internals.h: Add a location for storing the total number of
5435         asp.net requests served.
5436         * mono-perfcounters.c: Implement update support for asp.net counters
5437         from the class libraries. Implement read support for asp.net counters
5438         and exceptions total counter.
5439
5440 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
5441
5442         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
5443         accessing klass->methods. Fixes #467385.
5444
5445 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
5446
5447         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
5448         for byval arguments without an [Out] attribute. Fixes #467212.
5449
5450         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
5451         Fix compilation under android.
5452         
5453         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
5454         processed, scan them directly after they are copied, to achieve better locality
5455         and cache usage.
5456
5457         * socket-io.c: Applied patch from Koushik Dutta
5458         (koush@koushikdutta.com). Disable IPV6 when running under android.
5459
5460 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
5461
5462         * icall.c (ves_icall_InternalExecute): Add write barriers.
5463
5464         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
5465         the GC code.
5466
5467         * sgen-gc.c: Implement write barriers in IL code.
5468
5469 2009-01-17  Geoff Norton  <gnorton@novell.com>
5470
5471         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
5472
5473 2009-01-17  Geoff Norton  <gnorton@novell.com>
5474
5475         * image.c: When unloading the image->references table, there can be gaps
5476         in it.  Ensure that we iterate every entry to avoid leaking assembly references
5477         when unloading an appdomain.
5478
5479 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
5480
5481         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
5482         speed up ptr-in-nursery checks.
5483
5484         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
5485         threads_lock () to prevent deadlocks.
5486
5487         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
5488         does not need to be scanned during minor collections, since writes to it
5489         must use write barriers.
5490
5491 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
5492
5493         * metadata-verify.c: Add pe nt header verification.
5494         
5495 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
5496
5497         * gc.c: Fix a few warnings when using SGEN.
5498
5499 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
5500
5501         * metadata-verify.c: Add pe optional header verification.
5502
5503 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
5504
5505         * sgen-gc.c: Add support for user defined marker functions, used by
5506         MonoGHashTable to avoid registering a GC root for every hash node.
5507
5508 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
5509
5510         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
5511         non-pinned roots into separate hashes to avoid having to traverse them
5512         in functions which are only interested in one kind.
5513
5514 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
5515
5516         * metadata-verify.c: Add pe header machine field verification.
5517         
5518 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
5519
5520         * metadata-verify.c: Add pe header size verification.
5521
5522 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
5523
5524         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
5525         using the GC, they don't contain references.
5526
5527         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
5528
5529 2009-01-13  Geoff Norton  <gnorton@novell.com>
5530
5531         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
5532         AppDomains created on the native side can be cleaned up on the native side.
5533
5534 2009-01-13  Geoff Norton  <gnorton@novell.com>
5535
5536         * appdomain.c: Ensure that we call mono_context_init for the embedding api
5537         as well as the managed api.
5538
5539 2009-01-13  Geoff Norton  <gnorton@novell.com>
5540
5541         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
5542         with a MonoAppDomain initialized against it.
5543
5544 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
5545
5546         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
5547         
5548         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
5549
5550         * marshal.c: Avoid setting the exception clauses after a method has been entered 
5551         into the wrapper caches. Fixes #465700.
5552
5553         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
5554         method builder.
5555         (mono_mb_create_method): Set the clauses from the method builder.
5556
5557 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5558
5559         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
5560         Patch from Makoto Kishimoto.
5561
5562 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
5563
5564         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
5565         encoding them as ROOT_DESC_COMPLEX.
5566         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
5567
5568 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
5569
5570         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
5571         no longer point to the nursery.
5572
5573         * sgen-gc.c: Add a few comments/FIXMEs.
5574         
5575         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
5576
5577         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
5578         initialization of the various _method variables thread safe. Fixes
5579         #465377.
5580
5581 2009-01-12  Mark Probst  <mark.probst@gmail.com>
5582
5583         * domain.c, domain-internals.h: Remove the shared_generics_hash
5584         and its lookup functions.
5585
5586 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
5587
5588         * socket-io.c:  Fixing the MSVC build. 
5589
5590         Code is contributed under MIT/X11 license.
5591
5592 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
5593
5594         * metadata-verify.c: Add pe header watermark verification.
5595
5596 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
5597
5598         * metadata-verify.c: Add lfanew verification.
5599
5600 2009-01-12  Jb Evain  <jbevain@novell.com>
5601
5602         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
5603         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
5604
5605 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
5606
5607         * socket-io.c: Fix the build.
5608
5609         * environment.c: Fix an #ifdef.
5610
5611 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
5612
5613         * threadpool.c (async_invoke_thread): Handle the wait function returning
5614         WAIT_IO_COMPLETION as well.
5615         (async_invoke_io_thread): Ditto.
5616
5617 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
5618
5619         * threads.c: Fixing the Windows build.
5620
5621         Code is contributed under MIT/X11 license.
5622
5623 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
5624  
5625         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
5626         interrupt a wait.
5627         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
5628         the thread to wait again.
5629
5630 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
5631
5632         * metadata-verify.c: Initial skeleton of the metadata verifier.
5633
5634         * pedump.c: Add support for the metadata verifier.
5635
5636         * verify-internal.h: Export the whole assembly metadata verifier function.
5637
5638 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
5639
5640         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
5641
5642 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
5643
5644         * Makefile.am: Upgrade dtrace-prelink.sh location.
5645
5646 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
5647
5648         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
5649         well. Otherwise the shutdown deadlock that happens on unix will can happen
5650         as well.
5651         If the main thread code finishes too fast it's possible that the finalizer
5652         thread won't have executed yet, won't record itself as the finalizer thread
5653         and the shutdown sequence will wait on it forever.
5654
5655 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
5656
5657         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
5658         with MSVC.
5659
5660 2009-01-08  Miguel de Icaza  <miguel@novell.com>
5661
5662         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
5663         Robert Jordan for pointing this out.
5664
5665 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
5666
5667         * icall.c
5668         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
5669         ves_icall_System_IO_DriveInfo_GetDriveType.
5670
5671 2009-01-07  Miguel de Icaza  <miguel@novell.com>
5672
5673         * icall.c: Wrap calls to mono_strtod in CriticalSection
5674         invocations when using eglib, to work around #464316.
5675
5676 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
5677
5678         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
5679         return value of GetCurrentDirectory to never access unitialized memory.
5680
5681 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
5682
5683         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
5684         return value of GetCurrentDirectory and expand the buffer if needed.
5685
5686         Fixes #459094.
5687
5688 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
5689
5690         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
5691           Adding a call to mono_init_com_types.
5692
5693         Code is contributed under MIT/X11 license.
5694
5695 2009-01-07  Geoff Norton  <gnorton@novell.com>
5696
5697         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
5698         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
5699         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
5700         be the value of the ip buffer.
5701
5702 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
5703
5704         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
5705         interfaces_packed here.
5706
5707         Fixes part of #463294.
5708
5709 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
5710
5711         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
5712
5713         Fixes part of #463294.
5714
5715 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
5716
5717         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
5718         is a boxed complex as well.
5719
5720         Fixes part of #463294.
5721
5722 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
5723
5724         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
5725         control if a methodspec should be created for the generic method definition from external assemblies.
5726         Caching of methodspec is done using the handleref hash table.
5727
5728         Fixes #462592.
5729
5730 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
5731
5732         * loader.c (find_method): When searching the interfaces of a class
5733         check the transitive closure of implemented interfaces.
5734
5735         Fixes #463303.
5736
5737 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
5738
5739         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
5740         
5741 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
5742
5743         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
5744         interfaces calculation to fill_valuetype_array_derived_types.
5745
5746         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
5747         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
5748         for example.
5749
5750         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
5751         interfaces for valuetypes if needed.    
5752
5753         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
5754         for their basetype as well. Types are array expanded if rank is > 0.
5755
5756         Fixes #400716.
5757
5758 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
5759
5760         * socket-io.h : Changing the signature of
5761           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
5762           the blocking state.
5763
5764         * icall-def.h :  Changing the signature of
5765           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
5766
5767         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
5768           For Windows only.  Avoid blocking when calling accept by
5769           querying for a connection via select.  The loop also queries
5770           the thread state every 1000 micro seconds for the thread
5771           stop state.  This will avoid the process hanging on shutdown
5772           when using a TcpChannel that is never connected to.
5773
5774         Code is contributed under MIT/X11 license.
5775
5776 2008-12-30  Marek Safar  <marek.safar@gmail.com>
5777
5778         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
5779
5780 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
5781
5782         * class.c (get_implicit_generic_array_interfaces): Extract common
5783         code to a helper function making it a lot easier on the eyes.
5784
5785 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
5786
5787         * class.c (get_implicit_generic_array_interfaces): If the internal
5788         enumerator is an interface inflate System.Object instead of itself.
5789
5790         Fixes #461261.
5791
5792 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
5793
5794         * object.c (mono_runtime_invoke_array): Don't assert with
5795         byref nullable types.
5796
5797         * marshal.c (mono_marshal_get_runtime_invoke): To handle
5798         byref nullables we unbox the object and store it on the
5799         stack. 
5800         We can't use the boxed object since it is the T of Nullable<T>
5801         and the boxed representation of a nullable it's underlying type
5802         or null.
5803         We could cheat and create a boxed nullable and use the same
5804         machinery of other byref VTs but this feels like a hack and
5805         using the stack has the bonus of reducing heap pressure.
5806
5807         Fixes #461941.
5808
5809 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
5810
5811         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
5812         return value.
5813
5814         Fixes #461867.
5815
5816 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
5817
5818         * icall-def.h : Adding an internal call definition for 
5819           System.Environment.internalBroadcastSettingChange.
5820
5821         * icall.c : Adding a Windows only implementation to broadcast a 
5822           WM_SETTINGCHANGE when an environment variable has changed.
5823
5824         Code is contributed under MIT/X11 license.
5825
5826 2008-12-19  Mark Probst  <mark.probst@gmail.com>
5827
5828         * class.c, class-internals.h: Made
5829         mono_class_has_parent_and_ignore_generics() non-static.
5830
5831 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
5832
5833         * image.c: deal with the mmap failing when loading an image.
5834
5835 2008-12-17  Geoff Norton  <gnorton@novell.com>
5836
5837         * threadpool.c: Ensure that the io_queue_lock is initialized
5838         in all circumstances, as we always attempt to cleanup against it.
5839
5840 2008-12-17  Miguel de Icaza  <miguel@novell.com>
5841
5842         * icall.c (ves_icall_System_Environment_get_Platform): For
5843         compatibility reasons for existing client code we will keep
5844         returning 4 for a while.   
5845
5846         For how long will depend on the documentation being updated, and
5847         for us to give client code a chance to be updated.
5848
5849         This reverts the original decison on #433108 since we did not
5850         catch roughly 33 instances of the broken code in our own source
5851         code base, we did not catch failures on the buildbots, and QA did
5852         not bring this as a problem.
5853
5854         Only today I found some customer's code breaking due to our own
5855         class libraries not being fully updated and tracked it down to
5856         this change.  I am reverting it because if we could not even get
5857         our story straight in our own code base, how can we hope that our
5858         end user code be fixed?
5859
5860         As of this morning, our Wiki page that documents how to detect
5861         Unix had not been fixed.    
5862
5863 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
5864
5865         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
5866
5867         * class.c (mono_class_get_fields): Handle loading errors.
5868
5869 2008-12-12 Mark Mason <mmason@upwardaccess.com>
5870
5871         * metadata.c (mono_type_stack_size_internal): If SIZEOF_REGISTER > SIZEOF_VOID_P then use SIZEOF_REGISTER as the size and alignment of the stack slots.
5872         
5873 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
5874
5875         * mono-perfcounters.c: avoid warning.
5876
5877 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
5878
5879         * reflection.c (ensure_runtime_vtable): Work on generic instances and
5880         make sure all interfaces have MonoClass::interface_id set.
5881
5882         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
5883         method table is property set.
5884
5885 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
5886
5887         * class.c: New function mono_class_setup_interface_id that setup
5888         MonoClass::interface_id if needed.
5889
5890         * class-internals.h: Export new function.
5891
5892 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
5893
5894         * class.c: Add code to sanity check the vtable after setup_vtable_general
5895         has done it's work.
5896
5897 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5898
5899         * icall.c: make Assembly.GetExecutingAssembly work properly when
5900         reflection is used to invoke the method.
5901         Bug #321781 fixed.
5902
5903 2008-12-11  Mark Probst  <mark.probst@gmail.com>
5904
5905         * metadata/generic-sharing.c: Look for constraints in all type
5906         arguments, not just the first one.
5907
5908 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
5909
5910         * appdomain.c: return the correct CodeBase for an Assembly instance
5911         that was loaded from the shadow-copy directories.
5912         Bug #458190 fixed.
5913
5914 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
5915
5916         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
5917
5918         * sgen-gc.c (check_object): New debugging helper function.
5919
5920         * object.c: Fix calls to mono_value_copy_array ().
5921
5922 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
5923
5924         * class.c (mono_class_setup_fields): If working on an inflated class
5925         first check if the generic definition did init with success.
5926
5927         Fixes #445361.
5928
5929 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
5930
5931         pedump.c (main): Fix a warning.
5932
5933 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
5934
5935         * object-internals.h : Adding a definition for 
5936           MonoReflectionComVisibleAttribute.
5937
5938         * marshal.c (cominterop_com_visible) :  Method added to check the 
5939           ComVisible attribute of a class.
5940
5941         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
5942           cominterop_raise_hr_exception added to consolidate common code 
5943           to raise hr exceptions.
5944
5945         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
5946           if a managed class should support IDispatch.
5947
5948         * marshal.c 
5949           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
5950           Added additional checks for managed object when getting 
5951           an IDispatch interface.
5952
5953         Code is contributed under MIT/X11 license.
5954
5955 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
5956
5957         pedump.c (main): Handle mono_get_method () returning NULL. 
5958
5959 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
5960
5961         * marshal.h: Fix a warning.
5962
5963 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
5964
5965         * marshal.c : Adding cominterop_release_all_rcws to release all
5966           runtime callable wrappers held by the runtime.
5967
5968         * marshal.h : Adding declaration for cominterop_release_all_rcws.
5969           
5970         Code is contributed under MIT/X11 license.
5971
5972 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
5973
5974         * metadata.c (mono_image_alloc_lock): New helper function.
5975         (mono_image_alloc0_lock): Ditto.
5976
5977         * metadata.c: Use the alloc_lock () helper functions for allocating
5978         memory from the image mempool.
5979
5980 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
5981
5982         * class.c (mono_class_from_generic_parameter): Document it's
5983         locking behavior. Fix double checked locking here, we stored in
5984         param->pklass a partially initialized MonoClass and no membar was used.
5985
5986 2008-12-05  Marek Habersack  <mhabersack@novell.com>
5987
5988         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
5989         (3) functions are present in the C library use them to do the
5990         job. If they are absent, make sure that the sum of int_part and
5991         dec_part is rounded before returning. This is necessary due to the
5992         division of dec_part by the power of 10 before the final addition
5993         is performed - if the result is not rounded in some cases it will
5994         yield invalid results.
5995
5996 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
5997
5998         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
5999         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
6000         instruction instead of a pointer constant.
6001
6002 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
6003
6004         * loader.c (mono_method_get_header): Do most of the work outside the
6005         loader lock, to avoid assembly load hook deadlocks.
6006
6007         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
6008         (mono_metadata_parse_type_full): Ditto.
6009
6010 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
6011
6012         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
6013         Make the stack depth fixed. Ensure proper argument passing to the backtrace
6014         funtions. Finally, use a lock to produce well ordered output.
6015
6016         The lock looks silly, as all calls to the corlib mempool should be guarded
6017         with the loader lock, but for some reason this fact doesn't help. 
6018
6019         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
6020
6021 2008-12-02  Mark Probst  <mark.probst@gmail.com>
6022
6023         * socket-io.c: 64 bit big-endian fixes.
6024
6025 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
6026
6027         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
6028         targets that require strict compatibility between the types.
6029
6030         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
6031         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
6032         Kill the strict argument and create a new one valuetype_must_be_boxed.
6033
6034         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
6035         state that all valuetypes must be boxed.
6036
6037         Fixes #448560.
6038
6039 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
6040
6041         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
6042         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
6043
6044         Contributed under MIT/X11 license.
6045
6046 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
6047
6048         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
6049         the inflate_generic_type machinery should handle it.
6050
6051         This avoids a crash when the field's flags is zero and it's type is
6052         a primitive.
6053         What happens is that mono_metadata_parse_type_full will see that opt_attrs
6054         is zero and will return one of the cached built-in primitive types. Since
6055         those types live in read-only memory, the code that copies it crashes.  
6056
6057 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6058
6059         * object.c: Don't put function descriptors into generalized IMT
6060         thunks.
6061
6062 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6063
6064         * class.c: Enable generic code sharing on PPC64.
6065
6066 2008-11-27  Mark Probst  <mark.probst@gmail.com>
6067
6068         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
6069         from mini/mini.c.
6070
6071         * generic-sharing.c: Allocate the method template slists from the
6072         image mempool so it doesn't leak.
6073
6074 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
6075
6076         * class.c (generic_array_methods): Release the linked list.
6077
6078 2008-11-27  Mark Probst  <mark.probst@gmail.com>
6079
6080         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
6081         invocation to g_utf16_to_utf8().
6082
6083 2008-11-26  Mark Probst  <mark.probst@gmail.com>
6084
6085         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
6086         arguments on big endian archs.
6087
6088 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
6089
6090         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
6091         the type name (test added in corlib).
6092
6093 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
6094
6095         * pedump.c: initialize perf. counters. Fixes a segv.
6096
6097 2008-11-25  Martin Baulig  <martin@ximian.com>
6098
6099         * mono-debug-debugger.c
6100         (mono_debugger_runtime_invoke): Return the exception object if an
6101         exception was thrown.  Visual Studio displays the exception object
6102         in the locals window.
6103
6104 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6105
6106         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
6107         ftnptr.
6108
6109 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6110
6111         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
6112         MONO_TYPE_U are sizeof (gpointer), too.
6113
6114 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6115
6116         * marshal.c (mono_type_native_stack_size): Fixed size and
6117         alignment for reference types.
6118
6119 2008-11-23  Mark Probst  <mark.probst@gmail.com>
6120
6121         * class.c (mono_class_generic_sharing_enabled): Disable generic
6122         code sharing for PPC64.
6123
6124 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
6125
6126         * icall.c (mono_method_get_equivalent_method): Make sure
6127         method->klass->methods is inited before looping over it.
6128
6129 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6130
6131         * object.c: when calling ExecuteAssembly in a newly created domain,
6132         the configuration file and application base are already set up.
6133         Bug #446353 take 2 fixed.
6134
6135 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
6136
6137         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
6138         Fixes #444715. Fix a warning.
6139
6140 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
6141
6142         * appdomain.c: write the full path of the assembly to the .ini file
6143         created when "shadow-copying"
6144         Bug #446353 fixed.
6145
6146 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
6147
6148         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
6149         if signature==FALSE.
6150
6151 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
6152
6153         * marshal.h : Fix the cygwin build.
6154            marshal.c:12442: undefined reference to `_IID_IMarshal'
6155           
6156         Code is contributed under MIT/X11 license.
6157
6158 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
6159
6160         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
6161           free threaded marshaler when QueryInterface is called on a COM callable
6162           wrapper requesting the IMarshal interface.
6163           
6164         Code is contributed under MIT/X11 license.
6165
6166 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
6167
6168         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
6169
6170         * reflection.c (mono_type_get_object): Special case the very common
6171         void type.
6172
6173         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
6174         hold typeof(void).
6175
6176 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
6177
6178         * process.h : Adding method declaration for
6179           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6180           
6181         * process.c : Adding implementation for
6182           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6183           
6184         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
6185           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6186
6187         Code is contributed under MIT/X11 license.
6188
6189 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
6190
6191         * appdomain.c (unload_thread_main): Clean up threadpool by
6192         calling mono_thread_pool_remove_domain_jobs.
6193
6194         * domain-internals.h (struct _MonoDomain): Add new fields to
6195         help coordinate the cleanup of the threadpool.
6196
6197         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
6198         that cleans up the threadpool of all jobs associated with an appdomain.
6199         It does that by cleaning up the queues and making sure all active
6200         threads are accounted.
6201
6202         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
6203         unloaded or in the process of. Take this is such way that there is
6204         no race condition between another thread starting the unload and the
6205         current thread acknowledging it.
6206
6207         * threadpool.c (async_invoke_thread): Same.
6208
6209         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
6210         firing the new thread.
6211
6212         * threadpool.c (start_tpthread): Same.
6213
6214         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
6215
6216         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
6217
6218 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
6219
6220         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6221         Add support for DuplicateHandle.
6222         
6223         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6224         Add support for DuplicateHandle.
6225         
6226         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6227         Add support for DuplicateHandle.
6228
6229         Code is contributed under MIT/X11 license.
6230
6231 2008-11-06  Mark Probst  <mark.probst@gmail.com>
6232
6233         * class-internals.h: Make min_align into a whole byte.
6234
6235         * class.c: Set min_align for SIMD types to 16.
6236
6237 2008-11-05  Geoff Norton  <gnorton@novell.com>
6238
6239         * attach.c: Default the attacher to enabled for all cases including
6240         embedded.
6241
6242 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
6243
6244         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
6245         change r117650.
6246
6247 2008-11-04  Mark Probst  <mark.probst@gmail.com>
6248
6249         * monitor.c, monitor.h: New function for querying offsets of
6250         members of MonoThreadsSync.
6251
6252 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
6253
6254         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
6255         to speed up this function and to avoid the boundless memory growth caused by
6256         the signature_dup () calls.
6257
6258 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
6259
6260         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
6261         wrapper.
6262
6263         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
6264         by 1 bit.
6265
6266         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
6267
6268 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6269
6270         * appdomain.c:
6271         * domain-internals.h: made mono_set_private_bin_path_from_config()
6272         "internal".
6273         * object.c: call the above function after setting the configuration
6274         file path for the root domain.
6275         Fixes bug #314478.
6276
6277 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6278
6279         * assembly.c: when the assembly is loaded from an absolute path, end
6280         basedir with a directory separator.
6281         Bug #440781 fixed.
6282
6283 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6284
6285         * monitor.c (mono_monitor_get_fast_enter_method): If
6286         CompareExchange is not available, don't create the fastpath
6287         instead of asserting.  (The method is missing in the 1.1 profile.)
6288
6289 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6290
6291         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
6292
6293         * monitor.c, monitor.h: Code for generating Monitor.Enter and
6294         Monitor.Exit IL fastpaths.
6295
6296 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6297
6298         * class.c (mono_class_create_from_typedef): Added Vector2ul.
6299
6300 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6301
6302         * class.c (mono_class_create_from_typedef): Added Vector2l.
6303
6304 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
6305
6306         * class.c (mono_class_create_from_typedef): Added Vector2d.
6307
6308 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6309
6310         * appdomain.c: translate \ into / for cache_path.
6311         * domain-internals.h: new mono_is_shadow_copy_enabled().
6312         * icall.c: (fill_reflection_assembly_name) do the same path
6313         manipulations that get_code_base does.
6314         (get_code_base) use mono_is_shadow_copy_enabled.
6315
6316 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
6317
6318         * appdomain.c: shadow-copied assemblies go to CachePath +
6319         ApplicationName when both are set. DynamicBase has nothing to do with
6320         shadow copies.
6321         Bug #406877 fixed.
6322
6323 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
6324
6325         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
6326         STANDALONESIG table.
6327
6328         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
6329         standalone signatures.
6330
6331         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
6332         comparison code: instead of comparing the signatures using a custom
6333         equals function, transform them to a common signature and compare that. This
6334         works better with AOT.
6335
6336 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
6337
6338         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
6339
6340         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
6341         call for generic instances.
6342         (mono_class_setup_properties): Call setup_properties () before accessing
6343         gklass->properties.
6344
6345         * class.c (mono_class_get_virtual_methods): New helper function to iterate
6346         over the virtual methods of a class using metadata if possible, avoiding the
6347         creation of MonoMethod's for non-virtual methods.
6348         
6349         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
6350         get_virtual_methods () to iterate over the virtual methods of classes.
6351
6352 2008-10-25  Martin Baulig  <martin@ximian.com>
6353
6354         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
6355
6356 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6357
6358         * class.c (mono_class_create_from_typedef): Added Vector4i.
6359
6360 2008-10-24  Mark Probst  <mark.probst@gmail.com>
6361
6362         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
6363         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
6364         special-casing applies to eliminate the call completely.
6365
6366 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6367
6368         * class.c (mono_class_create_from_typedef): Added Vector8s.
6369
6370 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
6371
6372         * class.c (mono_class_create_from_typedef): Added Vector16sb.
6373
6374 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6375
6376         * icall.c: get rid of annoying warning.
6377
6378 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6379
6380         * threadpool.c: in 1.x, if you change the background status of the
6381         threadpool thread, it's not reset.
6382         Remove unnecessary calls to SetState.
6383
6384 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6385
6386         * threadpool.c: asynchronously create a set of idle threads upon first
6387         use of the threadpool. SetMinThreads will now start the appropriate
6388         number of idle threads if they are not already running. The default is
6389         1 threadpool thread per CPU. Increased the maximum number of threads
6390         per CPU to 10.
6391
6392 2008-10-22  Martin Baulig  <martin@ximian.com>
6393
6394         Revert r116521 from Zoltan, it breaks the debugger:
6395
6396         * class.c (mono_class_get_virtual_methods): New helper function to iterate
6397         over the virtual methods of a class using metadata if possible, avoiding the
6398         creation of MonoMethod's for non-virtual methods.
6399         
6400         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
6401         get_virtual_methods () to iterate over the virtual methods of classes.
6402
6403 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6404
6405         * threads.c: when creating a threadpool thread, set its state to
6406         'background'.
6407         * threadpool.c: reset the background state of a threadpool thread
6408         after finishing each work item
6409         Bug #437888 fixed.
6410
6411 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
6412
6413         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
6414         
6415         * class.c (mono_class_setup_vtable_general): Add an optimized version for
6416         generic instances which works by inflating the methods in the container
6417         class's vtable.
6418
6419         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
6420         variant which doesn't make a copy if no inflation was done.
6421         (mono_class_setup_fields): Use it.
6422
6423         * metadata.c (mono_metadata_get_shared_type): New helper function to
6424         return a shared instance of a given MonoType.
6425
6426         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
6427         a copy of most non-generic types.
6428
6429 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
6430
6431         * threadpool.c: remove one more GetSystemInfo () call.
6432
6433 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
6434
6435         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
6436         use the code in mono-proclib.h to get processor information.
6437
6438 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6439
6440         * appdomain.c: fixed the logic that determines whether assemblies in a
6441         directory are "shadow-copied" or not. Bug #433483 fixed.
6442
6443 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
6444
6445         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
6446         warning.
6447
6448 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
6449
6450         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
6451         returning a vtype.
6452
6453         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
6454         reflection.c: Use mono_field_get_name () for accessing a field's name.
6455
6456         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
6457         class.c
6458
6459         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
6460         field.
6461
6462         * loader.c (find_method_in_class): Reenable the metadata optimization by
6463         not using it for generic instances.
6464
6465         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
6466         data/def_type fields from MonoClassField into a separate structure.
6467         (struct MonoClassField): Remove data/def_type fields.
6468         (struct _MonoClass): Add a 'field_def_values' array to store the default
6469         values/RVA for fields.
6470
6471         * class.c reflection.c: Update after the changes.
6472         
6473         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
6474         for accessing field->data.
6475
6476         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
6477
6478         * loader.c (find_method_in_class): Revert the last change for now as
6479         it breaks Mono.C5 unit tests.
6480
6481         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
6482         'field_generic_types' and 'field_objects' which contain the information
6483         previously stored in MonoInflatedField.
6484         (MonoInflatedField): Delete.
6485         (struct _MonoClassField): Delete 'generic_info' field.
6486
6487         * reflection.c: Store the information which was previously in 
6488         field->generic_info in MonoDynamicGenericClass instead.
6489
6490         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
6491         MonoClassField changes.
6492
6493 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
6494
6495         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
6496         store the value inside the data array of the MonoMethodWrapper.
6497         This saves memory, is faster and fixes the lifetime issues (methods
6498         were never removed from the hash previously). May also fix bug#436996.
6499
6500 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
6501
6502         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
6503         generic instances, compute the type from the generic definition instead of
6504         looking in field->generic_info.
6505
6506         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
6507         for inflated fields, the only user was get_fieldref_token () which no
6508         longer needs it.
6509
6510         * class.c (mono_class_init): Revert the last change as it seems to cause
6511         crashes.
6512
6513         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
6514         bytes on 64 bit platforms.
6515
6516         * object.c (mono_class_create_runtime_vtable): Fix a warning.
6517         
6518         * object.c (mono_class_create_runtime_vtable): Don't initalize
6519         field->data/field->def_type here, it is done lazily by 
6520         mono_class_get_field_default_value ().
6521
6522         * icall.c (ves_icall_get_enum_info): Call 
6523         mono_class_get_field_default_value () instead of directly accessing
6524         field->data and field->def_type.
6525
6526         * object.c (get_default_field_value): Ditto.
6527
6528         * class.c (mono_field_get_data): Ditto.
6529         
6530         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
6531         call for generic instances.
6532
6533         * loader.c (find_method_in_class): If klass != from_class, then inflate
6534         the method with the context of from_class, since the caller assumes this.
6535
6536 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
6537
6538         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
6539         for accessing method->slot.
6540
6541 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
6542
6543         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
6544
6545 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
6546
6547         * class.c (mono_method_get_vtable_index): Use
6548         mono_method_get_vtable_slot () for accessing method->slot.
6549
6550         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
6551         accessing klass->methods.
6552
6553         * class.c (mono_method_get_vtable_slot): New helper function.
6554         (mono_class_get_vtable_entry): Ditto.
6555         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
6556         accessing method->slot.
6557
6558         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
6559         method to get_inflated_method ().
6560
6561         * class.c (mono_class_get_inflated_method): New helper method to obtain
6562         a method of an inflated class without calling setup_methods ().
6563         (mono_class_get_cctor): Use get_inflated_method.
6564
6565         * generic-sharing.c (mono_class_get_method_generic): Ditto.
6566         
6567         * marshal.c image.c: Lazily create all the marshal caches.
6568
6569         * image.c (mono_image_init): Move initialization of runtime_invoke
6570         caches to marshal.c.
6571
6572         * marshal.c (get_cache): New helper function to lazily initialize a 
6573         wrapper cache.
6574         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
6575
6576         * debug-helpers.c (mono_method_full_name): Include generic arguments.
6577
6578 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
6579
6580         * loader.c: fixed check for interface type.
6581
6582 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
6583
6584         * appdomain.c: check for NULL setup before it's referenced.
6585
6586 p
6587 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
6588
6589         * class.c: remove the unused old vtable setup code.
6590
6591 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
6592
6593         * class.c: don't depend on interface order in
6594         setup_interface_offsets (bug #435777).
6595         * reflection.c: sort the InterfaceImpl table (patch from
6596         Jb Evain  <jbevain@novell.com>).
6597
6598 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
6599
6600         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
6601         the low level assemblies lock.
6602
6603 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
6604
6605         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
6606         object.c, reflection.c, socket-io.c, threads.c: introduced
6607         mono_framework_version () to return the major framewrok version,
6608         changed the code that was using more complex patterns to use it.
6609         Return the correct value for PlatformID for OSX.
6610
6611 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
6612
6613         * icall-def.h, process.h, process.c: added an icall to get info about
6614         processes using mono-proclib.
6615
6616 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
6617
6618         * mono-perfcounters.c: use the mono-proclib functions to
6619         access process information.
6620
6621 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
6622
6623         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
6624         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
6625         reflection.c: remove rawbuffer usage: mmap support is more sanely
6626         provided by utils/mono-mmap.
6627
6628 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
6629
6630         * gc.c: use posix semaphores when possible so that
6631         mono_gc_finalize_notify() is signal safe.
6632
6633 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
6634
6635         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
6636         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
6637         be #ifdef-ed out, the linker will remove the rest.
6638
6639         * marshal.c: Implement DISABLE_COM.
6640
6641         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
6642
6643 2008-10-11  Miguel de Icaza  <miguel@novell.com>
6644
6645         * locales.c (string_invariant_compare_char): Optimization: do not
6646         call g_unichar_type unless we actually need the information.
6647
6648 2008-10-10  Mark Probst  <mark.probst@gmail.com>
6649
6650         * object.c, class-internals.h: Also create remoting trampolines
6651         for generic methods.  Pass the domain to the remoting trampoline
6652         creation function, too.
6653
6654 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
6655
6656         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
6657
6658 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
6659
6660         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
6661         Vector4ui.
6662
6663 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
6664
6665         * assembly.c:
6666         * locales.c: remove the use of g_strdown. Fixes bug #322313.
6667
6668 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
6669
6670         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
6671         for the least possible amount of time (extending the fix in r113458).
6672
6673 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
6674
6675         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
6676
6677 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
6678
6679         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
6680         as possible simd intrinsic types.
6681         Optimized the test to check for the common prefix first.
6682
6683 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
6684
6685         * class.c: back out part of a broken optimization committed on
6686         May 23th (bug #433908).
6687
6688 2008-10-09  Mark Probst  <mark.probst@gmail.com>
6689
6690         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
6691         Win32.  Should fix #432388 for most cases until we have the new
6692         profiler on Win32.
6693
6694 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
6695
6696         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
6697         instead of using inst->id so the hash is stable for AOT.
6698
6699 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
6700
6701         * appdomain.c:
6702         * icall.c: create a .ini file for shadow-copied assemblies that
6703         contains the location of the original assembly. Use this to return the
6704         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
6705         Also fix the number of '/' for windows when returning the CodeBase.
6706         Fixes bug #430920.
6707
6708 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
6709
6710         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
6711
6712         Code is contributed under MIT/X11 license.
6713
6714 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
6715
6716         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
6717           if if the class vtable needs initialized.
6718
6719         Code is contributed under MIT/X11 license.
6720
6721 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
6722
6723         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
6724           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
6725           STRING->BSTR, and CLASS->INTERFACE.
6726
6727         Code is contributed under MIT/X11 license.
6728
6729 2008-10-07  Marek Habersack  <mhabersack@novell.com>
6730
6731         * sysmath.h: changed the declaration of the
6732         ves_icall_System_Math_Round2 icall by adding an extra
6733         away_from_zero parameter.
6734
6735         * sysmath.c (ves_icall_System_Math_Round2): added support for
6736         away from zero rounding. The icall now takes an extra boolean
6737         parameter to signal that away from zero operation is requested.
6738
6739 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
6740
6741         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
6742         the delegate klass so it can work with full-aot.
6743         (mono_marshal_get_delegate_end_invoke): Ditto.
6744         (mono_marshal_get_delegate_invoke): Ditto.
6745
6746 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
6747
6748         * gc.c, attach.h, attach.c: remove a bad pattern:
6749         add_finalizer_callback () is not implemented correctly, it can't
6750         without adding more overhead to the finalizer loop and it's not
6751         even needed, since we know exactly what we need to call, so there is
6752         no need to do so through an expensive function pointer.
6753
6754 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
6755
6756         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
6757         for the no-gc case.
6758         * attach.c (mono_attach_init): Remove the #ifdef.
6759
6760 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
6761
6762         * attach.c (mono_attach_init): Don't use
6763         mono_gc_add_finalizer_thread_callback when compiling without GC.
6764         Fixes #432306.
6765         
6766         Code is contributed under MIT/X11 license.
6767
6768 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
6769
6770         * class.c (mono_class_create_from_typedef): Remove the 
6771         #ifndef DISABLE_SIMD stuff.
6772
6773 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
6774
6775         * class-internals.h (MonoClass): Added simd_type bit field.
6776
6777         * class.c (mono_class_create_from_typedef): Check if type is a simd
6778         intrinsic.
6779
6780 2008-10-03  Mark Probst  <mark.probst@gmail.com>
6781
6782         * object.c (mono_method_add_generic_virtual_invocation): Only add
6783         instantiations to the thunk whose count is at least as large as
6784         the threshold.
6785
6786 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
6787
6788         * icall.c: changed the Type of the exception thrown when trying to
6789         invoke a constructor on an abstract class. Part of the fix for bug
6790         #324185.
6791
6792 2008-10-02  Mark Probst  <mark.probst@gmail.com>
6793
6794         * class.c, class-internals.h (mono_method_get_vtable_index): New
6795         function which returns the index into the vtable and properly
6796         handles inflated virtual generic methods.
6797
6798 2008-10-01  Mark Probst  <mark.probst@gmail.com>
6799
6800         * object.c, domain.c, object-internals.h, domain-internals.h:
6801         Generalize IMT thunk machinery to also handle thunks for virtual
6802         generic method invokes.  When a virtual generic method is invoked
6803         more than a number of times we insert it into the thunk so that it
6804         can be called without lookup in unmanaged code.
6805
6806         * generic-sharing.c, class-internals.h: Fetching a
6807         MonoGenericInst* for a method from an (M)RGCTX.
6808
6809 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
6810
6811         * marshal.c (emit_marshal_string): Applied a variant of a patch by
6812         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
6813         marshalling. Fixes #431304.
6814
6815 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
6816
6817         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
6818           handle when ref is specified without In or Out.
6819
6820         Code is contributed under MIT/X11 license.
6821
6822 2008-09-30  Mark Probst  <mark.probst@gmail.com>
6823
6824         * loader.c (mono_get_method_constrained): Don't expand method with
6825         the class's context, because it's already a method of that class.
6826
6827 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
6828
6829         * attach.c : should be correct build fix.
6830
6831 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
6832
6833         * attach.c: Fix the previous change.
6834
6835 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
6836
6837         * attach.c : quick w32 build fix.
6838
6839 2008-09-27  Miguel de Icaza  <miguel@novell.com>
6840
6841         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
6842         crashes MonoDevelop: #430455.
6843
6844 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
6845
6846         * domain-internals.h (struct _MonoDomain): Move most fields used only by
6847         the JIT do MonoJitDomainInfo in ../mini/mini.h.
6848
6849         * domain.c: Remove initialization/cleanup of the removed fields.
6850
6851 2008-09-27  Mark Probst  <mark.probst@gmail.com>
6852
6853         * class.c (mono_class_generic_sharing_enabled): Enable generic
6854         code sharing for PPC.
6855
6856 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
6857
6858         * attach.c : Fixing the Windows builds.
6859
6860         Code is contributed under MIT/X11 license.
6861
6862 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
6863
6864         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
6865         the default generic sharing mode to 'all'.
6866
6867 2008-09-25  Mark Probst  <mark.probst@gmail.com>
6868
6869         * generic-sharing.c, class-internals.h: New function for checking
6870         whether a method needs a static RGCTX invoke wrapper.  A few
6871         funtions moved from mini/generic-sharing.c.
6872
6873         * icall.c: New function used.
6874
6875 2008-09-25  Mark Probst  <mark.probst@gmail.com>
6876
6877         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
6878         Static RGCTX invoke wrapping applies to value type methods, too.
6879
6880         * class.c (mono_class_setup_vtable_general): In generic-shared
6881         value types, wrap methods with a static RGCTX invoke wrapper.
6882
6883 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
6884
6885         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
6886         osx build.
6887
6888 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
6889
6890         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
6891         register a callback which is called when the finalizer thread is woken
6892         up.
6893         (finalizer_thread): Call the callback if it exists.
6894
6895         * attach.h attach.c: New files, implementing the attach mechanism.
6896
6897         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
6898         
6899         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
6900         by the previous change.
6901
6902 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
6903
6904         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
6905         loader.c, marshal.c, metadata-internals.h, metadata.c,
6906         method-builder.c, object.c, reflection.c: introduced specific functions
6907         to allocate from the domain and image mempools and cleaned up most of
6908         the code to use them (still missing a few in reflection.c).
6909         Keep the loader bytes counter updated.
6910
6911 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
6912
6913         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
6914         loader-related counters.
6915
6916 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
6917
6918         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
6919         added more MS-compatible counters.
6920
6921 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
6922
6923         * class.c (mono_class_setup_fields): Call setup_fields before accessing
6924         class->blittable. Fixes #428217.
6925
6926 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
6927
6928         * reflection.c (mono_image_get_field_on_inst_token): Call 
6929         field_encode_signature () since that handles custom modifiers too.
6930         Fixes #424663.
6931
6932 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
6933
6934         * reflection.c (add_custom_modifiers): New helper function to merge custom
6935         modifiers stored in objects to a MonoType.
6936         (fieldref_encode_signature): Encode custom modifiers.
6937         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
6938         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
6939
6940 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
6941
6942         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
6943         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
6944         64-bit IL only images because imports are not resolved for IL only images.
6945         Special thanks to Bill Holmes for finding this bug and testing the patch.
6946         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
6947
6948         Contributed under MIT/X11 license.
6949
6950 2008-09-19  Miguel de Icaza  <miguel@novell.com>
6951
6952         * mono-config.c (dllmap_start): Add support for the bits keyword
6953         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
6954
6955 2008-09-19  Mark Probst  <mark.probst@gmail.com>
6956
6957         * reflection.c (inflate_mono_method): When the class the method is
6958         to be inflated for is itself not inflated, just return the method.
6959
6960 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
6961
6962         * mono-perfcounters.c: use more user friendly process instance names.
6963
6964 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
6965
6966         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
6967           handle "[in] ref" and "[in][out] ref" cases.
6968
6969         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
6970           to mono_mb_create_method.  This was causing problems calling native to
6971           managed passing Variants by value.
6972
6973         Code is contributed under MIT/X11 license.
6974
6975 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
6976
6977         * class.c (can_access_internals): Call mono_assembly_load_friends ()
6978         before accessing the friend_assembly_names field.
6979
6980         * assembly.c (mono_assembly_load_friends): Make this callable multiple
6981         times.
6982         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
6983         called lazily when it is needed.
6984
6985         * metadata-internals.h (struct _MonoAssembly): Add 
6986         'friend_assembly_names_inited' flag.
6987
6988 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
6989
6990         * mono-perfcounters-def.h: fix the types of a few counters.
6991         * mono-perfcounters.c: implemented the instance names getter
6992         and a few bugfixes.
6993
6994 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
6995
6996         * culture-info-table.h : regenerated.
6997
6998 2008-09-17  Robert Jordan  <robertj@gmx.net>
6999
7000         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
7001         context bound objects. Fixes #415577.
7002
7003         Code is contributed under MIT/X11 license.
7004
7005 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
7006
7007         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
7008         implementation (bug #423582).
7009
7010 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
7011
7012         * object.c (mono_object_get_virtual_method): Handle the case method->slot
7013         is not set. Fixes #426309.
7014
7015 2008-09-16  Jb Evain  <jbevain@novell.com>
7016
7017         * class.c (mono_class_from_name): fix the exported type look up
7018         when the type is defined in a referenced assembly.
7019
7020 2008-09-16  Jb Evain  <jbevain@novell.com>
7021
7022         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
7023         increment the next index counter on each iteration to make that work
7024         for more than one type forwarder. Unmanaged part to fix #422929.
7025
7026 2008-09-15  Mark Probst  <mark.probst@gmail.com>
7027
7028         * object-internals.h: enum ComInterfaceType in
7029         MonoInterfaceTypeAttribute is guint32, not guint16.
7030
7031 2008-09-12  Mark Probst  <mark.probst@gmail.com>
7032
7033         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
7034         writing code.
7035
7036 2008-09-11  Mark Probst  <mark.probst@gmail.com>
7037
7038         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
7039         not gboolean.
7040
7041 2008-09-11  Mark Probst  <mark.probst@gmail.com>
7042
7043         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
7044         Endianness fixes for MonoSymbolFileOffsetTable.
7045
7046 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
7047
7048         * process.c (complete_path) : Removing quotes from the 
7049           input path.  The glib file routines do not handle file paths
7050           that have quotes around them.
7051
7052         Code is contributed under MIT/X11 license.
7053
7054 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
7055
7056         * socket-io.h : Adding a comment to provide locations where 
7057           changes to MonoSocketAsyncResult need to be synced.
7058
7059         Code is contributed under MIT/X11 license.
7060
7061 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
7062
7063         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
7064         parameters as well. Fixes #425001.
7065
7066 2008-09-08  Miguel de Icaza  <miguel@novell.com>
7067
7068         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
7069         windows build.
7070
7071 2008-09-07  Miguel de Icaza  <miguel@novell.com>
7072
7073         * console-io.c: Add support for tracking the window size if it
7074         changes.
7075
7076         The setup is very simple: the TtySetup function will now return a
7077         pointer to a location in memory that tracks the current console
7078         size.  The managed code checks its current value every time its
7079         queried against the last value set, and updates accordingly.
7080
7081         With this setup we can work with multiple consoles, and we do not
7082         require to poke into managed code from a signal handler.
7083
7084         Additionally, the environment for COLUMNS and LINES is now handled
7085         in unmanaged code.
7086
7087         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
7088
7089 2008-09-07  Mark Probst  <mark.probst@gmail.com>
7090
7091         * marshal.c (mono_type_native_stack_size): Treat
7092         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
7093
7094 2008-09-04  Jb Evain  <jbevain@novell.com>
7095
7096         * class.c (mono_class_is_assignable_from): fix assignability of nullables
7097         to nullables.
7098
7099 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
7100
7101         * verify.c (verify_type_compatibility_full): Revert change
7102         to allow converting a native int to unmanaged pointer be verifiable
7103         under non-strict mode.
7104         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
7105
7106         * verify.c: Added some TODOs.
7107
7108 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
7109
7110         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
7111           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
7112           Changed to use GlobalAlloc for the memory returned on Windows platforms.
7113
7114         Code is contributed under MIT/X11 license.
7115
7116 2008-09-02  Jb Evain  <jbevain@novell.com>
7117
7118         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
7119
7120 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
7121
7122         reflection.c (typebuilder_setup_fields): Handle classes with
7123         explicit size.
7124
7125 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
7126
7127         class.c (mono_class_setup_events): Add memory barrier due to
7128         double checked locking.
7129         
7130         class.c (mono_class_setup_properties): Same.
7131
7132 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
7133
7134         * class.c (mono_class_is_assignable_from): Fix the build.
7135         
7136         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
7137         before accessing klass->interface_bitmap. Fixes #421744.
7138
7139 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
7140
7141         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
7142         the runtime into no-exec mode, useful when running the AOT compiler.
7143
7144         * appdomain.c gc.c object.c: Avoid executing managed code when running
7145         in no-exec mode.
7146         
7147         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
7148
7149         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
7150         special case when the mono_assembly_loaded () returns NULL because the 
7151         search hook is not installed.
7152
7153 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
7154
7155         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
7156         crashes in bstr marshalling on linux.
7157
7158 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
7159
7160         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
7161         with more than one parameter.
7162
7163 2008-08-24  Miguel de Icaza  <miguel@novell.com>
7164
7165         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
7166         start/stop flow control as well when turning off ICANON (allows
7167         C-s and C-q to be read by Console.ReadKey).
7168
7169 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
7170
7171         * class.c (mono_class_init): Move the initialization of nested classes
7172         into mono_class_get_nested_types (). Fixes #418433.
7173
7174         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
7175         flag.
7176
7177         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
7178         iterating tough the nested classes of a class.
7179
7180 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
7181
7182         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
7183         on arm.
7184
7185 2008-08-22  Miguel de Icaza  <miguel@novell.com>
7186
7187         * console-io.c (sigcont_handler): Support signal chaining for
7188         SIGCONT.
7189
7190         (console_set_signal_handlers): Use best practices with sigaction,
7191         clear the structure before using it. 
7192
7193 2008-08-22  Robert Jordan  <robertj@gmx.net>
7194
7195         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
7196         Fix the Windows build.
7197
7198 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
7199
7200         * class.c (mono_class_generic_sharing_enabled): Make the default
7201         sharing mode 'corlib'.
7202
7203 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
7204
7205         * console-io.c (console_set_signal_handlers): Fix a warning.
7206
7207         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
7208         method normally, the JIT will take care of avoiding recursion.
7209
7210 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
7211
7212         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
7213
7214         Code is contributed under MIT/X11 license.
7215
7216 2008-08-20  Miguel de Icaza  <miguel@novell.com>
7217
7218         * console-io.c (sigcont_handler): We need to restore the entire
7219         termios state, not only the original settings, as things like echo
7220         can be controlled after this (Booish exposes this issue with its
7221         own ReadLine implementation).
7222
7223         Additionally, we need to set the terminal back into keypad_xmit
7224         mode.
7225         
7226         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
7227         string as a paramter as well.   Otherwise we get different
7228         keyboard sequences.
7229
7230 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
7231
7232         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
7233         delegates with byref out parameter passing. Fixes #351520.
7234
7235         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
7236         a generic context.
7237         (mono_type_get_desc): Add the type arguments for GENERICINST.
7238         (mono_method_full_name): Stringify the class name using mono_type_full_name
7239         so it picks up generic arguments.
7240
7241 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
7242
7243         * console-io.c: Removed debug output.
7244
7245 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
7246
7247         reflection.c (mono_reflection_create_runtime_class): Alloc
7248         the nested classes linked list using the dynamic image mempool.
7249         Fixes leak in corlib compilation.
7250
7251 2008-08-19  Miguel de Icaza  <miguel@novell.com>
7252
7253         * console-io.c: Fix incredibly annoying behavior on the console
7254         after resuming execution after control-z.   This affected every
7255         console application.
7256
7257 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
7258
7259         * mempool-internals.h: Header for mono private mempool functions. The first
7260         two function are for allocating glib linked lists using pools.
7261
7262         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
7263
7264         * Makefile.am: Added mempool-internals.h.
7265
7266 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
7267
7268         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
7269         (mono_domain_free): Ditto.
7270
7271         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
7272         be used by the JIT to store its domain-specific information, instead of putting
7273         it directly into MonoDomain.
7274
7275         * domain.c (mono_install_create_domain_hook): New helper function to install
7276         a hook which initializes domain->runtime_info.
7277
7278         * domain.c (mono_install_free_domain_hook): Ditto.
7279         
7280 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
7281
7282         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
7283         asserting if the ares parameter is null.
7284
7285         * mono-perfcounters.c: Fix warnings.
7286
7287         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
7288         is not needed, don't check for interruptions either.
7289         (mono_marshal_get_delegate_end_invoke): Ditto.
7290
7291 2008-08-15  Marek Habersack  <mhabersack@novell.com>
7292
7293         * mono-perfcounters.c (predef_readonly_counter): added support for
7294         reading the ASP.NET Requests Queued counter from another process.
7295
7296 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
7297
7298         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
7299         MonoImage to simplify the AOT code.
7300
7301 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
7302
7303         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
7304         marshalling. Fixes #416078.
7305
7306 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
7307         
7308         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
7309         it is set, looking up the icall address is deferred to the JIT, since 
7310         in embedded scenarios, the icall might not be registered in the runtime
7311         doing the AOT compilation. Backported from the 2.0 branch.
7312
7313 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
7314
7315         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
7316         Fixes #415621.
7317
7318 2008-08-05  Marek Habersack  <mhabersack@novell.com>
7319
7320         * Makefile.am: added support for cross-compilation.
7321
7322 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
7323
7324         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
7325
7326 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
7327
7328         * mono-perfcounters.c: jitted methods and jitted bytes counters.
7329
7330 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
7331
7332         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
7333         mono-perfcounters.c: performance counters implementation.
7334
7335 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
7336
7337         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
7338         to gpointer, letting the AOT code decide what to store in it.
7339
7340 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
7341
7342         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
7343           mono_class_setup_methods if the methods are not initialized.
7344
7345         Code is contributed under MIT/X11 license.
7346
7347 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7348
7349         * verify.c: Remove some debug code I commited by accident.
7350
7351         * verify.c (mono_method_is_valid_in_context): Change the return value
7352         to make possible to distinguish between invalid and unverifiable.
7353
7354         * verify.c (verifier_load_method): Don't return NULL for unverifiable
7355         methods.
7356
7357 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7358
7359         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
7360         constraints. Fixes regression in gtest-253.
7361
7362 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7363
7364         * verify.c (mono_verifier_verify_class): Don't allow generic types
7365         with explicit layout.
7366
7367         * verify.c (mono_method_verify): Check locals and argument types.
7368
7369 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
7370
7371         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
7372         wait if the thread is in StopRequested state.
7373
7374         * class.c (mono_class_from_name): Refactor the module searching code into
7375         a separate function so it can be reused in the AOT case too.
7376
7377 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
7378
7379         * verify.c (mono_type_is_valid_in_context): Improve the error message.
7380         Check both the type and it's generic type definition for loader errors.
7381         
7382         * verify.c (mono_method_is_valid_in_context): Don't generate another
7383         error when a type errors occur, this leads to the wrong exception been
7384         thrown.
7385
7386 2008-07-28  Dick Porter  <dick@ximian.com>
7387
7388         * icall-def.h
7389         * process.c
7390         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
7391         New internal calls to duplicate and close a process handle.
7392
7393 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
7394
7395         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
7396
7397 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
7398
7399         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
7400
7401 2008-07-27  Robert Jordan  <robertj@gmx.net>
7402
7403         * class.c (mono_class_init): Don't compute class.has_finalize for
7404         valuetypes. Fixes #412477.
7405
7406 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
7407
7408         * verify.c: Implement constraint equivalence checking.
7409         This is required when a generic parameter is used as
7410         argument to a constrained one.
7411
7412         Fixes #410637.
7413
7414 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
7415
7416         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7417
7418         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
7419
7420         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
7421         synch with managed object layout.
7422
7423 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
7424
7425         * verify.c (do_branch_op): Handle valuetypes and generic
7426         arguments properly.
7427
7428         * verify.c (do_cmp_op): Same.
7429
7430         Fixes #410383.
7431
7432 2008-07-24  Mark Probst  <mark.probst@gmail.com>
7433
7434         * generic-sharing.c: Fix memory leaks.
7435
7436         * class.c, class-internals.h: Make
7437         mono_class_inflate_generic_type_with_mempool() non-static.
7438
7439 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
7440
7441         * pedump.c (dump_verify_info): Dump full class name.
7442
7443 2008-07-24  Mark Probst  <mark.probst@gmail.com>
7444
7445         * generic-sharing.c: Removed some old code that didn't do anything.
7446
7447 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
7448         * profiler.c: Added runtime_initialized_event,
7449         mono_profiler_install_runtime_initialized and
7450         mono_profiler_runtime_initialized. This new hook tells the profiler
7451         when the runtime is sufficiently initialized to be able to call
7452         mono_thread_attach on the root appdomain.
7453         * profiler.h, profiler-private.h: Likewise.
7454
7455 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
7456
7457         * verify.c (do_cast): Do boxing for generic arguments as well.
7458
7459         * class.c (is_nesting_type): Drop generic instantiations before
7460         checking for nesting.
7461
7462         * class.c (can_access_instantiation): Allow access to generic
7463         arguments.
7464
7465 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
7466
7467         * verify.c (verify_class_for_overlapping_reference_fields):
7468         On some cases, the field size might be zero, guard against that.
7469         Fix the explicit layout check to work as expected.
7470
7471 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
7472
7473         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
7474         mono_thread_resume () during shutdown, since the thread we want to abort
7475         might be suspended.
7476
7477 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
7478
7479         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
7480         warning.
7481
7482         * debug-mono-symfile.c: Fix a warning.
7483
7484         * mono-perfcounters.c (get_cpu_times): Fix a warning.
7485
7486         * object.c (mono_class_vtable): Check if exception_type is set, and return
7487         NULL as defined by the function comments.
7488
7489 2008-07-22  Mark Probst  <mark.probst@gmail.com>
7490
7491         * mempool.c: Use malloc for every single mempool allocation if the
7492         configure option is set.  This makes it easier to track mempool
7493         allocations with tools like Valgrind.
7494
7495 2008-07-22  Jb Evain  <jbevain@novell.com>
7496
7497         * reflection.c (create_dynamic_mono_image): emit the same
7498         metadata version that SL2 does when creating a SL2 image.
7499
7500 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
7501
7502         * icall-def.h:
7503         * icall.c: New icall System.Enum:get_hashcode. This function
7504         avoids the overhead of boxing the enum to the underlying type.
7505
7506 2008-07-21  Mark Probst  <mark.probst@gmail.com>
7507
7508         * reflection.c (mono_method_get_object): Don't let static RGCTX
7509         invoke wrappers get into MonoReflectionMethods.
7510
7511 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
7512
7513         * object-internals.h:
7514         * object.c: New mono_runtime_class_init_full function
7515         that makes throwing the exception optinal.
7516
7517         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
7518         for the case where the exception object is supplied.
7519
7520 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
7521
7522         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
7523         old ld versions.
7524
7525         Contributed under MIT/X11 license.
7526
7527 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
7528
7529         * string-icalls.c (ves_icall_System_String_InternalSplit):
7530         Optimize array allocation by caching the MonoClass of the
7531         array type.
7532
7533         * icall.c (ves_icall_Type_GetMethodsByName): Same.
7534
7535         * reflection.c (mono_param_get_objects): Same.
7536
7537 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
7538
7539         * icall-def.h:
7540         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
7541         It inflates the given type using the class context.
7542
7543 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
7544
7545         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
7546         the vtable if it already exists.
7547
7548         * object-internals.h: Add mono_class_try_get_vtable as part of the
7549         internal API.
7550
7551         * reflection.c (mono_type_get_object): Use the MonoObject from the
7552         vtable when possible. Reduces locking contention on reflection heavy
7553         code.
7554
7555 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
7556
7557         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
7558         g_bit_nth_msf () since that macro is not implemented in eglib.
7559
7560 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
7561
7562         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
7563         on platforms which do not support it.
7564
7565 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
7566
7567         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
7568
7569 2008-07-11  Martin Baulig  <martin@ximian.com>
7570
7571         * mono-debug-debugger.h
7572         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
7573
7574         * mono-debug-debugger.c
7575         (_mono_debugger_interruption_request): New global volatile variable.
7576         (mono_debugger_check_interruption): New public function.
7577
7578         * threads.c
7579         (mono_thread_current_check_pending_interrupt): Call
7580         mono_debugger_check_interruption().
7581         (mono_thread_interruption_checkpoint_request): Likewise.
7582
7583 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7584
7585         * verify.c: Add more type checks for loaded types. Verify the result
7586         handle from ldtoken.
7587
7588 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7589
7590         * loader.c (field_from_memberref): Don't crash if the field
7591         wasn't found.
7592
7593 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7594
7595         * verify.c: Verify if type and method instantiations
7596         don't have invalid VAR or MVAR arguments.
7597
7598 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7599
7600         * verify.c: Fix double free of function pointer list.
7601
7602 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7603
7604         * object.c (mono_string_to_utf8): Comment the new code as it
7605         breaks under eglib.
7606
7607 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
7608
7609         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
7610
7611 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
7612
7613         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
7614           is not throw too many times.
7615
7616         Code is contributed under MIT/X11 license.
7617
7618 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
7619
7620         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
7621         debugging is turned off.
7622
7623 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
7624
7625         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
7626
7627 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7628
7629         * class-internals.h, class.c: Added new generic sharing option:
7630         Share only stuff in System.Collections.Generic, which is now the
7631         default.
7632
7633 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7634
7635         * generic-sharing.c, class-internals.h: New function for getting a
7636         generic method in a generic class given the corresponding method
7637         for a different instantiation of the class.  Partly refactored
7638         from mini-trampolines.c.
7639
7640         * class.c: Make sure generic methods have a class_inst if they are
7641         part of a generic class.
7642
7643         * metadata.c (mono_type_stack_size_internal): Handle type
7644         variables.
7645
7646 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7647
7648         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
7649         Signifies whether information on the this/vtable/mrgctx variable
7650         is available.
7651
7652 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7653
7654         * object.c, object-internals.h, icall.c: New function
7655         mono_delegate_ctor_with_method(), which does the same as
7656         mono_delegate_ctor(), but takes an explicit method argument
7657         instead of taking the method from the jit info.
7658
7659         * marshal.c: When creating a delegate with an inflated method take
7660         the "this" argument as the target class for the castclass.
7661
7662 2008-07-03  Mark Probst  <mark.probst@gmail.com>
7663
7664         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
7665         mono_jit_info_table_find() to perform very badly in some cases.
7666
7667 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
7668
7669         * icall.c (type_from_typename): Handle 'string'.
7670
7671         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
7672         wrappers into the wrapper_hash, since the key is not a MonoMethod.
7673
7674 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
7675
7676         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
7677
7678         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
7679         number of available managed allocator types.
7680
7681         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
7682         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
7683
7684 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
7685
7686         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
7687         which is a low level lock protecting just the 'jit_code_hash' hash table.
7688
7689         * domain.c: Initialize+cleanup jit_code_hash_lock.
7690         
7691 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
7692
7693         * coree.c (mono_load_coree): Set coree_module_handle global variable only
7694         after initialization.
7695
7696         * coree.h: Make MonoFixupExe internal.
7697
7698         Contributed under MIT/X11 license.
7699
7700 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
7701
7702         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
7703         because that is platform independent. Check NumberOfRvaAndSizes in PE32
7704         as well.
7705         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
7706         image being loaded is a CLI image and _CorValidateImage gets called.
7707
7708         * coree.h: Add MonoLoadImage.
7709
7710         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
7711         instead of LoadLibrary.
7712
7713         Contributed under MIT/X11 license.
7714
7715 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
7716
7717         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
7718         for any primitive type.
7719
7720 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
7721
7722         * object.c (mono_array_new_specific): Optimize this and the other allocation
7723         functions a bit.
7724         
7725         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
7726         domains too if mono_dont_free_domains is set.
7727
7728         * domain-internals.h (mono_dont_free_domains): New internal option controlling
7729         whenever to free appdomain data after it has been unloaded.
7730
7731         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
7732         
7733 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
7734
7735         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
7736         (mono_method_get_equivalent_method): Fix a warning.
7737
7738         * object.c (mono_message_init): Avoid looking up array types for each call.
7739
7740 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
7741
7742         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
7743         call.
7744
7745         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
7746         even more.
7747
7748         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
7749         each iteration.
7750
7751         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
7752         fields of an enum.
7753
7754 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
7755
7756         * object.c (mono_value_box): Fix boxing of nullables.
7757
7758 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
7759
7760         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
7761         mono_module_handle that is defined by the linker; no initialization required.
7762         * coree.h: Remove mono_module_handle, add __ImageBase, update
7763         mono_image_open_from_module_handle.
7764         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
7765         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
7766         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
7767         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
7768         to 4 GB away from image base address. IA64 version is not tested but was very
7769         easy to implement and should work if we ever need it.
7770         * domain.c (mono_init_internal): Avoid system error message boxes.
7771         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
7772         with has_entry_point. Handle do_mono_image_load fauilre correctly.
7773         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
7774         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
7775         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
7776
7777         Contributed under MIT/X11 license.
7778
7779 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
7780
7781         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
7782         as part of the private mono API.
7783         
7784         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
7785         Do proper argument checking for methods that belong to generic classes.
7786         Do proper type resolution for GMFH/2.
7787         Fixes #377324.
7788         
7789 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
7790
7791         * verify.c (do_switch): Fix a memory corruption bug with
7792         the jump index is out of bound.
7793
7794 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
7795
7796         * verify.c: Disable debug code.
7797
7798 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
7799
7800         * reflection.c (mono_image_get_methodbuilder_token): Use
7801         mono_image_get_methodspec_token_for_generic_method_definition
7802         instead of mono_image_get_memberref_token. We cache more memberef
7803         entries now.
7804
7805 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
7806
7807         * verify.c: Inflate exception clause types.
7808         Fixes #402606.
7809         
7810 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
7811
7812         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
7813         name.
7814
7815         * reflection.c (mono_image_get_ctorbuilder_token): Same.
7816
7817         * reflection.c (mono_image_create_method_token): Same.
7818
7819 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
7820
7821         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
7822         It does the same as mono_image_get_methodref_token but works on
7823         MethodBuilder.
7824
7825         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
7826         and always generate a methodspec. This follows the old behavior and fixes
7827         the regressions in System.Core. 
7828
7829 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
7830
7831         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
7832         don't event mono_class_get () succeeds. Fixes #402182.
7833
7834 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
7835
7836         * metadata-internals.h: Added MonoDynamicImage::methodspec
7837         hashtable to store methodspec tokens created for MethodBuilders.
7838
7839         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
7840         MethodBuilders as open instantiations if a methodspec was requested.
7841
7842         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
7843
7844         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
7845
7846         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
7847
7848         Fixes bug #349190.
7849
7850 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
7851
7852         * loader.c (method_from_methodspec): Avoid crashing if the
7853         method lookup fails.
7854
7855 2008-06-20  Dick Porter  <dick@ximian.com>
7856
7857         * socket-io.c (get_socket_assembly): Cope with Moonlight network
7858         classes being in a different assembly.  Fixes bug 399184.
7859
7860 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
7861
7862         * loader.c (mono_loader_init): Make this callable multiple times.
7863         (mono_dllmap_insert): Call mono_loader_init () so this works even before
7864         the runtime is initialized. Fixes #401755.
7865
7866 2008-06-19  Dick Porter  <dick@ximian.com>
7867
7868         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
7869         Fixes bug 349688.
7870
7871 2008-06-19  Dick Porter  <dick@ximian.com>
7872
7873         * socket-io.c:
7874         * icall-def.h: Implement Socket generic Send() and Receive()
7875         methods.  Fixes bug 395168.
7876
7877 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
7878
7879         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
7880
7881         Contributed under MIT/X11 license.
7882
7883 2008-06-18  Martin Baulig  <martin@ximian.com>
7884
7885         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
7886         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
7887         set to 80.0.  The debugger <-> runtime interface is now frozen as
7888         well.   
7889
7890         * mono-debug.c
7891         (mono_debug_debugger_version): Bump to 4.
7892
7893 2008-06-18  Martin Baulig  <martin@ximian.com>
7894
7895         * debug-mono-symfile.c
7896         (load_symfile): Don't check the minor version.
7897
7898         * debug-mono-symfile.h: Bump the version number to 50.0.
7899
7900 2008-06-18  Martin Baulig  <martin@ximian.com>
7901
7902         * debug-mono-symfile.c
7903         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
7904         minimum required version.
7905
7906 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
7907
7908         * reflection.c (mono_custom_attrs_from_property): Fix support for
7909         retriveving cattrs of dynamic inflated generic types.
7910
7911         * reflection.c (mono_custom_attrs_from_event): Same.
7912
7913         * reflection.c (mono_custom_attrs_from_field): Same;
7914
7915         * reflection.c (typebuilder_setup_events): Same cattrs of events.
7916
7917         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
7918         Moved to metadata.c.
7919
7920         * metadata.c: New functions to retrive the equivalent field, event
7921         of property from the generic type definition.
7922
7923         * metadata-internals.h: Added new functions from metadata.c.
7924
7925 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
7926
7927         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
7928         to cached in a mempool is used.
7929
7930         * metadata.c (free_generic_class): In some situations field generic_info type
7931         is not properly dup'ed and leads to double free'ing.
7932
7933         Fixes #400643.
7934
7935 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7936
7937         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
7938         this arguments (will be needed later for generic methods).
7939         Collect stats.
7940
7941 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7942
7943         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
7944         Create a static RGCTX invoke wrapper for methods which require it.
7945
7946 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7947
7948         * object.c, class-internals.h: New function for checking whether
7949         an individual field is special static.
7950
7951 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
7952
7953         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
7954         linear search since the table is sorted.
7955
7956         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
7957         Fixes #324180.
7958
7959 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
7960
7961         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
7962         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
7963
7964         * gc.c (mono_domain_finalize): Allow an infinite timeout.
7965
7966         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
7967         
7968         * threads.c (mono_thread_request_interruption): Get rid of locking, use
7969         InterlockedCompareExchange to query and modify 
7970         thread->interruption_requested.
7971
7972         * object-internals.h (struct _MonoThread): Change interruption_requested
7973         to a gint32 so it can be modified by atomic operations. Add 
7974         'critical_region_level' from the managed side, change small_id to a guint32,
7975         add new set of 'unused' fields.
7976
7977         * appdomain.c: Bump corlib version.
7978
7979 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
7980
7981         * class.c (mono_class_from_name): Search modules as well. Fixes
7982         #322332.
7983
7984 2008-06-13  Mark Probst  <mark.probst@gmail.com>
7985
7986         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
7987         templates.  Templates are generalized with an additional type_argc
7988         argument.  RGCTX templates have type_argc==0, MRGCTX templates
7989         have type_argc>0.
7990
7991         * domain-internals.h, domain.c: New hash table for looking up
7992         MRGCTXs.
7993
7994         * metadata.c, metadata-internals.h: Rename hash and equal
7995         functions for MonoGenericInst's and make them public.
7996
7997         * class-internals.h: New data structures for the MRGCTX.  Macros
7998         for distinguishing slots in the RGCTX and the MRGCTX.
7999
8000 2008-06-13  Mark Probst  <mark.probst@gmail.com>
8001
8002         * object.c (mono_method_get_imt_slot): Put the same methods of
8003         different instantiations of the same generic interface in the same
8004         IMT slots, to make generic sharing simpler.
8005
8006 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8007
8008         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
8009
8010         * metadata.c (mono_metadata_field_info_with_mempool): Added.
8011         This function works just like mono_metadata_field_info, but
8012         accept a mempool as argument to be used allocating memory.
8013
8014         * marshal.c (mono_marshal_load_type_info): Use new function
8015         to load marshal data into image mempool.
8016
8017 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8018
8019         * class.c (mono_class_inflate_generic_type_with_mempool):
8020         This function allows to inflate a generic type using
8021         a mempool.
8022
8023         * class.c (inflate_generic_type): Take a mempool as argument
8024         and use it to do type dup'ing.
8025
8026         * class.c (mono_class_setup_fields): Field type for generic
8027         generic classes are allocated from the image mempool.
8028
8029         * metadata.c (free_generic_class): Inflated field type is
8030         now allocated in the image mempool.
8031
8032 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8033
8034         * threads.c (thread_cleanup): Free MonoThread::name.
8035
8036 2008-06-12  Marek Habersack  <mhabersack@novell.com>
8037
8038         * appdomain.c (ensure_directory_exists): avoid unnecessary
8039         mkdir(2) calls when the shadow directory already exists.
8040         (mono_make_shadow_copy): copy also satellite assemblies from the
8041         private bin directories.
8042
8043 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
8044
8045         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
8046         
8047         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
8048         a page boundary. Fixes #396219.
8049
8050 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8051
8052         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
8053         due to double-checked locking.
8054
8055 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8056
8057         * assembly.c (build_assembly_name): Release memory on failure.
8058
8059         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
8060
8061 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8062
8063         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
8064         memory on failure.
8065
8066 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8067
8068         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
8069         memory on failure.
8070
8071 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8072
8073         * loader.c (field_from_memberref): Check if field signature type is equal
8074         to the non-inflated type of the field. Fixes #398980.
8075
8076 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
8077
8078         * assembly.c (mono_assembly_load_from_full): Call 
8079         mono_assembly_load_friends () outside the assemblies lock, since it can
8080         acquire the loader lock. Fixes #323696.
8081
8082         * reflection.c (resolve_object): Inflate the inst with the context for
8083         FieldOnTypeBuilderInst. Fixes #399010.
8084
8085 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8086
8087         * reflection.c (mono_image_get_field_on_inst_token): Don't
8088         inflate the field to encode it's signature. If it's a
8089         VAR or MVAR it should stay that way in the signature.
8090         Fixes #399047.
8091
8092 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8093
8094         * reflection.c (resolve_object): Release memory of inflated types.
8095
8096 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8097
8098         * loader.c (mono_method_get_signature_full): Remove assert about
8099         loading a methodspec to a generic method. We have such methods, such as
8100         System.Threading.Interlocked::CompareExchange<T>.
8101         This assert was removed since it crashes the verifier when it checks
8102         methods calling CompareExchange<T>.
8103
8104 2008-06-10  Marek Safar  <marek.safar@gmail.com>
8105
8106         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
8107         of Type array and not MonoType.
8108
8109 2008-06-10  Marek Habersack  <mhabersack@novell.com>
8110
8111         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
8112         <lupus@ximian.com>
8113
8114 2008-06-10  Martin Baulig  <martin@ximian.com>
8115
8116         * debug-mono-symfile.h
8117         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
8118         changes to the file format, but we were generating incorrect
8119         source file indices in the line number table due to a bug, which
8120         made backtraces report an incorrect source file.
8121
8122 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8123
8124         * mono-debug.c: Moved mono_debug_free_method_jit_info from
8125         mini/debug-mini.c to here.
8126
8127         * mono-debug.c (il_offset_from_address): Free memory from find_method.
8128
8129         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
8130         use it to release structs returned by mono_debug_find_method.
8131
8132 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
8133
8134         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
8135         since it needs to set method->slot for all interface methods.
8136
8137 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8138
8139         * class-internals.h: Forgot to add.
8140
8141 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8142
8143         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
8144
8145         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
8146         Lookup the custom attributes from property_hash.
8147
8148         * reflection.c (mono_save_custom_attrs): Save the custom attributes
8149         in property_hash. Allocate all data using the image mempool.
8150
8151         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
8152         for dynamic_custom_attrs to checks if the image is dynamic.
8153
8154 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
8155
8156         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
8157         assemblies array.
8158         
8159         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
8160         runtime functions while holding the domain assemblies lock.
8161
8162 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8163
8164         * verify.c: Reapplied the last bit of the reverted changes.
8165
8166 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8167
8168         * verify.c: Reapplied more of the reverted changes.
8169
8170 2008-06-09  Martin Baulig  <martin@ximian.com>
8171
8172         * debug-mono-symfile.c (load_symfile): Check the major version
8173         first; if it's wrong, don't print the minor version in the error message.
8174
8175 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
8176
8177         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
8178         lock instead of the domain lock to avoid deadlocks, since the thread might
8179         already hold the loader lock.
8180
8181         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
8182         (mono_thread_attach): Ditto.
8183
8184         * monitor.c: Use a TLS variable for holding the current thread id instead
8185         of calling pthread_self ().
8186         (mono_monitor_init_tls): New internal function to initialize the TLS
8187         variable.
8188         (mono_monitor_try_enter_internal): Put the owner == id check after the
8189         owner == 0 check.
8190
8191         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
8192         missed optimizations when using gcc-4.3.
8193
8194 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
8195
8196         * reflection.c (mono_dynamic_image_free): Free the memory
8197         used by MonoGenericParam in MonoDynamicImage::gen_param.
8198
8199         * reflection.c (mono_reflection_setup_generic_class): Allocate
8200         container from mempool.
8201
8202         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
8203         container from mempool.
8204
8205 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
8206
8207         * threads.c (mono_set_pending_exception): New internal function to set the
8208         pending exception of the current thread.
8209         (mono_thread_get_and_clear_pending_exception): Check for 
8210         thread->pending_exception as well.
8211
8212         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
8213
8214         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
8215         it can trigger a collection.
8216
8217 2008-06-06  Martin Baulig  <martin@ximian.com>
8218
8219         Merged the `debugger-kahalo' branch.
8220
8221         * mono-debug.h
8222         (MONO_DEBUGGER_VERSION): Bumped to 72.
8223
8224         * debug-mono-symfile.h
8225         (MonoSymbolFileMethodIndexEntry): Removed.
8226         (MonoSymbolFileMethodEntry): New public typedef.
8227         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
8228         (MonoSymbolFileSourceEntry): Remove everything except `index' and
8229         `data_offset'.
8230         (MonoSymbolFileMethodEntry): Removed.
8231         (MonoSymbolFileLexicalBlockEntry): Removed.
8232         (MonoSymbolFileLineNumberEntry): Removed.
8233         (MonoDebugLexicalBlockEntry): Removed.
8234         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
8235         removed `num_il_offsets' and `il_offsets'.
8236         (MonoSymbolFile): Replace `version' with `major_version' and
8237         `minor_version'.
8238         (MONO_SYMBOL_FILE_VERSION): Replace with
8239         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
8240         `MONO_SYMBOL_FILE_MINOR_VERSION'.
8241
8242         * debug-mono-symfile.c
8243         (mono_debug_symfile_lookup_location): Add support for the new line
8244         number table format.
8245
8246 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8247
8248         * metadata.c (free_generic_class): Release the inflated
8249         MonoClass of dynamic generic classes if it's not a generic
8250         type definition.
8251
8252 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8253
8254         * verify.c: Reapplied more of the reverted changes.
8255
8256 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8257
8258         * reflection.c (lookup_custom_attr): Clean the cached flag or
8259         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
8260         for SRE types.
8261
8262 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8263
8264         * verify.c: Reapplied a small part of the reverted changes.
8265
8266 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
8267
8268         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8269
8270         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
8271         previously in managed code.
8272         (mono_monitor_exit): Ditto.
8273         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
8274
8275         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
8276         the managed definition.
8277
8278 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
8279
8280         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
8281
8282 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
8283
8284         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
8285         
8286         * monitor.c: Add some micro optimizations.
8287
8288         * icall.c (type_from_typename): Handle 'bool'.
8289
8290 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
8291
8292         * verify.c: Implement constructor verification per P III 1.8.1.4.
8293         Fixes #396716.
8294
8295 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
8296
8297         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
8298         holding the assemblies lock here too.
8299
8300 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8301
8302         * verify.c: Kill stack_top function.
8303
8304 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8305
8306         * verify.c: Kill stack_get function.
8307
8308 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8309
8310         * verify.c (mono_method_verify): Last change broke the build. Fixed.
8311
8312 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8313
8314         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
8315         more reliable.
8316
8317         * verify.c (mono_method_verify): Inflate params and locals to avoid
8318         mismatch when checking for compatibility.
8319
8320 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
8321
8322         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
8323         Length prefix should be size in bytes. Fix bug #339530.
8324         
8325         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
8326         Length prefix should be size in bytes. Fix bug #339530.
8327
8328         Code is contributed under MIT/X11 license.
8329
8330 2008-06-05  Bill Holmes <billholmes54@gmail.com>
8331
8332         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
8333
8334         Contributed under MIT/X11 license.
8335
8336 2008-06-05  Martin Baulig  <martin@ximian.com>
8337
8338         * mono-debug-debugger.c
8339         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
8340
8341 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
8342
8343         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
8344         while holding the assemblies lock to prevent deadlocks. Handle the case
8345         where the search hook returns NULL but the assembly was still loaded.
8346         Fixes #323696.
8347
8348         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
8349         modify domain state.
8350
8351 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
8352
8353         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
8354         * Makefile.am (pedump_LDADD): Post-process object files and
8355         add dtrace-generated object file, if necessary.
8356
8357         Code is contributed under MIT/X11 license.
8358
8359 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8360
8361         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
8362
8363 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8364
8365         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
8366
8367 2008-06-04  Mark Probst  <mark.probst@gmail.com>
8368
8369         * threads.c: Try to free everything from the delayed free table
8370         when shutting down threads, and set the variable to NULL after the
8371         table is freed so that calling
8372         mono_thread_hazardous_try_free_all() when shutting down the root
8373         domain doesn't crash.
8374
8375 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8376
8377         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
8378         the caller if resulting type was inflated.
8379
8380         * class.c (mono_class_create_from_typespec): Free the MonoType if it
8381         was inflated.
8382
8383         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
8384
8385
8386 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
8387
8388         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
8389         class library tests.
8390
8391         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
8392         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
8393         #396989.
8394
8395 2008-06-04  Mark Probst  <mark.probst@gmail.com>
8396
8397         * domain.c, domain-internals.h: The JIT infos are now freed by the
8398         JIT info table code.  They are freed immediately if there only a
8399         single JIT info table in circulation.  If there is more, the free
8400         is delayed via a queue.
8401
8402         * threads.c, threads-types.h: New hazard pointer function for
8403         freeing all freeable delayed items in one sitting.
8404
8405 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8406
8407         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
8408
8409         * reflection.c (typebuilder_setup_properties): Same.
8410
8411         * reflection.c (typebuilder_setup_events): Same.
8412
8413 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8414
8415         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
8416         and use it for allocating memory.
8417
8418         * reflection.c (mono_marshal_spec_from_builder): Same.
8419
8420         * reflection.c: Change code to use new signatures.
8421
8422         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
8423
8424 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8425
8426         * decimal.c (rescale128): Put back one line which was accidently commented
8427         out.
8428         
8429         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
8430         to cause crashes.
8431
8432 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8433
8434         * reflection.c (mono_reflection_generic_class_initialize): Name must
8435         be always malloc'ed so we can free it later on. Do this for field, property
8436         and event.
8437
8438         * metadata.c (free_generic_class): Free field, property and event names.
8439
8440 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8441
8442         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
8443         instead of g_memdup.
8444
8445         * reflection.c (typebuilder_setup_fields): Same.
8446
8447 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8448
8449         * decimal.c (rescale128): Optimize this function a bit more.
8450
8451 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8452
8453         * metadata.c (free_generic_class): Release some memory from
8454         SRE generic classes.
8455
8456 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8457
8458         * reflection.c (mono_image_get_generic_field_token): No reference
8459         to name is kept, free it.
8460
8461         * reflection.c (mono_reflection_generic_class_initialize): Free
8462         more memory of the inflated field.
8463
8464 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8465
8466         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
8467         code.
8468
8469 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
8470
8471         * reflection.c (mono_dynamic_image_free): Release memory used by
8472         MonoDynamicImage::array_methods elements.
8473
8474         * reflection.c (assembly_add_win32_resources): Release memory after
8475         encoding.
8476
8477 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
8478
8479         * decimal.c (log2_32): Use an optimized version for this function too.
8480         
8481         * decimal.c (log2_64): Fix this on 32 bit machines.
8482
8483 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
8484
8485         * class.c (mono_dup_array_type): Implement allocation using a mempool.
8486
8487         * class.c (mono_metadata_signature_deep_dup): Same.
8488
8489         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
8490         a mempool.
8491
8492         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
8493
8494         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
8495
8496         * metadata-internals.h: Added mono_metadata_signature_dup_full.
8497
8498         * class-internals.h: Update signatures to take a MonoMemPool.
8499
8500 2008-06-02  Dick Porter  <dick@ximian.com>
8501
8502         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
8503         * icall-def.h: Add
8504         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
8505         FormatMessage API to get the error text.  Fixes bug 321827.
8506
8507 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
8508
8509         * decimal.c: Add some micro optimizations to make decimal operations faster.
8510
8511 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
8512
8513         * reflection.c (method_encode_clauses): Take a mempool
8514         as parameter and use it to allocate the clause array.
8515
8516         * reflection.c (mono_image_get_field_on_inst_token): Free
8517         the inflated type after encoding it.
8518
8519         * reflection.c (mono_dynamic_image_free): Free each element
8520         of MonoDynamicImage::gen_params.
8521
8522         * reflection.c (reflection_methodbuilder_to_mono_method):
8523         Allocate the generic param array from the mempool.
8524         Allocate signature params from the mempool.
8525
8526         * reflection.c (mono_reflection_generic_class_initialize):
8527         Free inflated fields after been used.
8528
8529 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
8530
8531         * icall.c: Reapply the memory leak fixes as they no
8532         longer make mono crash.
8533
8534 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
8535
8536         * reflection.c (mono_type_get_object): Don't store the suplied
8537         MonoType with type_hash. A caller which pass a type that
8538         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
8539         might end with a pointer to freed memory.
8540         The solution is to use byval_arg or this_arg from the associated
8541         MonoClass of the supplied type.
8542
8543 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
8544
8545         * icall.c: Revert the rest of the last change as it breaks the build too.
8546
8547 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8548
8549         * icall.c: Revert a leak fix as it's breaking the build.
8550
8551 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8552
8553         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
8554
8555 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8556
8557         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
8558
8559 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8560
8561         * icall.c: Fix some memory leaks.
8562
8563 2008-05-29  Dick Porter  <dick@ximian.com>
8564
8565         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
8566         async socket operations from the pending list when a socket
8567         closes.  Leaving it until the threadpool services the event
8568         exposes a race condition when a socket descriptor is reused.
8569         Fixes bug 377589.
8570
8571 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8572
8573         * object.c: Fix negative index check for array alocation.
8574
8575 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8576
8577         * icall.c, marshal.c: Delegate wrappers should skip visibility.
8578         This check is performed by the verifier for IL created delegates
8579         and by Delegate::CreateDelegate for programatically created ones.
8580         Fixes #372406.
8581
8582 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8583
8584         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
8585         Fix code to use mono_array_size_t instead of int.
8586
8587         Based on patch by Luis F. Ortiz.
8588         Contributed under X11 license.
8589         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8590
8591 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8592
8593         * icall.c: Added ves_icall_System_Array_GetLongLength and
8594         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
8595         arrays.
8596
8597         * icall.h: Export both new functions.
8598
8599         Based on patch by Luis F. Ortiz.
8600         Contributed under X11 license.
8601         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8602
8603 2008-05-28  Martin Baulig  <martin@ximian.com>
8604
8605         The debugger now requires exactly r103463.
8606
8607         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
8608         This version is not supported by the debugger, wait for 72.
8609
8610 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8611
8612         * object.h: Changed array related functions to use
8613         mono_array_size_t instead of guint32. Forgot to commit this file.
8614
8615         Patch by Luis F. Ortiz.
8616         Contributed under X11 license.
8617         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8618
8619
8620 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8621
8622         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
8623         don't define it. Use the number literal instead.
8624
8625 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
8626
8627         * icall.c: Changed array related functions to use
8628         mono_array_size_t instead of guint32.
8629
8630         * icall.c (ves_icall_System_Array_GetLength): Check for length
8631         overflow under MONO_BIG_ARRAYS.
8632
8633         Based on patch by Luis F. Ortiz.
8634         Contributed under X11 license.
8635         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8636
8637 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
8638
8639         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
8640
8641         Based on patch by Luis F. Ortiz.
8642         Contributed under X11 license.
8643         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8644
8645 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
8646
8647         * object.c, object.h: Changed array related functions to use
8648         mono_array_size_t instead of guint32.
8649
8650         Patch by Luis F. Ortiz.
8651         Contributed under X11 license.
8652         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8653
8654 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
8655
8656         * object.h: Introduced mono_array_size_t typedef. This must be used
8657         in all places an array length is expected. This is 64bits wide if
8658         MONO_BIG_ARRAYS is enabled.
8659
8660         Patch by Luis F. Ortiz.
8661         Contributed under X11 license.
8662         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8663
8664 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
8665
8666         * security-manager.c class.c: Set the class exception info by calling
8667         mono_class_set_failure ().
8668
8669         * class.c (mono_class_get_exception_data): New accessor function.
8670         (mono_class_set_failure): Store exception_data in the property hash.
8671
8672         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
8673         the struct as a property.
8674
8675         * loader.c (mono_get_method_full): Store the lookup result for method
8676         tokens in method_cache, the others in methodref_cache to decrease the memory
8677         usage of hash tables.
8678
8679         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
8680         (mono_image_init): method_cache is lazy inited now.
8681
8682         * metadata-internals.h (struct _MonoImage): Change method_cache to
8683         a MonoValueHashTable, add a separate methodref_cache.
8684
8685 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
8686
8687         * number-formatter.h: Fix tables to avoid arithemtic overflow in
8688           Double.ToString as exposed by Bug #383531.
8689
8690 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
8691
8692         * number-formatter.h: Make some tables static.
8693
8694         * class.c (mono_method_set_generic_container): New accessor function.
8695         (mono_method_get_generic_container): Ditto.
8696
8697         * class-internals.h (struct _MonoMethod): Remove rarely used 
8698         'generic_container' field, store it in the property hash instead. Add 
8699         'is_generic' boolean field instead.
8700
8701         * image.c (mono_image_init): Initialize property_hash.
8702         (mono_image_close): Destroy property_hash.
8703
8704         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
8705         hold rarely used fields of runtime structures belonging to this image.
8706
8707         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
8708         to get/set method->generic_container.
8709
8710         * loader.c (mono_get_method_from_token): Avoid loading the method header for
8711         generic methods.
8712
8713 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
8714
8715         * class.c (mono_class_inflate_generic_method_full): Don't increase
8716         mono_stats.inflated_method_count for methods found in the cache.
8717
8718         * threads.c (mono_thread_request_interruption): Add a comment about 
8719         QueueUserAPC ().
8720
8721 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
8722
8723         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
8724         interface_offsets_packed table.
8725         
8726         * class.c (mono_class_init): Remove some dead code.
8727
8728         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
8729         mono_class_setup_vtable () when CAS is active to detect security problems.
8730
8731 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
8732
8733         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
8734
8735         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
8736         parameters as it's irrelevant for delegate checking.
8737
8738 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
8739
8740         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
8741
8742         * class.c (mono_class_init): Control the creation of a generic vtable using
8743         a global which is true by default, but set to false by the runtime startup code.
8744         
8745         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
8746         Disabled for now since it breaks the embedding API.
8747         Move the setup of class->methods for arrays to mono_class_setup_methods ().
8748         (mono_class_setup_methods): Add a memory barrier.
8749
8750         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
8751         when mono_class_init () doesn't compute the generic vtable.
8752         
8753 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
8754         * profiler.c: Added mono_profiler_install_statistical_call_chain,
8755         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
8756         to support call chains (backtrace) in the stat profiler.
8757         * profiler.c, profiler-private.h: Likewise.
8758
8759 2008-05-22  Mark Probst  <mark.probst@gmail.com>
8760
8761         * generic-sharing.c: Init generic class when a method of it is
8762         requested via a runtime generic context.
8763
8764 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
8765
8766         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
8767
8768         * reflection.c (mono_type_get_object): Add a FIXME.
8769
8770         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
8771
8772         * class.c (mono_class_get_method_by_index): New helper function, returning an
8773         entry in the class->methods array.
8774
8775 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
8776
8777         * class.c (mono_class_init): Only do the array optimization for szarrays. 
8778         Avoid creating a generic vtable for generic instances as well.
8779         (mono_class_get_method_from_name_flags): Don't search in the metadata for
8780         generic instances.
8781
8782 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
8783
8784         * loader.c (mono_get_method_constrained): Inflate the signature
8785         with class context. Fix #325283.
8786
8787 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
8788
8789         * object.c (mono_class_create_runtime_vtable): Add a comment.
8790
8791         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
8792         where needed.
8793         (setup_interface_offsets): Handle the case when this is called twice for arrays.
8794         (mono_class_setup_vtable_general): Add an assert.
8795         (mono_class_init): Avoid creating a generic vtable for arrays.
8796
8797         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
8798         here, let mono_class_init () do that.
8799
8800         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
8801         interfaces in mscorlib.
8802
8803         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
8804         interfaces. Add some comments.
8805         (mono_class_init): Call mono_class_setup_methods () here since it is no
8806         longer called by mono_class_setup_vtable ().
8807
8808         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
8809         not set in class->vtable.
8810         (mono_class_create_runtime_vtable): Reenable the disabled code.
8811
8812         * object.c (mono_class_create_runtime_vtable): Disable the last change for
8813         now as it causes some test failures.
8814
8815         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
8816         if using the vtable trampoline. Also remove some strange code which put the
8817         generic methods themselves into the vtable slots. Remove the AOT init_vtable
8818         stuff as it is no longer needed.
8819
8820 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
8821
8822         * pedump.c: Give make --verify all option check code as well.
8823         Using --verify code won't check for metadata now.
8824
8825 2008-05-19  Martin Baulig  <martin@ximian.com>
8826
8827         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
8828
8829         * mono-debug.c
8830         (_mono_debug_using_mono_debugger): New global variable; it's set
8831         directly by the debugger, so mono_debug_using_mono_debugger() also
8832         works after attaching.
8833
8834 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
8835
8836         * object.c (mono_class_create_runtime_vtable): Use memory barriers
8837         as we do double checked locking on MonoClass::runtime_info and
8838         MonoClassRuntimeInfo::domain_vtables.
8839
8840 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
8841
8842         * debug-helpers.c (print_field_value): Fix a warning.
8843
8844 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
8845
8846         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
8847         set in the AOT case.
8848
8849 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
8850
8851         * class.c (mono_class_setup_vtable_general): Use memory barriers
8852         as we do double checked locking on MonoClass::vtable.
8853
8854 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
8855
8856         * reflection.c (resolve_object): Inflate only if the generic context
8857         is not null. Fixes #389886.
8858
8859 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
8860
8861         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
8862         instead of g_free.
8863
8864         Code is contributed under MIT/X11 license.
8865
8866 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
8867
8868         * class.c: Revert unrelated change.
8869
8870 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
8871
8872         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
8873         a generic instantiation, use mono_class_from_mono_type instead of playing
8874         with MonoType directly.
8875
8876 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
8877
8878         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
8879         checks must ignore generic instantiations, so mono_class_has_parent is not
8880         suitable. Fixes #390128.
8881
8882 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
8883
8884         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
8885         it to avoid registering tokens during metadata generation. Fixes #390023.
8886
8887 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
8888
8889         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
8890         consistent.
8891
8892         Contributed under MIT/X11 license.
8893
8894 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
8895
8896         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
8897         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
8898         to fixup the EXE image.
8899         (mono_cleanup): Use mono_close_exe_image.
8900         (mono_close_exe_image): New function.
8901         * image.c: Include "marshal.h".
8902         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
8903         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
8904         counting when the image is loaded outside of mono_image_open_full. Set status
8905         based on GetLastError.
8906         * coree.c: Include required headers. Add init_from_coree.
8907         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
8908         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
8909         (_CorExeMain): Set init_from_coree.
8910         (CorExitProcess): Only call ExitProcess for now.
8911         (CorBindToRuntimeEx): New stub implementation.
8912         (CorBindToRuntime): New function.
8913         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
8914         (MonoFixupExe): ILONLY executables require no fixups.
8915         (mono_set_act_ctx): New function to set activation context.
8916         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
8917         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
8918         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
8919         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
8920         as MONO_INTERNAL.
8921         * domain-internals.h: Add mono_close_exe_image.
8922
8923         Contributed under MIT/X11 license.
8924
8925 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
8926
8927         * metadata.c (mono_metadata_compute_size): Correctly calculate field
8928         size for generic param and event tables. Fixes #388977.
8929
8930 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
8931
8932         * loader.c (mono_method_signature): Use memory barriers because of the double
8933         checked locking pattern.
8934
8935         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
8936         aborting or aborted as well. Fixes #376391.
8937         
8938         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
8939         existing runtime state in the Suspend handler during shutdown.
8940
8941 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
8942
8943         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
8944
8945         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
8946         which are starting up or shutting down.
8947
8948         * threads.c (mono_threads_set_shutting_down): Don't return a value since
8949         this function never returns if the runtime is already shutting down.
8950
8951         * icall.c (ves_icall_System_Environment_Exit): Update after 
8952         mono_threads_set_shutting_down () signature change.
8953         
8954 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
8955
8956         * class.c: Added can_access_instantiation to verify if the instantiation
8957         is visible. Fix access check for nested types as they returned TRUE
8958         before doing type and generic instantiation visibility checks.
8959
8960 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
8961
8962         * reflection.c (mono_reflection_create_generic_class): The created type
8963         must have a different container from its TypeBuilder. Otherwise they
8964         will end sharing generic arguments, which is wrong.
8965
8966         Due to the sharing, making a generic instance of the created type using
8967         the TypeBuider generic arguments resulted in the generic type definition
8968         been returned, which is wrong as well.
8969
8970         As a bonus the code was leaking the type_params array. This memory should
8971         be allocated from the image mempool.
8972
8973         This fixes bug #354047.
8974
8975 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
8976
8977         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
8978         to here         as they are now used in assembly.c new code.
8979         Added a skipverification flag to MonoAssembly.
8980         New internal function mono_assembly_has_skip_verification.
8981
8982         * assembly.c: New function mono_assembly_has_skip_verification. It checks
8983         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
8984         part of #387274.
8985
8986 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
8987
8988         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
8989         needed. Fixes #387034.
8990
8991         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
8992
8993 2008-05-06  Miguel de Icaza  <miguel@novell.com>
8994
8995         * assembly.c (mono_assembly_load_reference): Prevent crash while
8996         disassembling Silverlight 2.0 executables while we still do not
8997         have GACed libraries.
8998
8999 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
9000
9001         * reflection.c: Special case generic type definitions as well. Fixes #383444.
9002
9003 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
9004
9005         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
9006         of the dynamic case. Fixes #387404.
9007
9008 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9009
9010         *verify.c (mono_verifier_is_class_full_trust): If under
9011         verify_all and the verifier mode was not set, only
9012         gac and corlib types are fulltrust. This makes --verify-all
9013         usable to detect unverifiable code, which is the expected
9014         use case.
9015
9016 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9017
9018         * verify.h: Ops, commited the header with debug
9019         enabled.
9020
9021 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9022
9023         * verify.c (merge_stack): Use the new value on unverifiable
9024         stack merges.
9025
9026         * verify.c (verify_type_compatibility_full): Comparison
9027         of nullable types can't use mono_class_is_assignable_from.
9028
9029         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
9030         that makes all verification errors be reported.
9031
9032         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
9033         mono_method_verify.
9034
9035 2008-05-05  Robert Jordan  <robertj@gmx.net>
9036
9037         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
9038         support for value types. See #386415.
9039
9040         * object.c: comments.
9041
9042         Code is contributed under MIT/X11 license.
9043
9044 2008-05-05  Martin Baulig  <martin@ximian.com>
9045
9046         * debug-mono-symfile.h
9047         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
9048         for old pre-terrania symbol files.
9049
9050 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
9051
9052         * mono-config.c: Add ppc64 architecture.
9053
9054         Code is contributed under MIT/X11 license.
9055
9056 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
9057
9058         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
9059           PPC64 uses function descriptors as well.
9060
9061         Code is contributed under MIT/X11 license.
9062
9063 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
9064
9065         * object.c (compute_class_bitmap): Ignore literal static fields.
9066
9067         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
9068         var has an invalid format.
9069         (describe_ptr): Add some sanity checks for the vtable.
9070         (add_nursery_frag): Clear unused nursery fragments.
9071         (major_collection): Clear all remaining nursery fragments.
9072
9073 2008-05-03  Robert Jordan  <robertj@gmx.net>
9074
9075         * image.c, metadata-internals.h: add thunk_invoke_cache.
9076
9077         * marshal.c, marshal.h: implement
9078         mono_marshal_get_thunk_invoke_wrapper ().
9079
9080         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
9081
9082         Code is contributed under MIT/X11 license.
9083
9084 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
9085
9086         * verify.c (do_leave): Empty the stack.
9087
9088 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
9089
9090         * class.c (mono_class_is_assignable_from): Variance
9091         doesn't work between reference and value types. For example,
9092         given type C<T+>, C<int32> is not assignable to C<object>.
9093         Break the argument checking loop on first error. 
9094
9095 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
9096
9097         * icall.c : base64_to_byte_array() needs some more strict
9098           check for sequence of '=' characters. Patch by Santa
9099           Marta (http://deee.g.hatena.ne.jp/santamarta).
9100
9101           Contributed under MIT/X11 license.
9102           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
9103
9104 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
9105
9106         * domain.c: Disable LoadLibrary support to fix Win32 build.
9107
9108         Code is contributed under MIT/X11 license.
9109
9110 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
9111
9112         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
9113         to help with cache behaviour.
9114
9115 2008-05-01  Miguel de Icaza  <miguel@novell.com>
9116
9117         * appdomain.c (mono_domain_from_appdomain): Add new accessor
9118         method. 
9119
9120 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
9121
9122         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
9123
9124 2008-05-01  Dick Porter  <dick@ximian.com>
9125
9126         * process.c (process_get_fileversion): Only pass 16 bits of
9127         language ID to VerLanguageName.  Fixes bug 381204.
9128
9129 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
9130
9131         * verify.c (mono_method_verify): Fix the comparison
9132         operator for code bounds check.
9133
9134 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
9135
9136         * verify.c (mono_method_verify): Check the bounds of
9137         all access of the code array.
9138
9139 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
9140
9141         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
9142
9143 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
9144
9145         * image.c (mono_image_strong_name_position): Fix return value when the rva is
9146         not valid.
9147
9148 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
9149
9150         * loader.c (mono_get_method_from_token, mono_method_signature): Add
9151         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
9152         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
9153         fixup main EXE images when using mono.exe for mixed-mode assembly support.
9154         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
9155         mono_runtime_load.
9156         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
9157         runtime initialization from metadata.
9158         * assembly.c: Remove obsolete ceGetModuleFileNameA.
9159         (mono_set_rootdir): Use mono_get_module_file_name.
9160         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
9161         handles.
9162         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
9163         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
9164         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
9165         MonoCLIImageInfo. Add support for module handles.
9166         (load_cli_header): Update mono_cli_rva_image_map signature.
9167         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
9168         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
9169         (mono_image_rva_map): Add support for module handles.
9170         (mono_image_ensure_section_idx): Add support for module handles.
9171         (mono_image_close): Add support for module handles.
9172         (do_load_header): Add support for module handles.
9173         (mono_image_open_from_module_handle): New function for internal use.
9174         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
9175         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
9176         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
9177         handles.
9178         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
9179         * image.h: Add mono_image_fixup_vtable.
9180         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
9181         support.
9182         * coree.h: New file.
9183         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
9184         unsupported native code.
9185         (mono_marshal_set_callconv_from_modopt): New function splitted from
9186         mono_marshal_get_managed_wrapper.
9187         (mono_marshal_get_managed_wrapper): Use
9188         mono_marshal_set_callconv_from_modopt.
9189         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
9190         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
9191         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
9192         that results in a deadlock when the runtime is loaded in _CorDllMain.
9193         * Makefile.am: Add coree.c and coree.h.
9194
9195         Contributed under MIT/X11 license.
9196
9197 2008-04-28  Mark Probst  <mark.probst@gmail.com>
9198
9199         * generic-sharing.c: Search for type arguments in array element
9200         types as well.
9201
9202 2008-04-28  Mark Probst  <mark.probst@gmail.com>
9203
9204         * class-internals.h, generic-sharing.c: New, small runtime generic context.
9205
9206         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
9207
9208         * object.c: Don't setup the RGCTX when the vtable is created,
9209         because we're setting it up lazily now.
9210
9211 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
9212
9213         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
9214         64 bit support.
9215
9216 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
9217
9218         * verify.c (verify_class_for_overlapping_reference_fields): 
9219         If class is under fulltrust allow reference types to overllap
9220         if they have the same RVA.
9221
9222 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
9223
9224         * pedump.c: Added new flag valid-only, that makes the verifier
9225         behaves just like --security=validil. It won't fail type load
9226         due to unverifiable restrictions.
9227
9228 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
9229
9230         * class-internals.h (struct MonoMethod): Added a verification_success
9231         field to cache verifier executions. Reduced MonoMethod:slot size by
9232         one bit.
9233
9234 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
9235
9236         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
9237         instead of a 'vt' argument to save an indirection and to allow these to be used
9238         for valuetypes.
9239         (scan_vtype): New helper function to scan an area using a gc descriptor.
9240         (mono_gc_wbarrier_value_copy): Implement this.
9241         (handle_remset): Add support for REMSET_VTYPE.
9242         (find_in_remset_loc): Ditto.
9243         (mono_gc_base_init): Allow some debugging options to be controlled through the
9244         use of the MONO_GC_DEBUG env variable.
9245         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
9246         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
9247
9248 2008-04-23  Martin Baulig  <martin@ximian.com>
9249
9250         * domain.c (mono_domain_create): Move the call to
9251         mono_debug_domain_create() down, after allocating the domain id.
9252
9253 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
9254
9255         verify.c (verify_class_for_overlapping_reference_fields): Skip
9256         static fields while verifying for overlapping fields as they
9257         don't matter at all.
9258
9259 2008-04-23  Marek Habersack  <mhabersack@novell.com>
9260
9261         * domain-internals.h: added a declaration of
9262         mono_make_shadow_copy.
9263
9264         * assembly.c (mono_assembly_open_full): shadow copying of
9265         assemblies moved to here, so that all the assemblies within the
9266         application domain's private binary directories can be
9267         processed. Fixes bug #380546
9268
9269         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
9270         mono_make_shadow_copy and made non-static. The decision whether
9271         to shadow-copy an assembly is made based on its location - it's
9272         copied if it's in one of the private application domain binary
9273         directories and its different to the target file in the shadow
9274         directory. Fixes bug #380546
9275
9276 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
9277
9278         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
9279
9280         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
9281         types.
9282
9283         * reflection.c (mono_image_create_token): Handle 
9284         Method/ConstructorOnTypeBuilderInst.
9285         (resolve_object): Ditto.
9286         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
9287         so it can be called from resolve_object. Also handle the case when the inflated
9288         class already has its methods setup.
9289
9290 2008-04-21  Martin Baulig  <martin@ximian.com>
9291
9292         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
9293
9294 2008-04-20  Geoff Norton  <gnorton@novell.com>
9295
9296         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
9297         pointer dereference.
9298
9299 2008-04-15  Marek Habersack  <mhabersack@novell.com>
9300
9301         * appdomain.c (try_load_from): if IOMAP is in effect, call the
9302         portability API to look up the assembly file. Fixes behavior in
9303         situations when the application has a bin/ directory, but the
9304         assembly search patch refers to Bin/ (and thus the requested file
9305         name is Bin/SomeLibrary.dll). Fixes bug #379888
9306
9307 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
9308
9309         verify.c (mono_type_is_generic_argument): Extracted this check
9310         from a dozen places to here.
9311
9312         verify.c: Fixed all issues related to boxing generic arguments
9313         and their constraints.
9314
9315 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
9316
9317         verify.c (mono_class_interface_implements_interface): Fix win32 build.
9318
9319 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
9320
9321         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
9322         isn't finished yet. Fixes #363447.
9323
9324 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
9325
9326         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
9327         Fixes #346419.
9328
9329 2008-04-13  Jb Evain  <jbevain@novell.com>
9330
9331         * domain.c: update the 2.1 profile versions.
9332         Merged from the Moonlight 2 branch.
9333
9334 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
9335
9336         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
9337         mscorlibs for the non-refonly case as well.
9338
9339         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
9340         in mono_assembly_load_from_full (). Fixes #378924.
9341
9342 2008-04-11  Geoff Norton  <gnorton@novell.com>
9343
9344         * icall.c: The global extern environ doesn't exist on Mac.  We
9345         need to call NSGetEnviron instead.
9346
9347 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9348
9349         verify.c: Add generic method constraint verification.
9350
9351 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9352
9353         class.c (mono_class_inflate_generic_method_full): Add a long
9354         explanation to the is_mb_open hack. Remove the FIXME.
9355
9356 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9357
9358         * verify.c (mono_method_verify): Mark all unknown opcodes
9359         as invalid. Mark jmp as unverifiable.
9360
9361 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9362
9363         * verify.c: Add code to do type constraint verification on class instances.
9364
9365         * verify.c (mono_verifier_verify_class): Use the type constraint 
9366         verification code.
9367
9368 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9369
9370         * class.c (mono_class_get_field_default_value): Don't pass cindex
9371         as hint to mono_metadata_get_constant_index. The local is not initialized
9372         and should contain garbage most of the time. This could only work
9373         with a lot of luck.
9374
9375 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
9376
9377         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
9378
9379 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
9380
9381         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
9382
9383         * class.c (mono_class_from_generic_parameter): Save the token of the
9384         generic param in MonoClass::sizes.generic_param_token.
9385
9386         * reflection.c (mono_custom_attrs_from_class): If the class type is
9387         VAR or MVAR retrieve the attributes of the generic param.
9388
9389 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9390
9391         * class.c (mono_class_init): Do class verification if the verifier
9392         is enabled.
9393
9394 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9395
9396         * verify-internal.h: Added mono_verifier_verify_class.
9397
9398         * verify.c: Added mono_verifier_verify_class. It checks for
9399         classes with explicit layout that have overlapping reference fields.
9400
9401         * pedump.c: Init the verifier state prior to verification. Fixed
9402         command line arguments.
9403
9404 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9405
9406         * Makefile.am: Added verify-internals.h, hopefully fix the build.
9407
9408 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
9409
9410         * verify-internals.h: Fix a warning.
9411
9412 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
9413
9414         * verify-internals.h: New header with the verifier configuration
9415         extracted from mini.c.
9416
9417         * verify.c: Implemented the new functions exported by verify-internals.h.
9418
9419 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
9420
9421         * verify.c: Add proper verification of ckfinite.
9422
9423 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9424
9425         * verify.c (do_conversion): Improved error message to something
9426         more meanfull.
9427
9428         * verify.c (check_is_valid_type_for_field_ops): Fix to work
9429         with primitive types.
9430
9431 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9432
9433         * verify.c: Added tail prefix checking. Marked icall
9434         as unverifible.
9435
9436 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9437
9438         * verify.c: Fix the detection of branches to the middle
9439         of an instruction.
9440
9441 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
9442
9443         * verify.c: Implemented verification of volatile. and
9444         unaligned. prefix. Check if a type is valid after retrieving it.
9445
9446 2008-04-01  Dick Porter  <dick@ximian.com>
9447
9448         * process.c (process_get_fileversion): If there's no string block,
9449         set the file language to en_US.  Fixes the other new part of bug
9450         374600.
9451
9452 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
9453
9454         * class.c: New functions mono_method_can_access_field_full and
9455         mono_method_can_access_method_full. They perform type visibility
9456         and type site check.
9457
9458         * class-internal.h: Added exported functions.
9459
9460         * verify.c: Use new functions to implement proper visibility checks.
9461
9462 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
9463
9464         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
9465
9466 2008-03-28  Dick Porter  <dick@ximian.com>
9467
9468         * process.c (process_get_fileversion): Use the first language ID
9469         we see, rather than insisting on an invariant language.  Fixes bug
9470         374600.
9471
9472 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
9473
9474         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
9475         the streams to fix reading of invalid memory later.
9476
9477         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
9478         to ease debugging.
9479
9480 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
9481
9482         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
9483         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
9484
9485 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
9486         * threads.h: Added MonoThreadManageCallback type and
9487         mono_thread_set_manage_callback prototype
9488         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
9489         (used to store the mono_thread_manage callback).
9490         * threads.c: Added mono_thread_set_manage_callback, and handle
9491         "MonoThread->manage_callback" in build_wait_tids.
9492
9493 2008-03-26  Dick Porter  <dick@ximian.com>
9494
9495         * process.c (process_get_fileversion): Set FileVersionInfo strings
9496         to Empty when the resource doesn't have the particular info.
9497         Fixes bug 355717.
9498
9499 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
9500
9501         * verify.c (mono_method_verify): Proper prefix validation.
9502
9503 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
9504
9505         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
9506         itself in a separate argument instead of throwing them. Fixes #373448.
9507
9508         * appdomain.c: Bump corlib version.
9509
9510 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
9511
9512         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
9513
9514 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
9515
9516         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
9517         version macros.
9518
9519 2008-03-20  Mark Probst  <mark.probst@gmail.com>
9520
9521         * generic-sharing.c, class-internals.h: Code for putting
9522         reflection types into the runtime generic context.
9523
9524 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
9525
9526         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
9527         Fixes #340662. 
9528
9529
9530 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
9531
9532         * verify.c (VerifyContext): Added instruction prefix data to the struct.
9533
9534         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
9535
9536         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
9537
9538         * verify.c (do_cast): Let the result value keep the boxed status.
9539
9540         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
9541
9542 2008-03-17  Jb Evain  <jbevain@novell.com>
9543
9544         * reflection.c: when running on a 2.0 runtime, emit
9545         unconditionally the #~ header version as 2.0, and the
9546         CLI header version as 2.5, for symmetry's sake with csc.
9547
9548 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
9549
9550         * class.c: Remove the unused cache_interface_offsets stuff.
9551
9552         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
9553         profiler.c: Fix warnings.
9554
9555 2008-03-16  Mark Probst  <mark.probst@gmail.com>
9556
9557         * generic-sharing.c, class-internals.h: Support for putting
9558         methods into the runtime generic context.
9559
9560 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
9561
9562         * class.c (mono_class_setup_fields): Ignore calls made to this function for
9563         classes which are generic instances of not-yet finished typebuilders. Fixes
9564         #351172.
9565
9566         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
9567
9568 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
9569
9570         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
9571
9572         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
9573         field, replace it with a hash table in MonoDynamicImage.
9574
9575         * reflection.c (inflate_mono_method): Access the generic definition object from
9576         image->generic_def_objects instead of imethod->reflection_info.
9577
9578         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
9579
9580         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
9581         
9582         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
9583         function in reflection.c so it is easier to keep in sync with the dynamic image
9584         creation code.
9585
9586         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
9587         mono_image_close ().
9588
9589 2008-03-15  Mark Probst  <mark.probst@gmail.com>
9590
9591         * class.c (mono_class_generic_sharing_enabled): Disable generic
9592         sharing for all architectures except AMD64 and x86 to fix build.
9593
9594 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
9595
9596         * verify.c: Use the generic definition MonoGenericContext when available.
9597         Remove code for checking generics instance compatibility in favor of
9598         mono_class_is_assignable_from.
9599
9600 2008-03-14  Mark Probst  <mark.probst@gmail.com>
9601
9602         * marshal.c, marshal.h, metadata-internals.h, image.c,
9603         wrapper-types.h: New wrapper for invoking a shared static method
9604         without having to pass the runtime generic context argument.
9605
9606 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
9607
9608         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
9609
9610 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
9611
9612         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
9613         
9614         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
9615         create a token from a FieldOnTypeBuilderInst.
9616         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
9617         (resolve_object): Ditto.
9618
9619         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
9620         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
9621
9622 2008-03-14  Martin Baulig  <martin@ximian.com>
9623
9624         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
9625
9626         * debug-mono-symfile.h
9627         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
9628         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
9629
9630 2008-03-10  Martin Baulig  <martin@ximian.com>
9631
9632         * debug-mono-symfile.h
9633         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
9634         `lexical_block_table_offset'.
9635         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
9636         `lexical_blocks'.
9637         (MonoSymbolFile): Added `version'.
9638
9639         * mono-debug.h
9640         (MonoDebugLexicalBlockEntry): Removed.
9641         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
9642         `lexical_blocks'.
9643
9644         * mono-debug.c (mono_debug_add_method): Don't compute lexical
9645         blocks here; the debugger now does this internally.
9646
9647 2008-02-27  Martin Baulig  <martin@ximian.com>
9648
9649         * object.c (mono_runtime_exec_main): Call
9650         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
9651         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
9652
9653 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
9654
9655         * verify.c (verify_type_compatibility_full): Allow native int to be converted
9656         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
9657
9658 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
9659
9660         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
9661         ldftn with a virtual method.
9662
9663 2008-03-13  Geoff Norton  <gnorton@novell.com>
9664
9665         * decimal.c:  Only include memory.h if the platform has it.
9666
9667 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
9668
9669         * assembly.c, class.c, metadata-internals.h: make sure public key
9670         tokesns are compared in a case-insensitive way. Also, all
9671         the lookups in the GAC use a lowercase public key token
9672         (gaacutil already does the lowercasing on install). Fixes
9673         bug #369541.
9674
9675 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
9676
9677         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
9678         and return value.
9679
9680 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
9681
9682         * image.c: when someone loads a mscorlib from a file, return the
9683         currently loaded mscorlib (fixes bug #369253).
9684
9685 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
9686
9687         * class.c: handle types with no parents by forcing them to have
9688         System.Object as a parent and marking them as broken (this currently
9689         allows the first part of bug #369173 to work as well, likely because
9690         we don't check for typeload exceptions everywhere yet).
9691
9692 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
9693
9694         * class.c: more complete check that types belong to corlib
9695         (fixes second part of bug #369173).
9696
9697 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
9698
9699         * generic-sharing.c:  Including glib.h for the MSVC builds to define
9700           "inline" to "__inline" before including mono-membar.h.
9701           
9702         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
9703           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
9704           MSVC builds.
9705
9706         Contributed under MIT/X11 license.
9707
9708 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
9709
9710         * verify.c (do_invoke_method): Remove return type validation.
9711
9712         * verify.c (do_ret): Do return type validation at return site instead of
9713         call site.
9714
9715 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
9716
9717         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
9718
9719         * verify.c: Some todos cleaned and improved a few error messages.
9720
9721 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
9722
9723         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
9724
9725 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
9726
9727         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
9728         system types correctly.
9729
9730         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
9731         function.
9732
9733 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
9734
9735         * assembly.c (build_assembly_name): Fix a warning.
9736
9737 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
9738
9739         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
9740         the called function takes an object type argument. Fixes storing or
9741         valuetypes across remoting as well as reducing memory usage.
9742         * image.c, metadata-internals.h: remove now unused ldfld_remote and
9743         stfld_remote wrapper caches.
9744
9745 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
9746
9747         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
9748         is not found.
9749
9750         * reflection.c (mono_image_register_token): New helper function to save
9751         a token->object mapping.        
9752
9753         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
9754         managed code.
9755
9756         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
9757         one dimension arrays. Fixes #367670.
9758         (mono_reflection_get_type_internal): Ditto.
9759
9760 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
9761
9762         * marshal.c: mono_load_remote_field_new() always returns object.
9763         so use the proper signature (fixes bug #366445).
9764
9765 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
9766         
9767         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
9768         add an 'inline_failure' flag instead.
9769
9770 2008-03-04  Mark Probst  <mark.probst@gmail.com>
9771
9772         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
9773         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
9774         contains the location of "this", used for exception handling.
9775
9776 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
9777
9778         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
9779         their size on all platforms for perf reasons.
9780
9781 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9782
9783         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
9784         object-internal.h
9785
9786         * object-internal.h: Same.
9787
9788 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9789
9790         * reflection.h: Fix the build I just broke.
9791
9792 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9793
9794         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
9795         Test if a token is valid, this remove explicit usage of 
9796         MonoDynamicImage::tokens from the verifier code.
9797
9798         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
9799
9800         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
9801         instead of direct access to MonoDynamicImage::tokens.
9802
9803 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9804
9805         * verify.c (token_bounds_check): Fix the build I just broke.
9806
9807 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9808
9809         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
9810
9811         * verify.c (verifier_load_method): Fixed the errors message.
9812
9813         * verify.c (mono_method_verify): Fixed a debug message.
9814
9815 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
9816
9817         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
9818         mono-perfcounters.h, class-internals.h: support for predefined
9819         writable counters, query of categories and counters, bugfixes.
9820
9821 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
9822
9823         * verify.c (do_refanytype): Verify the refanytype opcode.
9824
9825         * verify.c (mono_method_verify): Use do_refanytype.
9826
9827 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
9828
9829         * verify.c (do_mkrefany): Verify the mkrefany opcode.
9830
9831         * verify.c (mono_method_verify): Use do_mkrefany.
9832
9833 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
9834
9835         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
9836         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
9837         implementation.
9838
9839 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
9840
9841         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
9842         the type load exception.
9843
9844 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
9845
9846         * verify.c: Added a few FIXME for method signatures
9847
9848         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
9849         of mono_method_get_signature and get vararg call working. Removed unused
9850         checks for return value.
9851
9852         * verify.c (do_refanyval): Verify the refanyval opcode.
9853
9854         * verify.c (mono_method_verify): Implemented verification of arglist and
9855         use do_refanyval.
9856
9857 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
9858
9859         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
9860         vtypes to marshal.c.
9861
9862         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
9863         it works for AOT as well.
9864
9865 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
9866
9867         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
9868         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
9869         the system time is adjusted.
9870
9871 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
9872
9873         * icall.c, icall-def.h: use the new time functions (fixes the
9874         non-monotonic behaviour of TickCount).
9875
9876 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
9877
9878         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
9879         it breaks the build.
9880         
9881         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
9882         cattr is not finished yet.
9883
9884 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
9885
9886         * verify.c: Proper token validation for field, method and type.
9887
9888 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
9889
9890         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
9891
9892         * loader.c (method_from_memberref): Generate type load error instead of method missing
9893         if the type is not found.
9894
9895 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
9896
9897         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
9898         some of the conversions caused the generation of a marshal directive exception.
9899
9900 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
9901
9902         verify.c: Report which exception should be thrown by the JIT.
9903         Added a lot of FIXME notes.
9904
9905 2008-02-22  Mark Probst  <mark.probst@gmail.com>
9906
9907         * generic-sharing.c: Runtime generic context slots are not
9908         instantiated on init anymore.  Instead, provide function to do the
9909         instantiating on demand.
9910
9911         * class-internals.h: Added vtable to runtime generic context.
9912         Macros for encoding direct and indirect slot offsets in one
9913         guint32.
9914
9915 2008-02-21  Mark Probst  <mark.probst@gmail.com>
9916
9917         * object.c, generic-sharing.c: Moved some generic sharing code
9918         from object.c to generic-sharing.c.
9919
9920         * generic-sharing.c: Added support for extensible runtime generic
9921         context.
9922
9923         * metadata-internals.h: Two new hash tables in MonoImage for
9924         extensible runtime generic context support.
9925
9926         * domain.c: Unregister generic vtables upon domain unloading.
9927
9928         * image.c: Destroy new hash tables upon image unloading.
9929
9930         * metadata.c: Unregister generic subclasses upon image unloading.
9931
9932         * class-internals.h: New data structure for runtime generic
9933         context template.  New fields in the runtime generic context for
9934         extensible part.
9935
9936         * Makefile.am: Added generic-sharing.c.
9937
9938 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
9939
9940         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
9941         there is a pending loader exception, raise it.
9942
9943         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
9944         same.
9945
9946         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
9947         same.
9948
9949         Fixes #363450.
9950
9951 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
9952
9953         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
9954
9955         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
9956         
9957         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
9958         ref-only requests for compatibility with MS.
9959
9960 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
9961
9962         * reflection.c (mono_custom_attrs_from_method): Don't silently
9963         return an empty list for generic method instances.
9964         (mono_custom_attrs_from_param): Likewise.
9965
9966 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
9967             Raja R Harinath  <harinath@hurrynot.org>
9968
9969         Fix #354757
9970         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
9971         * class.c (mono_class_inflate_generic_method_full): Initialize it
9972         when a fully-open method is instantiated.
9973         * metadata.c (inflated_method_equal, inflated_method_hash): Update
9974         to new field.
9975         * reflection.c (inflate_mono_method): Don't create a temporary context.
9976
9977 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
9978
9979         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
9980         Compute correct value, to prepare for imethod->reflection_info going away.
9981
9982 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
9983
9984         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
9985
9986 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
9987
9988         * verify.c: Implement skip visibility flag.
9989
9990 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
9991
9992         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
9993         which contains an extra field to tell the kind of exception that should be thrown.
9994
9995         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
9996
9997 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
9998
9999         * loader.c (mono_method_get_param_names): Initialize 'klass' after
10000         'method' is updated.
10001
10002 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
10003
10004         * class.c (mono_class_layout_fields): Set class->min_align for classes using
10005         explicit layout as well. Fixes #360375.
10006
10007 2008-02-11  Geoff Norton  <gnorton@novell.com>
10008
10009         * loader.c: Guard and dereference against inflated generic methods
10010
10011 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
10012
10013         * class.c: Include Retargetable spec in assembly name.
10014         * assembly.c: Always include PublicKeyToken spec in assembly name
10015         (with value "null" if assembly is not signed), and include
10016         Retargetable spec.
10017         * icall-def.h: Added icall for Assembly.get_fullname.
10018         * icall.c: Added icall returning the fullname of an assembly.
10019
10020 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
10021
10022         * class.c (mono_class_setup_vtable_general): Add a missing call to
10023         mono_class_setup_methods () which is needed in the AOT case.
10024
10025 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
10026
10027         * verify.c (mono_type_get_stack_name): Added. Return the name for the
10028         stack type of the given MonoType.
10029
10030         * verify.c (verify_type_compatibility_full): Handle the void type.
10031
10032         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
10033         way stack merging works.
10034
10035         * verify.c (store_local): Improved verification message.
10036
10037         * verify.c (do_branch_op): If the merging is invalid, the method
10038         is unverifiable and not invalid. Improved error message.
10039
10040         * verify.c (merge_stacks): Properly merge a boxed valuetype and
10041         a reference type diferent than System.Object. Improved error
10042         message.
10043
10044 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
10045
10046         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
10047
10048         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
10049         type of an enum even if the argument is byref.
10050
10051         * verify.c: Replace all explicit uses of enumtype and enum_basetype
10052         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
10053
10054         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
10055
10056         *verify.c (verify_type_compatibility_full): Make enum types
10057         compatible with their base types.
10058
10059         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
10060         types are compatible for the special case of a boxed valuetype and
10061         System.Object.
10062
10063         * verify.c (verify_stack_type_compatibility): The function
10064         is_compatible_boxed_valuetype was extracted from here.
10065
10066         * verify.c (push_arg): Only set ctx->has_this_store if the method
10067         is not static.
10068
10069         * verify.c (do_ldelem): Fixed a typo in an error message and added
10070         strict check for mixing int32 and native int as the array type
10071         and ldelem type.
10072
10073         * verify.c (merge_stacks): Consider boxed valuetypes in the
10074         compatibility checks.
10075
10076 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
10077         * profiler.h: (MonoGCEvent): Added start-stop the world events.
10078
10079 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
10080         *class.c: use_new_interface_vtable_code: renamed the env var to have
10081         a "MONO_" prefix, and fix the logic to enable it by default.
10082
10083 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
10084         *class.c:
10085         mono_class_setup_vtable_general: rewrote the way in which interface
10086         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
10087         makes the code more maintainable.
10088         For now the old code is still there, and can be activated setting
10089         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
10090
10091 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
10092
10093         * verify.c: guarded some debug functions around and #ifdef.
10094
10095         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
10096
10097 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
10098
10099         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
10100         changes for now since they seem to break too many things.
10101
10102 2008-02-05  Mark Probst  <mark.probst@gmail.com>
10103
10104         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
10105         mono_marshal_find_nonzero_bit_offset): Added macro and function
10106         for finding the byte- and bit-offset of a bitfield within a
10107         struct.
10108
10109 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
10110
10111         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
10112         (mono_marshal_get_struct_to_ptr): Ditto.
10113
10114         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
10115         cctor_signature.
10116
10117 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
10118
10119         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
10120         between methods for non-corlib types.
10121
10122 2008-02-02  Geoff Norton  <gnorton@novell.com>
10123
10124         * loader.c (mono_method_get_param_names): Populate the parameter name for 
10125         generic parameters as well. (Fixes #342536)
10126
10127 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
10128
10129         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
10130
10131         * verify.c (do_invoke_method): Fix for calling with byref structs.
10132
10133         * verify.c (do_cast): push a boxed value type based on the type token and not
10134         the type of stack.
10135
10136 2008-01-31  William Holmes  <billholmes54@gmail.com>
10137
10138         * process.c (process_module_string_read): Check the size returned form 
10139           VerQueryValue to avoid out of memory exception. 
10140
10141 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
10142
10143         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10144         Handle properly modules which are not in the moduleref table. Fixes
10145         #356938.
10146
10147 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
10148
10149         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
10150         the dynamic case which is now in managed code.
10151         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
10152
10153         * marshal.c (mono_string_to_bstr): Fix a warning.
10154         (init_com_provider_ms): Ditto.
10155
10156         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
10157
10158         * exception.c (mono_get_exception_out_of_memory): New helper function.
10159
10160 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
10161
10162         * marshal.c: Add support for BSTR marshalling
10163         using other COM systems.
10164
10165         Code is contributed under MIT/X11 license.
10166
10167 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10168
10169         * object.c (mono_runtime_invoke_array): reverted previous
10170         commit as it breaks the build.
10171
10172 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10173
10174         * object.c (mono_runtime_invoke_array): Verify arguments for
10175         invalid types. Fixes #348522.
10176
10177 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10178
10179         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
10180         non-final virtual calls using call. 
10181
10182         * verify.c (do_invoke): fixed some TODOs.
10183
10184         * verify.c (push_arg): set has_this_store for "ldarga 0".
10185
10186 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
10187
10188         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
10189         which belong to an inflated class. Fixes #356531.
10190
10191 2008-01-26  Robert Jordan  <robertj@gmx.net>
10192
10193         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
10194         which resort to FindFirstFile when a certain error condition
10195         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
10196         Code is contributed under MIT/X11 license.
10197
10198 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
10199
10200         * marshal.c (emit_marshal_string): Fix out string marshalling
10201         to use specified encoding. Fixes #323900.
10202
10203         Code is contributed under MIT/X11 license.
10204
10205 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
10206
10207         * class.c (mono_class_inflate_generic_method_full): Don't modify
10208         iresult->context after cache check.
10209
10210 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
10211
10212         * class.c (mono_class_inflate_generic_method_full): Change the
10213         struct assignments to memcpy for better visibility and add some comments.
10214
10215 2008-01-23  Dick Porter  <dick@ximian.com>
10216
10217         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
10218         procedure, and make it work on windows.
10219
10220 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
10221
10222         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
10223         a MonoReflectionTypeBuilder since it is always of that type.
10224
10225         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
10226
10227         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
10228
10229         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
10230         
10231         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
10232
10233         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
10234
10235         * reflection.c (mono_reflection_create_runtime_class): Remove already created
10236         instantiations from the type cache.
10237
10238 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10239
10240         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
10241
10242         * verify.c (do_unbox_value): push a controled mutability managed pointer.
10243
10244 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10245
10246         * verify.c (do_ldstr): added, verifies if the #US token is valid.
10247
10248         * verify.c (mono_method_verify): removed old TODO
10249
10250 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10251
10252         * verify.c (do_newobj): add visibility check.
10253
10254 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10255
10256         * verify.c (do_load_function_ptr): add visibility check.
10257
10258 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
10259         *class.c:
10260         mono_generic_class_get_class: hook profiler events.
10261         mono_field_get_offset: added to support heap-shot in the new profiler.
10262         *class.h: exported mono_field_get_offset.
10263         * reflection.c:
10264         mono_reflection_setup_internal_class: hook profiler events.
10265
10266 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
10267
10268         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
10269         argument here too and use it to avoid checking for pending exceptions if 
10270         possible.
10271
10272 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
10273
10274         * assembly.c (build_assembly_name): add arg for passing the assembly
10275         flags. Do not consider a PublicKey with value "null" valid.
10276         (mono_assembly_name_parse_full): added boolean argument that will be
10277         set if the assembly name contains a PublicKeyToken spec. Added support
10278         for the Retargetable spec for which only Yes or No are allowed as valid
10279         value. Consider assembly name invalid if Retargetable spec is set, but
10280         either version, culture or public key (token) are not specified.
10281         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
10282         with implementation in assembly.c.
10283         * icall.c (fill_reflection_assembly_name): also copy assembly flags
10284         from MonoAssemblyName.
10285         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
10286         introduced argument for mono_assembly_name_parse_full to know if the
10287         assembly name has a PublicKeyToken spec, and if it has instruct
10288         fill_reflection_assembly_name to use default value for keyToken (if
10289         PublicKeyToken is null).
10290
10291 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
10292
10293         * verify.c (mono_method_verify): fixed ovf ops with
10294         float values. They are unverifiable now.
10295
10296 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
10297
10298         * class.c (set_failure_from_loader_error): add BadImageException to the
10299         list of exceptions that can cause a type to fail to load.
10300
10301         * class.c (mono_class_get_exception_for_failure): same.
10302
10303 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
10304
10305         * verify.c (in_any_exception_block): added, check if offset
10306         is part of any exception handling clause.
10307
10308         * verify.c (get_stack_type): added VAR and MVAR types.
10309
10310         * verify.c (do_stobj): better error messages.
10311
10312         * verify.c (do_cpobj): added, check cpobj.
10313
10314         * verify.c (do_initobj): added, check initobj.
10315
10316         * verify.c (do_sizeof): added, check sizeof.
10317
10318         * verify.c (do_localloc): added, check localloc.
10319
10320         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
10321
10322 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
10323
10324         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
10325         save_lmf/restore_lmf opcodes.
10326
10327         * threads.c (mono_threads_install_notify_pending_exc): New function to
10328         install a callback notifying the JIT there is a pending exception on a thread.
10329         (mono_thread_request_interruption): Call the new callback.
10330         (mono_thread_get_and_clear_pending_exception): New function to return the
10331         exception pending on a thread.
10332
10333         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
10334         to turn off checking for pending exceptions.
10335         (mono_marshal_get_native_wrapper): Ditto.
10336
10337 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
10338
10339         * threads-types.h: Get rid of the unnecessary extern declarations.
10340
10341 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
10342
10343         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
10344         return field from parent class if not private.
10345         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
10346         returns fields from parent class if they are not private.
10347         (method_nonpublic): added function to determine if a given method
10348         should be considered non-public. Returns false for private methods
10349         on parent class, and internal methods from parent on the 1.0 profile.
10350         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
10351         use method_nonpublic function to determine whether method should be
10352         returned.
10353         (property_accessor_public): use newly introduced method_nonpublic
10354         function to determine whether accessor is non-public. 
10355         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
10356         event from parent class if not private. Only return static event if
10357         Static flag is set, and only return static event from parent class if
10358         FlattenHierarchy flag is set.
10359         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
10360         include non-private events from parent class.
10361
10362 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
10363
10364         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
10365         warning.
10366
10367 2008-01-16  Wade Berrier <wberrier@novell.com>
10368
10369         * security.c: Add assembly.h header to appease some warnings
10370
10371 2008-01-16  Dick Porter  <dick@ximian.com>
10372
10373         * process.c (process_module_string_read): Remove trailing null
10374         when saving string.
10375
10376 2008-01-16  Mark Probst  <mark.probst@gmail.com>
10377
10378         * class-internals.h: A new data structure describing the layout of
10379         a runtime generic context (MonoRuntimeGenericContextTemplate).
10380
10381         * metadata-internals.h: Added a hash table to MonoDomain that maps
10382         from open generic classes to their runtime generic context
10383         templates.
10384
10385         * object.c: Building of the runtime generic context, including
10386         proper handling of generic type arguments of superclasses.
10387         Building of the runtime generic context according to the template.
10388
10389 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
10390
10391         * class.c (mono_class_setup_fields): Set field.count for generic instances.
10392         Fixes #350856.
10393
10394         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
10395         mono_portability_find_file (). Fixes #325466.
10396         (mono_image_get_public_key): Fix a warning.
10397
10398 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
10399
10400         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
10401         Fixes #353550.
10402         (mono_class_from_name_case): Ditto.
10403
10404 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
10405
10406         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
10407           common storage for the tables used in the System/NumberFormatter class.
10408
10409 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
10410
10411         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
10412
10413 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
10414
10415         * verify.c (get_boxable_mono_type): check if the token is valid.
10416
10417         * verify.c (set_stack_value): changed to add an error if an
10418         invalid type is set on stack. Changed all callers due to signature change.
10419
10420         * verify.c (do_stobj): implement stobj validation.
10421
10422 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
10423
10424         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
10425         set container->is_method, it was set earlier.
10426
10427         * metadata.c (type_in_image): Handle MVARs which belong to not finished
10428         generic methods.
10429
10430         * reflection.c (mono_reflection_initialize_generic_parameter): Set
10431         is_method of the generic container to TRUE for methods.
10432
10433 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
10434
10435         * metadata.c (type_in_image): Handle type parameters properly.
10436
10437         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
10438         memory ownership of this structure.
10439
10440 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
10441
10442         * verify.c (get_boxable_mono_type): make typedref types been just
10443         unverifiable. check for void type.
10444
10445         * verify.c (do_unbox_any): added, verify opcode unbox.any.
10446
10447         * verify.c (do_load_function_ptr): accept method spec tokens.
10448
10449 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
10450
10451         * marshal.c (mono_class_native_size): Always set *align even if this is called
10452         recursively.
10453
10454 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
10455
10456         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
10457         out-of-date.
10458
10459 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
10460
10461         * verify.c: removed some old unused tables. A huge bunch of small fixes
10462         to things found while testing the verifier with mono basic.
10463
10464         * verify.c (dump_stack_value): dump null literal flag to.
10465
10466         * verify.c (verify_type_compatibility_full): fix comparison
10467         for types that have a generic super type.
10468
10469         * verify.c (verify_stack_type_compatibility): fix compatibility
10470         between null literals and reference types. fix compatibility between
10471         boxed valuetypes and object. fix corner case test for enums.
10472
10473         * verify.c (do_cmp_op): proper verification of cgt.un in case
10474         of reference types.
10475
10476         * verify.c (do_invoke_method): fix error message.
10477
10478         * verify.c (do_store_indirect
10479
10480         * verify.c (check_is_valid_type_for_field_ops): proper verification
10481         of managed pointers to valuetypes and boxed valuetypes. proper verification
10482         of null literals.
10483
10484         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
10485         allow token to be a reference type.
10486
10487         * verify.c (do_cast): proper handling of boxes valuetypes.
10488
10489         * verify.c (do_stelem): proper handling of storing a boxed valuetype
10490         in object[].
10491
10492         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
10493         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
10494         fixed the decoding of unbox_any
10495
10496 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
10497
10498         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
10499
10500 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
10501
10502         * verify.c (do_newobj): do delegate verification.
10503
10504         * verify.c (verify_delegate_compatibility): perform delegate
10505         verification.
10506
10507         * verify.c (verify_ldftn_delegate): perform tests related to
10508         ldftn delegates.
10509
10510         * verify.c (mono_delegate_signature_equal): perform the
10511         slightly diferent signature comparison required by delegates.
10512
10513         * metadata.c (mono_metadata_type_equal_full): added and exported
10514         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
10515         allows signature only comparison.
10516
10517         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
10518         as MONO_INTERNAL.
10519
10520 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
10521
10522         * verify.c: added a bunch of stack_slot_* functions to
10523         make access to stack slot type easier. This is required to
10524         allow optional flags, like null literal, boxed value and
10525         this pointer.
10526         All access paths to IlStackDesc::stype have been changed 
10527         to use these new funcions.
10528         Removed a bunch of unused functions and cleared all warnings.
10529         This patch introduces the usage of the this pointer and 
10530         boxed value flags.
10531
10532 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
10533
10534         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
10535
10536 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
10537
10538         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
10539         match managed version.
10540
10541         * appdomain.c: Bump corlib version.
10542         
10543         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
10544         argument.
10545
10546 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
10547
10548         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
10549         Set public key token to zero-length byte array if assembly is not
10550         strongnamed.
10551
10552 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
10553
10554         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
10555         writing a vtype array elem.
10556
10557 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
10558
10559         * assembly.c (build_assembly_name): return FALSE if length of token is
10560         not 16 (if not "null").
10561         (mono_assembly_name_parse_full): return FALSE if value of version,
10562         culture, token or key is 0.
10563         * icall.c (fill_reflection_assembly_name): add boolean arguments to
10564         specify whether public key and public key token must be set to default
10565         value (zero-length byte array) if not available. Set versioncompat to
10566         SameMachine. If public key is available or the default is set, then
10567         set PublicKey flag.
10568         (ves_icall_System_Reflection_Assembly_FillName): if no public key
10569         is available, use empty byte array as default value. On the 2.0
10570         profile, use default value for public key token if not set.
10571         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
10572         profile, use default value for public key if not set. On the 2.0
10573         profile, use default value for public key token if not set.
10574         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
10575         default values for public key and public key token.
10576
10577 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
10578
10579         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
10580         field to keep it in synch with the managed object.
10581
10582         * marshal.c (emit_marshal_object): Add support for byref marshalling of
10583         delegates. Fixes #351520.
10584
10585         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
10586         contains defined memory.
10587         
10588         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
10589
10590         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
10591         
10592         * sgen-gc.c (check_consistency): New helper function to do a consistency check
10593         of the GC data structures.
10594
10595         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
10596
10597         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
10598         
10599         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
10600         barrier.
10601         (mono_array_clone_in_domain): Ditto.
10602         (mono_array_clone_in_domain): Ditto.
10603
10604         * threads.c (start_wrapper): Register the thread start argument as a GC root.
10605         (cache_culture): Use a write barrier.
10606
10607         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
10608         (ves_icall_get_property_info): Ditto.
10609
10610         * object.h (MONO_STRUCT_SETREF): New macro.
10611
10612         * class-internals.h (MonoStats): Add some GC statistics.
10613
10614         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
10615
10616 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
10617
10618         * exception.c (mono_exception_from_name_two_strings):
10619         Break from loop after method is found.
10620
10621 2008-01-04  Dick Porter  <dick@ximian.com>
10622
10623         * process.c (process_module_string_read): Rename variable to
10624         reflect correct usage, after fixing bug 345972.
10625
10626 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
10627
10628         * verify.c (mono_type_create_fnptr_from_mono_method): 
10629         created a MonoType function pointer instance to be used during
10630         verification. The verifier releases this memory at end.
10631
10632         * verify.c (mono_method_is_constructor): extracted repeated
10633         checks for constructor into a single class.
10634
10635         * verify.c (do_push_field): use new extracted method
10636         for constructor check.
10637
10638         * verify.c (do_newobj): same.
10639
10640         * verify.c (do_ldftn): renamed to do_load_function_ptr
10641         and make it verify ldvirtftn too.
10642
10643         * verify.c (mono_method_verify: proper verification
10644         of ldvirtftn. release created MonoMethod instances.
10645
10646 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
10647
10648         * verify.c (token_bounds_check): added.
10649
10650         * verify.c (do_ldftn): added.
10651
10652         * verify.c (mono_method_verify): proper verificartion of ldftn.
10653
10654 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
10655
10656         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
10657         than the table row count. It's the resposibility of the caller to
10658         make the bounds check and raise the correct error.
10659
10660         * metadata.c (mono_metadata_decode_row_col): Same.
10661
10662         * loader.c (mono_get_method_from_token): perform bounds check
10663         on token for methoddef table.
10664
10665 2007-12-29  Miguel de Icaza  <miguel@novell.com>
10666
10667         * icall.c
10668         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
10669         assert into a negative result, the managed code already coped with
10670         that.
10671
10672         Some folks on Windows reported this error. 
10673
10674 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
10675
10676         * appdomain.c: Bump corlib version.
10677         * icall.c:
10678         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
10679         CultureInfo.CreateCulture to create CultureInfo for name.
10680         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
10681         create CultureInfo for name. Fixes bug #347174.
10682
10683 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
10684
10685         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
10686         flags.
10687
10688         * verify.c (is_valid_branch_instruction): allow branching to the
10689         first instruction of the protected block.
10690
10691         * verify.c (is_valid_cmp_branch_instruction): same.
10692
10693         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
10694         avoid double initialization.
10695
10696         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
10697         detect which cases the eval stack should just be copied.
10698
10699         * verify.c (mono_method_verify): check if the eval stack
10700         is empty when entering a protected block.
10701
10702 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
10703
10704         * verify.c: added is_clause_in_range, is_clause_inside_range,
10705         is_clause_nested and verify_clause_relationship. They perform
10706         the verifications stated in P1 12.4.2.7.
10707
10708         * verify.c (mono_method_verify): remove some unused variables,
10709         add the new exception clause checks, add instruction border
10710         checks for protected block start/end, improved some error 
10711         messages and fixed a bug in the way invalid instruction access
10712         is detected.
10713
10714 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
10715
10716         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
10717         from GC 7.0 if available.
10718
10719         * object.c: Remove an unused define.
10720         
10721         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
10722
10723         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
10724
10725         * null-gc.c (mono_gc_make_descr_for_array): Implement.
10726
10727         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
10728
10729         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
10730         to take the same arguments as the other make_descr functions.
10731
10732         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
10733
10734         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
10735         directly.
10736
10737         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
10738         mini.c.
10739
10740         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
10741         call to boehm-gc.c.
10742
10743         * boehm-gc.c (mono_gc_register_root): Fix a warning.
10744
10745         * null-gc.c (mono_gc_register_root): Fix a warning.
10746
10747         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
10748
10749         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
10750         (mono_gc_base_init): Call GC_init ().
10751
10752         * null-gc.c: Define mono_gc_register_root () as a no-op.
10753
10754         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
10755
10756 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
10757
10758         * verify.c: add prototype for merge_stacks at top
10759
10760         * verify.c (do_switch): added.
10761
10762         * verify.c (merge_stacks): on some cases the stack merging
10763         was not happening properly. Unequal stack sizes at merge
10764         points should be invalid.
10765
10766         * verify.c (mono_method_verify): added more debug info on stack state.
10767         verify switch properly.
10768
10769 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
10770
10771         * method-builder.h: New file, moved the mono_mb_ declarations here from 
10772         marshal.h.
10773
10774         * boehm-gc.c marshal.c: Include method-builder.h.
10775
10776         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
10777
10778         * marshal.c: Remove some code which is now in method-builder.c.
10779
10780 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
10781
10782         * method-builder.c: New file, extraction of the method builder functionality 
10783         from marshal.c.
10784
10785         * marshal.c: Move the mb functions into method-builder.c.
10786
10787         * marshal.h marshal.c: Export some mono_mb_... functions.
10788
10789         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
10790
10791         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
10792         the caller.
10793
10794         * class.c (mono_class_get_full): Check the token type in the dynamic case.
10795
10796         * loader.c (mono_field_from_token): Ditto.      
10797
10798         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
10799         type as well.
10800         
10801         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
10802         Fixes #342565.
10803
10804         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
10805         a helper function for setting it.
10806
10807         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
10808
10809         
10810         * assembly.c: Significally simplify code now that referenced assemblies are 
10811         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
10812
10813         * threads.h: Don't include  the internal threads-types.h header file. Fixes
10814         #349952.
10815
10816 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
10817
10818         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
10819         instructions that were target of branches or are at protected block boundaries.
10820
10821         * verify.c (in_same_block): handle filter clauses.
10822
10823         * verify.c (is_valid_branch_instruction): added. checks the target of
10824         instructions br or brtrue/false.
10825
10826         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
10827         binary branch instructions such as beq and bge.
10828
10829         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
10830         and made it pin the instruction as been part of the exception block.
10831
10832         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
10833         of in_same_block.
10834
10835         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
10836         of in_same_block.
10837
10838         * verify.c (do_ret): ret from a protected block is unverifiable and
10839         not invalid.
10840
10841         * verify.c (do_static_branch): verify br and br.s instructions.
10842
10843         * verify.c (merge_stacks): add extra param to support detection
10844         of branches in the middle of instructions.
10845         
10846         * verify.c (mono_method_verify): verify branches and exception blocks
10847         that target the middle of instructions. Proper verification of br and br.s.
10848
10849 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
10850
10851         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
10852         skip_visibility field.
10853         (reflection_methodbuilder_from_dynamic_method): Ditto.
10854
10855         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
10856         registrations. Fixes #348193.
10857
10858         * threads.h: Move the internal mono_thread_get_pending_exception () to
10859         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
10860
10861 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
10862
10863         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
10864         icall registration. Fixes #348193.
10865
10866         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
10867         for corlib classes into object. Fixes #349621.
10868
10869 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
10870
10871         * icall.c (property_accessor_nonpublic): new function to determine
10872         whether an accessor allows a property to be considered non-public.
10873         Returns false for private accessor(s) from parent class, and internal
10874         accessor(s) from parent on 2.0 profile (and higher).
10875         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
10876         to determine whether property should be included if NonPublic flag
10877         is set. Fixes bug #349078.
10878
10879 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
10880
10881         * verify.c (init_stack_with_value): added.
10882
10883         * verify.c (mono_method_verify): extracted common
10884         code for exception initialization into init_stack_with_value.
10885
10886         * verify.c (mono_method_verify): initialize the exception
10887         for handler clauses as well.
10888
10889         * verify.c (mono_method_verify): fix the exception clause
10890         ordering rules, it should use handler end offset and not
10891         start offset.
10892
10893 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
10894
10895         * rawbuffer.c: remove useless warning.
10896
10897 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
10898
10899         * threads.h, threads-types.h: move functions to the correct header
10900         (fixes bug#349952).
10901
10902 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
10903
10904         * verify.c (mono_method_verify): proper verification
10905         of exception handling clauses ranges and fallthru in
10906         and out of protected blocks.
10907
10908 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
10909
10910         * verify.c (mono_method_verify): fixed compilation issue.
10911
10912 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
10913
10914         * verify.c (mono_method_verify): a printf slipped in, changed
10915         to use verifier debug macro.
10916
10917 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
10918
10919         * verify.c (is_correct_leave): check for filter clauses.
10920
10921         * verify.c (do_filter): added.
10922
10923         * verify.c (mono_method_verify): property verification of leave.
10924
10925
10926 2007-12-18  Mark Probst  <mark.probst@gmail.com>
10927
10928         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
10929         Win32 build, until we figure out how to do the proper thing on
10930         Win32.
10931
10932 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
10933
10934         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
10935         by the previous patch.
10936         
10937         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
10938         the assembly resolve handler for refonly assemblies.
10939
10940 2007-12-17  Mark Probst  <mark.probst@gmail.com>
10941
10942         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
10943         Make sure only one thread is allowed to commence shutdown, and
10944         don't allow new threads to be started once shutdown is in
10945         progress.
10946
10947 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
10948
10949         * verify.c (is_correct_endfilter): added.
10950
10951         * verify.c (is_unverifiable_endfilter): added.
10952
10953         * verify.c (do_endfilter): added.
10954
10955         * verify.c (mono_method_verify): property verification of endfilter
10956         and fixed a corner case or endfinally.
10957
10958 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
10959
10960         * verify.h: new flags to support fail fast of unverifiable code and
10961         do non-strict verification. Non-strict verification is required to
10962         have MS runtime compatibility. There are a huge amount of unverifiable
10963         code that it accepts as verifiable. The strict mode verifies the code
10964         as the specs says.
10965         Non-strict mode will be required in cases where code needs to be
10966         accepted as verifiable but fails under strict mode.
10967
10968         * pedump.c: added support to fail fast and non-strict verification.
10969
10970         * verify.c: added support for both fail fast and non-strict verification.
10971
10972 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
10973
10974         * verify.c (is_correct_endfinally): added.
10975
10976         * verify.c (mono_method_verify): property verification of endfinally.
10977
10978 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
10979
10980         * verify.c (in_any_block): check for filter clauses.
10981
10982         * verify.c (is_correct_rethrow): added.
10983
10984         * verify.c (mono_method_verify): property verification of rethrow.
10985
10986         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
10987
10988 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
10989
10990         * verify.c (do_throw): added.
10991
10992         * verify.c (mono_method_verify): property verification of throw
10993
10994 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
10995
10996         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
10997         assemblies. Fixes #346425.
10998
10999 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
11000
11001         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
11002         FieldBuilders.
11003
11004         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
11005
11006         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
11007         prevent asserts when this is called with a token which might not be valid.
11008
11009         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
11010         lookup_dynamic_token_class with valid_token == FALSE.
11011
11012         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
11013
11014         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
11015
11016         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
11017         
11018 2007-12-10  Mark Probst  <mark.probst@gmail.com>
11019
11020         * gc.c: Don't delay threadpool thread finalization unless Mono is
11021         shutting down.
11022
11023 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
11024
11025         * threads.c: turn an assert into a non-fatal warning.
11026
11027 2007-12-09  Robert Jordan  <robertj@gmx.net>
11028
11029         * icall.c (GetVirtualMethod): Add missing argument validation.
11030
11031 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11032
11033         * verify.c (do_cast): added.
11034
11035         * verify.c (mono_method_verify): property verification of castclass and isinst.
11036
11037
11038 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11039
11040         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
11041
11042         * verify.c (do_stelem): added.
11043
11044         * verify.c (mono_method_verify): property verification of stelem.X.
11045
11046 2007-12-07  Mark Probst  <mark.probst@gmail.com>
11047
11048         * class.c, class-internals.h: Introduce an environment variable
11049         (MONO_GENERIC_SHARING) through which the extent of generic code
11050         sharing can be controlled (share all classes, share only corlib
11051         classes, or share nothing).
11052
11053         * object.c: Only create runtime generic context for classes for
11054         which sharing is enabled.
11055
11056 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11057
11058         * verify.c (do_ldelem): refactor it to work with ldelem.any.
11059
11060         * verify.c (mono_method_verify): property verification of ldelem.any.
11061
11062 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11063
11064         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
11065         added ldelem.X opcodes.
11066
11067         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
11068
11069         * verify.c: proper verification of ldelem.X 
11070
11071 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
11072
11073         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
11074
11075 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
11076
11077         * verify.c (mono_method_verify): null literal requires special handling,
11078         the value pushed on stack need to be flagged as so.
11079
11080         * verify.c (do_ldelema): Verify ldelema properly.
11081
11082 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
11083
11084         * verify.c: Verify ldlen properly.
11085
11086 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
11087
11088         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
11089         to the target object's type. Fixes #346160.
11090
11091 2007-12-05  Dick Porter  <dick@ximian.com>
11092
11093         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
11094         Solaris needs the same workaround as BSD-derived systems.  Fixes
11095         bug 323524, patch by Burkhard Linke
11096         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
11097
11098 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
11099
11100         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
11101         handle to use when error dialog is shown; otherwise, update mask
11102         to show no error dialog when an error occurs.
11103
11104 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
11105
11106         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
11107
11108         * class.c (mono_class_get_field_default_value): New helper function to initialize
11109         field->def_type and field->data.
11110
11111 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
11112
11113         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
11114         the general one.
11115
11116         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
11117
11118         * marshal.c: Avoid depending on delegate->method_info being set.
11119
11120         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
11121         
11122         * object.c (mono_delegate_ctor): Set delegate->method.
11123
11124         * object-internals.h (struct _MonoDelegate): Add 'method' field.
11125
11126         * appdomain.c: Bump corlib version.
11127
11128 2007-11-27  Raja R Harinath  <harinath@gmail.com>
11129
11130         * metadata.c (mono_generic_inst_equal_full): Short-circuit
11131         equality check if we're comparing canonicalized MonoGenericInsts.
11132
11133 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
11134
11135         * class.c (generic_array_methods): Call mono_class_setup_methods () before
11136         accessing class->methods.
11137
11138 2007-11-22  Dick Porter  <dick@ximian.com>
11139
11140         * threads.c: Ensure that the synch_cs is set before trying to use
11141         it.
11142
11143 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
11144
11145         * profiler.c: r89126 broke the statistial profiler, unbreak.
11146
11147 2007-11-22  Martin Baulig  <martin@ximian.com>
11148
11149         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
11150
11151         * mono-debug.c
11152         (mono_debug_debugger_version): Bump to 3.
11153         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
11154         -> mono_debugger_class_initialized().
11155
11156         * mono-debug-debugger.c
11157         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
11158
11159         * class.c
11160         (mono_debugger_start_class_init_func): Removed.
11161         (mono_debugger_class_loaded_methods_func): Added.
11162         (mono_class_setup_methods): Call it here.
11163
11164 2007-11-22  Martin Baulig  <martin@ximian.com>
11165
11166         * mono-debug.c
11167         (mono_debug_add_delegate_trampoline): New public method.
11168         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
11169
11170         * mono-debug.h
11171         (MonoSymbolTable): Added `global_data_table'.
11172         (MonoDebuggerTypeKind): Removed.
11173
11174 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
11175
11176         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
11177         these methods.
11178
11179         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11180         
11181 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
11182
11183         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
11184
11185 2007-11-20  Martin Baulig  <martin@ximian.com>
11186
11187         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
11188
11189         * mono-debug-debugger.c
11190         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
11191         (mono_debugger_remove_breakpoint): Likewise.
11192         (mono_debugger_check_breakpoints): Likewise.
11193         (mono_debugger_register_class_init_callback): New public method.
11194         (mono_debugger_remove_class_init_callback): Likewise.
11195         (mono_debugger_add_type): Likewise.
11196
11197         * mono-debug-debugger.h
11198         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
11199
11200 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
11201
11202         * class.c: more interface implementations needed for the
11203         array enumerator (fixes bug #341112).
11204
11205 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
11206
11207         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
11208         fix ParamName of ArgumentNullExceptions.
11209
11210 2007-11-17  Miguel de Icaza  <miguel@novell.com>
11211
11212         * reflection.c (mono_reflection_encode_sighelper): Generate the
11213         modopts and modreqs.   I have a useless test that crashes monodis,
11214         but that shows the code working.
11215
11216 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
11217
11218         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
11219         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
11220
11221 2007-11-15  Dick Porter  <dick@ximian.com>
11222
11223         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
11224         When joining a thread, it's the thread that's calling Join that
11225         gets WaitSleepJoin state not the target.  Fixes the standalone
11226         test case in bug 334740, and hopefully the whole bug too.
11227
11228 2007-11-15  Dick Porter  <dick@ximian.com>
11229
11230         * process.c: Read file version info from the files pointed at by
11231         process modules, not the current process.  Fixes bug 315969.
11232
11233         Use windows typedef names in some places to fix warnings on the
11234         windows build.
11235
11236 2007-11-15  Mark Probst  <mark.probst@gmail.com>
11237
11238         * image.c, metadata-internals.h: Added a generic_class_cache hash
11239         to MonoImage for looking up generic classes when sharing generics.
11240
11241 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
11242
11243         * sgen-gc.c: warning cleanups.
11244
11245 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
11246
11247         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
11248         inherited properties.
11249
11250 2007-11-14  Mark Probst  <mark.probst@gmail.com>
11251
11252         * object.c, class-internals.h: Added more information to the
11253         runtime generic context.
11254
11255 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
11256
11257         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
11258         instead of just the target method. Generalize the abstract method handling to
11259         handle any non-static method.
11260
11261         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
11262         mono_marshal_get_delegate_invoke () signature change.
11263
11264 2007-11-13  Mark Probst  <mark.probst@gmail.com>
11265
11266         * class.c, class-internals.h: Made
11267         mono_type_get_basic_type_from_generic () public.  Fixed member
11268         access check for shared generics.
11269
11270         * loader.c: Don't insert field into field cache if it's part of a
11271         non-inflated generic class.
11272
11273         * domain.c, domain-internals.h: The generic sharing context is now
11274         part of the jit info data structure.  Added two accessor
11275         functions.
11276
11277 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
11278
11279         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
11280         the array Get/Set/Address methods, since the JIT inlines them.
11281
11282         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
11283
11284         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
11285         (mono_image_init): Initialize runtime_invoke_direct_cache.      
11286
11287         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
11288         mono_marshal_get_delegate_invoke signature change.
11289
11290         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
11291         an additional argument. Add support for invoking abstract methods.
11292
11293         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
11294
11295         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
11296
11297 2007-11-09  Mark Probst  <mark.probst@gmail.com>
11298
11299         * class.c: Do field layout for open generic classes as well.
11300
11301 2007-11-09  Mark Probst  <mark.probst@gmail.com>
11302
11303         * gc.c, gc-internal.h: Don't finalize threadpool threads with
11304         other objects, because the threadpool is still around.  Put them
11305         in a list instead and after finalizing all other objects in the
11306         root domain shut down the thread pool and then finalize the
11307         threads.  Fixes bug #337383.
11308
11309         * threads.c, thread-types.h: New mono_thread_create_internal()
11310         function for marking a thread with the threadpool flag before it
11311         started.  Set synch_cs to NULL after freeing it.
11312
11313         * threadpool.c: Mark threadpool threads before they start.
11314
11315 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
11316
11317         * reflection.h, reflection.c: don't export random functions
11318         and lazy load dbnull and missing objects.
11319
11320 2007-11-07  Jonathan Chambers <joncham@gmail.com>
11321
11322         * class.c: Initialize COM types if COM interfaces
11323         are present (not just COM classes).
11324         
11325         Code is contributed under MIT/X11 license.
11326
11327 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11328         * reflection.c:
11329         create_dynamic_mono_image: hook module profiler events (dynamic case).
11330         mono_image_basic_init: hook assembly profiler events (dynamic case).
11331
11332 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11333         * profiler.c:
11334         simple_appdomain_unload: completely terminate the profiler
11335         instead of only processing the statistical samples.
11336         simple_shutdown: make sure this is really called exactly once,
11337         even in multithreaded applications, and always listen to
11338         appdomain events.
11339         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
11340         here, the "[un]load" functions will do it.
11341         Fixes bugs #333791 and #325261.
11342
11343 2007-11-07  Geoff Norton  <gnorton@novell.com>
11344
11345         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
11346         rather than depend on __APPLE__.
11347
11348 2007-11-07  Mark Probst  <mark.probst@gmail.com>
11349
11350         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
11351
11352 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
11353
11354         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
11355         UTF16 MonoString. Fix the crash from bug #335488
11356
11357 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
11358
11359         * marshal.c: Correct (for non-Win32 OS) length != size in 
11360         mono_string_from_bstr. Fix #339530.
11361
11362 2007-11-06  Geoff Norton  <gnorton@novell.com>
11363
11364         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
11365         to succeed
11366
11367 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
11368
11369         * process.c: Added run-time GetProcessId API detection for Windows.
11370
11371 2007-11-04  Miguel de Icaza  <miguel@novell.com>
11372
11373         * reflection.c  (mono_param_get_objects): If a parameter has the
11374         attribute [System.Runtime.InteropServices.Optional] we should
11375         set the DefaultValue of the ParameterInfo to be
11376         System.Reflection.Missing instead of DBNull.
11377
11378         See bug #339013.
11379
11380         (mono_get_reflection_missing_object): New method,
11381         returns the System.Reflection.Missing.Value singleton instance.
11382
11383 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
11384
11385         * culture-info-table.h : regenerated.
11386
11387 2007-11-02  Jonathan Chambers <joncham@gmail.com>
11388
11389         * icall.c: Use GetEnvironmentStrings on windows
11390         so we are using the same environment block as 
11391         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
11392         #333740.
11393         
11394         Code is contributed under MIT/X11 license.
11395
11396 2007-10-31  Martin Baulig  <martin@ximian.com>
11397
11398         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
11399
11400         * mono-debug-debugger.h
11401         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
11402
11403 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
11404
11405         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
11406         classes.
11407
11408 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
11409
11410         * culture-info-table.h : regenerated.
11411
11412 2007-10-30  Robert Jordan  <robertj@gmx.net>
11413
11414         * icall-def.h, icall.c:
11415         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
11416
11417         Code is contributed under MIT/X11 license.
11418
11419 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
11420
11421         * class.c (mono_class_setup_vtable): Find the inflated methods in the
11422         inflated class instead of inflating them again.
11423         
11424         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
11425         dynamic case.
11426
11427         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
11428         Call setup_supertypes () after klass->parent is set.
11429         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
11430
11431         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
11432         for inflated instances of not yet created dynamic generic classes.
11433         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
11434         times from inflated_method.
11435         (methodbuilder_to_mono_method): Ditto.
11436
11437 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
11438
11439         * gc.c: code cleanup and removed old untested option of not creating the
11440         finalizer thread.
11441
11442 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
11443
11444         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
11445         creating a jump trampoline for dynamic methods.
11446
11447 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
11448
11449         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
11450         generic TypeBuilders when called from another method of the same type (bug #335131).
11451
11452
11453 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
11454
11455         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
11456         doesn't seem to work perfectly.
11457         
11458         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
11459         called multiple times.
11460         (methodbuilder_to_mono_method): Ditto.
11461         (resolve_object): Inflate FieldBuilder's.
11462
11463 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
11464
11465         * string-icalls.c, string-icalls.h, appdomain.c: patch from
11466         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
11467         RemoveEmptyEntries in the string.Split implementation (bug #322375).
11468
11469 2007-10-26  Dick Porter  <dick@ximian.com>
11470
11471         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
11472         Thread initialisation changes
11473
11474 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
11475
11476         * verify.c: fix compatibility check between arrays and System.Array
11477
11478 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
11479
11480         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
11481         too. Fixes #336999.
11482
11483 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
11484
11485         * object.c (mono_value_box): Use typed allocation here.
11486
11487 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
11488
11489         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
11490         trampoline instead of compiling the method right away.
11491
11492         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
11493
11494 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
11495
11496         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
11497         related fields for dynamic classes. Fixes #334493.
11498
11499 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
11500
11501         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
11502         
11503         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
11504
11505         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
11506         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
11507
11508         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
11509
11510         * reflection.c (create_generic_typespec): Initialize klass->generic_container
11511         if needed.
11512         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
11513
11514 2007-10-18  Jonathan Chambers <joncham@gmail.com>
11515
11516         * marshal.c: Use correct key when removing item
11517         from ccw_hash.
11518         
11519         Code is contributed under MIT/X11 license.
11520
11521 2007-10-17  William Holmes  <billholmes54@gmail.com>
11522
11523         *marshal.c: Adding a case to marshal booleans to U1
11524
11525         Code is contributed under MIT/X11 license.
11526
11527 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
11528
11529         * class.c (mono_class_from_name): Search the modules compromising dynamic
11530         assemblies. Fixes #331601.
11531
11532 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
11533
11534         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
11535         exception if the type name contains an assembly component. Fixes #334203.
11536
11537         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
11538         modules inside dynamic assemblies. Fixes #334200.
11539         
11540         * reflection.c: Set image->public_key and image->public_key_length;
11541
11542         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
11543         fields.
11544
11545         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
11546         
11547 2007-10-16  Mark Probst  <mark.probst@gmail.com>
11548
11549         * metadata.c: Implemented correct comparing of generic classes.
11550         An inflated generic class can be equal to a non-inflated one if it
11551         is inflated with generic type variables as type arguments.  Fixes
11552         bug #333798.
11553
11554 2007-10-15  Dick Porter  <dick@ximian.com>
11555
11556         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
11557         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
11558         81646.
11559
11560         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
11561         instead of a monitor lock.  This means that monitor_try_enter and
11562         co can set the thread state safely.
11563         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
11564         thread_interrupt_requested, so interrupt actually works.
11565
11566         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
11567         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
11568         state accessor function
11569
11570 2007-10-15  Martin Baulig  <martin@ximian.com>
11571
11572         * mono-debug.h
11573         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
11574         the debugger with the current runtime.
11575
11576 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
11577
11578         * object.c, object-internals.h: added the ability to set a single
11579         trampoline for all the slots in a vtable.
11580
11581 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
11582
11583         * marshal.c: deal with a possible race condition during multicast
11584         delegate invocation.
11585
11586 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
11587
11588         * class.c: ensure value type methods don't have the synchronized
11589         flag set.
11590
11591 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
11592
11593         * string-icalls.c, string-icalls.h: reverted unapproved patch that
11594         breaks the build.
11595
11596 2007-10-11  Joel Reed  <joelwreed@comcast.com>
11597
11598         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
11599         to take an options parameter so that empty entries can be removed during
11600         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
11601
11602 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
11603
11604         * marshal.c: make sure we don't store the signature from a dynamic
11605         method into the runtime invoke cache (bug #327189).
11606
11607 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
11608
11609         * marshal.c: make sure the wrapper methods are properly initialized.
11610
11611 2007-10-11  Mark Probst  <mark.probst@gmail.com>
11612
11613         * metadata.c, metadata-internals.h: Generalized
11614         mono_type_stack_size() to mono_type_stack_size_internal() which
11615         takes an additional argument specifying whether it allows open
11616         types.
11617
11618 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
11619
11620         * verify.c (do_invoke_method): handle typedbyref params
11621         correctly and check for unverifiable return values.
11622
11623         * verify.c (do_newobj): fix a warning.
11624
11625 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
11626
11627         * verify.c: don't tread typedbyref as allways unverifable,
11628         so uses, like (ld/st)loc.0 are valid. verify for the cases
11629         that it matters, like boxing related operations.
11630
11631 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
11632
11633         * verify.c: add verification of the newobj opcode. verification
11634         of delegate instantation still missing due ldftn and virldftn not
11635         pushing the function type on stack
11636
11637 2007-10-08  Mark Probst  <mark.probst@gmail.com>
11638
11639         * class-internals.h: Runtime generic context data structure
11640         definition.
11641
11642         * object.c: Initialization of runtime generic context at runtime
11643         vtable creation time.
11644
11645 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
11646         * class.c (mono_class_create_from_typedef,
11647         mono_class_from_generic_parameter, mono_ptr_class_get,
11648         mono_fnptr_class_get, mono_bounded_array_class_get)
11649         * domain.c (mono_domain_create, mono_domain_free)
11650         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
11651         * image.c (do_mono_image_load, mono_image_close):
11652         Hooked up load-unload profiler events.
11653
11654 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
11655
11656         * domain.c: track statistics about the actual amount of native code
11657         allocated.
11658
11659 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
11660
11661         * class.c: the valuetype enumerators don't have the additional
11662         supertypes interfaces.
11663
11664 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
11665
11666         * class.c: need more interfaces setup for the IEnumerator<T>
11667         object created for arrays (tests/ienumerator-interfaces.2.cs).
11668
11669 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
11670
11671         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
11672
11673 2007-10-05  Alp Toker  <alp@atoker.com>
11674
11675         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
11676         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
11677         #315863.
11678
11679 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
11680
11681         * verify.c (verify_type_compatibility_full): verification of
11682         compatibility improved, validates correctly non-strict checks between
11683         native int and I4 types different than (unsigned)int32.
11684
11685         * verify.c (do_store_indirect): added, do all verification of
11686         ldind.X opcodes. 
11687
11688         * verify.c (get_load_indirect_mono_type): renamed to
11689         get_indirect_op_mono_type, as it now returns the MonoType for 
11690         ldind.X and stind.X opcodes.
11691
11692 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
11693
11694         * reflection.c: Fix the encoding of generic type definition for
11695         TypeBuilders.
11696
11697         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
11698         mono_image_typedef_or_ref but allows to specify if typespec lookups should
11699         be made. Typespec check is done prior to typeref cache lookup.
11700
11701         * reflection.c (mono_image_typedef_or_ref): now just delegate to
11702         mono_image_typedef_or_ref_full.
11703
11704         * reflection.c (encode_generic_class): encode the generic class
11705         directly instead of calling encode_type.
11706
11707         * reflection.c (encode_type): encode the generic type definition
11708         MonoClass as a generic instantiation.
11709
11710         * reflection.c (create_typespec): cache typespec tokens in
11711         the assembly->typespec cache. Don't create typespec for a generic
11712         instance MonoClass. Create typespec for the generic type defintion.
11713
11714         * reflection.c (create_generic_typespec): encode the generic
11715         class directly instead of calling encode_type.
11716
11717         * reflection.c (mono_image_create_token): encode the generic
11718         type definition not using a typespec for MonoType instances.
11719
11720
11721 2007-10-04  Raja R Harinath  <rharinath@novell.com>
11722
11723         Fix #328812
11724         * class.c (mono_image_init_name_cache): Don't return nested
11725         'protected internal' classes.
11726         (mono_class_from_name_case): Likewise.
11727
11728 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
11729
11730         * icall-def.h, icall.c : get_bundled_machine_config() is now the
11731           common function used by both DefaultConfig in System.dll and
11732           InternalConfigurationHost in System.Configuration.dll.
11733
11734 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
11735
11736         * class.c: automatically add to vectors only a few essential explicit
11737         generic interfaces. The rest of the interfaces that arrays should
11738         provide are currently implicitly added (but still not lazily, see the
11739         design in the discussion of bug#325495 for the details of what is
11740         needed for that). Additionally, implicit interfaces are assigned the
11741         same vtable slot as the explicit interfaces (as they are compatible):
11742         this enables huge memory savings since we don't need to instantiate
11743         as many memthods and as large vtables anymore. Also, Since
11744         GetEnumerator<T> returns an instance of a type that is required to
11745         support a similarly large set of interfaces as arrays, we add
11746         implicit interfaces and interface offset sharing support to those
11747         types, too. This change adds all the required interfaces so that
11748         the anonarray.cs test case in the bug report works (we don't add
11749         all the interfaces to arrays of arrays 3-level deep and more because
11750         of the memory requirements explained in the bug and since they are much
11751         less common: the lazy-loading support will enabled them to work, too).
11752
11753 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
11754
11755         * verify.c (merge_stacks): major clean up, all type compatibility
11756         checks are done by verify_type_compatibility. This fix my earlier lack
11757         of understanding of the CLR type system and merge_stacks no longer looks
11758         scary.
11759
11760         * verify.c: fixed some bad spelling.
11761
11762 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
11763
11764         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
11765         a given stack slock.
11766         
11767         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
11768         verify_type_compatibility_full. This removed a near indentical function and fixed
11769         handling of Int32 and IntPtr across all opcodes.
11770
11771 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
11772
11773         * class.c: only vectors have the additional generic interfaces.
11774
11775 2007-10-01  Jonathan Chambers <joncham@gmail.com>
11776
11777         * mono-config.c: Use g_strcasecmp instead of
11778         strcasecmp like everywhere else to fix
11779         compilation with MSVC.
11780         
11781         Code is contributed under MIT/X11 license.
11782
11783 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
11784
11785         * object.c, object-internals.h: refactored the IMT code to enable
11786         building a single slot at a time and lazily creating the IMT trampolines
11787         and thunks.
11788
11789 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
11790
11791         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
11792
11793         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
11794         Fixes #328501.
11795         
11796 2007-09-29  Raja R Harinath  <harinath@gmail.com>
11797
11798         * loader.c (method_from_methodspec): Rearrange to avoid
11799         un-necessary exposition.  Don't assert out if the method's
11800         declaring type is a generic type definition.
11801
11802 2007-09-28  Martin Baulig  <martin@ximian.com>
11803
11804         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
11805
11806 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
11807
11808         * class-internals.h: optimize field layout of MonoClass to
11809         requires less cachelines at runtime and save a few bytes on 64 bit
11810         systems.
11811
11812 2007-09-28  Jb Evain  <jbevain@novell.com>
11813
11814         * reflection.c: when encoding type names in custom attributes,
11815         if the type is a closed generic type, its generic arguments
11816         have to be serialized as AssemblyQualifiedName, so that when
11817         they are deserialized, it's possible to re-create them properly.
11818         Fixes #329450.
11819
11820
11821 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
11822
11823         * object.c, class-internals.h: added delegate-creation counter.
11824
11825 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
11826
11827         * class.c: cleanup of the code that synthetizes interfaces for
11828         arrays in 2.0: saves quit a bit of corlib mempool memory.
11829         Code to fix bug #325495 ifdeffed out for now until the issues
11830         with memory usage and O(n^2) behaviour are fixed.
11831
11832 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
11833
11834         * marshal.c: when possible, do not duplicate the name of the methods
11835         in the method builder and in the generated MonoMethod.
11836
11837 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
11838         * verify.c: added support for type checking ldind_* opcodes.
11839
11840 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
11841
11842         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
11843         which is used to distinguish the fully open instantiation of a TypeBuilder
11844         with the rest. This temporary hack is required to restore the property that
11845         the fully open instantiation is the same type of the generic type definition.
11846
11847         * class-internals.h (mono_generic_class_is_generic_type_definition):
11848         new function as part of the internal API.
11849
11850         * class.c (inflate_generic_type): return NULL when the generic inst is
11851         fully open. The fully open generic type is now the same as the generic type
11852         definition for non TypeBuilder types.
11853
11854         * class.c (mono_generic_class_get_class): removed assert since it is
11855         no longer valid, gklass->cached_class can point to the generic type definition.
11856
11857         * class.c (mono_generic_class_is_generic_type_definition): new.
11858
11859         * metadata.c (mono_generic_class_hash): added is_tb_open field
11860         to the hash calculation.
11861
11862         * metadata.c (free_generic_class): if the generic class is associated
11863         with the generic type definition, its field will come from the mempool and
11864         must not be freed.
11865
11866         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
11867         new, this function identifies the corner case of a TypeBuilder fully open
11868         instantiation.
11869
11870         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
11871         for lookup. Set gclass->cached_class to be the container class in case of
11872         the fully open instantiation of non TypeBuilder types.
11873
11874         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
11875         to compare generic classes.
11876
11877         * reflection.c (method_encode_methodspec): remove assert that
11878         no longer is valid.
11879
11880         * reflection.c (mono_reflection_generic_class_initialize): add
11881         an aditional assert to ensure the proper type is used.
11882
11883 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
11884
11885         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
11886         to enjoy it.
11887
11888 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
11889
11890         * verify.c (push_arg): Fixed support for ldarga
11891         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
11892         MonoType used as first arg in case of instance calls.
11893
11894 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
11895
11896         * verify.c: Support for verifying VAR and MVAR types, 
11897
11898 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
11899
11900         * icall.c (ves_icall_get_property_info): Set the reflected type of the
11901         accessors correctly.
11902
11903 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
11904
11905         * threads.c: support OSX and other systems in
11906         mono_thread_get_stack_bounds (bug #328026).
11907
11908 2007-09-25  Martin Baulig  <martin@ximian.com>
11909
11910         * mono-debug.h
11911         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
11912
11913 2007-09-24  Martin Baulig  <martin@ximian.com>
11914
11915         * mono-debug.h
11916         (MonoDebugClassEntry): Moved the definition of this struct into
11917         mono-debug.c to make it private.
11918
11919         * mono-debug.c
11920         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
11921         type table per symbol file, we don't need to store the symfile id
11922         any longer.
11923
11924 2007-09-24  Martin Baulig  <martin@ximian.com>
11925
11926         Create one type table per symbol file, since a `MonoClass *' gets
11927         invalid when its image is unloaded.
11928
11929         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
11930         (MonoDebugHandle): Added `type_table'.
11931
11932 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
11933
11934         * mempool.c, mempool.h: added mono_mempool_new_size () API
11935         to be able to specify a smaller initial size for the pool.
11936         Adjusted the code to slowly increase pool size before using
11937         the previous default size.
11938         * image.c: use a small initial size for image mempools.
11939
11940 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
11941
11942         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
11943         Fixes ##320990.
11944
11945         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
11946         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
11947
11948 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
11949
11950         * metadata.c (mono_type_create_from_typespec): Remove an invalid
11951         free. Fixes #327438.
11952
11953 2007-09-21  Raja R Harinath  <harinath@gmail.com>
11954
11955         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
11956         generic instantiations, etc.
11957         <MONO_TYPE_ARRAY>: Likewise.
11958
11959 2007-09-21  Martin Baulig  <martin@ximian.com>
11960
11961         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
11962         these structs were never defined.
11963         (MonoDebugHandle): Removed the `_priv' field, it was never used.
11964
11965 2007-09-21  Martin Baulig  <martin@ximian.com>
11966
11967         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
11968
11969 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
11970
11971         * image.c: removed the guid hash tables: we can get the same info
11972         without the additional memory usage hit (partially fixes also bug #327052).
11973
11974 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
11975
11976         * profiler.h, profiler-private.h, profiler.c: add a new profiler
11977         event to handle unloading methods. After the event is called, the
11978         corresponding MonoMethod* must be considered invalid.
11979         * loader.c (mono_free_method): call the new mono_profiler_method_free
11980         event.
11981
11982 2007-09-20  Mark Probst  <mark.probst@gmail.com>
11983
11984         * domain-internals.h: New flag in MonoJitInfo which marks shared
11985         generic methods.  New hash table (shared_generics_hash) in
11986         MonoDomain to keep track of shared generic methods.  Prototypes
11987         for functions to register and lookup shared generic methods.
11988
11989         * domain.c: Support for registering and looking up shared generic
11990         methods via a hash table (shared_generics_hash) in MonoDomain.
11991
11992         * class-internals.h: New exception to signal failure of shared
11993         compilation of a generic method.  New counters for generics
11994         sharing in MonoStats.
11995
11996 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
11997
11998         * image.c, metadata-internals.h: don't keep a file descriptor open
11999         for loaded assemblies (bug#325988).
12000
12001 2007-09-19  Raja R Harinath  <rharinath@novell.com>
12002
12003         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
12004         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
12005         use the corresponding datatypes.
12006         (type_in_image): Update to changes.
12007         (CleanForImageUserData): Simplify.
12008         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
12009         Avoid quadratic behaviour in handling the "stolen" list by
12010         separating the filter predicate out, and by prepending the stolen
12011         items rather than appending them.
12012         (steal_ginst_in_image): Likewise.
12013         (mono_metadata_clean_for_image): Update to changes.
12014
12015 2007-09-19  Martin Baulig  <martin@ximian.com>
12016
12017         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
12018
12019 2007-09-19  Martin Baulig  <martin@ximian.com>
12020
12021         * mono-debug.c (mono_debug_cleanup): Don't call
12022         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
12023
12024 2007-09-19  Raja R Harinath  <harinath@gmail.com>
12025
12026         Fix crash on 'make run-test' in mcs/errors
12027         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
12028         Avoid more potential allocations in mono_class_from_mono_type.
12029         (ginst_in_image): Update to changes.
12030         (gclass_in_image): Rearrange slightly.
12031
12032 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
12033
12034         * class.c (mono_class_init): Move the code that sets up class->methods to 
12035         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
12036
12037         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
12038         canonical instance of an inflated generic signature.
12039         (mono_type_create_from_typespec): Remove an invalid free.
12040
12041         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
12042
12043 2007-09-18  Marek Habersack  <mhabersack@novell.com>
12044
12045         * domain-internals.h: added a declaration of the
12046         mono_assembly_load_full_nosearch internal function.
12047
12048         * assembly.c (mono_assembly_load_with_partial_name): use
12049         mono_try_assembly_resolve return value properly.
12050         (mono_assembly_load_full_nosearch): copied the function body from
12051         mono_assembly_load_full, without the code to invoke assembly
12052         search hooks.
12053         (mono_assembly_load_full): calls the above new function and if the
12054         assembly is not resolved, invokes the search hooks.
12055
12056         * appdomain.c (mono_runtime_init): restore the global postload
12057         assembly search handlers.
12058
12059 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
12060
12061         * class.c (mono_class_init): Make sure class->methods and class->properties
12062         are never NULL in the generics case.
12063
12064         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
12065
12066 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
12067
12068         * metadata.c (free_generic_class): Disable some code to fix the build.
12069
12070         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
12071
12072         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
12073         from the image mempool.
12074
12075         * metadata.c (free_generic_class): Free more data from the inflated class.
12076
12077         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
12078
12079         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
12080         mempool.
12081         (mono_type_create_from_typespec): Ditto.
12082
12083         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
12084         MonoImage to the caller.
12085         (mono_init_internal): Save the opened image in a global variable.
12086         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
12087
12088         * reflection.c (resolve_object): Fix a leak.
12089
12090         * metadata.c: Fix the freeing of data in the generics caches.
12091         
12092         * metadata.c (free_generic_inst): Comment this out to fix the build.
12093         (free_generic_class): Ditto.
12094
12095         * metadata.c: Free cached generic methods, instantinations and classes when
12096         they are removed from the caches.
12097         (mono_metadata_free_type): Free the type itself.
12098
12099         * class.c: Free the result of mono_class_inflate_generic_type () in a few
12100         places.
12101
12102 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12103
12104         * boehm-gc.c: restrict managed allocs to __thread supporting
12105         architectures.
12106
12107 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
12108
12109         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
12110         (mono_generic_class_get_class): Fix a leak.
12111
12112         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
12113         mono_metadata_free_type ().
12114         (mono_metadata_inflate_generic_inst): Fix a leak.
12115
12116 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12117
12118         * mono-debug.c (free_header_data): Fix a leak missed earlier.
12119
12120         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
12121         mempool.
12122
12123         * mono-debug.c (mono_debug_close_image): Fix call to 
12124         g_hash_table_remove ().
12125
12126 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
12127
12128         * icall-def.h: redirect all the string ctor to the managed
12129         CreateString () methods.
12130         * string-icalls.c, string-icalls.h: removed dead code for string
12131         ctors and icalls.
12132
12133 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12134
12135         * mono-debug.c: Fix memory leaks.
12136
12137 2007-09-14  Jonathan Chambers <joncham@gmail.com>
12138
12139         * threads-types.h: Implement mono_hazard_pointer_set and 
12140         mono_hazard_pointer_clear macros using do/while(0) to fix
12141         compilation with MSVC.
12142         
12143         Code is contributed under MIT/X11 license.
12144
12145 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12146
12147         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
12148         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
12149
12150 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12151
12152         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
12153         icalls.
12154
12155 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12156
12157         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
12158         managed-code allocated as well.
12159
12160 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
12161
12162         * class.c (mono_class_is_assignable_from): Add support for generic variance.
12163
12164 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
12165
12166         * boehm-gc.c: fixed the build after the AOT changes.
12167
12168 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
12169
12170         * wrapper-types.h: Add an ALLOC wrapper type.
12171
12172         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
12173         reference managed allocator methods.
12174
12175 2007-09-12  Marek Safar  <marek.safar@gmail.com>
12176
12177         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
12178         of Type array and not MonoType, a fix suggested by Hari.
12179         
12180 2007-09-12  Jonathan Chambers <joncham@gmail.com>
12181
12182         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
12183         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
12184         
12185         Code is contributed under MIT/X11 license.
12186
12187 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12188
12189         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
12190
12191 2007-09-12  Marek Habersack  <mhabersack@novell.com>
12192
12193         * image.c (do_mono_image_open): if assembly file fails to open and
12194         MONO_IOMAP is in effect, try to find the path in a
12195         case-insensitive way.
12196
12197         * appdomain.c (mono_runtime_init): do not install postload hooks -
12198         tests show that MS.NET doesn't use anything of that sort to
12199         trigger the AppDomain.AssemblyResolve event.
12200         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
12201         made non-static.
12202         (mono_runtime_init): init portability helpers here.
12203
12204         * assembly.c (mono_assembly_load_with_partial_name): if other   
12205         attempts fail, trigger the AppDomain.AssemblyResolve event handler
12206         to resolve the assembly.
12207
12208         * domain-internals.h: added mono_try_assembly_resolve and marked
12209         it as internal.
12210
12211 2007-09-11  Jb Evain  <jbevain@novell.com>
12212
12213         * object-internals.h (MonoReflectionDynamicMethod): add
12214         a `MonoReflectionType *owner` field. The owner is used
12215         * reflection.c:
12216         (mono_reflection_create_dynamic_method): use the owner of the dynamic
12217         method as the class declaring the dynamic method.
12218         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
12219         dynamic method to the declaring type of the methodbuilder.
12220
12221 2007-09-11  Mark Probst  <mark.probst@gmail.com>
12222
12223         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
12224         rules for calling methods via reflection.
12225
12226 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
12227
12228         * reflection.c (resolve_object): Add support for MonoGenericClass. 
12229         Inflate MonoType's.
12230
12231 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
12232
12233         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
12234         provide a managed method that does fast allocations without needing
12235         a managed->unmanaged transition. Boehm GC implementation currently
12236         enabled for ptrfree objects on sane architectures.
12237
12238 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
12239
12240         * marshal.c, marshal.h: exported a couple of useful functions and
12241         added mono_mb_get_label () to easily handle backward branches.
12242
12243 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
12244
12245         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
12246
12247 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12248
12249         * loader.c (find_method): Fixed the regression introduced while
12250         fixing bug #81466.
12251
12252 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
12253
12254         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
12255         well.
12256         
12257         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
12258         icall.c reflection.c: Pass a MonoGenericContext argument to 
12259         mono_lookup_dynamic_token ().
12260
12261         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
12262         #82744.
12263         
12264 2007-09-09  Robert Jordan  <robertj@gmx.net>
12265
12266         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
12267         for generic methods.
12268
12269         * object.c (mono_object_get_virtual_method): Handle generic methods.
12270         Fixes bug #78882.
12271
12272         Code is contributed under MIT/X11 license.
12273
12274 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
12275
12276         * image.c: fix locking in mono_image_load_file_for_image ().
12277
12278 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
12279
12280         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
12281         used only as a cache: added an icall to fill it.
12282
12283 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
12284
12285         * reflection.h: exposed mono_reflection_free_type_info
12286         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
12287         since mono_reflection_bind_generic_parameters makes a copy of it.
12288         * reflection.c (free_type_info): subinfos should be freed.
12289         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
12290         made non static.
12291         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
12292         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
12293         this fixes #82695 and #81726.
12294    
12295
12296 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
12297
12298         * process.h, process.c:  added support for user profile/info in
12299           ProcessStartInfo. For now only Windows works.
12300
12301 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12302
12303         * metadata.c: consider the generic arguments when comparing
12304         signatures (bug #82614).
12305
12306 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12307
12308         * cil-coff.h, image.c: updated assembly loader to cope with the
12309         PE32+ 64 bit file format.
12310
12311 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12312
12313         * assembly.c, class.c, domain.c, loader.c: remove useless
12314         inclusion of cil-coff.h.
12315
12316 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
12317
12318         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
12319         if interface is marked with CoClassAttribute. 
12320    
12321         Code is contributed under MIT/X11 license.
12322
12323 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12324
12325         * sgen-gc.c: ensure no object from the to space is copied again or finalized
12326         if it's seen twice in major collections.
12327
12328 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12329
12330         * sgen-gc.c: big objects are not copied to the gray area, but they
12331         need to be considered for scanning, too, if they are brought alive
12332         by an object ready for finalizations or a survived one.
12333
12334 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12335
12336         * sgen-gc.c: properly account the number of disappearing links when
12337         they are nullified.
12338
12339 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
12340
12341         * sgen-gc.c: share the code to scan the registered roots between the
12342         different types of collections.
12343
12344 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
12345
12346         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
12347
12348 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
12349
12350         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
12351         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
12352
12353 2007-08-28  Mark Probst  <mark.probst@gmail.com>
12354
12355         * security-manager.c (mono_security_manager_get_methods):
12356         LinkDemandSecurityException now has 2 arguments instead of 3.
12357
12358 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
12359
12360         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
12361         platforms which need it.
12362
12363 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12364
12365         * sgen-gc.c: unregister thread data structures with a pthread_key_t
12366         dtor.
12367
12368 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
12369
12370         * threads.c: free the thread static data on thread exit.
12371
12372 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
12373
12374         * class.c: walk the hierarchy to find the generic definition for
12375         a class (fixes runtime part of bug #82498).
12376
12377 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
12378
12379         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
12380         ...
12381
12382         * image.c (mono_image_close): Here. Hopefully fixes #82510.
12383
12384 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12385
12386         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
12387
12388 2007-08-24  Robert Jordan  <robertj@gmx.net>
12389
12390         * appdomain.c: don't perform the ':'->';' substitution on Win32.
12391
12392 2007-08-24  Jb Evain  <jbevain@novell.com>
12393
12394         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
12395         for byref types.
12396
12397 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12398
12399         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
12400         #82286.
12401
12402 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
12403
12404         * assembly.c: Fix a warning.
12405         
12406 2007-08-23  Marek Habersack  <mhabersack@novell.com>
12407
12408         * appdomain.c: parse the <runtime> section looking for the probing
12409         element with the 'privatePath' attribute, which sets additional
12410         directories in which the runtime should look for assemblies.
12411
12412 2007-08-23  Robert Jordan  <robertj@gmx.net>
12413
12414         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
12415         Fixes #82499.
12416
12417 2007-08-23  Martin Baulig  <martin@ximian.com>
12418
12419         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
12420         _mono_debug_init_corlib() and remove it from the header file.
12421
12422 2007-08-23  Martin Baulig  <martin@ximian.com>
12423
12424         * mono-debug-debugger.c
12425         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
12426         don't notify the debugger about it.
12427
12428         * mono-debug-debugger.h
12429         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
12430
12431 2007-08-23  Robert Jordan  <robertj@gmx.net>
12432
12433         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
12434         Code is contributed under MIT/X11 license.
12435
12436 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12437
12438         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
12439
12440 2007-08-22  Martin Baulig  <martin@ximian.com>
12441
12442         * mono-debug.c: Store debugging info on a per-domain basis and
12443         free it on domain unload.  Add support for unloading symbol files.
12444
12445         * mono-debug.h
12446         (MonoDebugList): New typedef.
12447         (MonoSymbolTable):
12448         - add `data_tables and `type_table'.
12449         - replace 'symbol_files' and `num_symbol_files' with a
12450           `MonoDebugList *'.
12451         (mono_debug_data_table): Removed.
12452         (mono_debug_list_add): New public function.
12453         (mono_debug_list_remove): New public function.
12454         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
12455         (mono_debug_init_2_memory): Renamed into
12456         mono_debug_open_image_from_memory().
12457         (mono_debug_close_image): New public function.
12458         (mono_debug_domain_create): Likewise.
12459         (mono_debug_domain_unload): Likewise.
12460         (MONO_DEBUGGER_VERSION): Bump to 60.
12461
12462         * mono-debug-debugger.h
12463         (MonoDebuggerEvent):
12464         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
12465         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
12466         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
12467         - rename `THREAD_CREATED' and `THREAD_EXITED' into
12468           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
12469         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
12470           meaning.
12471         (mono_debugger_add_symbol_file): Removed.
12472         (mono_debugger_add_type): Removed.
12473         (mono_debugger_lookup_type): Removed.
12474         (mono_debugger_lookup_assembly): Removed.
12475
12476         * domain.c
12477         (mono_domain_create): Call mono_debug_domain_create().
12478         (mono_init_internal): Call mono_debug_init_corlib().
12479
12480         * assembly.c
12481         (mono_assembly_close): Call mono_debug_close_image().
12482
12483 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
12484
12485         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
12486         mmap call.
12487
12488 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
12489
12490         * sgen-gc.c: ensure section->pin_queue_end is initialized
12491         correctly when non pinning objects in the section have been found.
12492
12493 2007-08-22  Marek Habersack  <mhabersack@novell.com>
12494
12495         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
12496         containing a list of directories separated by ':'. MSDN docs say
12497         the directories should be separated with ';'. Part of a bugfix for
12498         bug #81446
12499
12500 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
12501
12502         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
12503         it should MonoType and not MonoClass.
12504
12505 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
12506
12507         * culture-info-table.h : regenerated.
12508
12509 2007-08-20  William Holmes  <billholmes54@gmail.com>
12510
12511         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
12512          to call ReplaceFile Kernel32 on windows or in io-layer.
12513         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
12514         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
12515          as an internal call.
12516
12517         Code is contributed under MIT/X11 license.
12518
12519 2007-08-20  Jb Evain  <jbevain@novell.com>
12520
12521         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
12522         and MONO_EXCEPTION_FIELD_ACCESS.
12523
12524         * debug-helpers.[c|h]: new mono_field_full_name function.
12525
12526 2007-08-20  Mark Probst  <mark.probst@gmail.com>
12527
12528         * class.c: Removed class_security_level() and moved it to
12529         security-core-clr.c.
12530
12531         * security-core-clr.c, security-core-clr.h: class_security_level()
12532         is now public and renamed to mono_security_core_clr_class_level().
12533         It also looks for security attributes in the classes a class is
12534         nested in.
12535
12536 2007-08-20  Mark Probst  <mark.probst@gmail.com>
12537
12538         * security-core-clr.c, security-core-clr.h: CoreCLR security
12539         utility functions.
12540
12541         * Makefile.am: Added security-core-clr.[ch].
12542
12543         * security-manager.c, security-manager.h: Functions and enum for
12544         setting and getting the security mode.
12545
12546         * class.c: CoreCLR security checks.
12547
12548 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12549
12550         * icall-def.h, process.c, process.h: implemented icall to get
12551         user/system processor times.
12552
12553 2007-08-17  Mark Probst  <mark.probst@gmail.com>
12554
12555         * domain.c, threads.c, class-internals.h, domain-internals.h: New
12556         reader-lock-free jit_info_table.
12557
12558 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
12559
12560         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
12561
12562         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
12563
12564         * object-internals.h (MonoException): Add missing _data member.
12565
12566 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
12567
12568         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
12569         checking that only methods with matching qname or fqname are picked
12570         from implemented interfaces.
12571
12572 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
12573
12574         * verify.c (do_newarr):added, do type verification of
12575         newarr ops, push the right value on the eval stack.
12576         * verify.c (mono_method_verify): use do_newarr
12577
12578
12579 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
12580
12581         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
12582         factored the common code into get_boxable_mono_type, which
12583         is now using mono_type_get_full, this fixed byref related tests.
12584
12585 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
12586
12587         * class.c: added mono_type_get_full, this function has the same
12588         behavior of mono_class_get_full but the returned MonoType has
12589         all metadata of the associated token in case of a typespec token.
12590         * class.c: added mono_type_retrieve_from_typespec, used by 
12591         mono_type_get_full to retrieve the token type.
12592         * class.c (mono_class_create_from_typespec): changed to use
12593         mono_type_retrieve_from_typespec.
12594         * class.c (mono_ldtoken): changed to use mono_type_get_full
12595         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
12596         * class-internals.h: exported mono_type_get_full for internal use.
12597
12598 2007-08-16  Jb Evain  <jbevain@novell.com>
12599
12600         * domain.c (supported_runtimes): add entry for
12601         the 'moonlight' runtime version.
12602
12603 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
12604
12605         * verify.c (mono_method_verify): small typo sliped in.  
12606
12607 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
12608
12609         * verify.c (do_unbox_value): added, do type verification of
12610         unboxing ops
12611         * verify.c (mono_method_verify): use do_unbox_value
12612
12613
12614 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
12615
12616         * verify.c (dump_stack_value): fixed typo, was printing string
12617         instead of object on stack.
12618         * verify.c (do_box_value): moved the byref check up as it leads
12619         to invalid code and should be done earlier.
12620         * verify.c: improved error messages for and ldobj
12621
12622 2007-08-15  William Holmes  <billholmes54@gmail.com>
12623
12624         * marshal.c (emit_marshal_custom): Omit the call to 
12625           marshal_native_to_managed when calling native to managed 
12626           and the argument is specified as an out argument.
12627
12628         Code is contributed under MIT/X11 license.
12629
12630 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
12631
12632         * verify.c: fixed the type checks for generics, function pointers and vectors.
12633         Added type verification for ldobj and ldtoken. The verifier
12634         would segfault if header or signature of a method contained references
12635         to non-existant types.
12636
12637 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
12638
12639         * marshal.c (cominterop_get_ccw): Patch from
12640         Bill Holmes to no walk up interface hierarchy. 
12641         All parent methods should be present in the interface for COM.
12642    
12643         Code is contributed under MIT/X11 license.
12644
12645 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
12646
12647         * marshal.c (emit_marshal_com_interface): Patch from
12648         Bill Holmes to handle COM Interfaces as return values
12649         for native->managed calls.
12650    
12651         Code is contributed under MIT/X11 license.
12652
12653 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
12654
12655         * marshal.c (cominterop_get_idispatch_for_object): Implement
12656         for runtime callable wrappers.
12657    
12658         Code is contributed under MIT/X11 license.
12659
12660 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
12661
12662         * pedump.c (main): changed from mono_init to mono_init_from_assembly
12663         so 2.0 types are accessible
12664
12665
12666 2007-08-13  Miguel de Icaza  <miguel@novell.com>
12667
12668         * domain.c (mono_init_internal): Call mono_assembly_load_friends
12669         once we load mscorlib.   Due to the order in which we initialize,
12670         the mono_assembly_load_full routine that loads mscorlib did not
12671         load friends.   We now load it once we load the
12672         mono_defaults.internals_visible_class class. 
12673
12674         * assembly.c: Expose the mono_load_friend_assemblies method.
12675
12676 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
12677
12678         * verify.c: improved the handling of boxing, better
12679         type checking for unary ops and conversion. Fix bug
12680         regarding managed pointer compatibility checking
12681
12682 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
12683
12684         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
12685
12686         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
12687
12688 2007-08-09  Raja R Harinath  <rharinath@novell.com>
12689
12690         * reflection.c (dup_type): Remove.
12691         * class.c (dup_type): Remove.
12692         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
12693         instead of the dodgy 'dup_type'.
12694         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
12695         handle the case where 'dup_type' needed the second argument.
12696
12697 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
12698
12699         * domain.c: Fix a warning.
12700
12701 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
12702
12703         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
12704         checking that methods with the same fqname are not overridden
12705         with a method from an ancestor.
12706
12707 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
12708
12709         * threads.c (free_thread_static_data_helper): Avoid a crash if
12710         thread->static_data is not yet set.
12711
12712 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
12713
12714         * marshal.c: Use correct image when emitting
12715         native wrapper for COM calls.
12716    
12717         Code is contributed under MIT/X11 license.
12718
12719 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
12720
12721         * icall-def.h, security.c, security.h :
12722           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
12723
12724 2007-08-07  Martin Baulig  <martin@ximian.com>
12725
12726         * mono-debug-debugger.h
12727         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
12728
12729         * domain.c (mono_domain_free): Call
12730         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
12731
12732 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
12733
12734         * verify.c (check_underflow, check_overflow): error message now returns IL offset
12735         * verify.c (in_same_block): code should test if either offset is inside the clauses
12736         * verify.c (mono_method_verify): push the exception into the eval stack of exception
12737         and filter blocks
12738
12739 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
12740
12741         * image.c (mono_image_close): Fix a leak.
12742
12743         * object.c (mono_runtime_invoke_array): Avoid using alloca.
12744
12745         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
12746
12747 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
12748
12749         * domain.c, threads.c, threads-types.h: fix memory retention issue
12750         with thread static variables not being cleared on domain unload.
12751         Reuse thread static slots after domain unload.
12752
12753 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
12754
12755         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
12756         nullable type.
12757
12758         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
12759         now done in mono_runtime_invoke_array.
12760
12761         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
12762         receiver is a nullable type.
12763
12764         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
12765         generic parameter.
12766
12767 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
12768
12769         * marshal.c: Implement COM Objects as return type for 
12770         managed->unmanaged calls. Added Release calls for COM Object
12771         out/return values in managed->unmanaged calls.
12772
12773         Code is contributed under MIT/X11 license.
12774
12775 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
12776
12777         * threads.h, threads-type.h: move the hazard pointer declarations
12778         to the private header.
12779
12780 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
12781
12782         * file-io.c, appdomain.c: memory leak fixes.
12783
12784 2007-08-02  Dick Porter  <dick@ximian.com>
12785
12786         * socket-io.c
12787         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
12788         SO_REUSEADDR setting into io-layer/sockets.c.
12789
12790 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
12791
12792         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
12793         from Object when called on a generic parameter. Fixes #82211.
12794
12795 2007-08-01  Dick Porter  <dick@ximian.com>
12796
12797         * file-io.c (convert_share): Test FileShare values bit-by-bit.
12798         Fixes bug 79250 yet again.
12799
12800 2007-07-30  Martin Baulig  <martin@ximian.com>
12801
12802         Merged the `debugger-dublin' branch.
12803
12804         * mono-debug.h
12805         (MonoDebugDataTable): New typedef.
12806         (MonoDebugMethodAddressList): New typedef.
12807         (MonoDebugWrapperData): Removed.
12808         (MonoDebugSymbolTable): Removed `current_data_table',
12809         `current_data_table_size', `current_data_table_offset'.
12810         (MonoDebugDataItemType): Moved into mono-debug.c.
12811         (MonoDebugMethodJitInfo): Remove `address'.
12812         (mono_debug_data_table): New global variable.
12813         (mono_debug_lookup_method_addresses): New public function.
12814         (mono_debug_find_method): Take a `MonoMethod *', not a
12815         `MonoDebugMethodInfo *'.
12816
12817         * mono-debug.c: Drop support for the old symbol tables.
12818
12819 2007-06-28  Martin Baulig  <martin@ximian.com>
12820
12821         * mono-debug.c (mono_debug_debugger_version): New public variable.
12822
12823 2007-07-31  William Holmes  <billholmes54@gmail.com>
12824
12825         * metadata.c Changed mono_type_create_from_typespec to not insert
12826           the type into the hash map until after
12827           do_mono_metadata_parse_type has completed.
12828         Fixes Bug #82194
12829         Code is contributed under MIT/X11 license.
12830
12831 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
12832
12833         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
12834         generic parameter. Fixes #82211.
12835
12836 2007-07-27  Jb Evain  <jbevain@novell.com>
12837
12838         * pedump.c (dump_metadata, dump_metadata_header): dump
12839         versions contained in the metadata header.
12840
12841 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12842
12843         * threads.c: register small_id_table with the GC.
12844
12845 2007-07-27  Mark Probst  <mark.probst@gmail.com>
12846
12847         * threads.c, threads.h, class-internals.h, object-internals.h:
12848         Hazard pointers, to be used by lock-free parallel algorithms.
12849
12850 2007-07-26  Dick Porter  <dick@ximian.com>
12851
12852         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
12853         routine on non-windows platforms, as I've not managed to think of
12854         a non-kludgy way of doing this.  Finishes off bug 78739.
12855
12856 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
12857
12858         * object.c: properly setup interface_bitmap in proxy vtables.
12859
12860 2007-07-25  Marek Habersack  <mhabersack@novell.com>
12861
12862         * appdomain.c (get_shadow_assembly_location): do not use TickCount
12863         to create unique shadow copy target directories, use the domain's
12864         serial number instead. Each domain gets a unique target directory
12865         that way.
12866
12867         * domain.c (mono_domain_create): added code to increment domain
12868         shadow copy serial number and cache the value in the current
12869         domain structure.
12870
12871         * domain-internals.h (struct _MonoDomain): added a new field -
12872         shadow_serial to hold the serial number used in generation of
12873         shadow-copy directories. This is to make sure that the directory
12874         name is unique for each and every domain created. We avoid a race
12875         condition with overriding assemblies already in use by other app
12876         domains.
12877
12878 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
12879
12880         * class.c (mono_bounded_array_class_get): fixed memory leak when 
12881         binding generic parameters.
12882
12883 2007-07-24  Raja R Harinath  <rharinath@novell.com>
12884
12885         * metadata.c (do_mono_metadata_parse_generic_class): Use
12886         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
12887         error.
12888
12889 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
12890
12891         * loader.c, class-internals.h, reflection.c: removed the per-method
12892         generics hashtable: we use the global one through the call of
12893         mono_class_inflate_generic_method ().
12894
12895 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
12896
12897         * class.c, metadata.c, class-internals.h: introduce yet another
12898         generics global cache for inflated methods (fixes 98% of the perf
12899         issue in bug #81806).
12900
12901 2007-07-23  Raja R Harinath  <rharinath@novell.com>
12902
12903         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
12904         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
12905         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
12906         return a MonoGenericInst containing (a copy) of those types.
12907         (mono_metadata_inflate_generic_inst): Update to changes.
12908         (mono_metadata_parse_generic_inst): Likewise.
12909         (mono_get_shared_generic_inst): Likewise.
12910         * reflection.c (mono_class_bind_generic_parameters): Likewise.
12911         (mono_reflection_bind_generic_method_parameters): Likewise.
12912         * metadata-internals.h: Likewise.
12913         * icall.c (free_generic_context): Kill.
12914         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
12915
12916         * reflection.c (reflection_methodbuilder_to_mono_method): Use
12917         mono_metadata_type_dup.
12918         * marshal.c (mono_mb_create_method): Likewise.
12919
12920         * metadata.c (mono_metadata_type_dup): Rename from
12921         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
12922         MonoImage.  Handle a few more cases, esp. when no mempool is given.
12923         * marshal.c, metadata-internals.h: Update to changes.
12924
12925 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12926
12927         * class.c: fixed a small leak for array classes and removed warning.
12928
12929 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
12930
12931         * loader.c (mono_method_get_param_token): Make this work on generic methods.
12932         Return 0x8000000 for return parameters. Fixes #82161.
12933
12934 2007-07-21  Marek Habersack  <grendello@gmail.com>
12935
12936         * appdomain.c (get_shadow_assembly_location): append the current
12937         ticks value to the path. Avoids overwriting the same assemblies by
12938         several threads at the same time.
12939
12940 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
12941         and Raja R Harinath  <rharinath@novell.com>
12942
12943         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
12944         Simplify slightly.
12945         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
12946         property for testing if a method is a generic method definition.
12947
12948 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
12949
12950         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
12951
12952 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12953
12954         * verify.c: used function from private branch, reverted to the one in class.h 
12955
12956 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12957
12958         * verify.c: a typo slipped in and the code wont compile
12959
12960 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12961
12962         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
12963         disabled box instruction as it is doing the wrong thing
12964         improved stack dump messages, now it is easier to debug type related issues
12965
12966
12967 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
12968
12969         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
12970
12971 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12972
12973         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
12974         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
12975         grouped with class and valuetype. This change will simply 
12976         the code as it should be handled just like unmanaged pointers.
12977
12978 2007-07-19  Mark Probst  <mark.probst@gmail.com>
12979
12980         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
12981
12982 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12983
12984         * verify.c: several stack merge issues fixed, reference comparisons now
12985         check the type size. strict type check now works correctly.
12986         added more uses of IS_MANAGED_POINTER macro.
12987         fixed issues pointed by running the test suite against .net.
12988         
12989
12990 2007-07-19  Mark Probst  <mark.probst@gmail.com>
12991
12992         * class.c, loader.c, class-internals.h: Removed the
12993         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
12994         defines.
12995
12996         * icall.c: Better error checking in some internal reflection
12997         methods.
12998
12999 2007-07-18  William Holmes  <billholmes54@gmail.com>
13000
13001         * filewatcher.c : removed unused variable 'filename' in 
13002           ves_icall_System_IO_FSW_SupportsFSW
13003
13004 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
13005
13006         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
13007         obsolete, removed.
13008
13009 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
13010
13011         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
13012         
13013         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
13014
13015 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
13016
13017         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
13018         Implement generics support.
13019         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13020
13021         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
13022         type_args and method_args arguments.
13023         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
13024         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13025         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
13026
13027 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
13028
13029         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
13030           It adds a rootimage parameter to mono_reflection_get_type_internal,
13031           adds new function mono_reflection_get_type_with_rootimage and use
13032           the rootimage to resolve the types instead of the current image
13033
13034 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
13035
13036         * culture-info-table.h: Forgot to update after r78304.
13037
13038 2007-07-13  Raja R Harinath  <rharinath@novell.com>
13039
13040         * class.c (mono_class_is_open_constructed_type)
13041         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
13042
13043 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
13044
13045         * class.c (mono_bounded_array_class_get):  method fails if used with
13046         an incomplete TypeBuilder enum (no basetype field), fixed it by 
13047         avoiding calculating the size for such array as it cannot be instantiated.
13048         Fix bug #82015
13049
13050 2007-07-12  Raja R Harinath  <rharinath@novell.com>
13051
13052         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
13053         field.
13054         * metadata.c, reflection.c: Update to changes.
13055
13056 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
13057
13058         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
13059         mono_class_is_valid_enum, they are used to valide a enum when loading.
13060         * reflection.c: used new functions to throw TypeLoadException when and
13061         invalid enum is build with TypeBuilder. Fixes #82018
13062   
13063 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13064
13065         * object.c: forgot commit of mono_class_setup_methods () to access
13066         iface->methods.
13067         * object-internals.h: added a few more handy fields to
13068         MonoIMTCheckItem.
13069
13070 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
13071
13072         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
13073         iface->methods.
13074
13075 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
13076
13077         * class-internals.h, object-internals.h, object.c: IMT-based
13078         interface invocation core from Massimiliano Mantione
13079         (massi@ximian.com) with a reworked arch-specific interface,
13080         bsearch implementation and a few bugfixes and memory savings by me.
13081
13082 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
13083
13084         * class.c (mono_class_create_from_typedef): mono would segfault if 
13085         an enum did not have a __value field. It now throws a TypeLoadException
13086         for such cases. Fix bug #82022
13087
13088 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
13089
13090         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
13091
13092 2007-07-09  Mark Probst  <mark.probst@gmail.com>
13093
13094         * class.c (mono_class_init): If a class is already inited but has
13095         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
13096
13097 2007-07-09  Mark Probst  <mark.probst@gmail.com>
13098
13099         * class.c: Properly handle the case of an unimplemented interface
13100         method.  Fixes: 81673.
13101
13102 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
13103
13104         * class-internals.h, object.c: cleanup patch from massi: use
13105         MonoVTable->interface_bitmap since the vtable interfaces offset array
13106         is going away.
13107
13108 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
13109
13110         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
13111         GetMDStreamVersion icall instead.
13112
13113 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
13114
13115         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
13116         not use mono_dl_build_path() with a full library name: makes
13117         fallbacks to libgaim and libfam work.
13118
13119 2007-07-06  William Holmes  <billholmes54@gmail.com>
13120
13121         * assembly.c: Added a continue statement in probe_for_partial_name when
13122          parse_assembly_directory_name fails.  Fixes : 82002
13123
13124 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
13125
13126         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
13127         and added a verification  for TYPEDBYREF.
13128         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
13129         make native int interchangeable with int32 and some small cleanup and formating.
13130         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
13131         handle byref of byref.
13132         * verify.c (push_local): handle byref of byref.
13133         * verify.c (do_binop): invalid mix of values is unverifiable
13134         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
13135         added visibility checks
13136         * verify.c (field related method): added visibility checks
13137         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
13138
13139 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
13140
13141         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
13142         string.
13143
13144 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
13145
13146         * profiler.c (mono_profiler_load): Fix an off-by-one error.
13147
13148         * marshal.c (emit_marshal_string): When returning a string from managed code,
13149         allways make a copy even for unicode strings. Fixes #81990.
13150
13151 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
13152
13153         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
13154         of byref generic inst types (bug #81997).
13155
13156 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
13157
13158         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
13159         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
13160
13161 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
13162
13163         * marshal.c (emit_marshal_string): Add support for unicode strings in
13164         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
13165
13166 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
13167
13168         * verify.c: field load/store are now verified, missing only access checks now
13169
13170 2007-06-28  Martin Baulig  <martin@ximian.com>
13171
13172         * mono-debug.c (mono_debug_debugger_version): New public variable.
13173
13174 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
13175
13176         * locales.c: When constructing DateTimeFormat or NumberFormat for
13177         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
13178         MonoCultureInfo contructed from the current locale is always
13179         read-only and has UseUserOverride set to true. All MonoCultureInfo
13180         instances returned for GetCultures have both IsReadOnly and
13181         UseUserOverride set to true. Fixes part of bug #81930.
13182
13183 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
13184
13185        * icall-def.h: Update System.__ComObject icalls
13186        * marshal.c: Avoid managed transition (and object creation)
13187        when looking up COM interface in RCW.
13188        * marshal.h: Ditto.
13189        
13190        Code is contributed under MIT/X11 license.
13191
13192 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
13193
13194         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
13195         to avoid crashes during assembly unloading.
13196
13197 2007-06-22  Raja R Harinath  <rharinath@novell.com>
13198
13199         Fix MethodInfo.IsGenericMethodDefinition
13200         * reflection.c (mono_reflection_bind_generic_method_parameters):
13201         Rearrange code to ensure we always uses a generic method definition.
13202         * class.c (mono_class_inflate_generic_method_full): Set
13203         'generic_container' field only for generic method definitions.
13204         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
13205         Use presense of 'generic_container' field as indication of being a
13206         generic method definition.
13207
13208 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
13209
13210         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13211
13212         * object-internals.h: Reflect changes in the layout of the managed Delegate
13213         class.
13214         
13215         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
13216         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
13217         runtime memory used by the dynamic method. Fixes #77146.
13218
13219 2007-06-21  Dick Porter  <dick@ximian.com>
13220
13221         * file-io.h: 
13222         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
13223         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
13224         81767.
13225
13226 2007-06-21  Raja R Harinath  <rharinath@novell.com>
13227
13228         * reflection.c (method_encode_methodspec): Add a tripwire.
13229         * class.c (inflate_generic_type): The fully open generic type is
13230         not the same as the generic type definition.
13231
13232 2007-06-21  Martin Baulig  <martin@ximian.com>
13233
13234         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
13235
13236         * mono-debug-debugger.h
13237         (MonoDebuggerBreakpointInfo): Removed.
13238         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
13239         (mono_debugger_remove_breakpoint): Likewise.
13240         (mono_debugger_breakpoint_callback): Likewise.
13241         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
13242
13243 2007-06-21  Raja R Harinath  <rharinath@novell.com>
13244
13245         * metadata.c (mono_metadata_lookup_generic_class): The fully open
13246         generic type is not the same as the generic type definition.
13247         * class.c (mono_generic_class_get_class): Likewise.
13248
13249 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
13250
13251         * icall.c: The second argument to 
13252         System.Reflection.MethodBase.GetMethodFromHandleInternalType
13253         is a MonoType not a MonoClass.
13254
13255 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
13256
13257         * verify.c: support for function pointers in the verifier
13258
13259 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
13260
13261         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
13262
13263 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
13264
13265         * assembly.c: removed Mono.Data.SqliteClient from the list of
13266         forward-compatible assemblies as it breaks the ABI (bug #81899).
13267
13268 2007-06-19  Raja R Harinath  <rharinath@novell.com>
13269
13270         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
13271         lookup/update with the loader lock.
13272         * reflection.c (mono_class_bind_generic_parameters): No need to
13273         protect mono_metadata_lookup_* with the loader lock.
13274         * class.c (inflate_generic_type): Likewise.
13275         
13276         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
13277         on a generic instantiated type.
13278
13279 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
13280
13281         *verify.c: produce meanfull error messages on verification error
13282         *verify.c: fixed some cases of verification errors reported as validation errors
13283         *pedump.c: fixed the error name array, now it shows validation errors properly
13284         *verify.h: fixed the contant that should be used for verification errors
13285
13286 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
13287
13288         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
13289         for bug #77596, 81858 and 80743 (generics data structures on domain
13290         unload).
13291
13292 2007-06-15  Raja R Harinath  <rharinath@novell.com>
13293
13294         Avoid allocating 'MonoGenericContext' on the heap.
13295         * class-internals (_MonoMethodInflated::context): Make field
13296         inline, not a pointer.
13297         * loader.c (method_from_methodspec): Allocate 'new_context' on the
13298         stack.  Use the context embedded within the inflated method as the
13299         hash key, rather than 'new_context'.
13300         * class.c (inflate_generic_context): Simplify.  Return a struct
13301         rather than allocating on the heap.
13302         (mono_class_inflate_generic_method_full): Update to changes.  Now,
13303         doesn't salt away a copy of the context -- simplifying the
13304         lifetime rules of a 'MonoGenericContext *'.
13305         (mono_method_get_context): Return pointer to embedded context.
13306         (setup_generic_array_ifaces): Allocate temporary context on stack.
13307         * reflection.c (inflate_mono_method): Likewise.
13308         (mono_reflection_bind_generic_method_parameters): Likewise.
13309         Use the context embedded within the inflated method as the hash key.
13310
13311         Avoid a source of allocation of 'MonoGenericContext'.
13312         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
13313         and 'cached_context' fields into embedded 'MonoGenericContext' field.
13314         * class.c: Update to changes.
13315         (mono_generic_class_get_context): Simplify drastically.  Now just
13316         returns a pointer to the field.
13317         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
13318         argument as a const pointer.
13319         (mono_metadata_generic_context_equal): Likewise.
13320         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
13321         Update to changes.
13322
13323 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
13324
13325         * verify.c improved the handling of brtrue/brfalse, factored out common code
13326
13327 2007-06-14  Raja R Harinath  <rharinath@novell.com>
13328
13329         Kill MonoGenericMethod.
13330         * class-internals.h (MonoGenericContext::method_inst): Rename from
13331         'gmethod' and convert to a MonoGenericInst.
13332         (MonoGenericMethod): Remove.
13333         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
13334         * loader.c (method_from_methodspec): Update to changes.  Use a
13335         MonoGenericContext as the key to the hashtable.
13336         * metadata.c (mono_metadata_generic_context_equal): Rename from 
13337         'mono_metadata_generic_method_equal' and take MonoGenericContext.
13338         (mono_metadata_generic_context_hash): Likewise from
13339         'mono_metadata_generic_method_hash'.  Change hash function.
13340         (mono_metadata_load_generic_params): Update to changes.
13341         (mono_get_shared_generic_method): Remove.
13342         * metadata-internals.h (mono_get_shared_generic_method): Remove.
13343         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
13344         (inflate_generic_context): Likewise.
13345         (mono_class_inflate_generic_method_full): Likewise.
13346         (setup_generic_array_ifaces): Likewise.
13347         (mono_class_create_from_typespec): Likewise.
13348         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
13349         (method_encode_methodspec): Update callsite.
13350         (reflection_methodbuilder_to_mono_method): Update to changes.
13351         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
13352         MonoGenericContext as the key to the hashtable.
13353         (inflate_mono_method): Update to changes.
13354
13355         * class-internals.h (MonoGenericMethod::container): Remove.
13356         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
13357
13358 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
13359
13360         * profiler-private.h, profiler.c, profiler.h: added API to profile
13361         exception events.
13362
13363 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
13364
13365         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
13366
13367 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
13368
13369         * verify.c: method invocation is now validated, now we verify parameter types on stack.
13370         Fixed overflow and underflow not aborting the verification process.
13371
13372 2007-06-13  Mark Probst  <mark.probst@gmail.com>
13373
13374         * class-internals.h (MonoStats): Added stats entries for dynamic
13375         code allocations.
13376
13377 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
13378
13379         * loader.c (mono_free_method): Free header->locals and header->clauses.
13380
13381         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
13382         dynamic case.
13383
13384         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
13385
13386         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
13387
13388 2007-06-12  Raja R Harinath  <rharinath@novell.com>
13389
13390         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
13391         the tables.
13392
13393 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13394
13395         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
13396
13397 2007-06-11  Raja R Harinath  <harinath@gmail.com>
13398
13399         MonoGenericMethod on a diet
13400         * class-internals.h (_MonoMethodInflated::reflection_info): Move
13401         here ...
13402         (_MonoGenericMethod::reflection_info): ... from here.
13403         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
13404         Update to changes.
13405         * reflection.c (inflate_mono_method): Likewise.
13406         (mono_reflection_bind_generic_method_parameters): Likewise.
13407
13408 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13409
13410         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
13411         *verify.c: factored long ldarg forms to share code with short forms
13412
13413 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13414
13415         *verify.c: fixed code formating factored some duplicate code
13416         into a new function
13417
13418         *verify.h: fixed binary incompatibility introduced earlier
13419
13420         *pedump.c: fixed formating
13421
13422 2007-06-11  Raja R Harinath  <harinath@gmail.com>
13423
13424         Fix assertion when disassembling Mono.C5.dll
13425         * loader.c (method_from_methodspec): Avoid inflating a method
13426         twice with the same context.  If the methodref is inflated, use
13427         the declaring method instead.
13428
13429         * class.c (mono_class_from_generic_parameter): Fix case similar to
13430         bug #81830 handled below, but for method containers.
13431
13432 2007-06-10  Raja R Harinath  <harinath@gmail.com>
13433
13434         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
13435         get_shared_generic_class.  Directly inflate the instance.
13436         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
13437         (inflate_generic_class): Delete.
13438         (get_shared_generic_class): Delete.  Move setting of
13439         'cached_class' and 'cached_context' ...
13440         * metadata.c (mono_metadata_lookup_generic_class): ... here.
13441
13442         * metadata.c (mono_metadata_lookup_generic_class): Change
13443         signature to take the components of a MonoGenericClass rather than
13444         an allocated MonoGenericClass.  Change semantics to be intern-like.
13445         * reflection.c (mono_class_bind_generic_parameters): Update to
13446         changes.  Make locking region tighter.
13447         * class.c (inflate_generic_class): Update to changes.
13448         (get_shared_generic_class): Likewise.
13449         * metadata-internals.h: Likewise.
13450
13451         * reflection.c (mono_class_bind_generic_parameters): Take and
13452         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
13453         (mono_reflection_bind_generic_parameters): Use
13454         'mono_class_bind_generic_parameters' rather than duplicate the code.
13455         * class.c (mono_bounded_array_class_get): Update to changes.
13456         * object-internals.h: Likewise.
13457
13458         * reflection.c (mono_class_bind_generic_parameters): Only support
13459         parameterizing generic type definitions.  Remove support for other
13460         open types.
13461
13462 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
13463
13464         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
13465
13466         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
13467         in the dynamic case.
13468
13469 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
13470
13471         * threads.c: When cleaning up thread, reset the Background bit.
13472         Fixes bug #81720.
13473
13474 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
13475
13476        * metadata.c: Move variable declarations to top of scope.
13477        * verify.c: Move variable declarations to top of scope.
13478
13479        Code is contributed under MIT/X11 license.
13480
13481 2007-06-08  Raja R Harinath  <rharinath@novell.com>
13482
13483         * reflection.c (mono_class_bind_generic_parameters): Replace
13484         open-coded loop with mono_metadata_inflate_generic_inst.
13485
13486         * class.c (get_shared_generic_class): Don't call
13487         mono_get_shared_generic_inst.  Use the container's own
13488         'class_inst'.
13489
13490         * metadata.c (mono_metadata_load_generic_params): Move
13491         initialization of 'context' field here from ...
13492         * class.c (mono_class_create_from_typedef): ... here, and ...
13493         * loader.c (mono_get_method_from_token): ... here.
13494
13495         * class.c (get_shared_generic_class): Rename from
13496         mono_get_shared_generic_class and make static.
13497         (mono_get_shared_generic_inst): Move to metadata.c.
13498         * loader.c (mono_get_shared_generic_method): Likewise.
13499         * class-internals.h, metadata-internals.h: Update to changes.
13500
13501         Fix #81830
13502         * class.c (mono_class_from_generic_parameter): Don't assume a
13503         generic container owner exists.  Generic containers from monodis
13504         don't have any.
13505
13506 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
13507
13508         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
13509         * verify.h: new typedefs to returns the non-verifiable status
13510         * verify.c: initial implementation of generics, stack merging and object compatibility check
13511
13512 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13513
13514         * class.c, image.c, class-internals.h (MonoImage): class_cache is
13515         a MonoInternalHashTable again (fixed bug in internal hash table
13516         code).
13517
13518 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13519
13520         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
13521         MonoInternalHashTable again (fixed bug in internal hash table
13522         code).
13523
13524 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13525
13526         * class.c, image.c, class-internals.h, domain.c,
13527         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
13528         changes.  Have to figure out what makes them break the SWF
13529         regression.
13530
13531 2007-06-04  Mark Probst  <mark.probst@gmail.com>
13532
13533         * class.c, image.c, class-internals.h (MonoImage): class_cache is
13534         a MonoInternalHashTable now.
13535
13536 2007-06-04  Mark Probst  <mark.probst@gmail.com>
13537
13538         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
13539         MonoInternalHashTable now.
13540
13541 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
13542
13543         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
13544         invoke_impl code.
13545
13546         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
13547
13548         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
13549         dependent trampoline.
13550
13551         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13552
13553         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
13554
13555 2007-05-29  Robert Jordan  <robertj@gmx.net>
13556
13557         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
13558
13559 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
13560
13561         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
13562
13563 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
13564
13565        * marshal.c: Fix interface lookup loops for
13566        cominterop_get_com_slot_for_method and 
13567        cominterop_get_method_interface. Only need to lookup
13568        if type is a class, else use interface type method is on.
13569
13570        Code is contributed under MIT/X11 license.
13571
13572 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
13573
13574         * reflection.c: HasSecurity can be present even if no specially 
13575         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
13576         SecurityAttribute). Fix CAS regression tests on buildbot.
13577
13578 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
13579
13580        * appdomain.c: Add configure checks for header files.
13581        * image.c: Add configure checks for header files.
13582        * file-io.c: Add configure checks for header files.
13583        * debug-mono-symfile.c: Add configure checks for header files.
13584        * threadpool.c: Add configure checks for header files.
13585        * console-io.c: Add configure checks for header files.
13586        * profiler.c: Add configure checks for header files.
13587        * rawbuffer.c: Add configure checks for header files.
13588        * icall.c: Add configure checks for header files.
13589        * rand.c: Add configure checks for header files.
13590        * socket-io.c: Add configure checks for header files.
13591
13592        Code is contributed under MIT/X11 license.
13593
13594 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
13595
13596         * reflection.c (mono_custom_attrs_from_builders): Remove the 
13597         assertion as it breaks the build.
13598         
13599         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
13600
13601         * reflection.c (lookup_custom_attr): Make a copy here too.
13602
13603         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
13604         dynamic images.
13605
13606         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
13607         images.
13608
13609         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
13610         info.
13611
13612 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
13613
13614         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
13615         (load_cattr_value): Ditto.
13616
13617 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
13618
13619         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
13620
13621 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
13622
13623         * threads.c: In "start_wrapper", set apartment_state to MTA if
13624         apartment_state is Unknown and we're running on 2.0 profile or
13625         higher.
13626         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
13627         to main method, then set apartment_state to Unknown on 1.0 profile,
13628         and MTA on 2.0 profile.
13629
13630 2007-05-16  Jb Evain  <jb@nurv.fr>
13631
13632         * class-internals.h (MonoDefaults): Add an attribute_class and
13633           customattribute_data_class.
13634         * domain.c (mono_init_internal): Populate them.
13635         * reflection.c: Use them to remove duplicates. Make a vew
13636         MonoClass variables `static'.
13637
13638 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
13639
13640         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
13641         step in implementing IMT, so that all isinst checks now can go
13642         through the bitmap.
13643         This was needed because vtables for TransparentProxy need to look
13644         like the vtable of the "target" class, so they need to point to
13645         its interface bitmap directly.
13646
13647         * object.c: inside "mono_class_create_runtime_vtable" and
13648         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
13649
13650 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
13651
13652         * object-internals.h
13653           culture-info.h : added territory field in MonoCulture and
13654           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
13655         * locales.c : fill territory field above too.
13656         * culture-info-table.h : regenerated.
13657
13658 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
13659
13660         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
13661         Fixes #81599.
13662
13663 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
13664
13665         * object.c: Always initialize apartment, even if 
13666         there is no custom attributes on entry point.
13667         
13668         Code is contributed under MIT/X11 license.
13669
13670 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
13671
13672         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
13673         * metadata.c: If no encoding is set, check for unicode
13674         on class.
13675         
13676         Code is contributed under MIT/X11 license.
13677
13678 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
13679
13680         * threads.c: Handle if mono_thread_current returns NULL 
13681         
13682         Code is contributed under MIT/X11 license.
13683
13684 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
13685
13686         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
13687         in start_wrapper. Added mono_thread_init_apartment_state and
13688         mono_thread_cleanup_apartment_state.
13689         * object.c: Initialize thread apartment state on main thread
13690         by checking for STAThreadAttribute on entry point.
13691         * object-internals.h: Add apartment_state field to MonoThread.
13692         * threads-types.h: Add unmanaged definition of 
13693         System.Threading.ApartmentState, MonoThreadApartmentState.
13694         
13695         Code is contributed under MIT/X11 license.
13696         
13697 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
13698
13699         * class.c: Fix windows build.
13700         * class-internals.h: Fix windows build.
13701         
13702         Code is contributed under MIT/X11 license.
13703
13704 2007-05-08  Robert Jordan  <robertj@gmx.net>
13705
13706         * process.c (CreateProcess_internal):
13707         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
13708         .CreateNoWindow was specified. Fixes #81496.
13709
13710 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
13711
13712         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
13713         step in implementing IMT, replaced it with two compact arrays
13714         (interfaces_packed and interface_offsets_packed) and a bitmap that
13715         is used for isinst checks (interface_bitmap).
13716
13717         * class.c: (compare_interface_ids): compare function to pass to
13718         bsearch when looking for an interface with a given id.
13719         (mono_class_interface_offset): reimplemented using bsearch on
13720         interfaces_packed, getting the offset from interface_offsets_packed.
13721         (print_implemented_interfaces): utility debugging function.
13722         (setup_interface_offsets): reworked to initialize interfaces_packed,
13723         interface_offsets_packed and interface_bitmap.
13724
13725         * object.c: replaced all accesses to "MonoClass.interface_offsets"
13726         with uses of interfaces_packed and interface_offsets_packed.
13727
13728 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
13729
13730         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
13731         mono_class_interface_offset prototype to wrap all accesses to
13732         "MonoClass.interface_offsets".
13733
13734         * class.c: Implemented mono_class_interface_offset, and wrapped all
13735         accesses to "MonoClass.interface_offsets".
13736
13737         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
13738         "MonoClass.interface_offsets".
13739
13740 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
13741
13742         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
13743         GetMethodFromHandle overloads (bug #78637).
13744
13745 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
13746
13747         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
13748         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
13749
13750 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
13751
13752         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
13753         #81498.
13754
13755         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
13756         gracefully.
13757         (mono_custom_attrs_from_index): Ditto.
13758
13759         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
13760         Fixes #81501.
13761
13762 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
13763
13764         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
13765         is now allocated from a mempool.
13766
13767 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
13768
13769         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
13770         caller holds threads_lock, leading to deadlocks. Fixes #81476.
13771
13772 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
13773
13774         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
13775         mono_loader_clear_error () too late. Fixes #81463.
13776
13777 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
13778
13779         * culture-info-table.h : regenerated.
13780
13781 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
13782
13783         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
13784         is missing.
13785
13786 2007-04-25  Dick Porter  <dick@ximian.com>
13787
13788         * Makefile.am: Put the mingw enforced-optimisation back into the
13789         PLATFORM_WIN32 section.
13790
13791 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
13792
13793         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
13794         patch.
13795
13796         * image.c (mono_image_load_module): New API function to load a module reference.
13797
13798         * image.c (load_modules): Load modules lazily. Fixes #80812.
13799
13800         * class.c (mono_class_from_typeref): Use mono_image_load_module.
13801         
13802         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
13803
13804         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
13805         to mono_image_load_module_dynamic.
13806
13807 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
13808
13809         * marshal.c: Fix calling convention for CCW on non-windows
13810         platforms. STDCALL on windows, CDECL everywhere else to work 
13811         with XPCOM and MainWin COM.
13812         
13813         Code is contributed under MIT/X11 license.
13814
13815 2007-04-23  Martin Baulig  <martin@ximian.com>
13816
13817         Fix #80969.
13818
13819         * loader.c
13820         (method_from_memberref): Added `gboolean *used_context' argument.
13821         (mono_get_method_from_token): Likewise.
13822         (mono_get_method_full): Don't insert the method in the cache when
13823         `used_context' is true.
13824
13825 2007-04-23  Raja R Harinath  <rharinath@novell.com>
13826
13827         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
13828
13829         * reflection.c (mono_reflection_bind_generic_parameters): Don't
13830         create new MonoTypes for returned types.
13831         * class.c (mono_generic_class_get_class): Export mono-internal.
13832         * class-internals.h: Update to changes.
13833
13834 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
13835
13836         * threadpool.c, threadpool.h, icall-def.h: patch from
13837         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
13838
13839 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
13840
13841         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
13842         
13843         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
13844
13845         * threads.c (mono_thread_get_stack_bounds): New helper function.
13846
13847         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
13848         Correctly compute stack bounds when attaching. Fixes #81394.
13849
13850 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
13851
13852         * reflection.c: fix handling of doubles in custom attributes
13853         for the arm-fpa format (bug #81368).
13854
13855 2007-04-18  Raja R Harinath  <rharinath@novell.com>
13856
13857         * reflection.c (assembly_add_win32_resources): Mildly relax an
13858         bounds check to let the end pointer point just past the end of the
13859         allocated buffer.  (may fix #81384)
13860
13861 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
13862
13863         * culture-info-table.h : regenerated.
13864
13865 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
13866
13867         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
13868         the thread is aborted early.
13869
13870 2007-04-05  Dick Porter  <dick@ximian.com>
13871
13872         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
13873         FindFirstFile()/FindNextFile() to find entries.  This lets the
13874         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
13875         81038.
13876
13877         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
13878         the parameters of
13879         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
13880
13881 2007-04-04  Martin Baulig  <martin@ximian.com>
13882
13883         * debug-helpers.c
13884         (mono_method_desc_full_match): Add support for nested classes.
13885
13886 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
13887
13888         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
13889
13890 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
13891
13892         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
13893         waiting for too many threads.
13894
13895 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
13896
13897         * environment.c: Fix return value check on uname so we can get the 
13898         executing version on Solaris operating systems.
13899
13900 2007-03-28  Jb Evain  <jbevain@gmail.com>
13901
13902         * class.c (mono_type_get_name_recurse): Complete the
13903         fix for the creation of assembly qualified names for
13904         pointer types. Fixes #81208.
13905
13906 2007-03-27  Dick Porter  <dick@ximian.com>
13907
13908         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
13909         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
13910         changed.
13911
13912         * threads.c
13913         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
13914         the value of ReleaseMutex().
13915
13916 2007-03-27  Dick Porter  <dick@ximian.com>
13917
13918         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
13919         in little-endian order, not network endian, so must be converted
13920         to host endian here.  Fixes bug 80593.
13921
13922 2007-03-22  Jb Evain  <jbevain@gmail.com>
13923
13924         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
13925         qualified names for pointer types. Fixes #81208.
13926
13927 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
13928
13929         * marshal.c: Add support for PreserveSigAttribute. 
13930         
13931         Code is contributed under MIT/X11 license.
13932
13933 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
13934
13935         * process.c: Fix endianness issues. Fixes #81126.
13936
13937         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
13938         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
13939
13940         * image.c (mono_image_lookup_resource): Make this work on big-endian
13941         machines.Change API contract so the caller needs to free the return value.
13942         
13943         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
13944         API change.
13945         
13946 2007-03-14  Martin Baulig  <martin@ximian.com>
13947
13948         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
13949         mono_type_get_desc() as well.
13950
13951 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
13952
13953         * icall.c:  Fix environ access in VS.  
13954         
13955 2007-03-13  Alp Toker  <alp@atoker.com>
13956
13957         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
13958         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
13959         #63841.
13960
13961 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
13962
13963         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
13964         circular references among dynamic methods. Fixes #81091.
13965
13966         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
13967
13968 2007-03-09  Martin Baulig  <martin@ximian.com>
13969
13970         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
13971
13972 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
13973
13974         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
13975         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
13976         
13977         Code is contributed under MIT/X11 license.
13978         
13979 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
13980
13981         * loader.c: Reapply patch for bug #79424.
13982
13983 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
13984
13985         * metadata.c (mono_type_to_unmanaged): Only convert object to
13986         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
13987
13988 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
13989
13990         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
13991         (and incorrectly set) is_reference field from MonoGenericInst.
13992
13993 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
13994
13995         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
13996         a little earlier.
13997
13998         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
13999
14000         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
14001
14002 2007-03-05  Miguel de Icaza  <miguel@novell.com>
14003
14004         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
14005         FileOptions.1 value to mean "temporary", map that to
14006         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
14007
14008         Fixes 80688
14009
14010 2007-03-03  Marek Habersack  <mhabersack@novell.com>
14011
14012         * appdomain.c: implement MS .Net style shadow copying. Copies of
14013         the assemblies are made in a subdirectory of the dynamic base
14014         directory, the assembly names are preserved.
14015         Copy .mdb and .config files along with the assemblies being shadowed.
14016
14017 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
14018
14019         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
14020         (emit_marshal_handleref): Ditto.
14021
14022         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
14023         on Visual C++. Fixes #80671.
14024
14025 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
14026
14027         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
14028         for clone operations.
14029
14030 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
14031
14032         * marshal.c: Fix warnings.
14033
14034 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
14035
14036         * loader.c: allow case-insensitive matching of the dll name
14037         in dllmap handling when prefixed with "i:".
14038
14039 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
14040
14041         * threads.c: Fix #ifdef for dummy_apc function for VS.
14042
14043 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
14044
14045         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
14046
14047 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
14048         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
14049         giving precedence to the methods with a fully qualified name
14050         (InterfaceName.MethodName) when building the interface sections
14051         of the vtable.
14052
14053 2007-02-16  Dick Porter  <dick@ximian.com>
14054
14055         * threadpool.c (append_job): Fix fast-path array handling, so it's
14056         less likely the array will grow exponentially when the load is
14057         heavy.
14058
14059 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14060
14061         * metadata-internals.h, loader.c: fix dllmap lookup order
14062         for non-function maps, too, and prepare for fallback code.
14063
14064 2007-02-12  Robert Jordan  <robertj@gmx.net>
14065
14066         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
14067         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
14068         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
14069         GlobalFree. Fixes a part of bug #77075.
14070
14071 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
14072
14073         * loader.c: implemented typedef parent in field memberref.
14074
14075 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
14076
14077         * marshal.c: Fix warnings and remember to call Release on
14078         IUnknown of RCW.
14079         
14080         Code is contributed under MIT/X11 license.
14081
14082 2007-02-10  Miguel de Icaza  <miguel@novell.com>
14083
14084         * class-internals.h: Add MonoHandleRef definition, and
14085         handleref_class to mono_defaults. 
14086
14087         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
14088         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
14089
14090         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
14091         (do nothing on this stage)
14092         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
14093         (emit_marshal_handleref): New method, used for argument handling
14094         of HandleRefs. 
14095
14096 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
14097
14098         * class.c (mono_class_setup_parent): Lazily init com types.
14099         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
14100         init com types.
14101         * object.c (mono_remote_class_vtable): Lazily init com types.
14102         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
14103         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
14104         * domain-internals.h: Expose mono_init_com_types.
14105         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
14106         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
14107         Add support for COM Callable Wrapper marshalling.
14108         * marshal.h: Add icall definitions.
14109         * gc.c: Handle freeing of CCWs in finalizer code.
14110         
14111         Code is contributed under MIT/X11 license.
14112
14113 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
14114
14115         * reflection.c: changed all the signature encoding code to use
14116         a variable-sized buffer.
14117
14118 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14119
14120         * marshal.c: locking fixes: never take the loader lock
14121         or other runtime locks when holding the marshal lock
14122         (fixes bug#80664).
14123
14124 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
14125
14126         * marshal.c: make the delegate function pointer mapping
14127         work for the moving GC.
14128
14129 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
14130
14131         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
14132         for bug #80618.
14133
14134 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14135
14136         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
14137         gmodule.
14138
14139 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
14140
14141         * threadpool.c: made the code moving-GC safe.
14142
14143 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
14144
14145         * assembly.c, boehm-gc.c, class-internals.h, class.c,
14146         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
14147         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
14148         warning cleanup.
14149         * reflection.c: warning cleanup, some threading and moving GC fixes.
14150
14151 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
14152
14153         * class.c, loader.c: create the needed Set/Get/Address array methods
14154         as well as the .ctors in mono_class_init (), fixes bug #80567.
14155
14156 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
14157
14158         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
14159         we doesn't decrease its alignment. Should fix the sparc build.
14160
14161 2007-01-24  Dick Porter  <dick@ximian.com>
14162
14163         * socket-io.c
14164         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
14165         Create the returned object if we need to ignore an unsupported
14166         socket option.  Fixes a segfault reported by Atsushi.
14167
14168 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14169
14170         * class.c, object.c: restrict GC-tracked fields to
14171         UIntPtr fields used inside corlib, so we provide better
14172         type info to the GC and also allow broken packing as in
14173         bug #80580.
14174
14175 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
14176
14177         * sgen-gc.c: removed duplicated function.
14178
14179 2007-01-19  Miguel de Icaza  <miguel@novell.com>
14180
14181         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
14182         value that means that the value is not supported, but that we
14183         should not return a failure, but instead report this as a
14184         successful operation.
14185
14186 2007-01-19  Raja R Harinath  <rharinath@novell.com>
14187
14188         Fix tests/bug79956.2.il
14189         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
14190         (mono_generic_class_get_class): If the generic definition in an
14191         enum, copy over other fields related to it.
14192
14193 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
14194
14195         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
14196         genericinst enums (bug #79215).
14197
14198 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
14199         * class.c: Fix bug 80307.
14200
14201 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
14202
14203         * image.c: if the file table is not present, try to load
14204         all the modules, since we don't have info about them
14205         having or not metadata (bug #80517).
14206         * assembly.c: allow mono_assembly_load_references () to
14207         work for netmodules.
14208
14209 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14210
14211         * image.c, metadata-internals.h, object.c: execute module
14212         cctors when running on the 2 runtime if present (bug #80487).
14213
14214 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14215
14216         * icall.c: optimized InitializeArray() on bigendian.
14217
14218 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
14219
14220         * icall.c: fix for the broken ARM FPA double format.
14221
14222 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
14223
14224         * icall.c: handle endian issues for r4 and r8 types, too, in
14225         the InitializeArray() icall.
14226
14227 2007-01-15  Miguel de Icaza  <miguel@novell.com>
14228
14229         * loader.c (mono_loader_error_prepare_exception): Clear the error
14230         once we have extracted the information from it, do this before we
14231         call into the JIT's class loading mechanisms.
14232
14233         * object.c (mono_class_create_runtime_vtable): Do not clear the
14234         loader error before calling mono_class_get_exception_for_failure
14235         as the loader error is needed inside
14236         mono_class_get_exception_for_failure to throw the error (thinko).
14237
14238         Fixes #80521
14239         
14240 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
14241
14242         * reflection.c: align fields rva data so it's faster to load at
14243         runtime.
14244
14245 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14246
14247         Prepare to simplify GenericMethod handling.
14248         * class-internals.h (mono_method_get_context): New accessor function.
14249         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
14250         rather than directly accessing '->context' field.
14251
14252         * class-internals.h (_MonoGenericParam.method): Move ...
14253         (_MonoGenericContainer): ... here.  Add into union with klass field.
14254         * class.c, icall.c, loader.c, metadata.c, reflection.c:
14255         Update to changes.
14256
14257 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
14258
14259         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
14260         the wrapper type enum and reduce relocations.
14261
14262 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14263
14264         * reflection.c (inflate_mono_method): Reuse method instantiation
14265         from the generic method, if available.
14266
14267 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14268
14269         * marshal.c (emit_marshal_variant): Fix conv_arg
14270         type in last commit, based on whether parameter is byref.
14271         
14272 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14273
14274         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
14275         marshalling.
14276         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
14277         MONO_TYPE_OBJECT back for VARIANT support.
14278
14279 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14280
14281         * marshal.c, marshal.h, icall-def.h: Implement 
14282         Marshal.ReAllocCoTaskMem.
14283
14284 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
14285
14286         * marshal.c: memory retention fixes: use the proper
14287         image cache for runtime_invoke method lookups.
14288
14289 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
14290
14291         * mempool.c: added code to help debug mempool allocations.
14292
14293 2007-01-11  Dick Porter  <dick@ximian.com>
14294
14295         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
14296         support (experimenting with faking it with IP_MTU_DISCOVER for
14297         systems that don't have IP_DONTFRAGMENT.)
14298         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
14299         icall.
14300
14301         * icall-def.h: new System.Net.Sockets.Disconnect icall.
14302
14303         * socket-io.h: Add new fields to MonoSocketAsyncResult
14304         corresponding to the new ones in Socket.cs.
14305
14306 2007-01-11  Raja R Harinath  <rharinath@novell.com>
14307
14308         Fix IronPython regression mentioned in #80249
14309         * metadata.c (do_mono_metadata_parse_generic_class): Clear
14310         'cached_context' field, since it may have been initialized as a
14311         side-effect of metadata parsing.
14312
14313         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
14314         (_MonoGenericClass.cached_class): Move here and rename from lone
14315         remaining field of ...
14316         (_MonoInflatedGenericClass): ... this.  Remove.
14317         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
14318         to changes.
14319
14320         Fix mcs/tests/test-128.cs regression.
14321         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
14322         2007-01-10 change below.
14323         [MONO_TYPE_OBJECT]: Recurse into array case.
14324
14325 2007-01-11  Raja R Harinath  <harinath@gmail.com>
14326
14327         * class-internals.h (mono_get_inflated_generic_class): Remove.
14328         * class.c (mono_get_inflated_generic_class): Remove.
14329         (mono_generic_class_get_class): Rename from
14330         mono_class_create_generic.
14331         (mono_class_from_mono_type) [GENERICINST]: Use it.
14332         * reflection.c, metadata.c: Update to changes.  Use
14333         'mono_class_from_mono_type'.
14334
14335 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
14336
14337         * reflection.c: use passed type when encoding an array element
14338         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
14339
14340 2007-01-09  Robert Jordan  <robertj@gmx.net>
14341
14342         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
14343         result arguments (someDelegate.EndInvoke (unrelatedAres)).
14344         Fixes bug #80392.
14345
14346 2007-01-09  Raja R Harinath  <rharinath@novell.com>
14347
14348         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
14349
14350         * object.c (set_value): Avoid aliasing between type->data.klass
14351         and type->data.generic_class.
14352
14353         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
14354
14355 2007-01-08  Raja R Harinath  <rharinath@novell.com>
14356
14357         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
14358         between type->data.klass and type->data.generic_class.
14359
14360 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
14361
14362         * marshal.c: In MS.NET, StringBuilder objects are not copied by
14363         value in out parameters.
14364
14365 2007-01-08  Raja R Harinath  <rharinath@novell.com>
14366
14367         Simplify invariant for MonoGenericClass::klass field.
14368         * class.c (mono_class_create_generic): Verify 'klass' is null.
14369         * metadata.c (do_mono_metadata_parse_generic_class): Don't
14370         initialize 'klass' field.
14371
14372 2007-01-05  Raja R Harinath  <rharinath@novell.com>
14373
14374         Ongoing work to avoid redundant data and simplify invariants.
14375         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
14376         'generic_class', and change type to a GenericInst.
14377         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
14378         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
14379
14380 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
14381
14382         * class.c : skip io-layer under PLATFORM_WIN32.
14383
14384 2007-01-03  Tor Lillqvist  <tml@novell.com>
14385
14386         Fix #80305: In a bundled executable, look in the bundled exe
14387         assembly to determine the runtime version. Add the possibility to
14388         bundle also the machine.config file.
14389         
14390         * assembly.c (mono_assembly_open_from_bundle): Make
14391         non-static. Allow being called even if we have no bundled
14392         assemblies, and return NULL right away in that case.
14393
14394         * domain-internals.h: Declare mono_assembly_open_from_bundle()
14395         here.
14396
14397         * domain.c (app_config_parse): Take an assembly exe file name as
14398         parameter instead of a config file name. Check for a bundled
14399         config file for that assembly by calling
14400         mono_config_string_for_assembly_file() (see below) before looking
14401         for one in the file system.
14402         (get_runtimes_from_exe): Corrsponding change to call of
14403         app_config_parse().
14404         (get_runtimes_from_exe): Check for bundled assembly exe file first
14405         by calling mono_assembly_open_from_bundle(). If no bundled
14406         assembly exe file is found, call mono_image_open() as before to
14407         look it up in the file system.
14408
14409         * mono-config.c: Add variable bundled_machinec_onfig.
14410         (mono_config_string_for_assembly_file): New function.
14411         (mono_config_for_assembly): Move code snippet that looks for a
14412         bundled assembly .config file into the above new function. Call
14413         it.
14414         (mono_register_machine_config, mono_get_machine_config): New
14415         functions to set and retrieve
14416
14417         * assembly.h: Declare mono_register_machine_config().
14418
14419         * mono-config.h: Declare mono_get_machine_config() and
14420         mono_config_string_for_assembly_file().
14421
14422         * icall.c: No declaration of environ necessary on Win32. It is
14423         declared (as a macro expanding to a function call) in stdlib.h.
14424         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
14425         New internal mono function. Returns the value of
14426         mono_get_machine_config() as a Mono string.
14427
14428         * icall-def.h: Add get_bundled_machine_config().
14429
14430 2007-01-04  Raja R Harinath  <rharinath@novell.com>
14431
14432         Remove redundant field
14433         * class-internals.h (_MonoGenericContext.container): Remove field.
14434         * loader.c (mono_method_get_signature_full): Don't parse a
14435         "container" for a signature parse when the signature is inflated
14436         immediately.
14437         (method_from_methodspec): Likewise, for a generic_inst.
14438         * class.c, metadata.c, reflection.c: Update to changes.
14439
14440 2006-01-04  Raja R Harinath  <rharinath@novell.com>
14441
14442         * class-internals.h (_MonoGenericClass): Rename 'context' field to
14443         'cached_context', and change semantics -- it starts off NULL, and
14444         is initialized on demand.
14445         * class.c (mono_generic_class_get_context): New accessor to
14446         replace 'context' field accesses.
14447         (mono_class_get_context): New helper.
14448         (*): Update to changes.
14449         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
14450
14451 2007-01-03  Miguel de Icaza  <miguel@novell.com>
14452
14453         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
14454         before the memcpy.   Fixes Marshal2 regression.
14455
14456 2007-01-02  Jb Evain  <jbevain@gmail.com>
14457
14458         * blob.h: add a MONO_TYPE_ENUM definition
14459         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
14460         fix the encoding of arrays of enums in custom attributes.
14461
14462         Fixes #79666.
14463
14464 2007-01-01  Miguel de Icaza  <miguel@novell.com>
14465
14466         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
14467         string is null terminated, but only cut the string short if it
14468         overflows the buffer.   
14469         
14470         (mono_string_to_byvalstr): Also fix this routine.   The code here
14471         was not properly terminating a string (it was only terminated
14472         because of the previous catch-all memset). 
14473
14474         I left the memset, because I do not know if applications expect
14475         the runtime to clear this region. 
14476
14477         Fixes #79944.
14478
14479         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
14480         Clear the error before returning to unmanaged code to prevent the
14481         runtime from being confused later on (fixes  80420).
14482         (ves_icall_type_from_name): Always call mono_loader_clear_error
14483         after parsing a type that could have failed.
14484         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
14485
14486         * loader.c (mono_loader_clear_error): Fix indentation.
14487
14488 2006-12-28  Martin Baulig  <martin@ximian.com>
14489
14490         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
14491
14492 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
14493
14494         * reflection.c: patch from Rolf Bjarne Kvinge to fix
14495         getting a token for an EnumBuilder.
14496
14497 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
14498
14499         * reflection.c: be more careful in case resource generation
14500         fails to create the data array.
14501
14502 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
14503
14504         * sgen-gc.c: write barrier for clone and fix unregister handles.
14505
14506 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
14507
14508         * reflection.c: some fixes needed in the generics code for the moving GC.
14509
14510 2006-12-22  Robert Jordan  <robertj@gmx.net>
14511
14512         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
14513         account. Fixes bug #80299.
14514
14515 2006-12-21  Raja R Harinath  <rharinath@novell.com>
14516
14517         Fix WaitHandle usage in delegates.
14518         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
14519         * object.c (mono_wait_handle_new): Use the property set method to
14520         initialize the handle.
14521         (mono_wait_handle_get_handle): New.
14522         * threadpool.c (mono_async_invoke): Use it.
14523         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
14524         Likewise.
14525         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
14526
14527 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
14528
14529         * marshal.c (emit_marshal): Call emit_marshal_variant and
14530         emit_marshal_com_interface when applicable.
14531         (emit_marshal_variant, emit_marshal_com_interface): Add
14532         methods for this case and remove if's from emit_marshal_object.
14533         
14534 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
14535
14536         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
14537
14538 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
14539
14540         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
14541         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
14542         and GlobalFree on Windows. Remove FIXME.
14543
14544 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
14545
14546         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
14547         implementation for managed objects.
14548
14549 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
14550
14551         * object.c: implemented code to be used for checking
14552         that no reference field overlaps with non-references.
14553
14554 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
14555
14556         * threadpool.c: fix queue code to be compatible with the
14557         moving GC.
14558
14559 2006-12-18  Miguel de Icaza  <miguel@novell.com>
14560
14561         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
14562         in structures by throwing ArgumentNullException.
14563
14564         (emit_marshal_safehandle): Also when they are null parameters.
14565
14566         (emit_marshal_safehandle): Add support for ref
14567         SafeHandles parameters
14568
14569 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
14570
14571         * profiler.c: updated to use the mono-dl API instead of
14572         gmodule.
14573
14574 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
14575
14576         * profiler.c: updated to use the mono-dl dynamic loading
14577         API instead of gmodule.
14578
14579 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
14580
14581         * profiler.c: use readlink, older versions of glib don't have
14582         g_file_read_link ().
14583
14584 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
14585
14586         * profiler.c: try to detect the path to mono if libc fails to provide
14587         a useful name (bug #80286).
14588
14589 2006-12-16  Raja R Harinath  <rharinath@novell.com>
14590
14591         Fix #80242
14592         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
14593         instance, use the generic type definition instead.
14594         (ves_icall_Type_GetNestedTypes): Likewise.
14595         * class.c (mono_class_create_generic): Always set the
14596         nested_classes of a generic instance to NULL, even if the generic
14597         type definition has nested types.
14598
14599 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
14600
14601         * marshal.c (mono_string_from_bstr): Revert previous Windows change
14602         and fix on Linux.
14603         
14604 2006-12-15  Miguel de Icaza  <miguel@novell.com>
14605
14606         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
14607         my arguments were in the wrong order.   I also fixed the Windows
14608         version which seems to have had the same issue.
14609
14610         (mono_free_bstr): On Unix, this is g_free.
14611         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
14612         conversions (for the tests in corlib to pass).
14613
14614 2006-12-14  Miguel de Icaza  <miguel@novell.com>
14615
14616         * marshal.c (emit_ptr_to_object_conv): For now, ignore
14617         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
14618         exception if a ref SafeHandle in a struct has changed).
14619         
14620         (emit_struct_conv): Do not perform layout checks for classes
14621         derived from SafeHandle, as those are specially handled. 
14622
14623         (emit_object_to_ptr_conv): Add support for
14624         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
14625
14626         (emit_marshal_safehandle): Implement conversion of return values
14627         of safehandles (MARSHAL_ACTION_CONV_RESULT).
14628         
14629         * threads.c: WaitHandle now is compiled with two different handles
14630         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
14631         for 2.0.
14632         
14633         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
14634         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
14635         these routines to cope with both kinds of fields.
14636
14637 2006-12-12  Miguel de Icaza  <miguel@novell.com>
14638
14639         * metadata.c (mono_type_to_unmanaged): Handle the case where
14640         type->data.klass is a SafeHandle, and in that case, return the
14641         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
14642         MONO_MARSHAL_CONV_SAFEHANDLE. 
14643
14644 2006-12-11  Miguel de Icaza  <miguel@novell.com>
14645
14646         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
14647         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
14648         calling emit_marshal_object.
14649
14650         (emit_marshal_safehandle): Implement marshalling of
14651         SafeHandle parameters (no ref support yet).
14652
14653         (MarshalAction): Document the defines as I implement
14654         them for SafeHandle.
14655
14656         (emit_marshal_object): indentation police.
14657
14658         * class-internals.h: Define MonoSafeHandle.
14659         Add safehandle_class to MonoDefaults type.
14660
14661         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
14662         list of classes to check for fields. 
14663
14664         * domain.c (mono_init_internal): Add SafeHandle to the list of
14665         mono_defaults loaded.
14666
14667 2006-12-15  Raja R Harinath  <rharinath@novell.com>
14668
14669         Fix #80253
14670         * reflection.c (mono_reflection_bind_generic_parameters): If the
14671         generic type definition is a type builder, ensure that it is fully
14672         initialized before instantiating it.  Kill some dead code.
14673
14674 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
14675
14676         * object.c: clear the loader_error () before loading
14677         more metadata stuff (bug #80258).
14678
14679 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
14680
14681         * icall.c, icall-defs.h: type modifiers icalls for
14682         parameters and properties.
14683
14684 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
14685
14686         * object.c, icall.c: fixed warnings.
14687
14688 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
14689
14690         * marshal.c: fixed a couple of leaks and coding style in a few places.
14691
14692 2006-12-08  Dick Porter  <dick@ximian.com>
14693
14694         * process.c: Cope with NULL ProcessStartInfo arguments on windows
14695         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
14696         80173.
14697
14698 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
14699
14700         * process.c: ProcessStartInfo may have only filename set and
14701         arguments can be NULL.
14702
14703 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
14704
14705         * icall.c: fix leak found by Robert Jordan.
14706
14707 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
14708
14709         * marshal.c, marshal.h: generate managed method to access an element
14710         of a multi-dimensional array.
14711
14712 2006-11-30  Paolo Molaro (lupus@ximian.com)
14713
14714         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
14715
14716 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
14717
14718         * icall.c: back out GetFields () fix until the serialization code is
14719         fixed to not depend on the incorrect behaviour.
14720
14721 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
14722
14723         * profiler.c: provide defaults if none are set.
14724
14725 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
14726
14727         * Makefile.am, attrdefs.h: new public header file with
14728         constants for attributes for use by embedders.
14729
14730 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
14731
14732         * icall.c: GetFields () fix for bug #80064.
14733
14734 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
14735
14736         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
14737         removed long unused icalls.
14738
14739 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
14740   
14741         * marshal.c: 
14742                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
14743                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
14744                 can be generated without a delegate class.
14745                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
14746         
14747         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
14748
14749 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14750
14751         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
14752         #80069.
14753
14754 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
14755
14756         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
14757         icall-def.h: added icalls needed by System.GC.
14758
14759 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
14760
14761         * loader.c: ensure the class in catch clauses is handled
14762         correctly for generics methods (fixes bug#79980).
14763
14764 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
14765
14766         * monitor.h, monitor.c: added mono_locks_dump () function
14767         to help debug deadlocks involving managed locks.
14768
14769 2006-11-13  Dick Porter  <dick@ximian.com>
14770
14771         * file-io.c (get_file_attributes): If the file is a symlink try
14772         and get the stat data for the target, but also add the
14773         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
14774         the specs for the windows symlink support, but will probably have
14775         to be reworked when I have test data from a vista machine.  Fixes
14776         bug 79887.
14777
14778 2006-11-13  Dick Porter  <dick@ximian.com>
14779
14780         * gc.c (mono_domain_finalize): 
14781         * marshal.c (mono_delegate_begin_invoke): 
14782         * threadpool.c (socket_io_init, mono_thread_pool_init)
14783         (mono_thread_pool_finish): 
14784         * monitor.c (mono_monitor_try_enter_internal): 
14785         * threads.c (mono_thread_resume, mono_thread_init)
14786         (mono_thread_suspend_all_other_threads)
14787         (mono_thread_execute_interruption): 
14788         * appdomain.c (mono_domain_unload): Check for NULL error returns
14789         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
14790         75733.
14791
14792 2006-11-11  Miguel de Icaza  <miguel@novell.com>
14793
14794         * process.c
14795         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
14796         Only close the handle if the value of the handle is not
14797         INVALID_HANDLE_VALUE.  This just makes the process a bit more
14798         robust.
14799
14800         Improvement for #75733, so that we do not run into this problem. 
14801
14802         
14803         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
14804         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
14805         internal variables.  Fixes #79462 
14806         
14807
14808 2006-11-09  Dick Porter  <dick@ximian.com>
14809
14810         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
14811         Use poll() not select().  Fixes bug 79397.
14812
14813 2006-11-09  Raja R Harinath  <rharinath@novell.com>
14814
14815         Fix #79872
14816         * assembly.c (mono_assembly_load_from_full): Check that the given
14817         image has an assembly manifest.
14818
14819 2006-11-09  Ankit Jain  <jankit@novell.com>
14820
14821         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
14822         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
14823         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
14824
14825 2006-11-07  Dick Porter  <dick@ximian.com>
14826
14827         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
14828         Put the old resolver behaviour back for pre-2.0 profiles.
14829
14830 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
14831
14832         * threadpool.c: precise GC and locking fixes.
14833
14834 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
14835
14836         * class.c: don't load types that have an explicit unaligned
14837         managed reference. Provide better info in the TypeLoad exception.
14838         Part of the fix for bug #79744.
14839         * object.c: use the correct check for class type load issues.
14840
14841 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
14842
14843         * class.c: enforce alignment of fields with managed references
14844         even when Pack=1 is forced by the user (bug #77788).
14845
14846 2006-11-03  Dick Porter  <dick@ximian.com>
14847
14848         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
14849         If the address reverse lookup fails, return it as the hostname
14850         anyway.  Fixes bug 79721.
14851
14852 2006-11-03  Dick Porter  <dick@ximian.com>
14853
14854         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
14855         Fix build on Windows.
14856
14857 2006-11-02  Dick Porter  <dick@ximian.com>
14858
14859         * icall-def.h: 
14860         * object-internals.h: 
14861         * exception.c (mono_get_exception_thread_interrupted): 
14862         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
14863         Fixes bug 74525.
14864
14865         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
14866         Check for pending Thread.Interrupt.
14867
14868 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
14869         * loader.c: Fixed bug 79684.
14870
14871 2006-10-27  Dick Porter  <dick@ximian.com>
14872
14873         * file-io.c (get_file_attributes): Force symlinks to directories
14874         to be returned as a regular file.  Fixes bug 79733.
14875 2006-10-26  Dick Porter  <dick@ximian.com>
14876
14877         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
14878         CreateFile to open a directory then we need to set the
14879         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
14880
14881 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
14882
14883         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
14884         friends.
14885
14886 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
14887
14888         * sgengc.c: small cleanup of timer code.
14889
14890 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
14891
14892         * sgen-gc.c: fix some warnings and start adding support for
14893         complete object removal on domain unload.
14894
14895 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
14896
14897         * assembly.c: build_assembly_name should not consider a version
14898         number without build or revision number invalid. Fixes bug #79715.
14899
14900 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
14901
14902         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
14903         call kernel32 function OutputDebugString directly.
14904         
14905         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
14906         
14907 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
14908
14909         * reflection.c: small cleanup, using a function to insert a MonoString
14910         in the string heap.
14911
14912 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
14913
14914         * reflection.c: moving GC fixes.
14915
14916 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
14917
14918         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
14919         all the objects with finalizers belonging to an unloading appdomain.
14920
14921 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
14922
14923         * sgen-gc.c: added ability to allocate even when the nursery is fully
14924         pinned and fixed a couple of bugs.
14925
14926 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
14927
14928         * threads.h: Revert the last change for now.
14929
14930         * threads.h (mono_thread_get_pending_exception): Rename this to
14931         mono_thread_get_undeniable_exception ().
14932
14933 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
14934
14935         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
14936         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
14937         when fname does not refer to valid assembly. This result in a more
14938         meaningful error message.
14939         * exception.c: added mono_get_exception_bad_image_format2 which 
14940         constructs a BadImageFormatException using the ctor taking a custom
14941         message and the file name. Passing in a NULL msg results in a default
14942         message.
14943         * exception.h: define mono_get_exception_bad_image_format2 function.
14944         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
14945         when file name pointed to an invalid IL image. Use 
14946         mono_get_exception_file_not_found2 to construct FileNotFoundException,
14947         as this results in a more meaningful error message.
14948
14949 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
14950
14951         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
14952         #79465.
14953
14954 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
14955
14956         * metadata.c (mono_type_size): Change the align parameter to guint32 for
14957         consistency with the other _size functions.
14958         (mono_type_stack_size): Ditto.
14959
14960         * class.c object.c icall.c: Fix warnings caused by the above change.
14961
14962         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
14963
14964         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
14965
14966         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
14967
14968 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
14969
14970         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
14971         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
14972         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
14973         threadpool.h, threads-types.h: mark more internal functions.
14974
14975 2006-10-11  Dick Porter  <dick@ximian.com>
14976
14977         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
14978         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
14979         reproduce the bug even before applying the fix.)
14980
14981 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
14982
14983         * reflection.c: allow retrieving attributes for arguments in generic
14984         methods (bug #79241).
14985
14986 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
14987
14988         * debug-mono-symfile.c: properly check fopen () result (found by
14989         coverity).
14990
14991 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
14992
14993         * reflection.c: make error message clearer and fixed two
14994         issuelets found by Coverity.
14995
14996 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
14997
14998         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
14999
15000 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
15001
15002         * object-internals.h, gc-internal.h, profiler-private.h:
15003         mark internal functions.
15004
15005 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
15006
15007         * reflection.c: put data in the text section.
15008         * icall.c: recognize more types in type_from_typename ().
15009         * process.c, marshal.c: added some GC FIXMEs.
15010
15011 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
15012
15013         * loader.c: check for NULL before initializing.
15014
15015 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
15016
15017         * gc.c (finalizer_thread): Use a non-alertable wait here.
15018
15019         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
15020         until the correct solution is found.
15021
15022 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
15023
15024         * reflection.c (mono_module_get_object): Avoid an assert when operating on
15025         modules with no metadata. Fixes #79596.
15026
15027         * image.c (load_metadata_ptrs): Put back the error message when
15028         the #- heap is encountered since the support is not complete yet.
15029
15030 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
15031
15032         * gc.c: do not allow the user to SuppressFinalize () a
15033         delegate because it would leak the trampoline if present.
15034
15035 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
15036
15037         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
15038         PropertyPtr table.
15039
15040 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
15041
15042         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
15043
15044         * metadata.c (mono_metadata_get_param_attrs): Ditto.
15045
15046         * row-indexes.h: Add definitions for *Ptr tables.
15047
15048         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
15049
15050         * metadata.c (mono_metadata_translate_token_index): New helper function to
15051         translate table indexes used in uncompressed metadata.
15052         (mono_metadata_decode_table_row): Ditto.
15053         (mono_metadata_decode_table_row_col): Ditto.
15054
15055         * metadata.c: Add table schema for *Ptr tables.
15056
15057         * class.c loader.c: Use the new helper function to access the affected metadata
15058         tables.
15059         
15060         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
15061         #38532.
15062         
15063 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
15064
15065         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
15066         sequences which can be unbounded in size. Fixes #79583.
15067
15068 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
15069
15070         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
15071         static initialization.
15072
15073         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
15074
15075         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
15076
15077         * domain.c (mono_domain_free): Free up type_init_exception_hash.
15078
15079         * object.c (mono_runtime_class_init): Implement correct semantics when a static
15080         ctor fails, i.e. throw the same exception on subsequent accesses.
15081         
15082 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
15083
15084         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
15085         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
15086         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
15087         Handle marshalling of interfaces and VARIANTs contained in structs.
15088         
15089         Code is contributed under MIT/X11 license.
15090         
15091 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
15092
15093         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
15094         
15095         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
15096         mempool.
15097
15098 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15099
15100         * console-io.c: ignore previous SIGINT handler.
15101
15102 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
15103
15104         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
15105         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
15106         #79460, #79461, #79485.
15107
15108         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
15109
15110         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
15111         #79217.
15112
15113 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
15114
15115         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
15116         could be generated from it.
15117
15118 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
15119
15120         * rand.c: fix read loop to correctly handle EINTR.
15121
15122 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15123
15124         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
15125         internal calls are defined to keep methods closer to the declaring
15126         type and allow a significant reduction in runtime relocations and
15127         memory usage.
15128
15129 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
15130
15131         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
15132         exception message to have FileNotFoundException use the default
15133         assembly load error message. Fixes bug #79426.
15134         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
15135
15136 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15137
15138         * threadpool.c: (start_thread_or_queue) use the root domain when
15139         creating the thread instead of the async object one.
15140
15141 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
15142
15143         * class.c, object.c, class-internals.h, reflection.c:
15144         for arrays, store element_size inside MonoClass (speedup
15145         for array object creation).
15146
15147 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
15148
15149         * icall.c: fixed CodeBase to use the file name and not the module
15150         name (bug #79365).
15151
15152 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
15153
15154         * mono-debug.c, mono-debug.h: export find_method as
15155         mono_debug_find_method ().
15156
15157 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15158
15159         * debug-helpers.c, class-internals.h: added a few functions useful
15160         when debugging under gdb.
15161
15162 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15163
15164         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
15165         characters that need special handling.
15166
15167 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
15168
15169         * mono-config.c: make the os/cpu specification more flexible,
15170         allowing lists and negation.
15171
15172 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
15173
15174         * marshal.c: COM Interop fixes. Handle case where method->klass.
15175         is interface. Handle BSTR/MonoString when null. Use CDECL as 
15176         calling convention on non-windows platforms. This is for
15177         compatibility with XPCOM and MainWin COM.
15178         
15179         Code is contributed under MIT/X11 license.
15180         
15181
15182 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
15183
15184         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
15185         correctly. Fixes #79217.
15186
15187         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
15188
15189 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
15190
15191         * mono-config.c: allow both an os and cpu attribute for dllmap
15192         and dllentry elemnets to enable a single config file to be used
15193         for multiple architectures.
15194
15195 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
15196
15197         * loader.c: MonoLoaderError was cleared too soon on load failure.
15198         Fixes bug #79424.
15199
15200 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
15201
15202         * icall.c: use the defining class vtable when accessing a
15203         static field, not a pobblibly derived class.
15204
15205 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
15206
15207         * icall.c string-icalls.c: Remove references to unicode.h.
15208
15209         * unicode.h unicode.c Makefile.am: Remove these unused source files.
15210
15211         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
15212
15213         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
15214         indicating the image where custom marshaller types should be looked up.
15215         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
15216         custom marshallers, instead of corlib. Fixes #79425.
15217
15218 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
15219
15220         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
15221
15222 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
15223
15224         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
15225         Implement Environment.ProcessorCount.
15226         
15227         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
15228         Implement Environment.ProcessorCount.
15229         
15230         * icall.c: 
15231         Add Environment.ProcessorCount icall.
15232         
15233         Patch by Jason McFall.
15234
15235 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15236
15237         * assembly.c: don't append .exe/.dll when the filename already contains
15238         one of those extensions.
15239
15240 2006-09-12  Martin Baulig  <martin@ximian.com>
15241
15242         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
15243         to array interfaces.
15244
15245 2006-09-11  Martin Baulig  <martin@ximian.com>
15246
15247         * reflection.c (mono_image_build_metadata): Create the
15248         MethodImpl's after emitting all types and methods, so we don't
15249         need another fixup pass for them.
15250
15251 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
15252
15253         * class.c (mono_class_from_name_case): Fix regression introduced by the last
15254         change.
15255
15256 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
15257
15258         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
15259         unload.
15260
15261 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
15262
15263         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
15264         args is not set. Fixes #78926.
15265
15266 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
15267
15268         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
15269
15270         * image.c (load_class_names): Move this to class.c, and rename it to 
15271         'mono_image_init_name_cache'.
15272         (load_modules): Fix a warning.
15273
15274         * class.c icall.c image.c: Initialize image->name_cache lazily.
15275
15276         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
15277         on its name using information in the AOT file.
15278
15279         * class.c (mono_class_from_name): Use the new hook function.
15280
15281 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
15282
15283         * reflection.c (mono_param_get_objects): Handle enum default parameter values
15284         correctly.
15285
15286         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
15287         Fixes #79289.
15288         
15289 2006-09-06  Martin Baulig  <martin@ximian.com>
15290
15291         * icall.c (mono_lookup_internal_call): Small fix.
15292
15293 2006-09-05  Raja R Harinath  <rharinath@novell.com>
15294
15295         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
15296         double g_free.
15297
15298 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
15299
15300         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
15301         when --debug is specified.
15302
15303 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
15304
15305         * class.c (setup_generic_array_ifaces): Fix a warning.
15306
15307 2006-09-04  Miguel de Icaza  <miguel@novell.com>
15308
15309         * Temporarily remove the patch to assemly.c that checks the
15310         assembly versions as it breaks our gacutil.
15311
15312 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
15313
15314         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
15315
15316         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
15317         a net 1.0 runtime.
15318
15319         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
15320         created using the default ctor. Fixes #79152.
15321         (mono_string_builder_to_utf16): Ditto.
15322
15323 2006-09-01  Martin Baulig  <martin@ximian.com>
15324
15325         Fix handling of the generic array interfaces.
15326
15327         * class-internals.h
15328         (MonoDefaults): Removed `generic_array_class' and added
15329         `generic_ilist' class.
15330
15331         * class.c
15332         (mono_bounded_array_class_get): Add the new generic array interfaces.
15333         (setup_generic_array_ifaces): New static method; create vtable
15334         entries for each method in the generic array interfaces.
15335
15336         * metadata.c
15337         (select_container): Allow "parent-less" generic methods.
15338
15339         * marshal.c
15340         (mono_marshal_get_generic_array_helper): New public method.
15341
15342         * icall.c
15343         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
15344         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
15345         moved the interncall into System.Array.
15346
15347 2006-09-01  Raja R Harinath  <rharinath@novell.com>
15348
15349         A few more cases of avoiding work on types with ->byref set.
15350         Has the real fix for #79238
15351         * icall.c (is_generic_parameter): New helper.
15352         (ves_icall_Type_GetGenericParameterPosition): Use it.
15353         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
15354         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
15355         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
15356         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
15357         reference types.
15358         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
15359         reference types.
15360         (ves_icall_Type_get_IsGenericInstance): Likewise.
15361         (ves_icall_Type_get_IsGenericType): Likewise.
15362
15363 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
15364
15365         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
15366         class if possible.
15367
15368         * mempool.h (mono_mempool_get_allocated): New helper function.
15369
15370         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
15371         change.
15372
15373         * mempool.c: Fix warnings and the calculation of stats.
15374
15375         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
15376
15377         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
15378
15379         * loader.c (mono_get_method_from_token): Update method_count stat.
15380
15381         * class-internals.h (MonoStats): Add some stats.
15382
15383 2006-08-31 Robert Jordan  <robertj@gmx.net>
15384
15385         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
15386         with managed variants.
15387         All code is contributed under the MIT/X11 license.
15388         
15389 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
15390
15391         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
15392         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
15393
15394         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
15395
15396         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
15397         with cycles in classes.
15398
15399         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
15400
15401         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
15402         missing a [MarshalAs] directive. Fixes #79203.
15403
15404         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
15405         klass->marshal_info. Fixes #79217.
15406
15407 2006-08-30  Martin Baulig  <martin@ximian.com>
15408
15409         Committing a patch from Joachim Ante <joe@otee.dk>:
15410         Add support for binary data symbol stores.
15411
15412         * debug-mono-symfile.c
15413         (mono_debug_open_mono_symbol_file): Renamed into
15414         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
15415         arguments.
15416
15417         * mono-debug.c
15418         (mono_debug_open_image): Added `raw_contents' and `size' args.
15419         (mono_debug_init_2_memory): New public function.
15420
15421 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
15422
15423         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
15424
15425 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15426
15427         * appdomain.c: implement support for ShadowCopyFiles.
15428
15429 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
15430
15431         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
15432         when value is NULL (and should remove CID #51).
15433
15434 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15435
15436         * image.c: moved 2 functions to ../utils.
15437
15438 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
15439
15440         * gc.c: cope with the target object of a GC handle being NULL
15441         (bug #78877).
15442
15443 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
15444
15445         * class.c: recursively check parent's explicit implementations
15446         of interface methods (fixes bug #79125).
15447
15448 2006-08-19  Miguel de Icaza  <miguel@novell.com>
15449
15450         * filewatcher.c: Avoid warnings when building, do not redefine
15451         constants that are defined.
15452
15453         Remove warnings.
15454
15455 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15456
15457         * image.c: don't fail when the link points to an absolute path.
15458
15459 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
15460
15461         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
15462         Fix CID #3.
15463
15464 2006-08-17  Miguel de Icaza  <miguel@novell.com>
15465
15466         * image.c (full_path): A new method used to obtain the actual path
15467         of an assembly even in the presence of symbolic links.  
15468
15469         This is necessary for the case where we are running a binary that
15470         has been GACed, but we are using the "published" path name
15471         ($prefix/mono/1.0/blah.exe) which happens to point to the real
15472         file in the GAC.
15473
15474         This was the source of the failure for the `xsp' command with the
15475         recent AppDomain changes, as far as the runtime was concerned,
15476         there were two different assemblies: $prefix/mono/1.0/blah.exe and
15477         $prefix/mono/gac/blah/version/blah.exe.
15478
15479         (do_mono_image_open): use full path
15480
15481 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15482
15483         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
15484
15485 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
15486
15487         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
15488         domain_id is supplied. Fix CID #241 and corlib's unit tests.
15489
15490 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15491
15492         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
15493         small structures. Fixes #78990.
15494
15495 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15496
15497         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
15498
15499         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
15500
15501 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15502
15503         * appdomain.c:
15504         * marshal.c: don't load all the assemblies from a domain into newly
15505         created ones. The new domains might have different rules and load
15506         assemblies from different locations. Fixes bug #76757.
15507
15508         Patch by Lluis. Conflicts resolved by Brian Crowell.
15509
15510 2006-08-16  Alp Toker  <alp@atoker.com>
15511
15512         * socket-io.c: First half of the fix for #79084.
15513         Set sa_size to the length of the content, not that of the struct.
15514         Don't add NULL suffix to the content, this should be done in
15515         managed code if needed.
15516
15517 2006-08-14  Raja R Harinath  <rharinath@novell.com>
15518
15519         Fix part of #79012
15520         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
15521         mono_metadata_parse_type returns NULL.
15522
15523 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
15524
15525         * normalization-tables.h : new file for string normalization data.
15526         * locales.c, locales.h, icall.c :
15527           added load_normalization_resource() for string normalization,
15528           and icall as well.
15529         * Makefile.am : added normalization-tables.h to the sources.
15530
15531 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
15532
15533         * marshal.c: Add more helper functions to reduce code duplication and use them
15534         everywhere.
15535
15536 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
15537
15538         * marshal.c: Fix non-x86 stdcall warnings.
15539         
15540         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
15541         them everywhere.
15542
15543 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
15544
15545         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
15546         type check on multi-dimensional arrays. Fixes #79000.
15547
15548 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
15549
15550         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
15551         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
15552         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
15553         * class-internals.h: add is_com_object to class structure.
15554         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
15555         null checks to COM object marshalling. Fix .ctor call on RCW.
15556         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
15557         
15558         All code is contributed under the MIT/X11 license.
15559
15560 2006-08-09  Dick Porter  <dick@ximian.com>
15561
15562         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
15563         racing mono_monitor_allocator_lock() somewhere, so don't delete
15564         the critical section for now.  Found by running and exiting
15565         monodevelop.
15566
15567 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
15568
15569         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
15570         (ves_icall_System_ComObject_FindInterface): Ditto.
15571         (ves_icall_System_ComObject_CacheInterface): Ditto.
15572
15573         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
15574         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
15575
15576 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15577
15578         * threadpool.c: treat pipes from process asynchronous reads as sockets
15579         when reading from them, so we get select/poll or epoll to wait for
15580         data.
15581
15582 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
15583
15584         * loader.c: Fix a typo (CID #233) in the null check.
15585
15586 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
15587
15588         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
15589         Hopefully fixes #78949.
15590         
15591         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
15592         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
15593         bytes. Fixes #78972.
15594
15595 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15596
15597         * filewatcher.c: we need to set errno here.
15598
15599 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15600
15601         * filewatcher.c: let Win32Exception get the error value.
15602
15603 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15604
15605         * filewatcher.c: translate errno into win32 errors for Win32Exception
15606         to know what happened.
15607
15608 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
15609
15610         * threadpool.c: Fix more warnings.
15611
15612         * assembly.c (search_loaded): Fix warnings.
15613
15614         * threadpool.c (mono_thread_pool_finish): Fix warnings.
15615         (mono_async_invoke): Ditto.
15616
15617 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
15618
15619         * object.c (mono_remote_class_vtable): Need to create proxy vtable
15620         entries for __ComObject type in addition to ComImport types.
15621         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
15622         about hash table.
15623         
15624         All code is contributed under the MIT/X11 license.
15625
15626 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
15627
15628         * image.c: avoid tentative loading of modulerefs that contain
15629         no metadata (P/Invoke library names).
15630
15631 2006-07-28  Dick Porter  <dick@ximian.com>
15632
15633         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
15634         mono_loader_lock() somewhere, so don't delete the critical section
15635         for now.  Found by running and exiting monodevelop.
15636
15637 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15638
15639         * filewatcher.c: define the inotify syscalls when we're building on
15640         linux and have sys/syscall.h. The build system might not have support
15641         for inotify but the target system might have it.
15642
15643 2006-07-26  Miguel de Icaza  <miguel@novell.com>
15644
15645         * domain.c: Documentation updates.
15646
15647         * loader.c (mono_free_method): Do not release the method
15648         information if we are being profiled, as profilers will use this
15649         information at shut down to present some data to the user.
15650
15651         This is needed so that the profiler does not crash, as the
15652         profiler tends to keep MonoMethods around, and they might become
15653         invalid if we free these.
15654
15655         (mono_get_method_constrained): Return the original CIL stream
15656         method as well, so verification can be performed against it.
15657
15658 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15659
15660         * filewatcher.[ch]: support for inotify file system watcher.
15661         * icall.c: add new internal calls for the inotify file system watcher.
15662
15663 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15664
15665         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
15666         #78888.
15667
15668 2006-07-20  Dick Porter  <dick@ximian.com>
15669
15670         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
15671         warning.
15672
15673 2006-07-20  Dick Porter  <dick@ximian.com>
15674
15675         * threads.c (start_wrapper): Do the thread cleanup while we still
15676         hold a reference to its object.  Fixes bug 78123.
15677
15678 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
15679
15680         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
15681         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
15682           "managed-to-managed".
15683         * icall.c: Redirect string constructors that take sbyte* to
15684           ves_icall_System_String_ctor_RedirectToCreateString.
15685         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
15686           to CreateString () methods with matching signature.
15687         * reflection.c: Use original security informations for
15688           MONO_WRAPPER_MANAGED_TO_MANAGED.
15689         * security-manager.c: Use original security informations for
15690           MONO_WRAPPER_MANAGED_TO_MANAGED.
15691         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
15692           that is a placeholder and only its address should be used.
15693         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
15694           that is a placeholder and only its address should be used.
15695
15696 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
15697
15698         Begin implementing COM Interop.
15699         * appdomain.c: Increment corlib version.
15700         * class.c: Set ComImport classes' parent to __ComObject.
15701         * loader.c: Mark cominterop methods as such.
15702         * domain.c: Add __ComObject class to MonoDefaults structure.
15703         * image.c: Add 2 hashtables to the image for COM Interop related methods
15704         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
15705         using the mempool allocator
15706         
15707         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
15708         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
15709         declaration for mono_metadata_type_dup_mp.
15710         
15711         * debug-helpers.c: Added strings for two additional wrapper types
15712         * object.c: Create proxy objects for ComImport classes
15713         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
15714         and added __ComObject class to MonoDefaults structure.
15715         
15716         * object-internals.h: Finish MonoRealProxy definition, and add definition of
15717         MonoComInteropProxy and MonoComObject.
15718         
15719         * marshal.c: Added support for COM Interop
15720         (signature_cominterop): Converts managed signature to corresponding
15721         unmanaged COM signature.
15722         (cominterop_get_function_pointer): gets unmanaged function pointer via
15723         COM object vtable
15724         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
15725         (cominterop_get_method_interface): returns interface type that method is defined on
15726         (mono_mb_emit_cominterop_call): emits native call to function pointer
15727         gotten from vtable
15728         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
15729         that matches signature of unmanaged function.
15730         (cominterop_get_native_wrapper): wrapper around adjusted method call.
15731         (cominterop_get_invoke): forwards call from proxy to __ComObject
15732         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
15733         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
15734         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
15735         
15736         * marshal.h: Added Marshal icall declarations.
15737         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
15738         so we can access them in finalizer
15739         
15740 2006-07-14  Dick Porter  <dick@ximian.com>
15741
15742         * object.c (mono_type_initialization_cleanup): Fix a race
15743         condition by temporarily commenting out the critical section
15744         deletion.
15745
15746 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
15747
15748         * reflection.c (create_custom_attr): Fix some warnings.
15749         (create_custom_attr_data): Ditto.
15750         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
15751         types. Fixes #78855.
15752
15753 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
15754
15755         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
15756
15757         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
15758
15759 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
15760
15761         * reflection.c (resolve_object): Add support for DynamicMethod.
15762
15763         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
15764         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
15765
15766 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
15767
15768         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
15769         don't leak GPtrArray's pdata has we have no use (nor free) for it.
15770
15771 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
15772
15773         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
15774         Fixes #77888.
15775
15776 2006-06-30  Raja R Harinath  <rharinath@novell.com>
15777
15778         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
15779         slightly: remove a shadow local variable.
15780
15781 2006-06-29  Raja R Harinath  <rharinath@novell.com>
15782
15783         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
15784         definition that introduces the virtual function slot.
15785         Also fix Coverity #105.
15786
15787 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
15788
15789         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
15790         for dynamic assemblies. Fixes #78724.
15791
15792 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
15793
15794         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
15795         Fixes #78722.
15796
15797 2006-06-21  Martin Baulig  <martin@ximian.com>
15798
15799         * reflection.c
15800         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
15801         fixes #76484.
15802
15803 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
15804
15805         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
15806
15807 2006-06-20  Raja R Harinath  <rharinath@novell.com>
15808
15809         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
15810         nor TYPEREFs.
15811         * class.c (mono_class_create_from_typespec): Add 'context' argument.
15812         Inflate result if necessary.
15813         (mono_class_get_full): Remove old version.  Rename from
15814         'mono_class_get' and add 'context' argument.  Pass it to
15815         ..._create_from_typespec.
15816         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
15817         (mono_ldtoken): Revert change below.
15818
15819 2006-06-20  Martin Baulig  <martin@ximian.com>
15820
15821         * class.c (mono_ldtoken): Don't pass the generic context to
15822         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
15823
15824 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
15825
15826         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
15827         and later freeing it. Fixes #78638.
15828
15829 2006-06-15  Miguel de Icaza  <miguel@novell.com>
15830
15831         * icall.c (mono_class_get_throw): Revert over-zealous error
15832         throwing, the caller for mono_class_get_throw will cope with
15833         errors when classes are not properly initialized already.
15834
15835         The code still copes with loader exceptions though.
15836
15837         Fixes the regression in reftype1 and reftype3 from the CAS tests.
15838         
15839 2006-06-14  Miguel de Icaza  <miguel@novell.com>
15840
15841         Fixes the `make run1' version of RuntimeAbort (to be commited,
15842         source is in Bugzilla).
15843         
15844         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
15845         FALSE on class loading failure instead of returning true.
15846
15847         * class.c (mono_class_create_from_typedef): It is possible for
15848         mono_metadata_interfaces_from_typedef_full to fail if a class is
15849         not found, cope with this.
15850         
15851
15852 2006-06-14  Dick Porter  <dick@ximian.com>
15853
15854         * socket-io.c: 
15855         * process.c: Fix a bunch of signed/unsigned warnings from gcc
15856         4.1.1
15857
15858 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
15859
15860         * culture-info-table.h : oops, forgot to make it nsync with r61548.
15861
15862 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
15863
15864         * icall.c: Another fix for building mono in Visual Studio.
15865
15866 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
15867
15868         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
15869         
15870 2006-06-09  Martin Baulig  <martin@ximian.com>
15871
15872         * debug-mono-symfile.c: Put this back and really fix it this
15873         time. Sorry for all the trouble.
15874
15875 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
15876
15877         * icall.c (mono_class_get_throw): Fix a warning.
15878         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
15879         ReflectionTypeLoadException if needed. Fixes #78606.
15880
15881         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
15882         (mono_class_init): Ditto.
15883
15884         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
15885         ref_only exceptions.
15886         (mono_loader_clear_error): Make this work even if there is no error.
15887
15888 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
15889
15890         * object-internals.h marshal.c marshal.h icall.c: Implement method 
15891         Marshal.GetComSlotForMethodInfo using internal call.
15892
15893 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
15894
15895         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
15896         a function for signalling it.
15897
15898         * class.c (mono_class_from_typeref): Use the new kind of loader error when
15899         a referenced assembly is not found.
15900
15901         * loader.c (mono_loader_error_prepare_exception): Add support for 
15902         LOADER_ERROR_ASSEMBLY. Fix formatting.
15903
15904 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
15905
15906         * domain.c appdomain.c class-internals.h marshal.c: Add support 
15907         for VARIANT marshalling on windows and increment corlib version
15908         since Variant struct was added.
15909
15910 2006-06-03  Miguel de Icaza  <miguel@novell.com>
15911
15912         * debug-mono-symfile.c: Revert Martin's previous patch which broke
15913         stack trace line information:
15914
15915         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
15916         (Martin) when looking up B which is between A and C, return A not C.
15917
15918         Bug is #78573.
15919
15920         Thanks to Alexander Olk for tracking this down.
15921
15922 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
15923
15924         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
15925         
15926         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
15927         avoid clobbering its value.
15928         (mono_string_to_lpstr): Fix a warning on windows.
15929
15930 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
15931
15932         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
15933
15934         * reflection.c loader.c: Removed references to 'dummy' flag.
15935
15936         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
15937
15938         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
15939         it gets GC tracking.
15940
15941         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
15942         GC tracking.
15943         
15944         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
15945
15946         * marshal.c threadpool.c: Update callers of mono_async_result_new.
15947
15948         * appdomain.c: Bump corlib version.
15949
15950 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
15951
15952         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
15953         CEE_STIND_REF when working with object references.
15954
15955 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
15956
15957         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
15958         Fixes #78539.
15959
15960 2006-05-30  Miguel de Icaza  <miguel@novell.com>
15961
15962         * loader.c (method_from_memberref): Fix argument value for
15963         mono_loader_set_error_method_load (I was passing the MonoClass
15964         instead of the class name char *).
15965
15966 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
15967
15968         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
15969         CEE_STIND_REF when working with object references.
15970
15971 2006-05-30  Martin Baulig  <martin@ximian.com>
15972
15973         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
15974         mono_method_full_name() change and replace the ':' with a '.'
15975         here.
15976
15977 2006-05-30  Martin Baulig  <martin@ximian.com>
15978
15979         * debug-mono-symfile.c
15980         (mono_debug_symfile_lookup_location): Fix the algorithm:
15981         when looking up B which is between A and C, return A not C.
15982
15983 2006-05-29  Martin Baulig  <martin@ximian.com>
15984
15985         * mono-debug.h
15986         (MonoDebugMethodInfo): Make the typedef public.
15987         (MonoDebugSourceLocation): New public struct.
15988
15989         * mono-debug.c
15990         (mono_debug_source_location_from_address): Removed.
15991         (mono_debug_source_location_from_il_offset): Removed.
15992         (mono_debug_il_offset_from_address): Removed.
15993         (mono_debug_address_from_il_offset): Removed.
15994         (mono_debug_lookup_method): New public function.
15995         (mono_debug_lookup_source_location): New public function; replaces
15996         the old mono_debug_source_location_from_*() functions; see the
15997         inline documentation.
15998         (mono_debug_free_source_location): New public function.
15999         (mono_debug_print_stack_frame): New public function; see the
16000         inline documentation.
16001
16002         * debug-mono-symfile.c
16003         (mono_debug_find_source_location): Renamed into
16004         mono_debug_symfile_lookup_location(); only take a
16005         `MonoDebugMethodInfo *' and an `offset' argument; added inline
16006         documentation.
16007         (mono_debug_find_method): Renamed into
16008         mono_debug_symfile_lookup_method().
16009
16010 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
16011
16012         * assembly.c (mono_assembly_open_full): Dont overwrite the status
16013         returned by mono_image_open_full ().
16014
16015         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
16016         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
16017         #78517.
16018
16019         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
16020         #78518.
16021
16022 2006-05-27  Miguel de Icaza  <miguel@novell.com>
16023
16024         * class.c (mono_class_from_typeref): handle missing images
16025         earlier, deals with bug #78418.   Refactor code; 
16026
16027         Fix a warning introduced in my previous commit (some stale code
16028         from before I revisited my patch).
16029
16030         * class.c (mono_class_create_from_typedef): On failure, remove the
16031         class from the MonoImage->class_cache as the class is not
16032         initialized;   Fixes the leak pointed out by Paolo.
16033
16034 2006-05-25  Dick Porter  <dick@ximian.com>
16035
16036         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
16037         DeleteCriticalSections until I figure out which one may still be
16038         sometimes locked when mono_thread_cleanup is called.
16039
16040 2006-05-24  Dick Porter  <dick@ximian.com>
16041
16042         * threads.c (mono_thread_cleanup): Move the threading cleanup out
16043         of mono_thread_manage and back into its own function, so it can be
16044         called after the finalizer thread has finished.
16045
16046         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
16047
16048 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
16049
16050         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
16051         Fixes #78495.
16052
16053         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
16054         with non-blittable elements.
16055         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
16056
16057 2006-05-24  Martin Baulig  <martin@ximian.com>
16058
16059         * mono-debug-debugger.h (MonoDebuggerEvent): Added
16060         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
16061
16062         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
16063         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
16064         `mono_debugger_event_handler' to NULL.
16065
16066 2006-05-24  Martin Baulig  <martin@ximian.com>
16067
16068         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
16069
16070 2006-05-24  Martin Baulig  <martin@ximian.com>
16071
16072         * mono-debug-debugger.h
16073         (mono_debugger_create_notification_function): Added
16074         `MonoCodeManager *' argument.
16075
16076 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
16077
16078         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
16079
16080 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
16081
16082         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
16083         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
16084         implementation.
16085
16086 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
16087
16088         * icall.c: precise GC support: objects can't be stored in unmanaged
16089         memory anymore, even if they are kept alive by other references: since
16090         they can move the GC needs to be able to always find them.
16091
16092 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
16093
16094         * object.c: precise GC support for static fields. Support
16095         for moving GCs: write barriers and pinned allocation for interned
16096         strings.
16097
16098 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
16099
16100         * domain.c, domain-internals.h: precise GC support for the MonoDomain
16101         structure.
16102
16103 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
16104
16105         * class.c, gc.c: sgen and precise GC updates.
16106
16107 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
16108
16109         * marshal.h, marshal.c: added write barrier wrapper and precise type
16110         fixes.
16111
16112 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
16113
16114         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
16115         support.
16116
16117 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
16118
16119         * reflection.c: precise and sgen GC updates.
16120
16121 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
16122
16123         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
16124
16125 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
16126
16127         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
16128
16129 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
16130
16131         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
16132         MONO_TYPE_OBJECT. Fixes #78462.
16133
16134 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
16135
16136         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
16137         and blittable types.
16138
16139 2006-05-17  Miguel de Icaza  <miguel@novell.com>
16140
16141         * class.c (mono_class_get_exception_for_failure): Implement parts
16142         of a TODO: if the loader error is set (instead of the class
16143         error), we return a Loader exception that can be properly thrown
16144         elsewhere.
16145
16146         This was exposed by some Winforms 2.0 code that I tried to run
16147         (Atsushi pointed me to it).
16148
16149 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
16150
16151         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
16152         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
16153         
16154         * marshal.c (emit_marshal_vtype): Add limited support for 
16155         UnmanagedType.LPStruct. Fixes #78427.
16156
16157         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
16158         Applied a patch from kangaroo to fix #77523.
16159
16160 2006-05-17  Martin Baulig  <martin@ximian.com>
16161
16162         * threads.c
16163         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
16164         (debugger_thread_created): Removed.
16165         (debugger_thread_exited): Removed.
16166
16167 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
16168
16169         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16170
16171         * object-internals.h (MonoReflectionResource): Sync with managed version.
16172
16173 2006-05-12  Wade Berrier <wberrier@novell.com>
16174
16175         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
16176
16177 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
16178
16179         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
16180         functions try to allocate from the image mempool.
16181
16182 2006-05-12  Dick Porter  <dick@ximian.com>
16183
16184         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
16185
16186 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
16187
16188         * object.c: The FieldGetter and FieldSetter methods require the full
16189         name of the class, not only the name. Fixes bug #78277.
16190
16191 2006-05-11  Miguel de Icaza  <miguel@novell.com>
16192
16193         * loader.c (method_from_memberref): Do not pass the NULL klass to
16194         mono_loader_set_error_() methods.  Pass the non-NULL value
16195         (class). 
16196
16197 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
16198
16199         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
16200         (mono_assembly_close): Null out assembly->image->references after freeing it.
16201
16202         * image.c (mono_image_close): Free image->references.
16203         
16204         * reflection.c (mono_image_basic_init): Fix a small memory leak.
16205
16206 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
16207
16208         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
16209         before checking if it's NULL (g_assert).
16210
16211 2006-05-10  Martin Baulig  <martin@ximian.com>
16212
16213         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
16214         I thought I already killed that two months ago, but now it somehow reappeared.
16215
16216 2006-05-10  Martin Baulig  <martin@ximian.com>
16217
16218         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
16219
16220 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
16221
16222         * reflection.c: Allocate memory for dynamically created methods in the image
16223         mempools.
16224
16225 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
16226
16227         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
16228         don't use the ad pointer before checking if it's NULL (g_assert).
16229
16230 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
16231
16232         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
16233         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
16234
16235         * marshal.c: Allocate all signatures from mempools.
16236
16237         * marshal.c: Allocate some more signatures from mempools.
16238
16239 2006-05-09  Miguel de Icaza  <miguel@novell.com>
16240
16241         * object.c (mono_load_remote_field): The code used to provide a
16242         temporary variable for returning results if the user did not
16243         provide a result pointer.  But our temporary variable was allocted
16244         on the satck.
16245
16246         Fix calling code to always pass a result area.   Coverity ID 103.
16247
16248 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
16249
16250         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
16251         value, not the old. Fixes #78312.
16252         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
16253
16254         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
16255         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
16256         per-image cache.
16257
16258         * assembly.c (mono_assembly_close): Free image->references.
16259
16260         * assembly.c (mono_assembly_names_equal): Fix a warning.
16261         (mono_assemblies_cleanup): Cleanup more global data.
16262
16263         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
16264
16265         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
16266         ptr_cache and image->modules.
16267
16268         * image.c (mono_image_init): Allocate array_cache lazily.
16269         
16270 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16271
16272         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
16273         behavior was changed recently and has bad side effects.
16274
16275 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
16276
16277         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
16278         
16279         * assembly.c (mono_assembly_close): Remove a debug printf.
16280
16281         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
16282
16283         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
16284         to also allow for temporary references between mono_image_open ()/close ().
16285
16286         * domain.c (get_runtimes_from_exe): Add a FIXME.        
16287
16288 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
16289
16290         * marshal.c: Fix support for dynamic methods.
16291
16292         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
16293
16294         * marshal.c (mono_marshal_cleanup): New cleanup function.
16295
16296         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
16297         image mempools.
16298
16299         * class.c (mono_class_init): Fix leaking class->nested_classes.
16300
16301         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
16302
16303         * image.c (mono_image_init): Initialize the new cashes.
16304
16305         * image.c (mono_image_close): Destroy the new cashes.
16306
16307         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
16308
16309         * mempool.c (mono_mempool_strdup): New helper function.
16310
16311         * class-internals.h: Add prototype for mono_loader_unlock ().
16312
16313         * domain.c (mono_jit_info_table_find): Fix a warning.
16314         (mono_debugger_check_runtime_version): Ditto.
16315
16316         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
16317         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
16318         functions to these modules.
16319
16320         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
16321         metadata modules.
16322         
16323         * marshal.c (mono_free_bstr): Fix a warning.
16324
16325         * assembly.c (mono_assembly_open_full): Fix another small leak.
16326
16327         * object.c: Fix some unload leaks in the remoting code.
16328
16329         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
16330         function.
16331
16332         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
16333
16334         * reflection.c: Fix some unload leaks in dynamic assemblies.
16335
16336 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
16337
16338         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
16339         * marshal.h: Add BSTR support on Win32
16340         * icall.c: Add BSTR icalls
16341         * metadata.h: Add BSTR enums
16342
16343 2006-04-28  Miguel de Icaza  <miguel@novell.com>
16344
16345         Work to catch the crash from #76795 and turn it into an
16346         exception.   As I stubbed out pieces of the VisualBasic support,
16347         I found a number of places where the code was failing and I added
16348         checks to those places. 
16349         
16350         * metadata.c (do_mono_metadata_parse_generic_class): Make this
16351         function return a status code.  If we fail to parse the signature
16352         from mono_metadata_parse_generic_inst, return FALSE.
16353
16354         * loader.c (mono_get_method_from_token): If we fail to load the
16355         method (mono_class_get) return NULL.   
16356
16357         * (method_from_memberref): Return NULL if we are unable to parse
16358         the method signature
16359
16360         (mono_loader_error_prepare_exception): Since we now use the
16361         loader_error flag internally to stop processing, and obtaining
16362         exceptions that might be thrown will walk this code path the
16363         proper way of going from a MonoLoaderError into a
16364         MonoException was convoluted.   This new routine encapsulates the
16365         process of turning the error into an exception and *clearing* the
16366         error afterwards.
16367         
16368 2006-04-27  Miguel de Icaza  <miguel@novell.com>
16369
16370         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
16371         with missing assemblies), and to cope with:
16372
16373                 * Missing fieldref from a non-existing assembly.
16374                 * Missing methodref from a non-existing assembly.
16375
16376         The first batch of work to address *some* of the issues from 76661.
16377         
16378         * object.c (mono_class_create_runtime_vtable): If we fail to
16379         initialize the class raise the exception here. 
16380
16381         * metadata.c (mono_class_get_overrides_full): If any methods fail
16382         to load return the failure to the caller.
16383
16384         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
16385         flagging assemblies that failed to load.   
16386
16387         Do not crash if we are unable to load the assembly.
16388
16389         (mono_assembly_close): Do nothing with REFERENCE_MISSING
16390         assemblies. 
16391
16392         * loader.c (mono_loader_set_error_type_load): Change the
16393         convention to always pass unallocated strings, so we make our own
16394         copies (I know our own code had duplicated strings before, but
16395         this keeps the normal conventions).
16396         (method_from_memberref): Call mono_loader_set_error_method_load
16397         for all possible failures of loading the class. 
16398         Remove assert, turn into a loader error.
16399
16400         (mono_loader_error_to_exception): Move this routine from mini
16401         (mini_loader_error_to_exception) there was no need to have that in
16402         mini. 
16403
16404         * class.c (mono_class_from_typeref): If we were not able to load
16405         the assembly with mono_assembly_load_reference, call the
16406         mono_loader_set_error_type_load to register the problem.
16407
16408         (mono_class_setup_fields): If we fail to load the type from
16409         mono_metadata_parse_type_full, call mono_class_set_failure and
16410         break from the loop.
16411
16412         If class->exception_type is set, we do not layout the fields as
16413         that might crash the runtime, and instead return (from breaking
16414         from the previous loop).
16415
16416         (mono_class_setup_vtable): This now returns a boolean indicating
16417         whether the table was properly setup.   The decision is driven by
16418         mono_class_get_overrides_full which might run into non-existing
16419         methods. 
16420         
16421         (mono_class_init): Returns TRUE on success or FALSE if there was a
16422         problem in loading the type (incorrect assemblies, missing
16423         assemblies, methods, etc).
16424
16425         When we call mono_class_setup_fields we also check for a potential
16426         error inside this call (either a class exception or a general
16427         loader exception).
16428
16429         (mono_class_create_from_typedef): If the parent fails to load
16430         (calling mono_class_get_full) return NULL.
16431         
16432         ** Important **
16433
16434         calls to mono_metadata_parse_type_full should be checked
16435         everywhere and set the mono_class_set_failure
16436         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
16437
16438         The current patch checks the places where my manually constructed
16439         tests show the errors are showing up, but we should do it
16440         everywhere. 
16441
16442         ** Important2 **
16443
16444         mono_class_init return values should be tested everywhere, like
16445         the previous case this is something that we should audit
16446         everywhere and not only on the cases exposed by the tests I
16447         created. 
16448
16449 2006-04-26  Miguel de Icaza  <miguel@novell.com>
16450
16451         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
16452         boolean parameter and instead pass the information on `options'
16453         parameter (FileOptions).
16454
16455         * icall.c: Register the new signature for MonoIO.Open.
16456
16457         * debug-helpers.c (dis_one): Trying to understand how coverity
16458         works.  Fix Run 5, item 78.
16459
16460 2006-04-26  Dick Porter  <dick@ximian.com>
16461
16462         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
16463         dereference.
16464
16465 2006-04-25  Martin Baulig  <martin@ximian.com>
16466
16467         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
16468
16469         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
16470         debugger_thread_created().
16471         (debugger_gc_push_all_stacks): Don't handle the main thread in any
16472         special way.
16473         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
16474         (mono_debugger_finalize_threads): New function; undo the effects
16475         of mono_debugger_init_threads().
16476         (mono_debugger_create_all_threads): Removed.
16477
16478 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
16479
16480         * image.c (mono_image_close): Tidy up trace messages.
16481
16482         * assembly.c (mono_assembly_close): Ditto.
16483
16484         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
16485         no longer references an already freed assembly. Fixes #78168.
16486
16487 2006-04-21  Dick Porter  <dick@ximian.com>
16488
16489         * threads.c (mono_thread_detach): Fix reference counting when
16490         detaching threads.
16491
16492 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
16493
16494         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
16495         #78155.
16496
16497 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
16498
16499         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
16500         (mono_type_to_stind): Ditto.
16501
16502         * marshal.c: Use the new helper functions to simplify code.
16503
16504         * image.c (mono_image_close): Add some code for help debug assembly unloading
16505         problems.
16506
16507         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
16508         image mempool.
16509
16510         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
16511         assembly was already loaded in another appdomain. Fixes #78083.
16512
16513 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
16514
16515         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
16516         referenced assemblies.
16517         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
16518
16519         * domain.c (mono_domain_free): Add a trace message.
16520
16521         * appdomain.c (add_assemblies_to_domain): Ditto.        
16522
16523         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
16524         field.  
16525
16526 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
16527
16528         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
16529
16530 2006-04-12  Martin Baulig  <martin@ximian.com>
16531
16532         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
16533         `USE_INCLUDED_LIBGC'.   
16534
16535 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
16536
16537         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
16538         the patch contains ../ and a small directory name later. Hopefully fixes
16539         #78035.
16540
16541 2006-04-10  Martin Baulig  <martin@ximian.com>
16542
16543         Clean up the debugger's thread-handling code.
16544
16545         The debugger's thread-handling code has been moved from
16546         ../mini/debug-debugger.c to threads.c.  We now iterate directly
16547         over the `threads' hash, keep track of exiting threads and also
16548         use proper locking.
16549
16550         We can now debug XSP and XSP based applications with the debugger.
16551
16552         * object-internals.h (MonoThread): Added `gpointer end_stack'.
16553
16554         * threads.h
16555         (MonoThreadCallbacks): Removed; this was only used by the debugger.
16556         (mono_install_thread_callbacks): Likewise.      
16557
16558         * threads.c (mono_thread_callbacks): Removed.
16559         (debugger_thread_created, debugger_thread_exited): New static functions.
16560         (start_wrapper): Call debugger_thread_created().
16561         (thread_cleanup): Call debugger_thread_exited().
16562         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
16563         (mono_debugger_init_threads): New public function.
16564         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
16565         iterate directly over the `threads' hash and also use proper locking.
16566
16567         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
16568
16569         * mono-debug-debugger.h
16570         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
16571
16572 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
16573
16574         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
16575         argument type=array. Fixes #78057.
16576
16577 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
16578
16579         * culture-info-table.h : regenerated. Fixed bug #69652.
16580
16581 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
16582
16583         * loader.c metadata.c: Reapply a variant r59116.
16584         
16585         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
16586
16587         * class.c (mono_class_setup_interface_offsets): New internal function.
16588
16589         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
16590         interfaces too. Fixes #77398.
16591
16592         * reflection.c (encode_cattr_value): Add support for 
16593         parameter type=object, argument type=array.
16594         (load_cattr_value): Ditto. Fixes #77916.
16595
16596         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
16597         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
16598
16599         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
16600         a byval char array and CharSet is Ansi.
16601
16602         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
16603
16604 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
16605
16606         * metadata.c: Add some locking comments.
16607         
16608         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
16609         mempool.
16610         (mono_metadata_free_method_signature): Don't free the signature itself.
16611
16612         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
16613
16614         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
16615         reference the same MonoImage.
16616         (mono_assembly_load_from_full): Add an assert.
16617
16618 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
16619
16620         * image.c (mono_image_close): Don't put the image we are about to free into the
16621         loaded_images_guid_hash.
16622
16623         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
16624         to reduce code duplication.
16625
16626         * marshal.c: Register the native functions called by this module as icalls, to
16627         somewhat centralize the creation of MonoMethodSignature's.
16628
16629         * loader.c (mono_method_signature): Add a cache for method signatures.
16630
16631         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
16632         the parameter attributes of a method.
16633         (mono_metadata_parse_method_signature_full): Refactored the computation of
16634         parameter attributes into a separate function. Also avoid one allocation in
16635         most cases.
16636
16637         * assembly.c (mono_assembly_close): Ditto.
16638
16639         * image.c (mono_image_close): Log trace messages with INFO level.
16640
16641         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
16642
16643         * image.c reflection.c: Correct reference counting of image modules.
16644         
16645         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
16646         of this function from the image mempool.
16647         
16648         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
16649         to allow more cached types to be used.
16650
16651         * mono-debug.c (mono_debug_add_method): Appled patch from
16652         David S. Miller  <davem@sunset.davemloft.net>: Access 
16653         minfo->lexical_blocks[] entry elements using read32().
16654
16655 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
16656
16657         * loader.c (mono_free_method): No longer free the method header for non-dynamic
16658         methods as it is allocated from the mempool.
16659
16660         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
16661         image mempool.
16662
16663         * metadata-internals.h: Add comments describing the reference counting scheme
16664         used for MonoImage and MonoAssembly.
16665
16666         * image.c assembly.c reflection.c: Rework reference counting of images and 
16667         assemblies so they are freed when the runtime is shut down. Free some 
16668         additional memory structures when an image is unloaded.
16669         
16670 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
16671
16672         * class.c loader.c reflection.c: Allocate more data structures in
16673         the image mempool.
16674
16675 2006-03-31  Miguel de Icaza  <miguel@novell.com>
16676
16677         * icall.c
16678         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
16679         build on pre glib 2.4 systems.
16680
16681 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
16682
16683         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
16684
16685         * icall.c: Fix some warnings.
16686
16687 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
16688
16689         * culture-info-table.h : regenerated.
16690
16691 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
16692
16693         * threads.c, object-internals.h, verify.c: changed the culture caching
16694         code to use a normal MonoArray for storage so the GC can keep track of
16695         them easily. Fixed bits of the cache logic, too and simplified the
16696         code.
16697
16698 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
16699
16700         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
16701         thread for non-Boehm GCs.
16702
16703 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
16704
16705         * domain.c, object.c, domain-internals.h: reduce the amount of memory
16706         needed to keep track of the data for static fields.
16707
16708 2006-03-29  Raja R Harinath  <rharinath@novell.com>
16709
16710         Fix #75172
16711         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
16712         for interface classes.  Use 'num_methods' instead.
16713         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
16714         before using '->vtable_size' field.
16715
16716 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
16717
16718         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
16719         doesn't contain managed pointers, so use a normal hashtable.
16720
16721 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
16722
16723         * reflection.c, class-internals.h, domain.c: fixed handling of types
16724         used as values for objects in custom attributes (bug #77915):
16725
16726 2006-03-24  Martin Baulig  <martin@ximian.com>
16727
16728         * class.c (mono_class_setup_fields): Added support for generic
16729         instances; fixes #77580.
16730
16731 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16732
16733         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
16734
16735 2006-03-24  Dick Porter  <dick@ximian.com>
16736
16737         * file-io.c (get_file_attributes): More stat macro breakage.
16738         Fixes bug 77759.
16739
16740 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
16741
16742         * profiler.c: added the file=filename option in the default profiler
16743         to output the profile data to filename.
16744
16745 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16746
16747         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
16748         bug #77877.
16749
16750 2006-03-22  Martin Baulig  <martin@ximian.com>
16751
16752         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
16753         allocated `MonoClassField *' in `fb->handle'.
16754
16755 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16756
16757         * class.c, image.c, metadata-internals.h: implemented new mechanism to
16758         allocate interface ID to save memory and allow better ID reuse on
16759         appdomain unload. setup_generic_vtable () removal from Martin.
16760
16761 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
16762
16763         * object.h, appdomain.c, domain.c, exception.c, icall.c,
16764         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
16765         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
16766         write barriers for reference stores with managed objects accessed with
16767         C structures in the runtime and in embedding programs.
16768
16769 2006-03-20  Raja R Harinath  <rharinath@novell.com>
16770
16771         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
16772         'interface_id' and 'max_interface_id' fields of MonoClasses
16773         representing open generic types.
16774
16775 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
16776
16777         * object.h, object.c, icall.c: added functions to deal with
16778         storing valuetypes that contain references in managed objects.
16779         * reflection.c, string-icalls.c, threads.c, marshal.c: small
16780         fixes and comments around uses of mono_array_addr ().
16781
16782 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
16783
16784         * object.h, icall.c, monitor.c: object.GetHashCode ()
16785         implementation that supports the moving garbage collector.
16786
16787 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
16788
16789         * icall.c, threads-types.h, threads.c: implemented finalizer for
16790         LocalDataStoreSlot.
16791
16792 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
16793
16794         * metadata.c (mono_type_size): Add a fixme.
16795         (mono_type_stack_size): Ditto.
16796
16797         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
16798         'type_forwarders' field.
16799
16800         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
16801         attribute from net 2.0.
16802
16803         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
16804         from class.c.
16805
16806         * class.c (mono_class_setup_fields): Fix a warning.
16807         
16808         * class.c (mono_class_from_name): Add support for assemblyref entries
16809         in the EXPORTEDTYPE table.
16810
16811         * reflection.c: Add support for handling type forwarders under net 2.0.
16812
16813         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
16814         
16815 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
16816
16817         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
16818         overwriting entries in ModuleBuild->types, also clean up the code
16819         a little. Fixes #77774.
16820
16821 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
16822
16823         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
16824         load friend assembly info when present.
16825
16826 2006-03-14  Raja R Harinath  <rharinath@novell.com>
16827
16828         Fix crasher on gtest-158.cs.
16829         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
16830         the return value if the MonoClass we want is yet in an
16831         inconsistent state.
16832         * class.c (mono_class_create_from_typedef): Add an comment
16833         explaining an order dependency between mono_class_setup_parent and
16834         mono_class_setup_mono_type.
16835
16836 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
16837
16838         * class.c: documentation updates and events bug fix.
16839
16840 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
16841
16842         * class.c: some cleanup, locking fixes.
16843
16844 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
16845
16846         * class.c: fix the generics code to setup nested
16847         type info to the instantiated type (bug #77770).
16848
16849 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
16850
16851         * marshal.c: fixed a few type correctness issues.
16852
16853 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16854
16855         * loader.c: the Set/Get/Addrtess array methods should be public.
16856
16857 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
16858
16859         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
16860         
16861         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
16862         info->wrapper.
16863
16864 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
16865
16866         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
16867
16868         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
16869
16870         * mempool.c (mono_mempool_alloc): Speed this up a bit.
16871         (mono_mempool_alloc0): Ditto.
16872
16873 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16874
16875         * socket-io.c:
16876         (create_object_from_sockaddr): it was allocating 4 extra bytes
16877         for the AF_UNIX data. Fixes bug #77747.
16878
16879 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
16880
16881         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
16882
16883 2006-03-09  Dick Porter  <dick@ximian.com>
16884
16885         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
16886         Fixes bug 76966 again.
16887
16888 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
16889
16890         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
16891         names from r57532
16892         * appdomain.c: Bumped corlib version to 48 (due to r57532)
16893
16894 2006-03-07  Martin Baulig  <martin@ximian.com>
16895
16896         * object.c
16897         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
16898
16899 2006-03-07  Martin Baulig  <martin@ximian.com>
16900
16901         * class.c
16902         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
16903         regression introduced in r56970; see gtest-252.cs.
16904
16905         * loader.c (mono_get_method_constrained): Correctly handle generic
16906         methods; see gtest-253.cs.
16907
16908 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
16909
16910         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
16911
16912 2006-03-04  Martin Baulig  <martin@ximian.com>
16913
16914         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
16915         compute the parent type at runtime, just like we're already doing
16916         it for interfaces.
16917
16918         * reflection.c
16919         (mono_reflection_bind_generic_parameters): Don't compute the
16920         parent type anymore.
16921
16922         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
16923
16924 2006-03-04  Martin Baulig  <martin@ximian.com>
16925
16926         * mono-debug-debugger.h
16927         (mono_debugger_create_notification_function): Allocate memory at
16928         runtime and return a pointer to it.
16929
16930 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
16931
16932         * assembly.c: Fix windows build.
16933         
16934         * assembly.c: Fix build.
16935
16936         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
16937
16938         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
16939         
16940 2006-03-03  Dick Porter  <dick@ximian.com>
16941
16942         * process.c
16943         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
16944         Check parameters before dereferencing them.  Fixes Aaron's part of
16945         bug 77393.
16946
16947 2006-03-03  Raja R Harinath  <rharinath@novell.com>
16948
16949         Fix performance regression.
16950         * loader.c (find_method_in_class): Add 'from_class' argument.
16951         Rename 'klass' argument to 'in_class'.  The signature is compared
16952         against the method in 'in_class', and the corresponding method is
16953         returned from 'from_class'.
16954         (find_method): Walk both 'in_class' and 'from_class' in parallel.
16955         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
16956         type definition and generic instantiation in parallel.
16957         (mono_get_method_constrained): Update to changes.
16958
16959 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
16960
16961         * threads.c: make sure the domain is correct, too when doing
16962         mono_thread_attach ().
16963
16964 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
16965
16966         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
16967         windows. Fixes #77683.
16968
16969 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
16970
16971         * object.h, *: introduced specific way to set elements of an array
16972         of references to be used as write barrier. Still need to audit the
16973         uses of mono_array_addr.
16974
16975 2006-03-01  Miguel de Icaza  <miguel@novell.com>
16976
16977         * object-internals.h: New field to cache the assmebly name, patch
16978         from Tambet Ingo (tambet@ximian.com)
16979
16980 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
16981
16982         * decimal.h, class-internals.h, metadata-internals.h,
16983         file-io.h: mark a few function declarations as internal, to
16984         reduce the number of PLT entries.
16985
16986 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16987
16988         * file-io.c: fix typo in warning message.
16989
16990 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
16991
16992         * loader.c: on unix, lookup the "*A" version of a function
16993         if charset is auto as a second option before failing.
16994
16995 2006-02-28  Raja R Harinath  <rharinath@novell.com>
16996
16997         * class.h (mono_class_inflate_generic_method): Revert to two
16998         argument version.
16999         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
17000         (mono_class_inflate_generic_method_full): Add.
17001         * class.c (mono_class_inflate_generic_method_full): Rename from
17002         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
17003         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
17004         * loader.c, reflection.c: Update to changes.
17005
17006 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
17007
17008         * icall.c: const fixes and small improvements.
17009
17010 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17011
17012         * threadpool.c: for asynchronous connect(), enable the same workaround
17013         for BSD 6 as for the Mac. Fixes bug #77637.
17014
17015 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
17016
17017         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
17018         formatted classes. Fixes #77524.
17019
17020 2006-02-24  Raja R Harinath  <rharinath@novell.com>
17021
17022         * class.c (inflate_generic_type): Add a couple more
17023         micro-optimizations.
17024         (inflate_generic_context): Don't use the 'gmethod' from
17025         'inflate_with'.
17026         (mono_class_inflate_generic_method): If the method has generic
17027         parameters, but the passed-in context doesn't have a 'gmethod',
17028         create one.  Use the possibly simplified generic instantiation
17029         from the declaring class instead of the one passed in.
17030
17031 2006-02-24  Raja R Harinath  <harinath@gmail.com>
17032
17033         Make generic method signature and method header handling lazy.
17034         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
17035         (inflate_generic_header): Likewise.
17036         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
17037         parameter to avoid inflating types.
17038         (mono_get_inflated_method): Empty out.
17039         * class.h (mono_class_inflate_generic_method): Update to changes.
17040         * loader.c (mono_get_method_from_token): Don't parse signature for
17041         generic methods, nor methods of generic classes.
17042         (mono_method_signature): Rename from 'mono_method_signature'.
17043         Inflate signature on demand.
17044         (mono_method_get_header): Inflate method header on demand.
17045         * reflection.c: Update to changes.
17046
17047 2006-02-23  Raja R Harinath  <rharinath@novell.com>
17048
17049         * metadata.c (mono_metadata_inflate_generic_inst): If the
17050         instantiation is closed, don't bother expanding it in the new
17051         context.
17052         * class.c (inflate_generic_class): If the generic instantiation
17053         doesn't change after inflation, return the argument itself.
17054         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
17055         Add bounds checks.
17056         (inflate_generic_context): If neither the generic class nor the
17057         generic method instantiations change, return the original context.
17058         * reflection.c (mono_method_get_object): Do
17059         'mono_get_inflated_method' before accessing the ->klass field.
17060         (inflate_mono_method): Don't create a MonoGenericMethod unless
17061         necessary.
17062         (inflate_method): Don't pass a constructed type as the declaring
17063         type of a methodbuilder.
17064
17065 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
17066
17067         * object.c: fix memory overwrite.
17068
17069 2006-02-22  Dick Porter  <dick@ximian.com>
17070
17071         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
17072         it doesn't work any more.
17073         (mono_threads_request_thread_dump): Fix unused variable warnings.
17074
17075 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17076
17077         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
17078         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
17079         the public header file.
17080
17081 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
17082
17083         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
17084
17085 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
17086
17087         * class-internals.h, object.c: reduce the size of MonoVTable
17088         and store the interface_offsets array at negative offsets.
17089
17090 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
17091
17092         * metadata.c: tweak table descriptors data structures to reduce
17093         size and runtime relocations.
17094
17095 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17096
17097         * marshal.c: fix some types and opcodes to be type-safe
17098         in marshaling wrappers.
17099
17100 2006-02-21  Ankit Jain  <jankit@novell.com>
17101
17102         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
17103
17104 2006-02-21  Raja R Harinath  <rharinath@novell.com>
17105
17106         * metadata.c (get_constraints): Relax debugging checks for monodis.
17107
17108 2006-02-21  Ankit Jain  <jankit@novell.com>
17109
17110         * metadata.c (mono_metadata_load_generic_params): Move the code
17111         checking for ambiguous generic params from here to mono/dis/get.c
17112         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
17113
17114 2006-02-21  Raja R Harinath  <harinath@gmail.com>
17115
17116         Fix assertion triggered when compiling nemerle.
17117         * class.c (mono_get_shared_generic_inst): Rename from
17118         get_shared_inst and make non-static.
17119         * loader.c (mono_get_shared_generic_method): New.  Used to create
17120         the MonoGenericContext-equivalent of a MonoGenericContainer.
17121         (mono_get_method_from_token): Initialize the 'context' field of
17122         the created MonoGenericContainer.
17123         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
17124         * metadata.c (get_constraints): Add sanity check.
17125         * class-internals.h: Add new internal methods.
17126
17127         * reflection.c (verify_safe_for_managed_space): New sanity check.
17128         Currently checks that owner-less generic parameters aren't allowed
17129         in managed space.
17130         (mono_type_get_object): Use it.
17131         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
17132         that are now in mono_type_get_object.
17133         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
17134
17135 2006-02-19  Raja R Harinath  <harinath@gmail.com>
17136
17137         * metadata.c (mono_type_create_from_typespec): Rename from
17138         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
17139         argument and caching of types in the generic container.
17140         (unwrap_arrays, find_generic_param): Remove.
17141         * metadata-internals.h: Update.
17142         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
17143
17144 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
17145
17146         * class.c (mono_class_get_exception_for_failure): Fix a warning.
17147
17148         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
17149         return values. Fixes #77581.
17150
17151         * class.c (mono_fnptr_class_get): Switch name and name_space.
17152
17153         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
17154         classes and add support for [In, Out] attributes.
17155         (mono_marshal_free_asany): Ditto. Fixes #77524.
17156
17157 2006-02-18  Raja R Harinath  <harinath@gmail.com>
17158
17159         * class.c (mono_class_from_generic_parameter): Make more robust to
17160         incomplete MonoGenericContainers from monodis.
17161
17162 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17163
17164         * class-internals.h: added some more exception types.
17165         * class.c, metadata.c: added a few checks to handle missing
17166         types.
17167
17168 2006-02-17  Raja R Harinath  <rharinath@novell.com>
17169
17170         Use owner-less generic-params some more.
17171         * class.c (my_mono_class_from_generic_parameter): Remove.
17172         (mono_class_from_generic_parameter): Handle null image,
17173         param->name and param->owner.
17174         (mono_class_from_mono_type): Update.
17175         (mono_class_create_from_typespec): Remove 'container' parameter.
17176         If that parameter is non-null, the result is always inflated by
17177         'mono_class_get_full' anyway.
17178         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
17179         parameter.
17180         (mono_class_get_full): Update.
17181
17182         * class.c (inflate_generic_type) [GENERICINST]: If the generic
17183         instance is not open, don't bother inflating.
17184         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
17185         parse metadata for inflated classes.
17186         (_mono_class_get): Change GenericContext* parameter to
17187         GenericContainer*.
17188         (mono_class_create_from_typespec): Likewise.  Simplify, and
17189         implement trivially.  All the cases are handled in
17190         mono_class_from_mono_type.  Don't inflate returned class.
17191         (mono_class_get_full): Delegate GENERICINST optimization to
17192         inflate_generic_type.
17193         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
17194
17195 2006-02-16  Dick Porter  <dick@ximian.com>
17196
17197         * socket-io.c (create_object_from_sockaddr): Fix typo.
17198         (create_sockaddr_from_object): Check array lengths before
17199         potentially accessing items off the end.
17200         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
17201         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
17202         (ves_icall_System_Net_Sockets_Socket_Send_internal)
17203         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
17204         length checks to avoid wraparound overflows.
17205         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
17206         contents of the array of sockets
17207         (hostent_to_IPHostEntry2)
17208         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
17209         Check return value of inet_ntop ().
17210         (addrinfo_to_IPHostEntry): Fix typo
17211
17212 2006-02-16  Raja R Harinath  <rharinath@novell.com>
17213
17214         Type metadata parsing doesn't use generic-instantiation information.
17215         * metadata.c (mono_metadata_parse_array_full): Change
17216         MonoGenericContext* parameter to MonoGenericContainer*.
17217         (mono_metadata_parse_type_full): Likewise.
17218         (mono_type_create_from_typespec_full): Likewise.
17219         (mono_metadata_parse_mh_full): Likewise.
17220         (mono_metadata_parse_generic_inst): Likewise.
17221         (do_mono_metadata_parse_generic_class): Likewise.
17222         (do_mono_metadata_parse_type): Likewise.
17223         * metadata-internals.h: Update to changes.
17224         * class.c (mono_class_find_enum_basetype): Likewise.
17225         (mono_class_setup_fields): Likewise.
17226         (mono_class_create_from_typespec): Likewise.
17227         * loader.c (method_from_methodspec): Likewise.
17228         (mono_get_method_from_token): Likewise.
17229         (mono_method_get_header): Likewise.
17230
17231 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17232
17233         * marshal.c: handle additional GENERICINST case (patch from
17234         Thong Nguyen <tum@veridicus.com>).
17235         Fix a few cases where LDIND_I/STIND_I was used for references.
17236
17237 2006-02-16  Raja R Harinath  <rharinath@novell.com>
17238
17239         * reflection.c (mono_reflection_get_token): Remove unused variable.
17240
17241 2006-02-16  Martin Baulig  <martin@ximian.com>
17242
17243         * reflection.c (mono_reflection_get_token): Add support for fields
17244         in instantiated generic types.
17245
17246         * icall.c
17247         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
17248
17249 2006-02-15  Martin Baulig  <martin@ximian.com>
17250
17251         * icall.c
17252         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
17253         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
17254         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
17255         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
17256
17257 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17258
17259         * class.c, metadata.c, metadata.h, object.c, icall.c,
17260         marshal.c: changed mono_type_get_underlying_type () to do
17261         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
17262         Fixed handling of instantiated generic valuetypes (bug #75479).
17263
17264 2006-02-15  Raja R Harinath  <rharinath@novell.com>
17265
17266         * metadata.c (mono_metadata_decode_signed_value): Simplify.
17267         Delegate to mono_metadata_decode_value, and work on the returned value.
17268
17269         * icall.c (ves_icall_MonoType_GetGenericArguments):
17270         Add consistency check here too.
17271         
17272 2006-02-15  Ankit Jain  <jankit@novell.com>
17273
17274         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
17275         char/short etc.
17276
17277 2006-02-15  Ankit Jain  <jankit@novell.com>
17278
17279         * metadata.c (mono_metadata_decode_signed_value): New function to decode
17280         signed values, used only for representing lower bounds of arrays.
17281         (mono_metadata_parse_array_full): Use new
17282         mono_metadata_decode_signed_value to decode lower bounds.
17283
17284 2006-02-14  Martin Baulig  <martin@ximian.com>
17285
17286         * reflection.c
17287         (mono_reflection_get_token): Support "MonoGenericMethod" and
17288         "MonoGenericCMethod" and allow generic instances / methods.
17289
17290 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
17291
17292         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
17293         to obtain the terminal size using an ioctl.
17294
17295         * object.c (mono_nullable_init): Revert this as nullable reference
17296         types are not valid.
17297         (mono_nullable_box): Ditto.
17298
17299 2006-02-09  Dick Porter  <dick@ximian.com>
17300
17301         * threads.c (mono_thread_detach): Drop a reference to the thread
17302         we're detaching.
17303
17304 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
17305
17306         * object.c (mono_nullable_init): Handle nullable reference types.
17307         (mono_nullable_box): Ditto. Fixes #77446.
17308
17309 2006-02-07  Martin Baulig  <martin@ximian.com>
17310
17311         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
17312
17313 2006-02-07  Ankit Jain  <jankit@novell.com>
17314
17315         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
17316         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
17317         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
17318         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
17319         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
17320         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
17321
17322 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
17323
17324         * class.c (mono_class_create_generic): Set type_token as well.
17325
17326         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
17327         compatible with MS.
17328
17329 2006-02-02  Martin Baulig  <martin@ximian.com>
17330
17331         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
17332         has never been used so far.
17333
17334 2006-02-02  Martin Baulig  <martin@ximian.com>
17335
17336         * mono-debug-debugger.h: Changed comment at the top of this file;
17337         the header is not installed, but it's safe to #include it from
17338         within the JIT.
17339
17340         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
17341         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
17342
17343 2006-02-02  Martin Baulig  <martin@ximian.com>
17344
17345         * mono-debug.h
17346         (MonoSymbolTable): Removed the `metadata_info' field.
17347
17348         * mono-debug.c
17349         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
17350
17351         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
17352         (mono_debugger_add_builtin_types): Removed.
17353         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
17354         (mono_debugger_create_notification_function): We now operate on a
17355         pre-allocated area; take a `gpointer' and return `void'.
17356
17357         * mono-debug-debugger.c
17358         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
17359         (mono_debugger_add_builtin_types): Removed.
17360
17361 2006-02-02  Martin Baulig  <martin@ximian.com>
17362
17363         * threads.c (mono_debugger_create_all_threads): New public method.
17364
17365 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17366
17367         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
17368         breaks on several platforms.
17369
17370 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
17371
17372         * assembly.c: the VS.NET build doesn't supply default values for
17373         MONO_ASSEMBLIES and MONO_CFG_DIR.
17374
17375 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
17376
17377         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
17378         helper function.
17379
17380         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
17381
17382         * loader.c (method_from_memberref): Fix a warning.
17383
17384         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
17385
17386         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
17387         with explicit layout. Fixes #77433.
17388
17389 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
17390
17391         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
17392         max_interface_id is initialized before using it. Fixes #77398.
17393         (ves_icall_Type_GetInterfaces): Ditto.
17394
17395 2006-01-30  Raja R Harinath  <rharinath@novell.com>
17396
17397         * metadata.c (mono_metadata_parse_method_signature_full): Don't
17398         allocate memory for parameter attributes when parsing memberref
17399         signatures.
17400         * loader.c (mono_loader_set_error_method_load): Don't warn.
17401         (method_from_memberref): Ensure MissingMethodException gets thrown
17402         if method is not found.  Make warning more informative.
17403
17404 2006-01-29  Raja R Harinath  <harinath@gmail.com>
17405
17406         Fix #77397
17407         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
17408         return true if is byref.
17409         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17410         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
17411         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
17412
17413 2006-01-27  Raja R Harinath  <rharinath@novell.com>
17414
17415         Fix tests/find-method.2.il
17416         * loader.c (find_method, find_method_in_class): Remove is_inflated
17417         argument.  Revert 2006-01-18 change.
17418         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
17419         is generic, search for method in its generic definition.
17420         * class.c (mono_class_setup_vtable_general): Print generic
17421         arguments of generic types in debugging printf.
17422
17423 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
17424
17425         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
17426
17427         * threads.c (mono_threads_request_thread_dump): New helper function.
17428
17429 2006-01-25  Raja R Harinath  <rharinath@novell.com>
17430
17431         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
17432
17433 2006-01-25  Ankit Jain  <jankit@novell.com>
17434
17435         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
17436         move definition to ..
17437         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
17438         
17439 2006-01-25  Ankit Jain  <jankit@novell.com>
17440             Raja R Harinath  <rharinath@novell.com>
17441
17442         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
17443         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
17444         as necessary.
17445
17446 2006-01-25  Martin Baulig  <martin@ximian.com>
17447
17448         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
17449         `MonoDebuggerThread' into debug-debugger.c.
17450
17451 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
17452
17453         * profiler.c: fix printing of data.
17454
17455 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
17456
17457         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
17458           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
17459
17460 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17461
17462         * object.c: fix deadlock related to string interning.
17463
17464 2006-01-23  Martin Baulig  <martin@ximian.com>
17465
17466         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
17467
17468         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
17469
17470 2006-01-23  Martin Baulig  <martin@ximian.com>
17471
17472         * mono-debug.h: Moved the prototypes of some functions which are
17473         used by the JIT here from mono-debug-debugger.h.
17474
17475 2006-01-21  Martin Baulig  <martin@ximian.com>
17476
17477         * Makefile.am: Don't install mono-debug-debugger.h.
17478
17479 2006-01-21  Martin Baulig  <martin@ximian.com>
17480
17481         * mono-debug-debugger.h: Enforce the private status of this header
17482         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
17483         Moved some stuff from mono-debugger-jit-wrapper.h here.
17484
17485 2006-01-20  Raja R Harinath  <rharinath@novell.com>
17486
17487         * class.c (mono_class_from_typeref): Add a sanity test to help
17488         catch lack of assembly load/search hooks.
17489
17490 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
17491
17492         * marshal.c (emit_struct_conv): Relax the fields with same offset
17493         check even more. Fixes #77230.
17494
17495 2006-01-18  Martin Baulig  <martin@ximian.com>
17496
17497         * loader.c (find_method_in_class): Added `gboolean is_inflated'
17498         argument; if false, we compare the uninstantiated signatures.
17499         (method_from_memberref): Compare the uninstantiated signatures;
17500         fixes #76417.
17501
17502 2006-01-18  Robert Jordan  <robertj@gmx.net>
17503
17504         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
17505         Clear the weak link. Fixes bug #77170.
17506
17507         * gc.c (mono_gchandle_free):
17508         Reflect *-gc.c changes (tiny optimization).
17509
17510 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
17511
17512         * metadata.c (mono_metadata_signature_dup): Applied patch from
17513         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
17514         Fixes #77288.
17515
17516 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
17517
17518         * marshal.c (emit_struct_conv): Allow fields with the same offset when
17519         marshalling from native to managed code. Fixes #77230.
17520
17521 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17522
17523         * threadpool.c: fix problem (Mac only) when more than one asynchronous
17524         connect. Fixes bug #77020.
17525
17526 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17527
17528         * class.c: fixed id assignement for nested interfaces (bug #77275).
17529         Added also better info for --print-vtable debugging.
17530
17531 2006-01-12  Martin Baulig  <martin@ximian.com>
17532
17533         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
17534         interfaces on-the-fly; fixes #76625.
17535
17536         * class-internals.h
17537         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
17538         don't need that anymore.
17539
17540 2006-01-12  Miguel de Icaza  <miguel@novell.com>
17541
17542         * socket-io.c
17543         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17544         To avoid initing the nested_classes when not needed I turned the
17545         PeerCredData as a toplevel internal class, as it has to be shared
17546         anyways. 
17547
17548         Fixes the CASA issue.
17549
17550 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
17551
17552         * domain.c: Accessors for MonoJitInfo
17553
17554         * profiler-private.h: Add jitinfo to the end jit hook
17555
17556         * profiler.[ch]: Define new hooks, called after jitting which give
17557         the MonoJitInfo that was compiled
17558
17559 2006-01-10  Martin Baulig  <martin@ximian.com>
17560
17561         * class.c (mono_class_setup_events): Add support for generic
17562         classes; fixes #76440.
17563
17564 2006-01-06  Raja R Harinath  <rharinath@novell.com>
17565
17566         Fix #77160.
17567         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
17568         on passed-in method.
17569
17570 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
17571
17572         * object.c (mono_runtime_invoke_array): Add Nullable support.
17573
17574         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
17575
17576 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
17577
17578         * file-io.c: Don't consider sockets as directory and avoid an endless
17579         loop. Fix bug #76966.
17580
17581 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
17582
17583         * object.c (mono_nullable_init): New helper function.
17584         (mono_nullable_box): Ditto.
17585
17586         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
17587
17588         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
17589
17590         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
17591         
17592 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
17593
17594         * class.c (mono_class_is_assignable_from): Make T assignable to 
17595         Nullable<T>.
17596
17597 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
17598
17599         * appdomain.c: Bump corlib version to 46.
17600         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
17601         serialization purpose) and changed ves_icall_System_Reflection_
17602         Assembly_get_code_base signature to accept a boolean (to escape, or 
17603         not, the assembly code base).
17604
17605 2005-12-23  Dick Porter  <dick@ximian.com>
17606
17607         * icall.c: 
17608         * threads-types.h: 
17609         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
17610         CreateEvent icall now returns "created" boolean parameter.
17611
17612 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
17613
17614         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
17615         #76967.
17616
17617         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
17618         when attr_klass is an interface. Fixes #77045.
17619
17620 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
17621
17622         * marshal.c (emit_struct_conv): Fix previous patch.
17623         
17624         * marshal.c (emit_struct_conv): Add a check for fields with the same
17625         offset.
17626
17627 2005-12-20  Raja R Harinath  <rharinath@novell.com>
17628
17629         Fix regression in Mono.C5.
17630         * class.c (mono_class_create_generic): If 'klass' is an interface
17631         set up the interface offsets.
17632         (mono_class_is_assignable_from): Don't throw away generic arguments.
17633
17634 2005-12-19  Raja R Harinath  <rharinath@novell.com>
17635
17636         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
17637         type parameters.
17638
17639 2005-12-15  Raja R Harinath  <rharinath@novell.com>
17640
17641         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
17642         dead store.
17643         (do_mono_metadata_parse_generic_class): Don't pass the current
17644         generic context when parsing the type being instantiated: it
17645         cannot use it, anyway.
17646
17647         * loader.c (method_from_memberref): Don't inflate a signature if
17648         it doesn't contain any type parameters.
17649
17650 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
17651
17652         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
17653
17654 2005-12-14  Martin Baulig  <martin@ximian.com>
17655
17656         * class.c
17657         (mono_type_get_name_recurse): Don't return null for type
17658         parameters and open generic classes.
17659         (mono_class_setup_methods): Don't exclude generic instances.
17660         (mono_get_unique_iid): Use different IDs for different
17661         instantiations of the same generic type.
17662         (mono_class_setup_vtable): Only use setup_generic_vtable() for
17663         open generic instances; create a normal vtable for closed generic
17664         instances.
17665         (mono_class_setup_vtable_general): We're now also called for
17666         closed generic instances.
17667
17668         * reflection.c
17669         (mono_reflection_bind_generic_parameters): Correctly use
17670         mono_metadata_lookup_generic_inst() everywhere.
17671
17672 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
17673
17674         * object.c (mono_class_create_runtime_vtable): Call 
17675         mono_class_setup_vtable ().
17676
17677         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
17678         function.
17679         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
17680         #76959.
17681
17682         * loader.c (mono_loader_set_error_type_load): Print the type load
17683         warnings to the console so they are more visible to the user.
17684         (mono_loader_set_error_method_load): Ditto.
17685
17686         * reflection.c (ensure_runtime_vtable): Revert the last change as it
17687         is still broken.
17688         
17689         * reflection.c (ensure_runtime_vtable): Fix build.
17690
17691         * reflection.c (ensure_runtime_vtable): Disable an optimization which
17692         doesn't work in all cases.
17693
17694 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
17695
17696         * object.c (mono_array_new_full): Treat a single dimensional array
17697         with 0 lower bounds as an szarray. Fixes #76973.
17698
17699         * reflection.c (custom_attr_visible): Really fix this.
17700
17701 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
17702
17703         * reflection.c (custom_attr_visible): Allow nested public attributes
17704         as well.
17705
17706         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
17707         interface check.
17708
17709 2005-12-12  Raja R Harinath  <harinath@gmail.com>
17710
17711         * class.c (set_generic_param_owner): Delete.
17712         (mono_class_create_from_typedef): Don't set ->owner field of
17713         generic parameters to "param containers" of enclosing classes.
17714         * reflection.c (mono_reflection_initialize_generic_parameter):
17715         Likewise.
17716
17717 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
17718
17719         * reflection.c (custom_attr_visible): Fix build.
17720
17721 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
17722
17723         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
17724         private attributes.
17725         
17726         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
17727         handling of null parameter defaults.
17728
17729 2005-12-09  Raja R Harinath  <rharinath@novell.com>
17730
17731         * class.c (mono_class_from_generic_parameter): Don't set
17732         klass->generic_container.
17733         (my_mono_class_from_generic_parameter): Likewise.
17734
17735 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
17736
17737         * reflection.c (load_public_key): Fix a warning.
17738         (method_encode_code): Fix unaligned accesses.
17739
17740 2005-12-07  Martin Baulig  <martin@ximian.com>
17741
17742         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
17743
17744         * reflection.c
17745         (write_generic_param_entry): Encode our custom attrs.
17746
17747         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
17748
17749 2005-12-07  Martin Baulig  <martin@ximian.com>
17750
17751         * reflection.c (encode_new_constraint): Removed; we don't use the
17752         `NewConstraintAttribute' anymore.
17753
17754 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
17755
17756         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
17757         not fire a TypeResolve event when Assembly.GetType () is called.
17758
17759 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
17760
17761         Beginning of support for nullable types in the runtime. Parts of
17762         this patch are from Martin.
17763
17764         * appdomain.c (MONO_CORLIB_VERSION): Bump
17765
17766         * domain.c (mono_init_internal): get the nullable type
17767
17768         * class.c (mono_class_is_nullable): New method
17769         (mono_class_get_nullable_param): New mehod
17770         (mono_class_create_generic): In types T? set cast_class to T
17771
17772         * class-internals.h (MonoDefaults): new nullable default class
17773         (mono_class_get_nullable_param, mono_class_get_nullable_param):
17774         new methods.
17775
17776 2005-12-05  Raja R Harinath  <rharinath@novell.com>
17777
17778         * metadata.c (select_container): New.  Refactor code to select the
17779         appropriate GenericContainer given the type of generic parameter
17780         we are looking for.
17781         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
17782         not a MonoGenericContext.  Use select_container.  Update parameters.
17783         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
17784         and MONO_TYPE_MVAR.
17785         (unwrap_arrays): Remove duplicate tests.
17786         (find_generic_param): Rename from 'has_same_context'.  Now walks a
17787         generic instantiated class to find any arguments that are generic
17788         parameters.
17789         (mono_type_create_from_typespec_full): Use find_generic_param to
17790         avoid evicting some generic instantiations from the typespec
17791         cache.
17792
17793 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
17794
17795         * reflection.c: fixed writing of doubles on ARM FPA.
17796
17797 2005-12-02  Robert Jordan  <robertj@gmx.net>
17798
17799         * icall.c: Fixed EventInfo.ReflectedType (#76829).
17800
17801 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17802
17803         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
17804         least on SUSE 10 they are not the same (on debian, they are just the
17805         same thing).
17806
17807 2005-12-01  Raja R Harinath  <rharinath@novell.com>
17808
17809         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
17810         DeclaringType for VARs and MVARs.
17811         * class.c (set_generic_param_owner): Fix initialization of owner
17812         fields.
17813
17814 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
17815
17816         * icall.c: fixed Enum.ToObject() to correctly convert the values.
17817
17818 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17819
17820         * threadpool.c: workaround for a bug that shows up on the Mac:
17821         select()+connect() on a blocking socket is not like it should
17822         be, so we proceed to connect() in that case, wasting the I/O
17823         threadpool thread until connect succeedes. Fixes bug #75436.
17824
17825 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17826
17827         * threadpool.c: fix typo when setting file descriptor states.
17828
17829 2005-11-28  Raja R Harinath  <rharinath@novell.com>
17830
17831         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
17832         * metadata.c (mono_metadata_parse_method_signature_full): Don't
17833         create a temporary signature container.
17834         (mono_metadata_parse_generic_param): Update to changes.
17835         (mono_type_create_from_typespec_full): Update to changes.
17836         * loader.c (method_from_memberref): Don't use a
17837         MonoGenericContainer while parsing a memberref signature.
17838         (method_from_methodspec): Remove dead-store of the 'container'
17839         variable.  It's overwritten before use.
17840
17841         * metadata.c (mono_type_create_from_typespec_full): Make debugging
17842         checks tighter.
17843         (mono_metadata_parse_generic_param): Likewise.
17844         * loader.c (find_method_in_class): Does not need a
17845         MonoGenericContainer.  Use 'mono_method_signature' rather than
17846         'mono_method_signature_full'.
17847         (find_method, mono_get_method_constrained, method_from_memberref):
17848         Update to changes.
17849
17850         * metadata.c (mono_type_create_from_typespec_full): Ensure that
17851         owner-less generic-parameters are never evicted from the typespec
17852         cache.
17853
17854         * loader.c (method_from_memberref): Don't use the current context
17855         when parsing signatures.
17856         (method_from_methodspec, mono_get_method_from_token): Update to changes.
17857
17858         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
17859         side-effects in g_assert.
17860         * loader.c (mono_get_method_from_token): Resolve klass earlier so
17861         that we don't potentially lose information.
17862
17863 2005-11-26  Dick Porter  <dick@ximian.com>
17864
17865         * icall.c:
17866         * threads.c: icalls to implement basic (ie, not named)
17867         System.Threading.Semaphore.
17868
17869 2005-11-24  Dick Porter  <dick@ximian.com>
17870
17871         * process.c
17872         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
17873         Use GetProcessId() if it's available.
17874
17875 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
17876
17877         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
17878
17879 2005-11-23  Raja R Harinath  <rharinath@novell.com>
17880             Ankit Jain  <jankit@novell.com>
17881
17882         * loader.c (mono_get_method_from_token): Initialize 'method' field
17883         of all generic parameters before parsing the signature.  Remove
17884         code that "fixed"-up MVAR references.
17885
17886 2005-11-23  Ankit Jain  <jankit@novell.com>
17887
17888         * metadata.c (mono_metadata_has_generic_params):
17889         (mono_metadata_load_generic_param_constraints):
17890         (mono_metadata_load_generic_params): Move duplicate code ...
17891         (mono_metadata_get_generic_param_row): ... here. Returns the
17892         first row-id in GenericParam table for a given owner (token).
17893         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
17894         prototype.
17895
17896 2005-11-23  Raja R Harinath  <rharinath@novell.com>
17897             Ankit Jain  <jankit@novell.com>
17898
17899         * metadata.c (mono_metadata_class_equal): Pass signature_only when
17900         comparing VARs too.
17901         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
17902         type->data.generic_param only if the type is an MVAR.
17903         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
17904         leak owner-less VARs and MVARs into managed space.
17905
17906 2005-11-21  Martin Baulig  <martin@ximian.com>
17907
17908         * class-internals.h
17909         (MonoMethod): Moved the `generic_container' here from
17910         `MonoMethodNormal' since we now also need it for
17911         `MonoMethodPInvoke';
17912         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
17913         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
17914         an union containing both `MonoMethodNormal' and
17915         `MonoMethodPInvoke'.
17916
17917         * loader.c
17918         (mono_get_method_from_token): Allow implementing generic methods
17919         as interncalls.
17920
17921         * threads.c
17922         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
17923         icall.
17924
17925 2005-11-17  Dick Porter  <dick@ximian.com>
17926
17927         * icall.c: 
17928         * process.h: 
17929         * process.c: Split the Process Start_internal icall into
17930         ShellExecuteEx_internal and CreateProcess_internal, which are
17931         called depending on whether UseShellExecute is true.  Fixes bug
17932         76670.
17933
17934         * appdomain.c (MONO_CORLIB_VERSION): Incremented
17935
17936 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
17937
17938         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
17939         'msize' parameters, use the information in 'mspec' instead.
17940         (emit_object_to_ptr_conv): Ditto.
17941
17942         * marshal.c (emit_struct_conv): Handle explicit layout structs with
17943         fields out of order. Fixes #76733.
17944
17945 2005-11-17  Ankit Jain  <jankit@novell.com>
17946
17947         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
17948
17949 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
17950
17951         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
17952           bug #76575.
17953
17954 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
17955
17956         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
17957         for types with non-auto layout. Fixes #76717.
17958
17959 2005-11-16  Ankit Jain  <jankit@novell.com>
17960
17961         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
17962         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
17963         if generic_context is null.
17964           (mono_metadata_generic_param_equal): param->owner can be null.
17965           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
17966         null.
17967
17968 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
17969
17970         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
17971         the correct value.
17972
17973 2005-11-15  Martin Baulig  <martin@ximian.com>
17974
17975         * object.c (set_value): Use mono_class_from_mono_type() instead of
17976         the hack for generic instances; fixes #76136.
17977
17978 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
17979
17980         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
17981         fields.
17982
17983         * image.c (load_metadata_ptrs): Initialize the new fields.
17984
17985         * reflection.c (create_dynamic_mono_image): Ditto.
17986
17987         * reflection.c (build_compressed_metadata): Use the new fields.
17988
17989         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
17990         icall.
17991
17992         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
17993         icall.
17994         
17995 2005-11-15  Ankit Jain  <jankit@novell.com>
17996             Raja R Harinath  <harinath@gmail.com>
17997
17998         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
17999         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
18000         new per-generic_container cache if the cached MonoType's context matches
18001         the current context.
18002           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
18003         to the expected context.
18004           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
18005
18006 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18007
18008         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
18009         we changed the signature of an icall.
18010         * icall.c: Modify to mono_double_ParseImpl return true/false 
18011         depending on the success, instead of throwing the exception. This will
18012         help us in Double.TryParse methods.
18013         
18014 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
18015
18016         * marshal.c (emit_marshal_object): Throw an exception when
18017         marshalling 'object' instead of crashing. Fixes #76696.
18018
18019 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
18020
18021         * class-internals.h: Add prototype for mono_type_get_full_name ().
18022
18023 2005-11-11  Dick Porter  <dick@ximian.com>
18024
18025         * threads.c (mono_thread_manage): Make sure the main thread has
18026         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
18027
18028 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
18029
18030         * loader.c (mono_loader_set_error_type_load): Log a warning to the
18031         console about the missing type.
18032         (mono_loader_set_error_method_load): Ditto.
18033
18034 2005-11-09  Miguel de Icaza  <miguel@novell.com>
18035
18036         * mono-config.c (mono_get_config_dir): Set the system defaults if
18037         none is specified.
18038
18039         * assembly.c (mono_set_dirs): New API entry point to set the
18040         assembly and the config directory in one call
18041
18042 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
18043
18044         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
18045         the ftnptr was created from a delegate in a domain other than the
18046         current domain. Fixes #75377.
18047
18048         * exception.h exception.c: Add mono_get_exception_not_supported ().
18049
18050 2005-11-08  Martin Baulig  <martin@ximian.com>
18051
18052         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
18053
18054 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
18055
18056         * security-manager.h: Added definitions to deal with strongname key 
18057         pairs bigger (and smaller) than 1024 bits.
18058         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
18059         adjust wrt the public key length being used.
18060
18061 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
18062
18063         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
18064           Windows build (r51396-51397).
18065
18066 2005-11-03  Martin Baulig  <martin@ximian.com>
18067
18068         * class.c (mono_class_setup_vtable_general): Also add generic
18069         methods to the vtable; fixes #76581.
18070
18071 2005-11-01  Miguel de Icaza  <miguel@novell.com>
18072
18073         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
18074         sure that we lookup GetString method from the System.Text.Encoding
18075         class, not the derived class or we get an empty method.
18076
18077         Fixed class #76612.
18078
18079 2005-10-25  Miguel de Icaza  <miguel@novell.com>
18080
18081         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
18082         if it has been previously set (embedders). 
18083
18084         Make mono_set_rootdir available also on Unix.
18085
18086 005-10-24  Robert Jordan  <robertj@gmx.net>
18087
18088         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
18089
18090 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
18091
18092         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
18093         only calls which are made to native code use this flag.
18094
18095         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
18096
18097 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
18098
18099         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
18100         Add support for FieldBuilders.
18101
18102 2005-10-29  Martin Baulig  <martin@ximian.com>
18103
18104         * mono-debug.c
18105         (mono_debug_using_mono_debugger): New public method; returns
18106         whether we're running inside the debugger.
18107
18108 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
18109
18110         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
18111         for Method/Constructor/FieldBuilders.
18112
18113 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
18114
18115         * reflection.c (module_add_cattrs): Save custom attributes for global methods
18116         and fields as well.
18117
18118 2005-10-26  Martin Baulig  <martin@ximian.com>
18119
18120         * mono-debug-debugger.c
18121         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
18122
18123 2005-10-24  Raja R Harinath  <harinath@gmail.com>
18124
18125         * icall.c (base64_to_byte_array): Don't pass an out-of-range
18126         integer to isspace.
18127
18128 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
18129
18130         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
18131         when passing valuetypes byref. Fixes #76502.
18132
18133 2005-10-19  Jackson Harper  <jackson@ximian.com>
18134
18135         * profiler.c: Don't put a . in front of types that are not in a
18136         namespace.
18137
18138 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
18139
18140         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
18141
18142 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
18143
18144         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
18145         #76436.
18146         (mono_marshal_get_ldflda_wrapper): Fix a warning.
18147
18148 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18149
18150         * assembly.c metadata-internals.h icall.c: Define an additional
18151         parameter for mono_assembly_name_parse_full, so we can avoid creating
18152         S.R.AssemblyName.Version when no version info wasn't passed.
18153         
18154 2005-10-09  Miguel de Icaza  <miguel@novell.com>
18155
18156         * class.c (mono_type_get_full_name): Reimplement method that was
18157         removed. 
18158
18159         * image.c: Some docs
18160
18161 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
18162
18163         * profiler.c (output_newobj_profile): Fix printing of Total memory
18164         on x86.
18165
18166 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
18167
18168         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
18169
18170 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
18171
18172         * threads.c: remove debug output.
18173
18174 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
18175
18176         * threads.c (mono_thread_manage): Fix crashes if more than 64
18177         threads need to be aborted. Hopefully fixes #75899.
18178
18179         * assembly.c (mono_stringify_assembly_name): New helper function.
18180
18181         * class.c: Use mono_stringify_assembly_name instead of the similar
18182         static function.
18183
18184         * assembly.h assembly.c: Add support for calling a postload search 
18185         hook if an assembly cannot be loaded.
18186
18187         * appdomain.c: Register new search hooks which call the AssemblyResolve
18188         events in AppDomain. Fixes #75231
18189
18190 2005-10-07  Martin Baulig  <martin@ximian.com>
18191
18192         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
18193         methods without debug info.
18194
18195 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
18196
18197         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
18198         wrappers.
18199
18200 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18201
18202         * file-io.c: now that we return symlinks, use lstat and, when the file
18203         is a symbolic link, stat, to get the file attributes. Also avoid the
18204         conversion to/from utf16/external.
18205
18206 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
18207
18208         * class.c (mono_class_layout_fields): Compute klass->has_references
18209         correctly if an embedded valuetype is not yet initialized. Fixes
18210         #76331.
18211
18212 2005-10-04  Martin Baulig  <martin@ximian.com>
18213
18214         * metadata.c
18215         (mono_metadata_load_generic_param_constraints): New public
18216         function; splitted the constraints loading out from
18217         mono_metadata_load_generic_params().
18218
18219         * class.c (mono_class_create_from_typedef): Call
18220         mono_metadata_load_generic_param_constraints() after setting up
18221         the type and creating our parent; fixes #75329.
18222
18223 2005-10-04  Martin Baulig  <martin@ximian.com>
18224
18225         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
18226         non-dynamic parent classes.
18227
18228 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
18229
18230         * file-io.c : win32 build fix (ETXTBSY seems not found).
18231
18232 2005-10-04  Martin Baulig  <martin@ximian.com>
18233
18234         * reflection.c
18235         (mono_image_get_methodspec_token): Make the cache actually work;
18236         fixes #75974.
18237
18238 2005-10-04  Martin Baulig  <martin@ximian.com>
18239
18240         * class.c (mono_class_name_from_token): Removed the unneccessary
18241         `MonoGenericContext *' argument.
18242
18243 2005-10-04  Martin Baulig  <martin@ximian.com>
18244
18245         * loader.c
18246         (method_from_methodspec): Make the caching work again; fixes the
18247         performance regression from #76262.
18248
18249 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18250
18251         * file-io.c:
18252         * file-io.h:
18253         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
18254         GetFileSystemEntries that performs the same work but without going
18255         into io-layer, locking, etc.
18256
18257 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
18258
18259         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
18260         ThreadState_Stopped as well. Fixes #76047.
18261
18262 2005-09-29  Martin Baulig  <martin@ximian.com>
18263
18264         * class.c
18265         (inflate_generic_context): If the new context has a `gmethod', set
18266         its `container' that that gmethod's `container'.
18267
18268         * metadata.c
18269         (mono_metadata_parse_generic_param): Simplify things;
18270         `generic_container = generic_context->container;' is just fine.
18271
18272         * loader.c (method_from_methodspec): Code cleanups.
18273
18274 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
18275
18276         * decimal.c: fix warning (and let gcc generate correct
18277         code on ARM with optimizations).
18278
18279 2005-09-28  Martin Baulig  <martin@ximian.com>
18280
18281         * loader.c
18282         (method_from_memberref): Added `MonoGenericContext *class_context'
18283         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
18284         (method_from_methodspec): If we're a memberref, use the enclosing
18285         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
18286
18287 2005-09-28  Martin Baulig  <martin@ximian.com>
18288
18289         * object.c (mono_runtime_invoke_array): Added support for
18290         MONO_TYPE_GENERICINST; fixes #75917.
18291
18292 2005-09-27  Martin Baulig  <martin@ximian.com>
18293
18294         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
18295         `k->byval_arg.type' to determine the actual type.
18296
18297         * loader.c (method_from_methodspec): Removed some hacks.
18298
18299 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
18300
18301         * class-internals.h (mono_field_is_deleted): Do the test for
18302         rtspecialname before we check the actual name of the field. This
18303         prevents us from dereferencing a pointer into the string table,
18304         saving us from accessing a few pages
18305
18306         * *.c: Replace the use of {Enter,Leave}CriticalSection with
18307         macros. This will allow a deadlock debugger to easily be plugged
18308         in.
18309
18310 2005-09-27  Martin Baulig  <martin@ximian.com>
18311
18312         * loader.c (method_from_methodspec): Create a "signature"
18313         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
18314
18315 2005-09-27  Martin Baulig  <martin@ximian.com>
18316
18317         * class.c
18318         (inflate_generic_class): Correctly set the new context's
18319         container.
18320
18321         * loader.c
18322         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
18323         instead of a `MonoGenericContext *'.
18324         (mono_method_signature_full): Take a `MonoGenericContainer *'
18325         instead of a `MonoGenericContext *'.
18326
18327         * metadata.c
18328         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
18329         instead of a `MonoGenericContext *'.
18330         (mono_metadata_parse_method_signature_full): Likewise.
18331
18332 2005-09-26  Martin Baulig  <martin@ximian.com>
18333
18334         * class.c
18335         (mono_class_from_generic_parameter): Set `klass->generic_container'
18336         (mono_class_from_generic_parameter): Likewise.
18337         (mono_bounded_array_class_get): We inherit the generic container
18338         from the element class.
18339
18340         * loader.c
18341         (find_method, find_method_in_class): Take a `MonoGenericContext *'
18342         argument rather than computing it here.
18343         (method_from_memberref): Correctly set the generic context before
18344         parsing the signature.  Fixes #75681.
18345
18346 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
18347
18348         * object.c (mono_class_has_special_static_fields): Fix warnings.
18349
18350 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18351
18352         * assembly.c: Add parse_public_key function, to
18353         par the public keys. Also added mono_assembly_name_parse_full,
18354         to define it the parsed key should be freed or not.
18355         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
18356         to parse a long format assembly name.
18357         * metadata-internals.h: Keep mono_assembly_name_parse_full as
18358         private, since calling it to preserve the key requires
18359         freeing it manually.
18360         
18361 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
18362
18363         * locales.c : removed HAVE_ICU part.
18364
18365 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
18366
18367         * object.c (mono_class_create_runtime_vtable): Avoid calling 
18368         field_is_special_static if the klass has no special static fields.
18369
18370         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
18371         (MonoCachedClassInfo): Likewise.
18372
18373         * object.c (mono_class_has_special_static_fields): New helper function.
18374
18375 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18376
18377         * class.c (mono_class_create_from_typedef): Don't call 
18378         interfaces_from_typedef_full for enums.
18379         (mono_class_create_from_typedef): Compute the base types of enums directly
18380         without calling mono_class_setup_fields ().
18381         (mono_class_find_enum_basetype): New helper function.
18382
18383         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
18384         one place inside the string heap.
18385         
18386 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
18387
18388         * class.c: locking fixes, code cleanups, some docs added.
18389         Allocate some data structures in the image mempool.
18390
18391 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18392
18393         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
18394         the example code.
18395         
18396 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
18397
18398         * class-internals.h, class.c, reflection.c: reduce memory taken by
18399         MonoClass.
18400
18401 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
18402
18403         * metadata.c, metadata.h, loader.h: documentation updates, code and
18404         API cleanups.
18405
18406 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18407
18408         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
18409         the example code.
18410
18411         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
18412         page faults caused by the runtime while reading metadata.
18413
18414 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18415
18416         * socket-io.c: the field names were changed 3 months ago and no one
18417         realized until bug #76077 got filed!
18418
18419 2005-09-20  Martin Baulig  <martin@ximian.com>
18420
18421         * icall.c (assembly_icalls): Removed some unused debugger icalls.
18422
18423 2005-09-20  Martin Baulig  <martin@ximian.com>
18424
18425         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
18426         write the rank into the class entry.
18427
18428 2005-09-20  Martin Baulig  <martin@ximian.com>
18429
18430         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
18431
18432 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
18433
18434         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18435
18436         * icall.c (custom_attrs_defined_internal): New icall.
18437
18438         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
18439         function.
18440         (mono_custom_attrs_construct_by_type): New helper function.
18441
18442 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
18443
18444         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
18445         terminate the resulting string. Fixes #76123.
18446
18447 2005-09-16  Martin Baulig  <martin@ximian.com>
18448
18449         * mono-debug.c
18450         (mono_debug_add_method): Ignore inflated methods for the moment.
18451
18452 2005-09-14  Martin Baulig  <martin@ximian.com>
18453
18454         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
18455
18456 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
18457
18458         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
18459         return a success/failure indication.
18460         (mono_metadata_interfaces_from_typedef_full): Ditto.
18461         (get_constraints): Ditto.
18462
18463 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
18464
18465         * marshal.c (emit_marshal_array): Fix handling of null arrays.
18466         
18467         * marshal.c (emit_marshal_array): Add support for returning string
18468         arrays from delegates. Fixes #76063.
18469
18470         * marshal.c: Use the emit_ldloc/stloc macros where possible.
18471
18472 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
18473
18474         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
18475         icall.
18476
18477 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
18478
18479         * reflection.c icall.c: Fix after mono_get_exception_type_load
18480         signature change.
18481
18482         * assembly.c (mono_assembly_get_assemblyref): New helper function.
18483         (mono_assembly_load_reference): Use the new helper.
18484
18485         * class-internals.h (MonoLoaderError): New structure containing 
18486         information about type loading errors.
18487
18488         * class-internals.h loader.c: Add APIs to store per-thread loader
18489         error information.
18490
18491         * loader.c class.c: Set the loader error if needed.
18492
18493         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
18494
18495 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
18496
18497         * decimal.c: fixed to handle the broken ARM fp format.
18498
18499 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
18500
18501         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
18502         broken.
18503
18504 2005-09-06  Martin Baulig  <martin@ximian.com>
18505
18506         * domain.c (supported_runtimes): Added v2.0.50727.
18507
18508 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
18509
18510         * culture-info.h: reduce the size of some structures.
18511
18512 2005-09-05  Martin Baulig  <martin@ximian.com>
18513
18514         Reflect latest API changes in the August CTP.
18515
18516         * icall.c
18517         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
18518         ("MonoType.HasGenericArguments"): Removed.
18519         ("MonoMethod.BindGenericParameters"): Renamed to
18520         "MakeGenericMethod".
18521         ("MethodBuilder.BindGenericParameters"): Renamed to
18522         "MakeGenericMethod".    
18523
18524 2005-09-05  Martin Baulig  <martin@ximian.com>
18525
18526         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
18527
18528 2005-09-05  Martin Baulig  <martin@ximian.com>
18529
18530         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18531
18532         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
18533         generic_container is non-NULL.
18534
18535 2005-09-05  Martin Baulig  <martin@ximian.com>
18536
18537         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18538
18539         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
18540
18541 2005-08-29  Michal Moskal  <malekith@nemerle.org>
18542
18543         * reflection.c (encode_locals,
18544         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
18545         for large generic types.
18546
18547 2005-09-05  Martin Baulig  <martin@ximian.com>
18548
18549         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18550
18551         * class.c (mono_dup_array_type): New public method.
18552         (mono_metadata_signature_deep_dup): New public method.
18553         (dup_type): Correctly duplicate array and function types.
18554
18555 2005-09-05  Martin Baulig  <martin@ximian.com>
18556
18557         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18558
18559         * reflection.c (get_default_param_value_blobs): Handle generic types
18560         and generic methods.
18561
18562 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
18563
18564         * class.c: Fixed error reporting (method/class were inversed) for 
18565         inheritance demands.
18566         * security-manager.c|h: Added the AppDomain when calling the managed
18567         System.Security.SecurityManager.InheritanceDemand method.
18568
18569 2005-09-01  Raja R Harinath  <rharinath@novell.com>
18570
18571         * reflection.c (encode_marshal_blob): 'marshaltype' and
18572         'marshaltyperef' are alternate sources for the custom marshaler
18573         name.
18574
18575 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
18576
18577         * class.c: fix creation of array classes with rank == 1
18578         (patch by Ankit Jain <jankit@novell.com>).
18579
18580 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
18581
18582         * object.c: fix check for creating the bound data for arrays vs
18583         szarrays.
18584
18585 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18586
18587         * object.c: configuration file name is now based on the executable name,
18588         not the image name. Fixes bug #75931.
18589
18590 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
18591
18592         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
18593         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
18594
18595 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
18596
18597         * rand.c: Use wincrypt.h instead of WinCrypt.h.
18598
18599 2005-08-24  Ankit Jain  <jankit@novell.com>
18600             Raja R Harinath  <rharinath@novell.com>
18601
18602         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
18603           called by it recursively.
18604           (mono_class_init): Remove special case in pending_init handling, since it's
18605           superseded by the fix to mono_class_from_typeref.
18606
18607 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
18608
18609         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
18610         BROKEN_THREAD_START stuff.
18611
18612 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
18613
18614         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
18615         trampoline.
18616
18617         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
18618         
18619         * object.c (mono_delegate_ctor): Replace the original function address with
18620         a delegate trampoline.
18621
18622 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
18623
18624         * icall.c: add boolean argument to base64_to_byte_array and 
18625         InternalFromBase64String to control whether a whitespace-only string
18626         is allowed (or should casue a FormatException to be thrown). We need
18627         this as the behavior has changed between MS.NET 1.x and 2.0, and we
18628         to match the MS behaviour in both profiles.
18629         * appdomain.c: Bump corlib version.
18630
18631 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18632
18633         This patch implements a big portion of publisher policy
18634         support, used to bind assembly versions and redirect
18635         one assembly from version A to version B.
18636
18637         * assembly.c:
18638         New GSList loaded_assembly_bindings, for storing the cached
18639         assembly bindings.
18640         (assembly_binding_maps_name): New static function for checking if a 
18641         assembly binding information maps an assembly name.
18642         (mono_assembly_binding_info_free): New function for freeing
18643         assembly binding information resources.
18644         (get_publisher_policy_info): New static function for retrieving 
18645         assembly binding information from a MonoImage.
18646         (compare_versions): New static function for comparing an assembly
18647         binding information data and the version of an assembly name.
18648         (check_policy_versions): New static function for checking if an
18649         assembly binding info mapping an assembly name is valid for it.
18650         (mono_assembly_load_publisher_policy): New static function for
18651         loading the 'policy.major.minor.MyAssembly' image for an assembly
18652         with an assembly name 'aname'.
18653         (mono_assembly_bind_version): New static function for updating
18654         assembly redirection.
18655         (mono_assembly_apply_binding): New static function for applying
18656         assembly binding.
18657         (search_binding_loaded): New static function for searching 
18658         loaded assembly binding infos in the cache domain.
18659         (mono_assembly_load_full): Don't apply assembly binding for
18660         reflection only assemblies.
18661
18662         * metadata-internals.h: Add MonoAssemblyBindingInfo,
18663         which contains information about assembly binding. Also
18664         declare signature for mono_config_parse_publisher_policy ()
18665         function, used to retrieve pub policy info.
18666         
18667         * mono-config.c:
18668         (publisher_policy_start): New static function used to parse publisher 
18669         policy config files.
18670         (publisher_policy_parser): New static MonoParseHandler containing 
18671         the functions used when parsing config files.
18672         (mono_config_parse_publisher_policy): New function for parsing
18673         publisher policy files.
18674         
18675 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
18676
18677         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
18678
18679         * marshal.c (mono_delegate_free_ftnptr): Ditto.
18680
18681         * object.c (mono_get_addr_from_ftnptr): New helper function.
18682
18683         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
18684
18685         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18686
18687 2005-08-19  Dick Porter  <dick@ximian.com>
18688
18689         * threads.c, threads.h, appdomain.c, appdomain.h,
18690         profiler-private.h, monitor.c, object.c, object-internals.h,
18691         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
18692         store the thread ID, so it can hold a 64 bit value if needed.
18693
18694 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
18695
18696         * reflection.c (mono_reflection_create_dynamic_method): Store the
18697         handle class into the method references as well so ldtoken works in
18698         dynamic methods.
18699
18700         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
18701         types.
18702
18703 2005-08-19  Ankit Jain <jankit@novell.com>
18704
18705         Fix #75847.
18706         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
18707           here rather than using the method signature of a arbitrary function
18708           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
18709           two arguments.
18710           Hack done with Harinath.
18711
18712 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18713
18714         * threadpool.c: disable printing stack traces when we get a exception
18715         in a threadpool thread. I need to do more testing to figure out which
18716         cases actually print this. Fixes bug #75828.
18717
18718 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18719
18720         * icall.c: there might be ignored whitespace after the last '='. This
18721         fixes length computation and bug #75840.
18722
18723 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
18724
18725         * assembly.c (mono_assembly_load_full): Consider .exe extension as
18726         well. Fixes #75809.
18727
18728         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
18729         #75784.
18730         
18731         * reflection.c (create_custom_attr_data): Ditto.
18732
18733 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
18734
18735         * locales.c, culture-info.h : removed RegionLCIDMap.
18736         * culture-info-tables.h : regenerated.
18737
18738 2005-08-16  Martin Baulig  <martin@ximian.com>
18739
18740         * class.c (mono_type_get_name_recurse): Small fix.
18741
18742 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
18743
18744         * locales.c : indentation fixie.
18745
18746 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
18747
18748         * object-internals.h,
18749           locales.h,
18750           locales.c,
18751           culture-info.h,
18752           icall.c : added RegionInfo table support.
18753         * culture-info-table.h : regenerated for region support.
18754
18755 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
18756
18757         * reflection.c (resolve_object): handle all kinds of MonoMethod
18758         including generic ones
18759
18760 2005-08-12  Ankit Jain <jankit@novell.com>
18761
18762         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
18763           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
18764
18765 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
18766
18767         * process.c: Don't close a thread handle when it's NULL. This is a
18768         workaround for bug #75733.
18769
18770 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
18771
18772         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
18773
18774 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
18775
18776         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
18777
18778 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18779
18780         * threadpool.c: if a work item in the thread pool has a callback that
18781         catches a exception, don't propagate it after invoking the callback.
18782         Fixes bug #75336.
18783
18784 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
18785
18786         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
18787
18788         * class-internals.h (MonoCachedClassInfo): Add some new fields.
18789
18790         * class.c (mono_class_init): Load field info lazily in the AOT case.    
18791
18792         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
18793
18794 2005-08-03  Ankit Jain  <jankit@novell.com>
18795
18796         Fix #75683.
18797         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
18798           PInvoke calling convention is 0.
18799
18800 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
18801
18802         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
18803         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
18804
18805 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
18806
18807         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
18808         to handle threads not started by the GC (patch by Michael Meeks
18809         <michael.meeks@novell.com>).
18810
18811 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
18812
18813         * reflection.c: Make buffer used in emitting types larger for some
18814         big generic types (patch by Michal Moskal).
18815
18816 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
18817
18818         * mono-debug.c: Fix some (not all) alignment problems.
18819
18820 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18821
18822         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
18823         Invoke mono_image_load_from_data_full passing the refonly
18824         parameter.
18825
18826         * assembly.c
18827         (mono_assembly_open_from_bundle): Add the refonly argument, 
18828         in order to pass it to other methods it calls to.
18829         (do_mono_assembly_open): Add the refonly argument, in order 
18830         to pass it to other methods it calls to.
18831         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
18832         the refonly parameter to it.
18833
18834         * image.c: Add loaded_images_refonly_hash and
18835         loaded_images_refonly_guid_hash to cache the reflection
18836         only loaded images.
18837         (mono_images_init): Initialize the hash tables used for
18838         caching the reflection only images.
18839         (load_modules): Invoke mono_image_open_full passing the refonly
18840         parameter to load the modules the correct way.
18841         (build_guid_table): Add the refonly argument, to re-build the 
18842         correct hash table.
18843         (do_mono_image_open): Added the refonly argument, in order to
18844         define it for the loaded image.
18845         (mono_image_loaded_full): New function, which receives an
18846         additional parameter to look for the image in the refonly or
18847         non-refonly section.
18848         (mono_image_loaded): Updated, using mono_image_loaded_full.
18849         (mono_image_loaded_by_guid_full): The same case that happens
18850         with mono_image_loaded_full.
18851         (mono_image_loaded_by_guid): Likewise.
18852         (register_image): Use the ref_only variable inside MonoImage
18853         to decide in which hash table store the current image.
18854         (mono_image_open_from_data_full): Rename
18855         mono_image_open_from_data to mono_image_open_from_data_full,
18856         adding the refonly argument, to define the ref_only variable 
18857         inside MonoImage.
18858         (mono_image_open_from_data): Return 
18859         mono_image_open_from_data_full.
18860         (mono_image_open_full): Rename mono_image_open to
18861         mono_image_open_full, receiving the new refonly argument,
18862         to pass it to inner methods.
18863         (mono_pe_file_open): Update this function, to open
18864         a MonoImage as a non-refonly image.
18865         (mono_image_close): Use the refonly variable inside
18866         MonoImage to remove the image from the correct caches.
18867
18868         * image.h: Add the signatures of mono_image_open_full,
18869         mono_image_open_from_data_full, mono_image_loaded_full,
18870         mono_image_loaded_by_guid_full.
18871
18872         * metadata-internals.h: Add the ref_only field to 
18873         MonoImage.
18874         
18875 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18876
18877         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
18878         Fix the last behavior, which used to load the assemblies and
18879         extract MonoReflectionAssemblyName information, instead of
18880         extract it from the metadata tables. Needed for Reflection
18881         Only assemblies.
18882         
18883 2005-07-29  Martin Baulig  <martin@ximian.com>
18884
18885         * mono-debug-debugger.c
18886         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
18887         not initialized.
18888
18889         * mono-debug.c
18890         (mono_debug_address_from_il_offset): Check whether we have
18891         debugging support before attempting to take the lock.
18892         (mono_debug_source_location_from_address): Likewise.
18893         (mono_debug_source_location_from_il_offset): Likewise.
18894         (mono_debug_il_offset_from_address): Likewise.
18895         (mono_debug_address_from_il_offset): Likewise.
18896
18897 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
18898
18899         * class.c (mono_class_from_name_case): Add support for dynamic images.
18900         Fixes #75650.
18901
18902         * object.c (mono_class_compute_gc_descriptor): Add a workaround
18903         for #75479.
18904
18905 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
18906         
18907         * reflection.c (mono_method_get_object): Fix warning.
18908
18909 2005-07-28  Martin Baulig  <martin@ximian.com>
18910
18911         * mono-debug.c
18912         (mono_debug_add_wrapper): Also write the wrapper type.
18913
18914 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
18915
18916         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
18917         
18918         * class.c (mono_class_init): Avoid reading nested classes if the AOT
18919         data indicates the class has none.
18920
18921 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
18922
18923         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
18924         loader lock with the debugger lock. Prevents deadlocks for beagle.
18925
18926         Beagle can now run on an smp box for a weekend without any
18927         issues. Woohoo!
18928
18929 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
18930
18931         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
18932         in a module. Fixes #75629.
18933
18934 2005-07-26  Martin Baulig  <martin@ximian.com>
18935
18936         * mono-debug.c (mono_debug_add_wrapper): New static method.
18937         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
18938         interncall or a wrapper.
18939
18940         * mono-debug.h (MonoDebugWrapperData): New public typedef.
18941         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
18942         (MONO_DEBUGGER_VERSION): Bump to 51.
18943
18944         * mono-debug-debugger.c
18945         (mono_debugger_add_type): Removed this empty function.
18946         (mono_debugger_add_method): Likewise.
18947
18948 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
18949
18950         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
18951         before accessing method->slot.
18952
18953 2005-07-21  Jb Evain  <jbevain@gmail.com>
18954
18955         * reflection.c (method_encode_clauses/class): Handle filters clauses.
18956         Fixes #75010.
18957
18958 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
18959
18960         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
18961         #75587.
18962
18963 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
18964
18965         * image.h image.c: Add mono_image_get_guid () API function.
18966
18967 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
18968
18969         There were issues when multiple threads tried to load
18970         assemblies. A deadlock was created between assemblies_mutex and
18971         mono_domain_assemblies_lock. This fixes the issue by making the
18972         assembly ref counting be lock free. See bug 75586.
18973         
18974         * image.c (mono_image_close): The add ref function here was using
18975         Interlocked operations while the unref was using a mutex and a
18976         --. I don't think this was ever a bug that would be exposed in a
18977         non-pendantic way (ie, by an embedder doing a ref on one thread
18978         and an unref on another), but for the sake of correctness, this is
18979         now Interlocked.
18980
18981         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
18982         (mono_assembly_load_reference): Call mono_assembly_addref rather
18983         than touching the refcount ourselves.
18984         (mono_assembly_close): Use InterlockedDecrement to unref the
18985         assembly. Don't acquire the lock unless it is actually needed.
18986
18987 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
18988
18989         * class.c (mono_class_layout_fields): Fix calculation of has_references
18990         for generic types.
18991
18992 2005-07-12  Martin Baulig  <martin@ximian.com>
18993
18994         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18995
18996         * metadata.c
18997         (mono_type_hash): Provide better hashing for generic instances.
18998         (mono_generic_inst_hash): Improve hashing.
18999         (mono_generic_class_hash): Likewise.
19000
19001         * reflection.c (mymono_metadata_type_hash): Improve hashing for
19002         generic instances.
19003
19004 2005-07-12  Martin Baulig  <martin@ximian.com>
19005
19006         * reflection.c (mono_reflection_create_runtime_class): Remove the
19007         hack for generic type definitions and non-`Run' assemblies.
19008         (mono_reflection_bind_generic_parameters): Also use
19009         `klass->wastypebuilder' to check for TypeBuilders.
19010
19011 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
19012
19013         * class.c (mono_class_layout_fields): Fix calculation of has_references
19014         for generic types.
19015
19016         * class.c (inflate_generic_class): Fix a leak.
19017         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
19018         for generic types.
19019
19020 2005-07-11  Martin Baulig  <martin@ximian.com>
19021
19022         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
19023         on error.
19024
19025 2005-07-11  Martin Baulig  <martin@ximian.com>
19026
19027         * loader.c (find_method): Also lookup in
19028         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
19029
19030 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19031
19032         * appdomain.c (mono_domain_unload): Don't free the error message
19033         before passing it to mono_get_exception_...
19034
19035         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
19036         
19037 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
19038
19039         * threads.c: try to better guess an available RT signal (bug #75387).
19040
19041 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19042
19043         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
19044         and CACHE_OBJECT.
19045
19046 2005-07-07  Martin Baulig  <martin@ximian.com>
19047
19048         * class.c (mono_type_get_name_full): Return NULL for
19049         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
19050         fixes #75408.
19051
19052 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19053
19054         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
19055         exit the appdomain as well being aborted.
19056
19057         * threadpool.c: Create all threadpool threads inside the root appdomain, and
19058         change back to the root domain after calling managed code. This enables
19059         appdomains using threadpools to be unloaded.
19060
19061 2005-07-07  Martin Baulig  <martin@ximian.com>
19062
19063         * class-internals.h
19064         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
19065         into `MonoDynamicGenericClass' since we only need it for dynamic
19066         types.
19067
19068         * reflection.c (mono_class_bind_generic_parameters): We don't need
19069         to compute the `parent' here.
19070
19071 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
19072
19073         * culture-info-table.h : regenerated.
19074
19075 2005-07-06  Martin Baulig  <martin@ximian.com>
19076
19077         * icall.c
19078         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
19079
19080         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
19081
19082 2005-07-06  Martin Baulig  <martin@ximian.com>
19083
19084         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
19085         we're doing a signature-only comparision; fixes #74945.
19086
19087 2005-07-06  Martin Baulig  <martin@ximian.com>
19088
19089         * class-internals.h (MonoGenericClass): Moved some things out into
19090         a new `MonoInflatedGenericClass' type.  
19091         (MonoInflatedGenericClass): New type; the `klass' of a
19092         `MonoGenericClass' is now computed lazyly in
19093         mono_get_inflated_generic_class().      
19094
19095         * class.c (mono_get_inflated_generic_class): New public function.
19096         (mono_class_inflate_generic_method): Removed the unused
19097         `MonoClass *' argument.
19098         (setup_generic_vtable): Don't call mono_get_inflated_method() on
19099         all the methods.
19100         (mono_class_create_generic): Make this static and merge it with
19101         mono_class_create_generic_2(); we're now called automatically from
19102         mono_get_inflated_generic_class().
19103
19104         * loader.c (mono_method_signature): Call
19105         mono_get_inflated_method() here.
19106
19107 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
19108
19109         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
19110         type of fields with RVA.
19111
19112         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
19113         for this pseudo class.
19114         (my_mono_class_from_generic_parameter): Likewise.
19115         (mono_class_init): Allow interfaces to have cctors.
19116
19117 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
19118
19119         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
19120         lazily for AOT methods.
19121
19122 2005-07-05  Martin Baulig  <martin@ximian.com>
19123
19124         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
19125         returns FALSE for a successful match, not TRUE.
19126
19127 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
19128
19129         * loader.c (mono_method_get_index): Optimize this a bit.
19130
19131 2005-07-04  Martin Baulig  <martin@ximian.com>
19132
19133         * class.c
19134         (class_compute_field_layout): Move the check for generic type
19135         definitions into mono_class_layout_fields().  Fixes #74684.
19136         (mono_class_from_generic_parameter): Correctly compute
19137         `klass->parent'; fixes #75457.
19138
19139         * reflection.c (register_assembly, register_module): Make sure
19140         `domain->rejobject_hash' is already created.
19141
19142 2005-07-02  Martin Baulig  <martin@ximian.com>
19143
19144         * class-internals.h
19145         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
19146         `MonoDynamicGenericClass'.      
19147
19148 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
19149
19150         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
19151         returned by a field getter is null, since null is a valid value.
19152
19153 2005-07-01  Martin Baulig  <martin@ximian.com>
19154
19155         * reflection.c (mono_reflection_generic_class_initialize): Update
19156         the `dgclass->fields [i].parent' to the correct class.
19157         (mono_image_get_fieldref_token): Use the declaring type, not the
19158         reflected type.
19159
19160 2005-07-01  Martin Baulig  <martin@ximian.com>
19161
19162         * loader.c (find_method): Also look in the interfaces; fixes #75429.
19163
19164 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
19165
19166         * threads.c (thread_cleanup): assert that thread != NULL
19167         (wait_for_tids_or_state_change): We were using the wrong variable
19168         when accessing wait->threads. `i' was always out of the bounds of
19169         the array.
19170
19171 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19172
19173         * loader.c: map user32 and kernel32 to libMonoSupportW
19174
19175 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
19176
19177         * appdomain.c (unload_thread_main): Mark this as WINAPI.
19178
19179 2005-06-28  Martin Baulig  <martin@ximian.com>
19180
19181         * loader.c (method_from_methodspec): Fix #75334.
19182
19183 2005-06-28  Martin Baulig  <martin@ximian.com>
19184
19185         Fix #74953 - Arrays now implement the generic IList<T> interface
19186         on the 2.0 platform.
19187
19188         * class-internals.h (MonoDefaults): Added `generic_array_class'.
19189
19190         * reflection.c (mono_class_bind_generic_parameters): New public
19191         function; similar to mono_reflection_bind_generic_parameters(),
19192         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
19193
19194         * domain.c (mono_init_internal): Try to initialize.
19195         `mono_defaults.generic_array_class' here; this'll only succeed if
19196         we're using the 2.0 corlib.
19197
19198         * icall.c
19199         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
19200         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
19201         (mono_lookup_internal_call): Added support for nested classes.
19202
19203         * loader.c
19204         (mono_get_method_from_token): Set `result->signature->pinvoke' if
19205         we're an interncall and have generic arguments.
19206
19207         * class.c
19208         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
19209         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
19210         instance of System.Array.InternalArray<T> for arrays, so they
19211         implement the generic IList<T> interface.
19212
19213 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
19214
19215         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
19216         (chastamar@yahoo.com). Fixes #75374.    
19217
19218 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
19219
19220         * culture-info-table.h: regenerated.
19221
19222 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19223
19224         * icall.c: handle spaces correctly for base64 strings.
19225
19226 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
19227
19228         * *.c: Kill some warnings.
19229
19230 2005-06-23  Duncan Mak  <duncan@novell.com>
19231
19232         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
19233         that this builds on Solaris 10 (x86).
19234
19235 2005-06-23  Martin Baulig  <martin@ximian.com>
19236
19237         * class.c
19238         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
19239         generic type definitions.
19240
19241 2005-06-23  Martin Baulig  <martin@ximian.com>
19242
19243         Fix #75331.
19244
19245         * metadata.c (mono_class_get_overrides): Renamed to
19246         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
19247         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
19248         pass it to mono_get_method_full().
19249
19250 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
19251
19252         * reflection.c (mono_reflection_create_runtime_class): take the
19253         mono_domain_lock in this method. Prevents deadlocks
19254
19255 2005-06-22  Martin Baulig  <martin@ximian.com>
19256
19257         * loader.c (method_from_methodspec): Fix #75330.
19258
19259 2005-06-22  Martin Baulig  <martin@ximian.com>
19260
19261         * reflection.c (type_get_qualified_name): Use
19262         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
19263         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
19264         argument; use it if we don't have an assembly name.
19265
19266 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
19267
19268         * object.c: In mono_message_init, set "copy out" flag for in
19269         parameters with the [Out] flag.
19270
19271 2005-06-21  Martin Baulig  <martin@ximian.com>
19272
19273         * class.c
19274         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
19275         and MONO_TYPE_PTR.
19276
19277 2005-06-21  Martin Baulig  <martin@ximian.com>
19278
19279         * class.c (mono_class_init): Don't initialize `class->fields' for
19280         generic instances since they're initialized again in
19281         compute_field_layout(). 
19282         (compute_field_layout): Set the field's `generic_info' here; fix
19283         #75320. 
19284
19285 2005-06-21  Martin Baulig  <martin@ximian.com>
19286
19287         * class-internals.h
19288         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
19289
19290         * metadata.c (mono_metadata_generic_method_equal): Also
19291         distinguish the `generic_class'; fixes #75334.
19292
19293 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19294
19295         * domain.c:
19296         * appdomain.c:
19297         * domain-internals.h:
19298         * reflection.c: 'domain_assemblies' field is now protected by its own
19299         lock. Don't call into managed code to run the AssemblyLoad event if we
19300         now there are no registered delegates for it.
19301
19302 2005-06-20  Martin Baulig  <martin@ximian.com>
19303
19304         * class.c (mono_class_is_assignable_from): Use a custom version of
19305         mono_class_has_parent() to make things work for generic instances;
19306         fix #75300.
19307
19308 2005-06-20  Martin Baulig  <martin@ximian.com>
19309
19310         * loader.c (method_from_methodspec): Apply a patch from
19311         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
19312
19313 2005-06-20  Martin Baulig  <martin@ximian.com>
19314
19315         * class.c (mono_class_init): Reverted Zoltan's last change; it
19316         breaks generics.
19317
19318 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
19319
19320         * threads.c (wait_for_tids_or_state_change): Add missing locking.
19321
19322 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19323
19324         * socket-io.c: fix the index in the socket array for writable/error
19325         sockets. Fixes bug #75306.
19326
19327 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
19328
19329         * class.c (mono_class_init): Allow interfaces to have static ctors.
19330
19331 2005-06-17  Martin Baulig  <martin@ximian.com>
19332
19333         * loader.c (method_from_methodspec): Use `context->container' when
19334         parsing the `gmethod->inst'.
19335
19336 2005-06-17  Martin Baulig  <martin@ximian.com>
19337
19338         * class.c (mono_type_get_name_recurse): Don't add the assembly
19339         name for type arguments.
19340
19341 2005-06-15  Martin Baulig  <martin@ximian.com>
19342
19343         * reflection.c (mono_image_get_inflated_method_token): Encode
19344         correct klass; fixes #75260.
19345
19346 2005-06-13 Michal Moskal <malekith@nemerle.org>
19347
19348         * icall.c: Make GetCorrespondingMethod/Constructor take
19349         MonoReflectionMethod method not MonoMethod. Removed
19350         MonoType.GetCorrespondingField, and make
19351         MonoGenericType.GetCorrespondingField take name not
19352         MonoClassField.
19353
19354 2005-06-13  Michal Moskal <malekith@nemerle.org>
19355
19356         * reflection.c (field_encode_signature, encode_locals):
19357          Make sizes of buffers for types larger (for big generic types).
19358          (create_generic_typespec,
19359          mono_reflection_sighelper_get_signature_local,
19360          mono_reflection_sighelper_get_signature_field):
19361          Add asserts for too small buffers.
19362
19363 2005-06-15  Martin Baulig  <martin@ximian.com>
19364
19365         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
19366         if our parent is not a dynamic type.
19367
19368 2005-06-15  Martin Baulig  <martin@ximian.com>
19369
19370         * class-internals.h (MonoTypeNameFormat): New enum.
19371
19372         * class.c
19373         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
19374         (mono_type_get_full_name): Removed.
19375         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
19376         argument instead of the boolean's.
19377
19378         * icall.c (ves_icall_System_MonoType_getFullName):
19379         Added `gboolean assembly_qualified'.    
19380
19381         * reflection.h
19382         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
19383
19384         * reflection.c (mono_reflection_parse_type): Parse the new type
19385         name format.
19386
19387 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19388
19389         * icall.c: no need to convert from utf16 to utf8 and then back again
19390         after the call to GetLogicalDrives.
19391
19392 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19393
19394         * icall.c: frombase64. Fix problems exposed by new tests.
19395
19396 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19397
19398         * icall.c: added internal calls for converting char [] and strings in
19399         base64 into byte [].
19400
19401 2005-06-10  Martin Baulig  <martin@ximian.com>
19402
19403         * class.c (mono_class_create_generic_2): Read the nested classes
19404         from the metadata rather than from `gklass->nested_classes' since
19405         `gklass' might not be initialized yet.
19406
19407 2005-06-09  Duncan Mak  <duncan@novell.com>
19408
19409         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
19410         all public headers. Fixes #74919.
19411
19412 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
19413
19414         * domain.c: The key for proxy_vtable_hash is now a pointer
19415         array. Added new GHashFunc and GCompareFunc functions for this.
19416
19417         * class.h: The list of interfaces in MonoRemoteClass is known in
19418         advance and can't grow (we create a new MonoRemoteClass if needed),
19419         so now the interface array can be allocated together with
19420         MonoRemoteClass.
19421         
19422         * object.c: Added a new method create_remote_class_key.
19423         Fixed mono_remote_class so it does not depend on
19424         mono_upgrade_remote_class.
19425         Removed extend_interface_array.
19426         Added new method clone_remote_class(), which makes a copy of a remote
19427         class and adds a new interface or class to it.
19428         mono_upgrade_remote_class() now creates a new remote class (or gets
19429         it from the cache) if an vtable upgrade is needed. In this way
19430         we make sure that other objects sharing the same remote class
19431         don't get the new vtable with unwanted interfaces.
19432         
19433         * object-internals.h:
19434         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
19435         
19436         * marshal.c: Track changes in mono_upgrade_remote_class().
19437
19438 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
19439         * icall.c: Add runtime methods for obtaining members of inflated
19440         class, which were created from supplied non-inflated members. It
19441         is used in internal Get{Method,Constructor,Field} methods in
19442         System.Type
19443
19444 2005-06-09  Martin Baulig  <martin@ximian.com>
19445
19446         * reflection.c
19447         (mono_reflection_bind_generic_method_parameters): Fix #75169.
19448
19449 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19450         * reflection.c (mono_image_basic_init): Define
19451         Version in MonoDynamicAssembly. 
19452         
19453 2005-06-08  Martin Baulig  <martin@ximian.com>
19454
19455         Fix #75136.
19456
19457         * loader.c
19458         (mono_method_signature_full): New public method; takes a
19459         `MonoGenericContext *'.
19460         (find_method): Use mono_method_signature_full() and pass the
19461         klass'es context to it.
19462
19463         * class.c (mono_class_is_inflated_method): Use
19464         mono_method_signature_full() and pass the context to it.
19465
19466 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
19467
19468         * object.c: add proper locking in mono_remote_class_vtable(),
19469         fixes possible memory corruption.
19470
19471 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
19472
19473         * marshal.c (mono_remoting_marshal_init): set
19474         initialized after initialization.
19475
19476 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
19477
19478         * locales.c : hush.
19479
19480 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
19481
19482         * object.c (extend_interface_array): fix really silly
19483         memory corrupting / comparison bug.
19484
19485 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19486
19487         * reflection.c: Functions added to support the creation
19488         of CustomAttributeData, which includes Attribute data
19489         used by ReflectionOnly methods.
19490
19491         * reflection.h:  mono_reflection_get_custom_attrs_data and
19492          mono_custom_attrs_data_construct added (functions exposed).
19493
19494          * icall.c: Added mono_reflection_get_custom_attrs_data
19495          as icall.
19496         
19497 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
19498
19499         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
19500         lupus's request.
19501
19502 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
19503
19504         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
19505
19506         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
19507         dynamic DllImportAttribute.
19508
19509         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
19510         dynamic DllImportAttribute.
19511
19512         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
19513         Fixes #75162.
19514
19515 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19516
19517         * threads.c: avoid segfault when an unstarted thread is aborted.
19518
19519 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
19520
19521         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
19522         Returns the name and version of the runtime for reporting.
19523
19524 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19525
19526         * appdomain.c: bump corlib version.
19527         * object-internals.h: new field in MonoReflectionAssembly.
19528
19529 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19530
19531         * object-internals.h: Carlos forgot to add this field.
19532
19533 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19534
19535         * icall.c: Added create_version to create instances
19536         of Version of MonoReflectionAssemblyName. This change helps
19537         the AssemblyName tests to keep running fine.
19538         
19539 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
19540   
19541         * object.c (mono_method_return_message_restore): A somehow less
19542         intrusive fix for #75138.
19543
19544 2005-06-03  Raja R Harinath  <rharinath@novell.com>
19545
19546         * object.c (mono_method_return_message_restore): Fix computation
19547         of expected number of out args.
19548
19549 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
19550
19551         * reflection.c (mono_image_get_method_info): Fix the case when the
19552         charset is empty.
19553
19554 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
19555
19556         * object.c: Added missing null check in
19557           mono_method_return_message_restore.
19558
19559 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
19560
19561         * reflection.c (mono_image_get_method_info): Handle the case when
19562         dllentry is empty.
19563
19564 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
19565
19566         * object.c: When creating the vtable for a proxy, take into account
19567         all inherited interfaces, not only the ones registered in
19568         iclass->interfaces. This fixs bug #74996.
19569         Also, in mono_method_return_message_restore, verify that the array
19570         of out args has the expected lengh.
19571
19572 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19573
19574         * socket-io.c: update the timeout in Poll when the call is interrupte.
19575
19576 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19577
19578         * socket-io.c: support abort/suspend in Select_internal after last
19579         change.
19580
19581 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19582
19583         * threadpool.c: remove warning.
19584
19585 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19586
19587         * icall.c:
19588         * socket-io.[ch]: Select_internal uses poll() now when available, thus
19589         removing the 1024 limit from select(). Runtime part of the fix for
19590         bug #71203.
19591
19592 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19593
19594         * socket-io.c: when resolving the addresses for the same
19595         host returned by gethostname(), get the local IPs from the interface
19596         list. Loopback addresses are discarded if the are interfaces up with
19597         non-loopback ones. Fixes bug #63265.
19598
19599 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
19600
19601         * appdomain.c, verify.c, object-internals.h, reflection.c:
19602         bumped corlib number to 36, and added new extra_flags field
19603         to ReflectionMethodBuilder and friends.  Fixes #75060.
19604
19605 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
19606
19607         * gc.c: register a new weak link only if the object is non-null
19608         (fixes bug#75047).
19609
19610 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
19611
19612         * culture-info.h : short time pattern too.
19613
19614 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
19615
19616         * culture-info.h : expand long time pattern string length.
19617
19618 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
19619
19620         * culture-info-table.h : update (more French date format; #72788).
19621
19622 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
19623
19624         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
19625         the method is static. Fixes #75029.
19626
19627 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
19628
19629         * reflection.c: Update the table_idx field of method builders after
19630         saving the module, since it can change. This is a workaround for
19631         bug #74914. 
19632
19633 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
19634
19635         * culture-info-table.h : update (additional French date format).
19636
19637 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
19638
19639         * icall.c (ves_icall_type_Equals): Revert last change.
19640         
19641         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
19642
19643         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
19644
19645 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
19646
19647         * class-internals.h: Added executioncontext_class field to 
19648         MonoDefaults structure.
19649         * domain.c: Cache System.Threading.ExecutionContext class in 
19650         mono_defaults.
19651         * object.c: Capture the ExecutionContext for asynchroneous calls in
19652          mono_async_result_new.
19653         * object-internals.h: Added execution_context and original_context 
19654         fields to MonoAsyncResult. Added execution_context to MonoThread.
19655         * security-manager.c|.h: Added mono_get_context_capture_method to 
19656         return the capture method (if required by the security manager or by
19657         the framework version used).
19658         * threadpool.c: Apply capture (if present) ExecutionContext in 
19659         mono_async_invoke and revert to original context after it completes.
19660
19661 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
19662
19663         * culture-info-table.h : updated (real hacky solution for zh-CHT).
19664
19665 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
19666
19667         * culture-info-table.h : zh-CHT related workaround.
19668
19669 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
19670
19671         * marshal.c (emit_marshal_custom): Add some error checking and call the
19672         methods in the ICustomMarshaler interface. Fixes #74875.
19673         
19674         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
19675         native->managed wrappers.
19676
19677 2005-05-12  Martin Baulig  <martin@ximian.com>
19678
19679         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
19680         here and use the loader lock.
19681
19682         * mono-debug.c: Properly lock when the debugger is not attached.
19683         (mono_debug_init): Release the initial lock if we're not running
19684         in the debugger.
19685
19686 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
19687
19688         * marshal.c (emit_marshal_custom): Pass through NULL values without
19689         calling the custom marshalling routines.
19690
19691         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
19692         conversion in structures. Fixes #74882.
19693
19694 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
19695
19696         * culture-info-table.h : zh-* cultures were missing.
19697
19698 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
19699
19700         * threads.c: Added a new event background_change_event which is signaled
19701         when a thread changes its background mode.
19702         Moved here several checks previously done in managed code. The checks
19703         require the thread lock, and using the thread lock in managed code
19704         can result in deadlocks.
19705         Merged Start_internal and Thread_internal into a single method. Now 
19706         Thread_internal does all work of creating and starting a thread.
19707         Added icalls for setting and getting the state of the object. Moved from
19708         managed code to avoid locking there.
19709         Added wait_for_tids_or_state_change() which is called instad of
19710         wait_for_tids when waiting for non-backround threads to end. This method
19711         will return if one of the threads ends or the background_change_event
19712         is signaled.
19713         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
19714         the background mode. This method signals the background_change_event
19715         event.
19716         * icall.c:
19717         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
19718         removed Start_internal.
19719         
19720 2005-05-11  Martin Baulig  <martin@ximian.com>
19721
19722         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
19723         to order of some fields to get proper alignment on 64-bit machines.
19724
19725 2005-05-11  Martin Baulig  <martin@ximian.com>
19726
19727         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
19728         changes as they're broken and completely fuck up the debugger.
19729
19730         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
19731
19732 2005-05-10  Martin Baulig  <martin@ximian.com>
19733
19734         * reflection.c (mono_reflection_generic_class_initialize): Don't
19735         call mono_class_setup_parent() here.
19736
19737 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19738
19739         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
19740         send/receive timeout use an integer in milliseconds. We were using a
19741         struct timeval.
19742
19743 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19744
19745         * locales.c:
19746         (internal_get_cultures): reserve the first slot of the array for the
19747         InvariantCulture, which will be filled in managed code.
19748
19749 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
19750
19751         * reflection.c (mono_image_fill_module_table): Initialize the
19752         GENERATION field as well.
19753
19754 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19755
19756         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
19757         Monitor.Enter on the object.
19758
19759 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
19760
19761         * threads.c: Enable the wait for running threads when exiting.
19762         * icall.c: Suspend all threads before exiting.
19763
19764 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
19765
19766         * assembly.c (mono_assembly_load_reference): Fix warning.
19767
19768 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19769
19770         * threadpool.c: changed the default number of threads per cpu. From now
19771         on, the default will be 20 + (5 * number of cpus) instead of 50.
19772
19773 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
19774
19775         * loader.c (mono_method_get_signature_full): Add locking here.
19776
19777 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
19778
19779         * appdomain.c: Moved methods for parsing and freeing assembly
19780         names to assembly.c.
19781         * assembly.c, domain-internals.h: Created public methods for parsing
19782         assembly names. Fixed mono_assembly_load_with_partial_name:
19783         it now finds the best match, taking into account the version,
19784         token and culture specified in the partial name. Also return
19785         the latest version if no version information is specified.
19786
19787 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
19788
19789         * threadpool.c: replace check for SocketAsyncCall class.
19790
19791 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19792
19793         * threadpool-internals.h:
19794         * Makefile.am: added threadpool-internals.h
19795
19796         * threadpool.c: call mono_unhandled_exception on exceptions not handled
19797         that happen in threadpool threads (tested on MS).
19798         (mono_thread_pool_remove_socket): new function that dispatch any pending
19799         AIO call on a socket that is closing. By now only epoll really needs it,
19800         as select/poll wake up when the socket closes.
19801
19802
19803         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
19804
19805 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
19806
19807         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
19808
19809 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
19810
19811         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
19812
19813 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
19814
19815         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
19816         has an abort request, convert it into a suspend request.
19817
19818 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
19819
19820         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
19821         warning for the usage of `UnmanagedFunctionPointerAttribute' which
19822         is not supported yet.
19823
19824 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19825
19826         * image.c: register assemblies loaded from data (bundles) in the loaded
19827         assemblies hash. Fixes bug #74772.
19828
19829 2005-04-29  Martin Baulig  <martin@ximian.com>
19830
19831         * class.c (mono_type_get_name_recurse): Update to the new naming
19832         schema from the latest .NET 2.x beta2.
19833         (mono_class_setup_vtable_general): If we're a generic instance,
19834         copy the vtable from our generic type definition and inflate all
19835         the methods in it.
19836
19837         * loader.c (find_method): Update to the new naming schema from the
19838         latest .NET 2.x beta2.
19839
19840 2005-04-29  Raja R Harinath  <harinath@gmail.com>
19841
19842         * class.c (mono_class_init): Add a mono_loader_unlock to the
19843         #74734 fix.
19844
19845 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
19846
19847         * icall.c (ves_icall_System_Environment_Exit): Remove the 
19848         suspend_all_other_threads () call for the time being, since it can hang.
19849
19850         * threads.c (mono_thread_manage): Similarly, disable the waiting for
19851         the background threads to exit, since it can also hang.
19852
19853         * class.c (mono_class_init): Applied patch from Ankit Jain 
19854         (radical@gmail.com). Avoid pending init errors when a field refers
19855         to a nested class using a typeref. Fixes #74734.
19856
19857         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
19858         this for dynamic modules.
19859
19860 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19861
19862         * threads.c: don't wait for threads that are in the process of aborting
19863         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
19864         and waiting for background threads to finish. This makes xsp and
19865         mod-mono-server exit without random length delays and/or hangs.
19866
19867 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19868
19869         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
19870
19871 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
19872
19873         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
19874         dynamic types to prevent infinite loops. Fixes #74727.
19875
19876         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
19877         ..._is_assignable_to.
19878
19879 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
19880
19881         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
19882
19883 2005-04-25  Martin Baulig  <martin@ximian.com>
19884
19885         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
19886
19887         * domain.c
19888         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
19889
19890         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
19891
19892         * reflection.c (build_compressed_metadata): Set metadata header
19893         version to 2.0.
19894
19895 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
19896
19897         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
19898         number into an integral and a decimal part. Fixes #70473.
19899
19900         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
19901
19902 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
19903
19904         * culture-info-table.h : reflected the latest locale-builder output.
19905
19906 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19907
19908         * threadpool.c: check for SuspendRequested too when deciding if
19909         mono_thread_interruption_checkpoint should be called.
19910
19911 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19912
19913         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
19914         * threads.c: remove interruption_mutex and use Interlocked instead. When
19915         suspending all the threads, wait for all the suspended events at once.
19916         If we're shutting down and get an APC that is going to be queued,
19917         call mono_thread_execute_interruption immediately, as the thread might
19918         be sleeping on a pthread condition or mutex.
19919
19920         * icall.c: call mono_runtime_set_shutting_down before suspending the
19921         threads.
19922
19923         Fixes bug #74693. And now xsp is happier when exiting.
19924
19925 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
19926
19927         * loader.c (mono_stack_walk): Fix #74690.
19928
19929 2005-04-22  Martin Baulig  <martin@ximian.com>
19930
19931         * mono-debug.h (MonoDebugMethodJitInfo): Added
19932         `MonoDebugMethodJitInfo *jit'.
19933
19934         * mono-debug.c (mono_debug_read_method): Cache the
19935         MonoDebugMethodJitInfo in `address->jit'.
19936         (mono_debug_free_method_jit_info): New public method.
19937
19938 2005-04-22  Martin Baulig  <martin@ximian.com>
19939
19940         * class.c (mono_class_is_assignable_from): Disallow
19941         type parameter -> interface.
19942
19943 2005-04-21  Dick Porter  <dick@ximian.com>
19944
19945         * threads.c (mono_thread_create): Turn an assertion into an error.
19946
19947 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
19948
19949         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
19950         
19951         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
19952         Fix some gcc 4.0 warnings.
19953
19954 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
19955
19956         * file-io.c: fix alt dir separator char on unix systems
19957         and cleanup (fixes bug #71214).
19958
19959 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
19960
19961         * marshal.c: Use CALLVIRT instead of CALL when dispatching
19962         a call to a remote domain, since the method may be an
19963         interface method in the client domain. This fixes bug #74192.
19964
19965 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19966
19967         * threadpool.c: recv/send are now performed before going back to managed
19968         code to save one transition.
19969
19970 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19971
19972         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
19973
19974         * metadata/threadpool.c: removed hack to workaround the bug above.
19975
19976         Fixes bug #74618.
19977
19978 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
19979
19980         * reflection.c reflection.h: Fix handling of parameter defaults in
19981         dynamic methods. Also fixes handling of parameter attributes.
19982         Fixes #74609.
19983
19984         * mono-debug.c (mono_debug_close_image): Fix warning.
19985
19986 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19987
19988         * socket-io.h: replaced old unused field with new 'blocking'.
19989         * threadpool.c: restore socket blocking state on windows(tm).
19990
19991 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
19992
19993         * icall.c: don't return the codebase in the AssemblyName[] returned by
19994         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
19995         * object-internals.h: Removed FIXME (fields were presents) and fixed
19996         versioncompat declaration.
19997
19998 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19999
20000         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
20001         not closed, so don't cleanup when it happens.
20002
20003 2005-04-13  Chris Toshok  <toshok@ximian.com>
20004
20005         * mono-debug-debugger.h: change prototype for
20006         mono_debugger_lookup_type.
20007
20008         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
20009         this function, although it should probably be named
20010         mono_debugger_init_type.
20011
20012 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20013
20014         * threadpool.c: fix non-AIO case.
20015
20016 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
20017
20018         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
20019         the built-in profiler to measure just JIT compilation times.
20020
20021 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20022
20023         * threadpool.c: the epollfd might be closed by another thread at
20024         any time, so ignore EBADF at treat it as a "we're closing" sign.
20025
20026 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20027
20028         * threadpool.c: release the semaphores with a count equals to the number
20029         of working threads in both IO and regular pools. Fixed typo that messed
20030         up the count of IO pool threads. Don't initialize the pipe handles if
20031         we're using epoll.
20032
20033 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20034
20035         * threadpool.c: some systems don't like a NULL when deleting the socket
20036         from epoll.
20037
20038 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20039
20040         * threadpool.c: fix semaphore allocation.
20041
20042 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20043
20044         * threadpool.c: added epoll() based implementation for asynchronous IO
20045         that is used instead of the default poll() when available.
20046         It can be disabled by setting MONO_DISABLE_AIO.
20047
20048 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20049
20050         * threadpool.c: windows needs 'closesocket' and instead of returning
20051         0 when the stream is closed while in select, it returns -1. Fixes bug
20052         #74573.
20053
20054 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
20055
20056         * class.c (class_compute_field_layout): Fix the regression caused by
20057         the previous try.
20058
20059 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20060
20061         * threadpool.c: separate pool for socket async. IO.
20062         * threadpool.h: mono_max_worker_threads is not a global any more.
20063
20064 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
20065
20066         * class.c (class_compute_field_layout): Fix #74549.
20067
20068 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20069
20070         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
20071         use 2 connected sockets instead.
20072
20073 2005-04-08  Miguel de Icaza  <miguel@novell.com>
20074
20075         * mono-config.c: Add new entry point for mkbundle
20076         mono_config_parse_memory. 
20077
20078 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20079
20080         * threadpool.c: removed another unused function.
20081
20082 2005-04-08  Ankit Jain  <radical@corewars.org>
20083
20084         * reflection.c (get_default_param_value_blobs): Add 'types'
20085         parameter to get the types encoded in the constant table.
20086         (mono_param_get_objects): Use the type from the constant table,
20087         not the type of the parameter, when creating default values.
20088         Handle null default values correctly.
20089
20090 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20091
20092         * file-io.c:
20093         * file-io.h:
20094         * threadpool.c:
20095         * threadpool.h:
20096         * icall.c:
20097         * socket-io.c: removed dead code for async IO.
20098
20099 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20100
20101         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
20102
20103         * threadpool.c: intercept socket async. calls and pass them to a thread
20104         that is polling and dispatching the job items to the threadpool as
20105         socket become ready. Fixes bugs #71217, #71933.
20106
20107         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
20108         between char and short/ushort arrays.
20109
20110         * socket-io.c: remove dead code.
20111
20112 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
20113
20114         * locales.c,
20115           icall.c : removed InternalToUpper_Comp() and
20116           InternalToLower_Comp().
20117
20118 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
20119
20120         * char-conversions.h : The tables were incorrectly generated. Should
20121           be generated against invariant culture.
20122
20123 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
20124
20125         * object.c (mono_runtime_invoke_array): Fix return value when 
20126         passing pre-created valuetype objects to ctors.
20127
20128         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
20129         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
20130         Fixes #74338.
20131
20132 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
20133
20134         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
20135         only used with --security and hides the wrong corlib version error.
20136
20137 2005-03-30  Joshua Tauberer  <tauberer@for.net>
20138
20139         * class.c: Changed mono_class_name_from_token so that types
20140         outside of a namespace don't have an initial period.  Improved
20141         the g_warning message used in _mono_class_get when loading
20142         fails.
20143         * assembly.c: In mono_assembly_load_reference, when an assembly
20144         can't be found, "No such file or directory" is misleading and
20145         unhelpful because a few paths were checked for the presence of
20146         the assembly.  When that happens (ENOENT), display a nicer
20147         message indicating the directories that were searched.  In all
20148         cases, the warning is made easier to read for non-hackers.
20149
20150 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
20151
20152         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
20153         project/solution.
20154         * appdomain.h|domain.c: Removed inline from functions.
20155         * appdomain.c: Reduced warnings when compiling on windows.
20156         * icall.c: Fixed output_debug declaration to gunichar2*.
20157         * mono-config.c: Reduced warnings when compiling on windows.
20158         * rand.c: Added missing "windows.h". Added missing return value.
20159         * rawbuffer.c: Added missing winsock2.h for windows.
20160         * sysmath.h: Added mono-compiler.h header to allow/ease 
20161         compilation with non-GCC compilers.
20162         * threads.c: Fixed declarations to compile with VS.NET C compiler.
20163         Removed cast warnings.
20164
20165         Adapted from the work of J Lothian (for VC6).
20166
20167 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
20168
20169         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
20170         from default_path.
20171
20172 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
20173
20174         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
20175         the 2.0 profile.
20176
20177 2005-03-27  Raja R Harinath  <harinath@gmail.com>
20178
20179         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
20180         has to be in $(exec_prefix).  $(prefix) is for arch-independent
20181         stuff, and it would probably use $(prefix)/share rather than
20182         $(prefix)/lib.
20183
20184 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20185
20186         * console-io.c: added 2 includes that might be missing.
20187
20188 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
20189
20190         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
20191         profile.
20192
20193         * reflection.c (create_custom_attr): Allocate the params array using
20194         alloca so it gets GC tracking.
20195
20196 2005-03-23  Chris Toshok  <toshok@ximian.com>
20197
20198         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
20199         out some spew.
20200
20201 2005-03-24  Raja R Harinath  <rharinath@novell.com>
20202
20203         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
20204         changes to pick up any changes in prefix, etc.
20205
20206 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20207
20208         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
20209         
20210         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
20211         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
20212
20213 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20214
20215         * class-internals.h object-internals.h class.c reflection.c: Extend the
20216         mono_lookup_dynamic_token () function to return the class of the
20217         token as well. 
20218
20219         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
20220         well. Fixes #73848.
20221
20222 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
20223
20224         * security-manager.c: Skip inheritance checks for intra-corlib
20225         class inheritance and method overrides. This skips a lot of checks
20226         and (anyway) permissions cannot work until corlib is loaded.
20227
20228 2005-03-23  Martin Baulig  <martin@ximian.com>
20229
20230         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
20231         MONO_TYPE_GENERICINST.  
20232
20233 2005-03-23  Martin Baulig  <martin@ximian.com>
20234
20235         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
20236
20237 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20238
20239         * class.c: added locking comments to some functions.
20240         Cache the interface offsets arrays (saves about 20 KB
20241         of runtime memory in a typical app).
20242         Reduce the time overhead in mono_class_setup_supertypes ().
20243
20244 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
20245
20246         * icall.c: speedup and fix leaks in GetMethodsByName and
20247         GetPropertiesByName.
20248
20249 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20250
20251         * reflection.c: some locking fixes.
20252
20253 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
20254
20255         * metadata.c: added missing break in case statement.
20256
20257 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
20258
20259         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
20260         typedbyref return values. Fixes #73941.
20261
20262 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
20263
20264         * security-manager.c|h: Added demandunmanaged method and 
20265         suppressunmanagedcodesecurity class to MonoSecurityManager.
20266         Renamed aptc class to allowpartiallytrustedcallers.
20267
20268 2005-03-17  Martin Baulig  <martin@ximian.com>
20269
20270         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
20271
20272 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20273
20274         * file-io.c: disabled file async. IO using aio_*. It uses the
20275         threadpool now. Workaround for bug #73718.
20276
20277 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20278
20279         * assembly.h, mono-config.c: added code to deal with bundled configs
20280         for bundled assemblies.
20281
20282 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
20283
20284         * *.c, private.h: cleanup, removing old private.h header file.
20285
20286 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
20287
20288         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
20289         and throw_on_unmappable_char attributes.
20290
20291 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
20292
20293         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
20294         _ProcessName_internal.
20295
20296 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
20297
20298         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
20299         #73631.
20300
20301         * icall.c threads.c threads-types.h: Remove slothash icalls as they
20302         are no longer used.
20303
20304 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
20305
20306         * object.c (compute_class_bitmap): Add support for generics. Fixes
20307         #73527.
20308
20309 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
20310
20311         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
20312
20313 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20314
20315         * filewatcher.c: commented out the code for windows watcher, as we don't
20316         use it (we use the managed implementation instead).
20317
20318 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
20319
20320         * object-internals.h (MonoThread): Remove 'unused1' field.
20321
20322         * appdomain.c: Bump corlib version.
20323
20324         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
20325
20326         * reflection.c (mono_reflection_create_runtime_class): Remove the
20327         AssemblyBuilder.Save optimization since it causes too many problems.
20328
20329 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
20330
20331         * exception.c|h: Added mono_get_exception_reflection_type_load to
20332         create a ReflectionTypeLoadException object.
20333         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
20334         to return NULL is a InheritanceDemand fails during reflection. Updated
20335         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
20336         ReflectionTypeLoadException if an InheritanceDemand fails during 
20337         reflection. Added icall mapping for GetLinkDemandSecurity.
20338         * security-manager.c|h: Added ves_icall_System_Security_
20339         SecurityManager_GetLinkDemandSecurity internal call to return the
20340         class and methods permissions set for a LinkDemand. Removed unused
20341         fields in MonoSecurityManager.
20342
20343 2005-03-10  Martin Baulig  <martin@ximian.com>
20344
20345         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
20346         it's a generic instance.
20347
20348 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
20349
20350         * reflection.c (mono_get_object_from_blob): Applied patch from
20351         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
20352
20353         * class.c (mono_class_is_assignable_from): Another try at fixing 
20354         #73469 without breaking anything.
20355
20356 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
20357
20358         * class.c: (mono_class_is_assignable_from): Revert the last changes
20359         since they don't work with generics.
20360         
20361         * class.c (mono_class_is_assignable_from): Fix build bustage.
20362
20363         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
20364         the managed IsAssignableFrom method. Fixes #73469.
20365
20366         * reflection.c (mono_reflection_call_is_assignable_from): New helper
20367         function.
20368
20369 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
20370
20371         * object.c (mono_load_remote_field_new): Fix returning uninitialized
20372         memory when the remoting callback does not sets the out arguments.
20373         Fixes #73007.
20374
20375         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
20376         by mistake.
20377
20378         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
20379
20380         * object-internals.h (MonoStackFrame): Sync with managed object layout.
20381
20382         * appdomain.c: Bump corlib version.
20383
20384 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
20385
20386         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
20387         function.
20388
20389         * threads.c (mono_thread_attach): Detect threads which are not started
20390         by the GC pthread wrappers.
20391
20392 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
20393
20394         * icall.c: Added new icall for RNG.
20395         * rand.c|h: Added new icall to open the RNG. This allows to share a 
20396         single handle on Linux to access /dev/urandom and fix #73183.
20397
20398 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
20399
20400         * object.c: setting the new vtable in a transparent proxy object must
20401         not change the GC descriptor.
20402
20403 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20404
20405         * object.c: fixed compilation without GCJ support.
20406         * reflection.c: for runtime-created types ensure klass->has_references
20407         is correct (bug #73215).
20408
20409 2005-03-02  Martin Baulig  <martin@ximian.com>
20410
20411         * class.c (mono_class_is_assignable_from): Make this work if
20412         `oklass' is a generic instance; fixes #72831.
20413
20414 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
20415
20416         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
20417         with hasthis set.
20418         
20419         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
20420
20421         * marshal.c: Reorganize native->managed marshalling code to also use
20422         the emit_marshal_... functions.
20423
20424 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
20425
20426         * object.c: typed allocs have issues with bitmap sizes > 30,
20427         so check for max_set >= 30.
20428
20429 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
20430
20431         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
20432         managed code. Fixes #73012.
20433
20434         * metadata.h (MonoMarshalSpec): Add elem_mult field.
20435
20436         * metadata.c reflection.c: Load/Emit elem_mult as well.
20437         
20438         * metadata.h (MonoMarshalSpec): Add comment.
20439
20440         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
20441
20442         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
20443         num_elem to -1 if not given.
20444
20445         * object-internals.h (MonoReflectionMarshal): Add has_size field.
20446
20447         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
20448         given values.
20449
20450 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
20451
20452         * null-gc.c (mono_gc_free_fixed): Was not compilable.
20453
20454 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
20455
20456         * reflection.c (encode_marshal_blob): Encode param_num field as well.
20457
20458         * object-internals.h (MonoReflectionMarshal): Add param_num field.
20459
20460 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
20461
20462         * object.c: generalized the reference bitmap creation
20463         and added hooks for the new GC.
20464         * class-internals.c: removed the gc_bitmap field from MonoClass.
20465
20466 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20467
20468         * domain.c: help the compiler to produce better code
20469         in mono_jit_info_table_find ().
20470
20471 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
20472
20473         * object.c: make all allocations look typed.
20474
20475 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20476
20477         * socket-io.c: load Mono.Posix if it's not loaded already
20478         (fixes bug#73033).
20479
20480 2005-02-24  Martin Baulig  <martin@ximian.com>
20481
20482         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
20483         * reflection.c (dup_type): Likewise.
20484
20485 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
20486
20487         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
20488         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
20489
20490 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
20491
20492         * domain.c, threads.c, object-internals.h: make the critical thread
20493         local vars use the fast access mode (even when we're compiled in
20494         a lib). Provide accessors to be used by the jit during codegen.
20495
20496 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20497
20498         * appdomain.c: Changed hook functios behavior to include
20499         support for the reflection only assemblies. Some icalls were changed
20500         to support the mentioned assemblies too. Signatures of static methods
20501         try_assembly_resolve and real_load now have an additional parameter:
20502         refonly.
20503
20504         * assembly.c: General changes to mono_assembly_ methods to support
20505         reflection only api. Functions mono_assembly_open, mono_assembly_load,
20506         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
20507         suffix, to support an additional gbool parameter to specify whether
20508         the assembli is reflection only or not. Created some new hook functions 
20509         to add support for reflection only assemblies. Signatures of static 
20510         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
20511         have now an additional parameter: refonly.
20512
20513         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
20514         indicating whether the assembly is reflection only or not.
20515
20516         * exception.c: Add mono_get_exception_invalid_operation.
20517
20518         * icall.c: Throw an InvalidOperationException when trying to invoke
20519         a property/method/event, or trying to set/get the value of a field.
20520         Also add an icall to retrieve the ref_only flag to the
20521         MonoReflectionAssembly.
20522
20523 2005-02-23  Chris Toshok  <toshok@ximian.com>
20524
20525         Part of fix for #72827.
20526         * mono-debug.c (mono_debug_add_method): add lexical block data to
20527         the info we write.  Kind of a hack at the moment - we copy the
20528         lexical block info from the MonoDebugMethodInfo to the
20529         MonoDebugMethodJitInfo here, before writing it.
20530         (mono_debug_read_method): read the lexical block info.
20531
20532         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
20533
20534         * debug-mono-symfile.h: add lexical block support.
20535
20536         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
20537         support.
20538
20539 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
20540
20541         * loader.c (mono_lookup_pinvoke_call): Fix warning.
20542
20543         * object.c (mono_runtime_free_method): Call mono_free_method () and
20544         put the TODOs there.
20545
20546         * loader.c (mono_free_method): Free up most memory allocated for 
20547         dynamic methods.
20548
20549 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
20550
20551         * reflection.c: properly flag a Type argument to a
20552         named custom attr value (bug #72248).
20553
20554 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
20555
20556         * reflection.c: reduce code duplication in named custom
20557         attribute encoding.
20558
20559 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
20560
20561         * reflection.c: properly encode custom attrs of type object
20562         (bug #72649).
20563
20564 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
20565
20566         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
20567
20568 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
20569
20570         * socket-io.c: load System.dll if it's not loaded already
20571         (bug #72850 and #70477).
20572
20573 2005-02-21  Martin Baulig  <martin@ximian.com>
20574
20575         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
20576         generic instances.
20577
20578 2005-02-21  Martin Baulig  <martin@ximian.com>
20579
20580         * reflection.c (mono_image_build_metadata): We also need to
20581         "fixup" the MethodImpl table after we computed the final method
20582         indices.  Call fixup_methodimpl() to do that.
20583         (fixup_methodimpl): New private method.
20584
20585 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
20586
20587         * assembly.c: special case mscorlib.dll (bug#72536),
20588         patch from Carlos Alberto Cortez.
20589
20590 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
20591
20592         * threads-types.h threads.c: Fix build bustage.
20593
20594         * threads.c: Use a union for long<->double conversions.
20595
20596         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
20597         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
20598
20599         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
20600         containing the checkpoint call with NOT_TAKEN.
20601         
20602         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
20603         checkpoint before pushing the arguments, so they won't have to be
20604         spilled to stack.
20605
20606 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20607
20608         * domain.c, assembly.c, domain-internals.h: make some data
20609         const and relocation-free.
20610
20611 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
20612
20613         * object.c, appdomain.c, class-internals.h: introduce the
20614         MonoClassRuntimeInfo structure to hold the info needed to
20615         use a class at runtime. Made mono_class_vtable() lock-free
20616         for all the appdomains.
20617
20618 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
20619
20620         * metadata-internals.h, image.c: introduce a per-image mempool to
20621         be used for memory that has the same lifetime as the image.
20622
20623 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
20624
20625         * domain.c: In mono_init_internal(), instead of selecting the first
20626         runtime version supported by an executable, get a list of all
20627         supported versions and select the one for which an mscorlib exists
20628         (since even if the runtime supports a given version, it doesn't mean
20629         that the framework for that version is installed).
20630         Modified get_runtimes_from_exe to support this behavior.
20631         In supported_runtimes, added information about additional system
20632         assembly versions.
20633         
20634         * assembly.c: Added support for more than one system assembly version
20635         per runtime version. Updated the assembly list.
20636         In mono_assembly_remap_version, removed the initial version check,
20637         since we don't know to which version we need to compare until we
20638         get the version set on which the assembly is based.
20639         Moved the code for loading corlib into the new method
20640         mono_assembly_load_corlib(), so it can be used by the initialization
20641         code.
20642         
20643         * domain-internals.h: Updated data structures and added declaration
20644         for mono_assembly_load_corlib.
20645
20646 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
20647
20648         * reflection.c (resolve_object): Fix the creation of the signature in 
20649         the SignatureHelper case.
20650
20651         * assembly.c (mono_assembly_remap_version): Fix binary search.
20652         
20653 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
20654  
20655         * class.c: Added inheritance check when a method is overloaded (from a
20656         virtual method or when implementing an interface) and when a class is
20657         inherited. Added functions to set a failure for a class and to 
20658         retreive the exception from a failure.
20659         * class-internals.h: Added fields to MonoClass to keep the exception
20660         information status for inheritance (or other exceptions) to be thrown
20661         later (i.e. not at load time).
20662         * object.c: Throw the inheritance SecurityException when a type is to 
20663         be created with either class or method inheritance violations.
20664         * reflection.c|h: Fix when getting declsec from a class. Removed 
20665         unrequired code for class. Improved sanity in parameter naming.
20666         * security-manager.c|h: Added functions to check for class and method
20667         inheritance.
20668
20669 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
20670
20671         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
20672         and has_finalize in dynamic types as well.
20673
20674 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
20675
20676         * culture-info-table.h : fixed currency format for en-GB (and so on).
20677
20678 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
20679
20680         * gc.c: ensure the GC handles never have 0 as a value.
20681
20682 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
20683
20684         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
20685         a pointer to a struct to unmanaged code. Fixes #72625.
20686
20687 2005-02-16  Martin Baulig  <martin@ximian.com>
20688
20689         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
20690
20691 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
20692
20693         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
20694
20695 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
20696
20697         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
20698
20699         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
20700         UnmanagedFunctionPointerAttribute, use it for determining calling convention
20701         etc. Fixes #71471.
20702
20703         * reflection.c (mono_custom_attrs_get_attr): New helper function.
20704
20705         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
20706
20707 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
20708
20709         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
20710         changes to make the current context a field in MonoThread.
20711
20712 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
20713
20714         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
20715         the last change.
20716         
20717         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
20718         extracted from mono_marshal_get_native_wrapper.
20719
20720         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
20721         to create wrappers around native functions.
20722
20723         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
20724         delegates for arbitrary function pointers. Fixes #71472.
20725
20726 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
20727
20728         * threads.c: cleaned up the code a little.
20729
20730 2005-02-15  Martin Baulig  <martin@ximian.com>
20731
20732         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
20733         the data table.
20734
20735         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
20736         allocate larger chunks if needed.
20737
20738 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
20739
20740         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
20741         in by mistake.
20742
20743 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
20744
20745         * domain.c: keep the domains in an array and ensure the domain ids
20746         are kept small, so they can be used as indexes to domain-specific data
20747         with a small memory overhead.
20748
20749 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
20750
20751         * icall.c: Handle byref types in Type icalls. Fixes #72544.
20752
20753 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
20754
20755         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
20756
20757 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
20758
20759         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
20760
20761         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
20762         values.
20763
20764         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
20765         
20766 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
20767
20768         * domain-internals.h: add the hashtable here.
20769
20770         * class-internals.h: Remove `info' from MonoMethod
20771
20772         * domain.c: Add a new hashtable, jit_trampoline_hash
20773
20774 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
20775
20776         * object.c: don't set the value of static fields
20777         (fixes bug#72494).
20778
20779 2005-02-11  Martin Baulig  <martin@ximian.com>
20780
20781         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
20782         (mono_debug_add_method): Silently ignore the method if it's too big.
20783         (mono_debug_add_type): Likewise.
20784
20785 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
20786
20787         * threads.c, appdomain.c: remove #ifdefs from the code.
20788
20789 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
20790
20791         * metadata-internals.h: Added flags to MonoAssembly to cache the most
20792         common security informations. This allows us to stay in unmanaged code
20793         when doing LinkDemand and it's special cases (except for the first 
20794         time for initialization). The flags a very much used with --security.
20795         * reflection.c|h: Added code to get declarative security attributes 
20796         for LinkDemand and InheritanceDemand. This required to refactor the
20797         existing code for Demand.
20798         * security-manager.c|h: Added new method fields for the special cases
20799         of LinkDemand.
20800
20801 2005-02-10  Martin Baulig  <martin@ximian.com>
20802
20803         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
20804         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
20805
20806 2005-02-10  Martin Baulig  <martin@ximian.com>
20807
20808         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
20809         debugging code; this is almost a complete rewrite.
20810
20811         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
20812
20813 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20814
20815         * domain.c, object.h: expose mono_string_equal () and 
20816         mono_string_hash ().
20817         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
20818         it's implemented in managed code.
20819
20820 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20821
20822         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
20823         lo leak objects between appdomains.
20824
20825 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20826
20827         * assembly.c: old compilers compilation fix from 
20828         robertj@gmx.net (Robert Jordan).
20829
20830 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
20831
20832         * class-internals.h: Little reminder for the future.
20833
20834         * debug-helpers.c: Fix up wrapper_type_names
20835
20836 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20837
20838         * image.c, metadata-internals.h: when loading an image from a file,
20839         mmap all of it and use the same codepaths as when using a
20840         in-memory image: the code is simpler and we use less memory
20841         (both writable and readonly).
20842
20843 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
20844
20845         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
20846         API to alloc runtime data structures that need to be tracked by the
20847         GC and contain pointers.
20848         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
20849         make the code more readable and eventually use a different GC.
20850
20851 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
20852
20853         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
20854         for out arguments.
20855         
20856 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
20857
20858         * object.c: In release_type_locks(), don't release the cctor lock
20859         if it has already been released. This fixes a crash in the
20860         thread5 test.
20861
20862 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20863
20864         * gc.c, marshal.c, icall.c: register a delegate for finalization
20865         only when the native function pointer has been allocated for it.
20866
20867 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
20868
20869         * object.c: cleaned up some code, allocate objects that are
20870         pointer free with the atomic malloc variant. Allocate memory
20871         for static data from the mempool if it's pointer-free.
20872         Allocate the bounds array at the end of the array data, when needed.
20873         * object-internals.h, object.h: move a private function in a private
20874         header.
20875         * class.c: handle missing case in tracking references in fields.
20876
20877 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
20878
20879         * class.c, class-internals.h: keep track if a type has
20880         reference fields in either the instance or static fields.
20881
20882 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
20883
20884         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
20885         and renamed to MonoRuntimeInfo. Added fields to store the expected
20886         framework assembly version. Changed mono_get_framework_version and
20887         mono_get_runtime_version for a single mono_get_runtime_info method.
20888         
20889         * assembly.c: Added method to remap system assembly versions to the
20890         current executing runtime version. Removed old mapping code.
20891         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
20892         
20893         * icall.c, reflection.c: Track api changes.
20894
20895 2005-02-06  Miguel de Icaza  <miguel@novell.com>
20896
20897         * loader.c (method_from_memberref): Improve error reporting,
20898         produce the class name instead of the typeref/typedef index. 
20899
20900 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
20901
20902         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
20903
20904 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
20905
20906         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
20907         stdcall and charset name mangling.  Reorganize the code and add
20908         some tracing stuff.
20909
20910 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
20911
20912         * monodiet.c: More iters!
20913
20914         * marshal.c: Iter usage.
20915
20916         * icall.c: Iter usage.
20917
20918         * object.c: Use iters.
20919
20920         * debug-helpers.c: More iters
20921
20922 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
20923
20924         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
20925         under win32.
20926
20927 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
20928
20929         * mono-debug-debugger.c: use iters
20930
20931         * class.c, class-internals.h: mono_class_setup_events is static
20932         now
20933
20934         * All callers: use iters
20935
20936 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
20937
20938         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
20939         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
20940
20941 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
20942
20943         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
20944
20945         * marshal.h: Add prototypes for ldfld/stfld_remote.
20946
20947         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
20948         this is called during startup.
20949         
20950 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
20951
20952         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
20953         MonoThreadsSync struct private in monitor.c. Changed the way
20954         MonoThreadsSync is allocated so it's faster and there is no
20955         need to keep track of it with a finalizer and it uses less memory.
20956         This also finally allows us to allocate mono objects as ptrfree when
20957         there are no reference fields.
20958
20959 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
20960
20961         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
20962         disappearing link to the GC interface and use them to simplify
20963         the gchandles code.
20964
20965 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
20966
20967         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
20968         stfld_remote which call mono_load/store_field_new. This allows methods
20969         calling ldfld/stfld wrappers to be AOTed.
20970
20971         * console-io.c: Include sys/filio.h under solaris.
20972         
20973         * console-io.c: Include curses.h if needed correctly.
20974
20975 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
20976         
20977         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
20978         method->klass as well.
20979
20980         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
20981
20982         * class.c (mono_class_init): Switch on lazy initialization of 
20983         methods.
20984
20985         * class.c (mono_class_get_finalizer): Handle the case when the 
20986         finalizer is inherited.
20987
20988 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20989
20990         * console-io.c: <curses.h> is needed by term.h on solaris.
20991
20992 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
20993
20994         * icall.c, class-internals.h, monodiet.c, class.c: Remove
20995         mono_class_setup_properties where possible. Remove this ftn from
20996         the header file, and make it static.
20997
20998 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
20999
21000         * loader.c: Add missing setup_... call.
21001
21002         * class.c: Add missing setup_... calls.
21003
21004         * class.c (mono_class_init): Switch on lazy initialization of 
21005         the generic vtable.
21006         
21007         * class.c (mono_class_init): Fix generics broken by the recent changes.
21008
21009         * monodiet.c (handle_type): Add missing setup_... calls.
21010
21011         * class.c: Back out garbage in previous patch.
21012         
21013         * class.c: Add missing setup_... calls.
21014
21015         * class.c (mono_class_get_method_from_name_flags): Avoid calling
21016         mono_class_setup_methods () if possible.
21017
21018         * class-internals.h (MonoClass): Add 'has_cctor' flag.
21019
21020         * class-internals.h (MonoCachedClassInfo): New structure.
21021
21022         * class.c: Initialize properties and events fields of MonoClass lazily.
21023
21024         * class.c: Add infrastructure for lazily initializing the methods and
21025         vtable fields of MonoClass. Not yet used.
21026
21027         * class.c (mono_class_get_finalizer): New helper function.
21028
21029         * class.c: Add infrastructure for loading some class related data from
21030         an AOT file.
21031
21032         * object.c: Add infrastructure for initializing the vtable from data
21033         in the AOT file.
21034
21035         * gc.c (run_finalize): Use mono_class_get_finalizer ().
21036
21037         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
21038         appropriate initialization function before accessing parts of the
21039         MonoClass structure.
21040
21041         * marshal.c: Fix warnings.
21042         
21043         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
21044
21045         * mono-debug-debugger.c (get_exception_message): Use 
21046         mono_class_get_method_from_name_flags ().
21047
21048 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
21049
21050         * reflection.c, appdomain.c: Replace a few manual searches that
21051         Zoltan missed. (Paolo approved this part of my initial patch).
21052
21053 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
21054
21055         * profiler.c: disable recording statistical events at report time.
21056
21057 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21058
21059         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
21060         to byteswap arrays of enum values, too (bug #72080).
21061
21062 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
21063
21064         * appdomain.c (set_domain_search_path): Allow this to be called if
21065         domain->setup is not yet set.
21066
21067         * loader.c (mono_method_get_index): New helper function.
21068
21069         * loader.c reflection.c: Use mono_method_get_index ().
21070
21071         * class.c (mono_class_get_method_from_name_flags): New helper method.
21072
21073         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
21074         this.
21075
21076         * class.c (mono_class_get_cctor): New helper method.
21077
21078         * string-icalls.c object.c class.c marshal.c reflection.c: Use
21079         mono_class_get_method () to look up methods.
21080
21081 2005-02-01  Miguel de Icaza  <miguel@novell.com>
21082
21083         * console-io.c: Fix the build, this should work on Windows.
21084
21085 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
21086
21087         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
21088         be set to null to keep things valid
21089
21090 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21091
21092         * icall.c: added Console 2.0 icalls.
21093         * Makefile.am: added console-io.[ch]
21094         * console-io.[ch]: internal calls for Console 2.0 API.
21095
21096 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21097
21098         * class.c: make sure we consider all the interfaces
21099         when calculating max_interface_id (bug found by
21100         Jeroen Frijters running ikvm).
21101
21102 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
21103
21104         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
21105         valuetype fields to null.
21106
21107         * object.c (set_value): Ditto. Fixes #71669.    
21108
21109 2005-01-31  Martin Baulig  <martin@ximian.com>
21110
21111         * metadata.c (mono_metadata_has_generic_params): New public
21112         function; checks whether something is a generic method.
21113
21114 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
21115
21116         * appdomain.c: fix infinite recursion when adding assemblies.
21117
21118 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
21119
21120         * object.c: Fix small typo to return all items for Environment.
21121         GetCommandLineArgs.
21122
21123 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21124
21125         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
21126         reflection.c: more domain and assembly-unload related fixes
21127         and memory leaks plugs.
21128
21129 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
21130
21131         * 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.
21132
21133 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
21134
21135         * loader.c (mono_method_signature): Make this method lazy
21136         (mono_get_method_from_token): Don't computate the signature here.
21137
21138         Doing this saves quite a bit of memory. I got 90 kb on starting up
21139         monodoc. It should also save some disk reads on startup.
21140
21141         * *: MonoMethod->signature might be NULL now. You *MUST* use
21142         mono_method_signature.
21143
21144 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
21145
21146         * object.c (mono_runtime_get_main_args): Return an array from the
21147         current domain here. Fixes #71938.
21148
21149 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
21150
21151         * monitor.c: formatting changes to comply with the
21152         mono coding style and remove #ifdefs from the code.
21153
21154 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21155
21156         * metadata.c, private.h: remove some unneeded data
21157         and use a more compact representation for table schemas.
21158
21159 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
21160
21161         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
21162         to get a better distribution in hash tables.
21163         * *.c: use mono_aligned_addr_hash() where appropriate.
21164         * assembly.c: make var static.
21165
21166 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
21167
21168         * domain-internals.h: Put MonoJitInfo on a diet.
21169
21170         * domain.c: Fix a warning.
21171
21172 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21173
21174         * gc.c: rework the gc handles code to reuse handles
21175         when freed.
21176
21177 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
21178
21179         * domain.c: fixed long standing bug in mono_string_equal() which
21180         was brought to light with the ldstr changes.
21181
21182 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
21183
21184         * reflection.c: Remove warning by adding missing include for marshal.h
21185
21186 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21187
21188         * domain.c, object.c: change the ldstr_table to hold
21189         MonoString* as keys: makes the runtime isinterned lookup
21190         faster and simplifies memory management.
21191
21192 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
21193  
21194         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
21195         possible to add imperative security checks before calling the icall.
21196         * reflection.c: Return security attributes on the original MonoMethod
21197         (and not the wrapped one). This fix permissions on icalls.
21198
21199 2005-01-25  Dick Porter  <dick@ximian.com>
21200
21201         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
21202         the check for mktime() support actually test the mktime() return
21203         value.  "Fixes" bug 71682, though the output is still different to
21204         MS.
21205
21206 2005-01-25  Martin Baulig  <martin@ximian.com>
21207
21208         * class.c (mono_class_is_assignable_from): Make this work for
21209         generic instances.
21210
21211 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
21212
21213         * marshal.c (mono_string_utf8_to_builder)
21214         (mono_string_builder_to_utf16): We might not have ownership of the
21215         string. In thise case, we need to create a new buffer.
21216
21217         * object-internals.h (mono_stringbuilder_capacity): sb->str might
21218         be null, in which case, use the default capacity.
21219
21220 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21221
21222         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
21223         GC events to the profiler.
21224
21225 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21226
21227         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
21228         if you don't want the GC to run.
21229
21230 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
21231
21232         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
21233         start providing a GC API and keeping different implementations in
21234         their own file.
21235         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
21236
21237 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
21238
21239         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
21240         mmap rather than allocating a huge buffer.
21241         (mono_debug_close_mono_symbol_file): Free the buffer allocated
21242         above.
21243
21244 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
21245
21246         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
21247         and CheckExecutionRights.
21248         * reflection.c|h: Keep the index of the declarative security to be 
21249         used, instead of the pointer, when AOT compiler is used. Also add 
21250         class initialization when requesting demands.
21251         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
21252         CheckExecutionRights. Both properties are now FALSE by default, and
21253         unmodifiable, unless the --security option is used.
21254
21255 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21256
21257         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
21258         reflection.c: properly refcount images and assemblies, many leaks fixed.
21259
21260 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21261
21262         * threadpool.c: increase the timeout for threads in the thread pool to
21263         10s.  Fixes bug #67159.
21264
21265 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
21266
21267         * class-internals.h: Sun's compiler insists on explicit
21268         signed on bit fields to handle then correctly.
21269
21270 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
21271
21272         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
21273         Make the size of the array fit only the number of invalid path
21274         chars that we have.
21275
21276         * class.c (_mono_class_get): Improve the error reporting when a
21277         class referenced is not found, to assist debugging. 
21278
21279 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
21280
21281         * threads.c: fix off-by-one error.
21282         * domain.c: free data allocated in the domain.
21283
21284 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
21285
21286         * reflection.c (mono_method_body_get_object): Fill out exception info
21287         as well.
21288
21289         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
21290         structure.
21291         
21292 2005-01-19  Martin Baulig  <martin@ximian.com>
21293
21294         * loader.c (mono_get_method_constrained): Make this work again.
21295
21296 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
21297
21298         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
21299         guint16 to match the managed side.
21300
21301         * reflection.c (mono_reflection_body_get_object): Fill out local
21302         variables array.
21303
21304         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
21305         as well.
21306
21307         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
21308         'local_var_sig_token'.
21309
21310 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
21311
21312         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
21313         System.Drawing.
21314
21315         * reflection.c (mono_method_body_get_object): Handle abstract and
21316         runtime methods.
21317
21318 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
21319
21320         * marshal.c, loader.c, class-internals.h, reflection.c:
21321         store the emthod data for a wrapper in an array instead of a list.
21322
21323 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
21324
21325         * marshal.c: change the code to allocate memory more
21326         conservatively for method wrappers.
21327
21328 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
21329
21330         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
21331         fields from MonoClass to the marshal info structure where they belong.
21332
21333 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21334
21335         * class.c, object.c, class-internals.h, marshal.c: rearrange
21336         some fields and tweak some types to lower memory usage.
21337
21338 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
21339
21340         * threads.c (signal_thread_state_change): Handle the case when the
21341         target thread is the current thread.
21342
21343         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
21344
21345         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
21346         emit_ptr_to_object_conv. 
21347
21348         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
21349         marshalling. Fixes #71352.
21350
21351 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
21352
21353         * metadata.h, blob.h: move table enum to blob.h so it can be included
21354         in any header.
21355         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
21356         cut the size of MonoImage/MonoDynamicImage.
21357
21358 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
21359
21360         * profiler.c (mono_profiler_install_simple): Fix default arguments.
21361
21362 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
21363
21364         * reflection.c, reflection.h, icall.c: add a function to check
21365         if an attribute type is defined for a metadata object.
21366
21367 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
21368
21369         * object-internals.h: Added some needed fields from StringBuilder class.
21370         * marshal.c: Set the maxCapacity when creating a StringBuilder.
21371
21372 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
21373
21374         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
21375         threads before shutting down the runtime.
21376
21377         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
21378
21379 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21380
21381         * object-internal.h, threads.c: implement stacksize and 
21382         parameterized thread start functionality (requires
21383         matching corlib). Marked broken code for later removal.
21384
21385 2005-01-12  Martin Baulig  <martin@ximian.com>
21386
21387         * class-internals.h (MonoGenericClass): Moved the `initialized'
21388         flag to MonoDynamicGenericClass, removed `init_pending'.
21389         (MonoGenericInst): Added `is_reference' flag.
21390
21391 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
21392
21393         * reflection.c (mono_image_create_pefile): Only set the pe_offset
21394         inside the MSDOS header. Fixes #71201.
21395
21396         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
21397         gc thread.
21398         (mono_domain_finalize): Ditto.
21399
21400 2005-01-12  Martin Baulig  <martin@ximian.com>
21401
21402         * class.c (mono_get_shared_generic_class): Use the cache for
21403         non-dynamic generic classes.
21404
21405         * class-internals.h (mono_class_create_generic_2): Removed
21406         function prototype, this function is now static inside class.c.
21407
21408         * class.c (mono_class_create_generic_2): Made this static, only
21409         call it from mono_class_init() and mono_class_setup_parent().
21410         (collect_implemented_interfaces_aux): Call mono_class_init() on
21411         the interfaces we collect.
21412         (mono_class_setup_vtable): Call mono_class_init (class->parent).
21413
21414 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
21415
21416         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
21417         it a real thread handle.
21418
21419         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
21420         MonoJitExceptionInfo, since each catch clause needs its own variable.
21421         
21422 2005-01-11  Dick Porter  <dick@ximian.com>
21423
21424         * image.c (mono_pe_file_open): New variant on mono_image_open()
21425         that does not set up the CLI metadata; used for FileVersionInfo so
21426         it can get the data for windows binaries too.
21427         
21428         * process.c (process_read_string_block): Don't read off the end of
21429         the StringTable block.
21430
21431         These both fix bug 70766.
21432
21433 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
21434
21435         * gc.c: set some fields to NULL at GC cleanup time.
21436         * threads.c: if we quit the main thread, call exit ().
21437
21438 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
21439
21440         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
21441
21442 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
21443
21444         * threads.h, threads.c, object.c: added accessor and settor for
21445         main_thread. Handle it specially when exiting from it: wait
21446         for other foreground threads to exit.
21447
21448 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
21449
21450         * process.c, verify.c: remove some bloat.
21451
21452 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
21453
21454         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
21455         the calling convention to cdecl under win32.
21456
21457 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
21458
21459         * object.c (mono_object_get_size): New function to get the size of
21460         an object instance.
21461
21462         * profiler.c (simple_allocation): Use above.
21463
21464 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
21465
21466         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
21467         ves_icall_System_AppDomain_getRootDomain (as it's not required to
21468         get an appdomain by it's id and we can't assume the root's id is 0).
21469         * domain-internals.h: Change the function prototype to match.
21470         * icall.c: Change the icall table for AppDomain.
21471
21472 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
21473
21474         * locales.c (string_invariant_compare_char): Only compute
21475         GUnicodeTypes in the case where we need them.  Test for ordinality
21476         first and return if so.
21477
21478         From the commit:
21479
21480                 /*
21481                  * FIXME: here we must use the information from c1type and c2type
21482                  * to find out the proper collation, even on the InvariantCulture, the
21483                  * sorting is not done by computing the unicode values, but their
21484                  * actual sort order.
21485                  */
21486
21487 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
21488
21489         * loader.c: for P/Invoke methods, allow the "Internal" shared
21490         library name to refer to the calling process symbol namespace.
21491
21492 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
21493
21494         * Makefile.am: Add the security manager to the build.
21495         * security-manager.c|h: New. Initialization of the security manager.
21496
21497 2005-01-07  Dick Porter  <dick@ximian.com>
21498
21499         * threads.c: 
21500         * monitor.c: Update thread state during Monitor and WaitHandle
21501         waits.  Fixes bug 71031.
21502
21503 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
21504
21505         * reflection.c (property_encode_signature): Correctly handle when the
21506         property has no methods.
21507
21508 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
21509
21510         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
21511         
21512         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
21513         fields from mb, not rmb. Fixes #71017.
21514
21515         * marshal.c (emit_ptr_to_str_conv): Add support for 
21516         ByValTStr -> string conversion. Fixes #71015.
21517
21518         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
21519
21520         * mempool.c (mono_mempool_contains_addr): New helper function.
21521
21522 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
21523
21524         * metadata.c (mono_metadata_compute_size): Fix size calculation of
21525         HasSematics encoded fields.
21526         
21527         * metadata.c (mono_type_to_unmanaged): Improve error message for 
21528         invalid string marshalling.
21529
21530         * metadata.c: Fix warnings.
21531         
21532 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21533
21534         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
21535         profiler support.
21536
21537 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
21538
21539         * domain.c object.c domain-internals.h: Revert part of r38077 since the
21540         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
21541         tests.
21542
21543 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
21544
21545         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
21546         so methods containing these can be AOTed.
21547
21548 2005-01-03  Martin Baulig  <martin@ximian.com>
21549
21550         * loader.c (find_method): Removed the hack for generic instances.
21551         (method_from_memberref): If our parent is a generic instance, pass
21552         its generic type definition to find_method() and then inflate the
21553         method.
21554         (mono_get_method_constrained): Pass the generic type definition to
21555         find_method() and inflate the method later.
21556
21557         * class-internals.h (MonoStats): Added `generic_class_count'.
21558
21559         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
21560         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
21561
21562         * reflection.c (mono_custom_attrs_from_params): Don't ignore
21563         generic type definitions.
21564
21565 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
21566
21567         * loader.c icall.c: Fix warnings.
21568
21569 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
21570
21571         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
21572         blittable types. Fixes #70864.
21573
21574 2004-12-29  Martin Baulig  <martin@ximian.com>
21575
21576         * icall.c
21577         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
21578
21579         * reflection.c (mono_method_get_object): Create a
21580         "System.Reflection.MonoGenericMethod" for inflated methods; don't
21581         call mono_get_inflated_method().
21582
21583         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
21584
21585 2004-12-27  Martin Baulig  <martin@ximian.com>
21586
21587         * class-internals.h (MonoMethod): Added `is_inflated' flag.
21588         (MonoMethodInflated): Added `inflated' field.
21589
21590         * class.c (mono_class_inflate_generic_method): Don't really
21591         inflate the method here; just set the `is_inflated' flag in the
21592         MonoMethod.
21593         (mono_class_get_inflated_method): Actually inflate the method here
21594         if it's not already inflated; we use the MonoMethodInflated's new
21595         `inflated' field as a cache.
21596
21597 2004-12-26  Martin Baulig  <martin@ximian.com>
21598
21599         * class.c
21600         (inflate_generic_class): Moved some code out of inflate_generic_type().
21601         (mono_class_inflate_generic_method): If we're already inflated,
21602         inflate the context and use the declaring method; ie. make sure
21603         the declaring method of an inflated method is always the generic
21604         method definition.
21605         (mono_class_create_from_typedef): Create
21606         `class->generic_container->context->gclass'.
21607
21608 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
21609
21610         * metadata-internals.h, marshal.c, reflection.c: More
21611         MonoGHashTable->GHashTable.
21612
21613         * domain-internals.h, class.c: Change MonoGHashTable's into
21614         GHashTables for some cases where no gc stuff is used
21615
21616         All users: update apis
21617
21618 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
21619
21620         * metadata.c (builtin_types): Make this `const'. Makes this get
21621         put into the shareable section.
21622         (mono_metadata_init): Casts to make gcc happy.
21623
21624 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
21625
21626         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
21627
21628 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
21629
21630         * icall.c: Added an internal call to retrieve the position and length
21631         of assembly-level declarative security attributes (RequestMinimum, 
21632         RequestOptional and RequestRefuse). This is used by the Assembly class
21633         to re-create the corresponding permission sets.
21634
21635 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
21636
21637         * marshal.c: fix the stelemref wrapper to be type correct
21638         (and faster).
21639
21640 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
21641
21642         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
21643         to do key & 0x7fffffff. Hashtable already does this. It just
21644         results in longer code.
21645
21646 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
21647
21648         * appdomain.c: Bump corlib version.
21649         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
21650         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
21651         * reflection.c|h: Add functions to get declarative security infos
21652         (blob position and length) for assemblies, classes and methods.
21653
21654 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
21655
21656         * reflection.c: sort the constant table (bug #70693).
21657
21658 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
21659
21660         * object-internals.h, threads.c, domain.c: add accessors for
21661         the MonoThread and MonoDomain tls keys.
21662
21663 2004-12-18  Martin Baulig  <martin@ximian.com>
21664
21665         * class.c (inflate_generic_type): If we're inflating a generic
21666         instance, set `ngclass->context->container = context->container';
21667         ie. the container we inflated into.
21668
21669         * metadata.c (mono_metadata_parse_generic_param): Reflect above
21670         inflate_generic_type() changes.
21671
21672 2004-12-17  Martin Baulig  <martin@ximian.com>
21673
21674         * class-internals.h
21675         (MonoGenericClass): Replaced `MonoType *generic_type' with
21676         `MonoClass *generic_class'.  Removed `dynamic_info'; if
21677         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
21678         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
21679
21680 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
21681
21682         * exception.c (mono_exception_from_token): New helper function.
21683
21684 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
21685
21686         * assembly.c (mono_assembly_load_with_partial_name): Call 
21687         mono_assembly_loaded before invoking the preload hooks. Fixes
21688         #70564.
21689
21690         * object-internals.h (MonoThread): Change culture_info and 
21691         ui_culture_info into an array.
21692
21693         * threads.c: Cache culture info objects from more than one appdomain.
21694
21695         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
21696         current UI culture.
21697
21698 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
21699
21700         * threads.h threads.c appdomain.c: Clear the culture_info field of
21701         all threads during unloading if they point to an object in the dying
21702         appdomain.
21703
21704 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
21705
21706         * culture-info.h (TextInfoEntry): New struct
21707         * object-internals.h: sync with managed
21708         * locales.c: fill the `text_info_data' field
21709         * culture-info-tables.h: update
21710
21711 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
21712
21713         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
21714         collector.
21715
21716 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
21717
21718         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
21719         (ves_icall_ModuleBuilder_getMethodToken): Ditto
21720
21721 2004-12-12  Martin Baulig  <martin@ximian.com>
21722
21723         * mono-debug-debugger.c (write_type): If we're an enum and the
21724         builtin types have already been initialized, call mono_class_init().
21725
21726 2004-12-11  Martin Baulig  <martin@ximian.com>
21727
21728         * metadata.c (mono_metadata_load_generic_params): Added
21729         `MonoGenericContainer *parent_container' argument; automatically
21730         compute `container->is_method'; pass the correct owner to
21731         get_constraints().      
21732
21733         * reflection.c (compare_genericparam): Sort the GenericParam table
21734         according to increasing owners. 
21735
21736 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
21737
21738         * profiler.c: allow disabling the default profiler.
21739
21740 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
21741
21742         * decimal.c, icall.c: allow disabling System.Decimal support.
21743
21744 2004-12-09  Marek Safar <marek.safar@seznam.cz>
21745
21746         * reflection.c: Add support for null attribute arguments.
21747
21748 2004-12-09  Martin Baulig  <martin@ximian.com>
21749
21750         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
21751         names to get rid of compiler warnings.
21752
21753 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
21754
21755         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
21756         mono_marshal_load_type_info (). Fixes #69625.
21757         (mono_marshal_get_ptr_to_struct): Likewise.
21758
21759 2004-12-08  Martin Baulig  <martin@ximian.com>
21760
21761         * mono-debug.h: Bumped version number to 47.
21762
21763         * mono-debug-debugger.c
21764         (mono_debugger_event_handler, mono_debugger_event): Take two
21765         guint64 arguments insteed of a gpointer and a guint32.  
21766
21767 2004-12-08  Martin Baulig  <martin@ximian.com>
21768
21769         * debug-mono-symfile.h
21770         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
21771         `address' to `native_offset'.
21772
21773 2004-12-08  Martin Baulig  <martin@ximian.com>
21774
21775         * class.c (mono_class_create_from_typespec): Only inflate if we
21776         either have `context->gclass' or `context->gmethod'.
21777
21778 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
21779
21780         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
21781
21782         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
21783
21784         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
21785
21786         * reflection.c (mono_assembly_get_object): Remove the workaround put
21787         in for the release.
21788         
21789         * appdomain.c: Use the corlib_internal field from MonoAssembly.
21790
21791         * appdomain.c: Bump corlib version.
21792
21793         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
21794         be visible in other appdomains.
21795
21796 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
21797
21798         * threads.c: Interlocked inc and dec for longs were messed up,
21799         use a KISS based impl for this. Fixes 70234
21800
21801 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
21802
21803         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
21804
21805 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
21806
21807         * icall.c: fix to follow policy not to allow struct
21808         arguments in icalls.
21809
21810 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21811
21812         * process.c: make the patch that handles spaces in file paths work
21813         on mono/windows too.
21814
21815 2004-12-06  Martin Baulig  <martin@ximian.com>
21816
21817         * class.c (mono_class_create_generic): Call
21818         mono_class_setup_supertypes() if we're dynamic.
21819         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
21820
21821 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
21822
21823         * object-internals.h: Add new fields to MonoThread.
21824
21825         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21826
21827         * icall.c threads-types.h threads.c: Add new icalls.
21828
21829         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
21830
21831         * object-internals.h (MonoReflectionAssembly): Sync object layout with
21832         managed side.
21833
21834         * appdomain.c: Bump corlib version.
21835
21836         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
21837         internal assemblies. Fixes #69181.
21838
21839 2004-12-05  Martin Baulig  <martin@ximian.com>
21840
21841         * class.c (mono_class_inflate_generic_signature): Make this a
21842         no-op if `context' is NULL or we don't have any type parameters;
21843         also copy `sentinelpos'.        
21844
21845 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
21846
21847         * image.c: Add unbox_wrapper_cache.
21848
21849         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
21850
21851         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
21852         function generator.
21853         
21854         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
21855         Fixes #70173.
21856
21857         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
21858         
21859 2004-12-04  Martin Baulig  <martin@ximian.com>
21860
21861         * loader.c (mono_method_get_signature_full): New public function;
21862         like mono_method_get_signature(), but with an additional
21863         `MonoGenericContext *' argument.
21864
21865         * class.c (mono_class_inflate_generic_signature): Formerly known
21866         as inflate_generic_signature(); make this public.
21867
21868 2004-12-04  Martin Baulig  <martin@ximian.com>
21869
21870         * metadata.c
21871         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
21872         instead of a `MonoGenericContainer *'.  
21873         (mono_metadata_parse_array_full): Likewise.
21874         (mono_metadata_parse_signature_full): Likewise.
21875         (mono_metadata_parse_method_signature_full): Likewise.
21876         (mono_metadata_parse_generic_inst): Likewise.
21877         (mono_metadata_parse_generic_param): Likewise.
21878         (mono_metadata_parse_mh_full): Likewise.
21879         (mono_type_create_from_typespec_full): Likewise.
21880
21881 2004-12-03  Martin Baulig  <martin@ximian.com>
21882
21883         * class-internals.h (MonoGenericContainer): Replaced the
21884         `MonoGenericContext * pointer with a `MonoGenericContext'
21885         structure and made it the first element.
21886
21887 2004-12-03  Martin Baulig  <martin@ximian.com>
21888
21889         * class.c
21890         (inflate_generic_type): Set the `context->container' when creating
21891         a new MonoGenericContext.
21892         (mono_class_inflate_generic_method): Likewise.
21893         (mono_class_create_from_typespec): Just use `context->container'
21894         to get the container.
21895
21896         * loader.c (method_from_methodspec): Set `context->parent' from
21897         `context->container' - and if that's a method container, use its
21898         parent.  Also set the `context->container' when creating a new
21899         MonoGenericContext.
21900         (mono_get_method_from_token): Use just `context->container' to get
21901         the container.
21902
21903         * metadata.c (do_mono_metadata_parse_generic_class): Also set
21904         `gclass->context->container'.
21905
21906         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
21907         the `context->container' when creating a new MonoGenericContext.
21908
21909 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
21910
21911         * reflection.c (compare_genericparam): Sort params with identical
21912         owner by their number. Fixes gen-111 on sparc.
21913
21914 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
21915
21916         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
21917         around the domain changes.
21918
21919         * appdomain.c (mono_domain_unload): Handle the case when the thread
21920         calling Unload is itself being aborted during unloading. Fixes #70022.
21921
21922         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
21923
21924         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
21925         checkpoint_func as an icall so it gets a wrapper.
21926         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
21927         in the cross-appdomain wrappers too.
21928
21929         * threads.c (mono_thread_has_appdomain_ref): Make this public.
21930
21931         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
21932
21933         * reflection.c: Fix some memory leaks.
21934         
21935 2004-12-02  Martin Baulig  <martin@ximian.com>
21936
21937         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
21938
21939         * metadata.c (generic_class_cache): New static hashtable.
21940         (mono_metadata_lookup_generic_class): New public method.
21941
21942 2004-12-02  Martin Baulig  <martin@ximian.com>
21943
21944         * class.c (mono_class_create_from_typedef): Call
21945         mono_class_setup_parent() and mono_class_create_mono_type() before
21946         parsing the interfaces.
21947
21948 2004-12-02  Martin Baulig  <martin@ximian.com>
21949
21950         * metadata.c (generic_inst_cache): New static hashtable.
21951         (mono_metadata_lookup_generic_inst): New public function.
21952         (mono_metadata_inflate_generic_inst): New public function.
21953         (mono_metadata_parse_generic_inst): New public function.
21954         (do_mono_metadata_parse_generic_class): Use the new
21955         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
21956         since this'll also use the cache.
21957
21958         * reflection.c (mono_reflection_bind_generic_method_parameters):
21959         Use mono_metadata_lookup_generic_inst() to use the new cache.
21960
21961         * class.c (inflate_mono_type): Use
21962         mono_metadata_inflate_generic_inst() to inflate a generic
21963         instance; this'll also use the new cache.
21964
21965         * loader.c (method_from_methodspec): Use
21966         mono_metadata_parse_generic_inst() and
21967         mono_metadata_inflate_generic_inst() rather than parsing it
21968         manually, so we can use the new cache.
21969
21970 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
21971
21972         * threads.c (wait_for_tids): Do not incorrectly free threads when 
21973         the wait times out.
21974
21975 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21976
21977         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
21978         iter->args based on whether parameters are passed in registers (i.e.
21979         MONO_ARCH_REGPARMS is defined)
21980
21981 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
21982
21983         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
21984         the exception message. Fixes #70070.
21985         (method_from_methodspec): Fix warnings.
21986
21987 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21988
21989         * process.c: (complete_path) return the path quoted
21990
21991 2004-12-01  Martin Baulig  <martin@ximian.com>
21992
21993         * class-internals.h (MonoGenericInst): New structure.
21994         (MonoGenericClass): Replaced `type_argc', `type_argv' and
21995         `is_open' with `MonoGenericInst *inst'.
21996         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
21997         `is_open' with `MonoGenericInst *inst'.
21998
21999 2004-11-30  Martin Baulig  <martin@ximian.com>
22000
22001         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
22002
22003         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
22004         to `generic_class_cache'.
22005
22006         * metadata.c
22007         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
22008         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
22009         (mono_generic_inst_is_valuetype): Renamed to
22010         mono_generic_class_is_valuetype().
22011
22012         * class-internals.h
22013         (MonoGenericInst): Renamed to MonoGenericClass.
22014         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
22015         (MonoClass): Renamed `generic_inst' to `generic_class'.
22016         (MonoGenericContext): Renamed `ginst' to `gclass'.
22017
22018         * object-internals.h
22019         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
22020
22021         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
22022         mono_reflection_generic_class_initialize().
22023
22024         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
22025         now known as "System.Reflection.MonoGenericClass".
22026         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
22027
22028 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
22029
22030         * class-internals.h: Added a flag field to MonoClass to cache the
22031         declarative security attributes actions associated with the class.
22032         * domain-internals.h: Added booleans to MonoJitInfo to cache the
22033         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
22034         applicable to the JITted method.
22035         * reflection.c|h: Added functions to extract (as flags) which security
22036         actions are available (declaratively) for a method, class or assembly.
22037         * metadata.c|h: Added functions to search the declarative security
22038         table in the metadata.
22039         
22040 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
22041
22042         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
22043         EXPORTEDTYPES are already in the class name cache, so there is no
22044         need to add extra code here to look at them. Just removes a bit of
22045         cruft.
22046
22047         (ves_icall_System_Environment_get_TickCount): No need for #if
22048         WINDOWS. We already have the code in io-layer.
22049
22050 2004-11-28  Martin Baulig  <martin@ximian.com>
22051
22052         * loader.c
22053         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
22054         Fixes gen-112.cs.
22055
22056 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
22057
22058         * assembly.c (do_mono_assembly_open): Instead of having a
22059         conditional WITH_BUNDLE, incorporate support for bundles here, by
22060         having a global `bundles' variable holding a pointer to the actual
22061         bundles. 
22062
22063         (mono_register_bundled_assemblies): New API call used by the
22064         bundle code. 
22065
22066         See mkbundle.1 for details.
22067         
22068 2004-11-27  Martin Baulig  <martin@ximian.com>
22069
22070         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
22071         the vtable for generic methods.
22072
22073 2004-11-26  Martin Baulig  <martin@ximian.com>
22074
22075         * metadata.c
22076         (mono_metadata_generic_method_hash): New public function.
22077         (mono_metadata_generic_method_equal): Likewise.
22078
22079         * class-internals.h
22080         (MonoGenericContainer): Added `GHashTable *method_hash'.
22081
22082         * reflection.c (ReflectionMethodBuilder): Added
22083         `MonoGenericContainer *generic_container'.
22084         (reflection_methodbuilder_to_mono_method): Don't create a new
22085         MonoGenericContainer each time we're called.
22086         (mono_reflection_bind_generic_method_parameters): Use
22087         `container->method_hash' to cache the results so we don't create a
22088         different method if we're called several times with the same
22089         arguments.
22090
22091         * loader.c (method_from_methodspec): Use the new
22092         `container->method_hash' here, too.
22093
22094 2004-11-26  Martin Baulig  <martin@ximian.com>
22095
22096         * class.c (inflate_generic_signature): Correctly compute
22097         `res->has_type_parameters'.
22098         (mono_class_vtable): Use the `has_type_parameters' flag to
22099         determine whether we're a generic method.
22100
22101         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
22102
22103 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
22104
22105         * object.c (mono_runtime_run_main): Fix a small memory leak.
22106
22107 2004-11-25  Martin Baulig  <martin@ximian.com>
22108
22109         * class.c (set_generic_param_owner): Fixed the loop.
22110
22111 2004-11-25  Martin Baulig  <martin@ximian.com>
22112
22113         * object.c (mono_class_vtable): Don't create any JIT wrappers for
22114         generic methods.
22115
22116 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
22117
22118         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
22119         names. Fixes #69787.
22120
22121 2004-11-24  Martin Baulig  <martin@ximian.com>
22122
22123         * class.c (mono_class_create_generic_2): If we don't have a
22124         `ginst->parent', inflate `gklass->parent' to get our parent.
22125
22126 2004-11-24  Martin Baulig  <martin@ximian.com>
22127
22128         * reflection.c (compare_genericparam): Correctly sort the
22129         GenericParam table; fixes #69779.
22130
22131 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
22132
22133         * reflection.c: When writing a PE file, don't create a huge
22134         buffer in memory. Just write the arrays we have to the file.
22135         This reduces memory usage.
22136
22137         * metadata-internals.h: MonoDynamicStream pefile is no longer used
22138         globally.
22139
22140 2004-11-17  Martin Baulig  <martin@ximian.com>
22141
22142         * class.c (mono_class_init): Don't setup `class->parent' for
22143         dynamic instances; moved this to mono_class_generic_2().
22144         (mono_class_create_generic): Also set `klass->inited' for dynamic
22145         generic instances.
22146         (mono_class_create_generic_2): Don't do anything for dynamic
22147         generic instances.  Set `klass->parent' here and also call
22148         mono_class_setup_parent() here. 
22149
22150         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
22151         `MonoType *parent' argument; set `ginst->parent' before calling
22152         mono_class_create_generic_2(), so we set the correct parent.
22153
22154 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
22155
22156         * reflection.c: allow getting attributes from ModuleBuilder
22157         (used by ikvm).
22158
22159 2004-11-17  Martin Baulig  <martin@ximian.com>
22160
22161         * class.c (mono_class_create_from_typedef): If a type parameter is
22162         inherited from an outer class, set its owner to that class.
22163
22164 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
22165
22166         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
22167           for (int*) written size. This fixes bug #69592.
22168
22169 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
22170
22171         * icall.c: Added IsAuthenticodePresnet internal call.
22172         * image.c|h: New function that check a MonoImage for an Authenticode
22173         signature in the certificate PE data directory.
22174         * security.c|h: New internal call to ask the runtime if an 
22175         Authenticode signature seems referenced in the PE header.
22176
22177 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
22178
22179         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
22180
22181         * reflection.c (mono_image_create_pefile): Free the assembly streams
22182         after writing out the assembly file.
22183
22184         * object.c (mono_runtime_run_main): Fix small memory leak.
22185
22186         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
22187         property access modifiers. Fixes #69389.
22188
22189 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
22190
22191         * domain.c, object.c, object-internals.h, domain-internals.h,
22192         object.h, marshal.c: keep dynamic code info per domain.
22193
22194 2004-11-15  Martin Baulig  <martin@ximian.com>
22195
22196         * class.c (mono_type_get_name_recurse): Put type arguments in
22197         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
22198         see bug #68387.
22199
22200 2004-11-15  Martin Baulig  <martin@ximian.com>
22201
22202         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
22203         (mono_class_setup_vtable): When computing `the_cname' for a
22204         generic instance, don't include the namespace since we'd otherwise
22205         add it twice.
22206
22207 2004-11-15  Martin Baulig  <martin@ximian.com>
22208
22209         * class.c (mono_class_create_generic): Changed return type to void.
22210         (mono_class_create_generic_2): New public function; setup
22211         `class->method', `class->field' and `class->interfaces' here
22212         instead of in mono_class_init().
22213
22214         * class.h (mono_class_create_generic): Moved to class-internals.h.
22215
22216 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
22217
22218         * reflection.c (mono_image_create_pefile): take a file HANDLE.
22219         rather than writing to memory, write to this file. Right now,
22220         we are just writting into a buffer, and copying that. However
22221         we can avoid the buffer later.
22222
22223         (mono_dynamic_stream_reset): new function
22224
22225         * icall.c, object-internals.h: update for the above.
22226
22227 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
22228
22229         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
22230         have been using gc'd memory. First it is slower, unlikely
22231         the comment in the source code said, secondly, it increases
22232         our footprint to do it in the gc.
22233
22234         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
22235         the method so that it does not have to copy to managed code.
22236
22237 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
22238
22239         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
22240
22241 2004-11-12  Martin Baulig  <martin@localhost>
22242
22243         * reflection.c (mono_image_create_token): Allow generic method
22244         definitions here, since they may appear in an `.override'; see
22245         gen-98/gen-99 for an example.
22246
22247 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
22248
22249         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
22250         #69365.
22251
22252         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
22253         descriptive.
22254
22255 2004-11-11  Martin Baulig  <martin@ximian.com>
22256
22257         * class.c (mono_class_setup_vtable): In an explicit interface
22258         implementation, the method name now includes the arity.
22259
22260 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
22261
22262         * object.c (mono_array_full_copy): Fix warning.
22263
22264 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
22265
22266         * appdomain.c: Removed look_for_method_by_name(). Use the new method
22267         mono_class_get_method_from_name() instead.
22268         
22269         * class-internals.h: Added two new types of wrappers. 
22270         Added MonoRemotingTarget enum. Added new trampoline function type, which
22271         takes an additional MonoRemotingTarget value as parameter, so it is
22272         possible to request a trampoline for a specific target.
22273         
22274         * class.c: Added new mono_class_get_method_from_name() method.
22275         
22276         * class.h: In MonoRemoteClass, we can have now to vtables, one for
22277         general remoting sinks and one specific for cross domain calls.
22278         
22279         * debug-helpers.c: Added new wrapper names.
22280         
22281         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
22282         of a remote class.
22283         
22284         * image.c: Porperly delete value objects form the remoting invoke hashtable.
22285         
22286         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
22287         with several other methods (mono_marshal_get_xappdomain_dispatch,
22288         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
22289         and others) can generate a fast remoting wrapper for cross domain calls.
22290         More information can be found in docs/remoting.
22291         Other changes: Removed mono_find_method_by_name, and used
22292         mono_class_get_method_from_name instead.
22293         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
22294         is stored in the remoting invoke hashtable.
22295         
22296         * marshal.h: published the new method for getting the xdomain wrapper,
22297         and also added a method for getting the adequate wrapper for a given
22298         method and target.
22299         
22300         * object-internals.h, object.c: Added a couple of methods for capying and
22301         cloning arrays.
22302         Modified mono_install_remoting_trampoline, which takes the new remoting
22303         trampoline that has a remoting target as parameter.
22304         mono_class_proxy_vtable now also takes a remoting target as parameter, and
22305         will return the most suitable vtable for the target.
22306         Added mono_remote_class_vtable, which returns the vtable of a remote class
22307         (which can be the normal remoting vtable or the xdomain vtable).
22308         
22309         * threads.c: the xdomain invoke and dispatch wrappers must also be
22310         protected against interruptions.
22311
22312 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22313
22314         * icall.c: use memmove in BlockCopyInternal when the source and
22315         destination arrays are the same.
22316
22317 2004-11-09  Martin Baulig  <martin@ximian.com>
22318
22319         * class-internals.h (MonoGenericContainer): Removed `method' and
22320         `signature', replaced them with `is_method' and `is_signature'
22321         flags.  Added `context'.
22322
22323         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
22324         instead of a `MonoGenericContainer *'.
22325
22326         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
22327         for dynamic type parameters.
22328         (mono_metadata_load_generic_params): Setup `container->context'.
22329
22330         * reflection.c (mono_reflection_setup_generic_class): Setup
22331         `tb->generic_container->context'.
22332         (do_mono_reflection_bind_generic_parameters): Use
22333         mono_class_inflate_generic_type() to correctly inflate types,
22334         rather than using our own hack just for MONO_TYPE_VAR.
22335
22336 2004-11-09  Martin Baulig  <martin@ximian.com>
22337
22338         * class.c (mono_class_inflate_generic_method): Small fix; don't
22339         crash here.
22340
22341         * icall.c
22342         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
22343         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
22344         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
22345         (ves_icall_Type_BindGenericParameters): Likewise.
22346         (ves_icall_Type_get_IsGenericInstance): Likewise.
22347         (ves_icall_Type_GetGenericParameterPosition): Likewise.
22348         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
22349         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
22350         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
22351
22352 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
22353
22354         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
22355         assembly versions and public key tokens. Fixes #69113.
22356
22357 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
22358
22359         * metadata.c: fix bug introduced with the type cache changes
22360         on 2004-11-06.
22361
22362 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
22363
22364         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
22365         the MonoClass pointer instead of the token in exception clauses.
22366         * reflection.c: updates for the above and make the code not depend
22367         on the structure of MonoExceptionClause.
22368
22369 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
22370
22371         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
22372         Add support for dynamic assemblies. Fixes #69114.
22373
22374         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
22375
22376 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
22377
22378         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
22379         since most only those methods use it. the code member of
22380         MonoMethodPInvoke was dead, so that can be removed too. Also,
22381         remove inline_count (again, not used), and move slot so that it
22382         can share bits with some other flags. This saves 8 bytes in the
22383         structure and gives us about 50 kb back for mcs helloworld.cs
22384
22385         * *.[ch]: Do naming changes for the above.
22386
22387         * loader.c (mono_method_get_header): Lazily init the header
22388         on first access.
22389         (mono_get_method_from_token): don't init the header here
22390         (mono_free_method): the header may never be allocated
22391
22392         Overall, this saves 150 kb of unmanaged allocations
22393         for mcs helloworld.cs. That accounts for 10% of the unmanaged
22394         memory at runtime.
22395         
22396         * loader.c, loader.h (mono_method_get_header): new accessor.
22397
22398         * *.[ch]: use the above method. Prepares us to lazily load
22399         the header.
22400
22401         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
22402         three warnings, which are actual bugs (see 69206).
22403
22404         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
22405         unused. Saves a cool 4 bytes / method.
22406
22407 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
22408
22409         * metadata.c (builtin_types): Add types for System.Object here.
22410         (mono_metadata_parse_type_full): Cache MonoType*'s that are
22411         for a class or valuetype from klass->this_arg or klass->byval_arg.
22412
22413         On mcs for a hello world, this gets us down from 21836 MonoType's
22414         to 14560.
22415
22416         (mono_metadata_free_type): Account for the above change.
22417
22418 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
22419
22420         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
22421         exception instead of asserting if name is null.
22422         (ves_icall_System_AppDomain_GetData): Ditto.
22423
22424 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
22425
22426         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
22427         EnumBuilder.
22428
22429         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
22430         Return NULL when the domain does not have entry_assembly set.
22431
22432         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
22433         Add a 'resource_modules' argument.
22434         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
22435
22436         * reflection.c (mono_reflection_create_runtime_class): Move setting
22437         of wastypebuilder here, so mono_get_type_object () returns a MonoType
22438         for enums too.
22439
22440         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
22441         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
22442         Throw an ArgumentNullException if 'ptr' is null.
22443
22444         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
22445         assemblies here. Fixes #69020.
22446
22447 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
22448
22449         * reflection.c (build_compressed_metadata): Fix the previous patch for
22450         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
22451         the stack.
22452
22453 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
22454
22455         * assembly.c (mono_assembly_names_equal): Allow a match if one of
22456         the cultures is false. Fixes #69090.
22457
22458         * reflection.c (build_compressed_metadata): Fix invalid memory read 
22459         detected by valgrind.
22460         
22461         * reflection.c (mono_reflection_get_type): Avoid triggering a 
22462         TypeResolve multiple times for the same type. Fixes #65577.
22463
22464 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
22465
22466         * marshal.c: Avoid using ldftn to call managed functions. It is
22467         much slower than just a call.
22468
22469         * reflection.c (mono_module_get_object): free the basename we
22470         allocate here from glib.
22471         
22472         * reflection.c (ensure_runtime_vtable): make sure to free
22473         overrides.  Also, we were allocating an array of MonoMethod not an
22474         array of MonoMethod*.
22475
22476         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
22477
22478         * image.c (mono_image_close): free image->guid here.
22479
22480 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
22481
22482         * reflection.c: Fix some spec conformance issues with the PE file
22483         structures so mcs compiled apps run on the Net 2.0 beta.
22484
22485 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
22486
22487         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
22488         Implement this. Fixes #67264.
22489
22490         * debug-helpers.h debug-helpers.c marshal.c: Move 
22491         mono_find_method_by_name to debug-helpers.c.
22492
22493 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
22494
22495         * object.c (mono_release_type_locks): type_initialization_hash is
22496         a GHashTable.
22497
22498         * reflection.c object.c object-internals.h: Fix warnings.
22499
22500         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
22501         without accessors. Fixes #61561.
22502
22503         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
22504         application base from the root domain if not set. Fixes #65641.
22505         (mono_runtime_init): Fix warning.
22506
22507 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22508
22509         * appdomain.c: call mono_thread_pool_init.
22510         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
22511         of worker threads based on the number of CPUs and the environment
22512         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
22513         for non-windows (windows) systems.
22514
22515 2004-10-27  Chris Toshok  <toshok@ximian.com>
22516
22517         * mono-debug-debugger.c (write_class): don't call mono_class_init
22518         here, as even with the check for (!klass->init_pending), we get
22519         into a situation where we're hitting cycles in class
22520         initialization.  Fixes #68816.
22521
22522 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
22523
22524         * image.c: Avoid overwriting values in the loaded_images_hash when an
22525         assembly is loaded multiple times. Fixes #61152.
22526
22527         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
22528         so multiple satellite assemblies for the same name can be loaded.
22529         Fixes #68259.
22530
22531         * mono_domain_assembly_preload: Actually return the loaded assembly, 
22532         not NULL.
22533
22534         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
22535         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
22536
22537         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
22538         pending finalizers are not invoked after the appdomain has been 
22539         unloaded. Fixes #67862.
22540
22541 2004-10-22  Martin Baulig  <martin@ximian.com>
22542
22543         * mono-debug-debugger.c
22544         (mono_debugger_runtime_invoke): Don't box valuetypes.
22545
22546 2004-10-22  Chris Toshok  <toshok@ximian.com>
22547
22548         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
22549         don't hide private methods.
22550
22551 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
22552
22553         * icall.c: Allows the runtime to "share" (when known) the public key
22554         token of an assembly. This avoid the need to recalculate the token 
22555         (from the public key) in managed code.
22556
22557 2004-10-21  Chris Toshok  <toshok@ximian.com>
22558
22559         * debug-helpers.c (append_class_name): argh, revert last patch.
22560         
22561 2004-10-21  Chris Toshok  <toshok@ximian.com>
22562
22563         * debug-helpers.c (append_class_name): use '+' as the delimiter,
22564         not '/', so that it matches what the debugger uses to look up
22565         methods.
22566
22567 2004-10-21  Martin Baulig  <martin@ximian.com>
22568
22569         * mono-debug-debugger.c (mono_debugger_throw_exception): New
22570         public method; this is called each time an exception is thrown and
22571         allows the debugger to use exception catch points.
22572
22573 2004-10-21  Martin Baulig  <martin@ximian.com>
22574
22575         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
22576         the stack pointer and the exception object in some struct and pass
22577         that to the debugger.
22578
22579 2004-10-21  Chris Toshok  <toshok@ximian.com>
22580
22581         * mono-debug-debugger.c (do_write_class): add instance/static
22582         event support.  We don't expose "raise" or "other" yet.
22583         (event_is_static): new method.
22584
22585 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
22586
22587         * mono-debug-debugger.c
22588         (mono_debugger_handle_exception): Remove
22589         bogus return value for fussy compilers.
22590
22591 2004-10-20  Martin Baulig  <martin@ximian.com>
22592
22593         * mono-debug-debugger.c
22594         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
22595         (mono_debugger_handled_exception): Likewise.
22596
22597 2004-10-20  Martin Baulig  <martin@ximian.com>
22598
22599         * mono-debug-debugger.h (MonoDebuggerEvent): Added
22600         MONO_DEBUGGER_EVENT_EXCEPTION.
22601
22602         * mono-debug-debugger.c (mono_debugger_handle_exception): New
22603         public function to send the debugger a notification for an
22604         exception and inform it about a catch/finally clause.
22605
22606 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
22607
22608         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
22609         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
22610         fix 2.95 build. 
22611
22612         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
22613
22614 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
22615
22616         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
22617         marshalled as [In,Out]. Fixes #58325.
22618
22619 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
22620
22621         * reflection.c (mono_method_body_get_object): Implement some fields.
22622
22623 2004-10-12  Martin Baulig  <martin@ximian.com>
22624
22625         * reflection.c (mono_reflection_bind_generic_parameters): Small
22626         fix, correctly retrieve our parent from a generic instance.
22627
22628 2004-10-12  Martin Baulig  <martin@ximian.com>
22629
22630         * metadata.c (mono_metadata_generic_param_equal): We always have
22631         an owner.
22632
22633         * class.c
22634         (mono_class_from_generic_parameter): We need to have an owner.
22635         (my_mono_class_from_generic_parameter): Likewise.
22636
22637         * reflection.c (mono_reflection_setup_generic_class): Renamed to
22638         mono_reflection_create_generic_class() and added a new
22639         mono_reflection_setup_generic_class().  
22640         (mono_reflection_initialize_generic_param): If we're a nested
22641         generic type and inherited from the containing class, set our
22642         owner to the outer class.
22643
22644 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
22645
22646         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
22647
22648         * reflection.c (mono_method_body_get_object): New function to create
22649         a MethodBody object.
22650
22651         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
22652
22653 2004-10-11  Martin Baulig  <martin@ximian.com>
22654
22655         * metadata.c (_mono_metadata_type_equal): Renamed to
22656         do_mono_metadata_type_equal() and made static.
22657
22658 2004-10-11  Martin Baulig  <martin@ximian.com>
22659
22660         * appdomain.c: Bump corlib version number to 28.
22661
22662 2004-10-10  Martin Baulig  <martin@ximian.com>
22663
22664         * class-internals.h
22665         (MonoGenericInst): Added `MonoGenericContainer *container'.
22666         (MonoGenericMethod): Likewise.
22667         (MonoGenericContext): Likewise.
22668         (MonoGenericParam): Added `MonoGenericContainer *owner'.
22669
22670         * metadata.c
22671         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
22672         (do_mono_metadata_parse_generic_inst): Likewise.
22673         (mono_metadata_parse_type_full): New public method.  This is the actual
22674         mono_metadata_parse_type() implementation - with an additional
22675         `MonoGenericContainer *' argument.
22676         (mono_metadata_parse_array_full): Likewise.
22677         (mono_metadata_parse_signature_full): Likewise.
22678         (mono_metadata_parse_method_signature_full): Likewise.
22679         (mono_metadata_parse_mh_full): Likewise.
22680         (mono_type_create_from_typespec): Likewise.
22681         (mono_metadata_interfaces_from_typedef_full): New public method;
22682         this is similar to the other _full() methods, but we take a
22683         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
22684         (mono_metadata_parse_generic_param): Take an additional
22685         `MonoGenericContainer *' argument and lookup the MonoGenericParam
22686         from that container.
22687         (mono_metadata_generic_param_equal): New static method to compare
22688         two type parameters.
22689         (_mono_metadata_type_equal): New static method; takes an
22690         additional `gboolean signature_only' argument - if true, we don't
22691         compare the owners of generic parameters.
22692         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
22693         with a TRUE argument - do a signature-only comparision.
22694
22695         * loader.c: Use the new _full() methods and pass the
22696         MonoGenericContainer to them.
22697
22698         * object-internals.h (MonoReflectionTypeBuilder): Added
22699         `MonoGenericContainer *generic_container' field.
22700         (MonoReflectionMethodBuilder): Likewise.
22701
22702 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
22703
22704         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
22705         case initial images of dynamic assemblies.
22706
22707         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
22708
22709         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
22710
22711         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
22712         length of event->other array.
22713         (typebuilder_setup_events): Ditto.
22714
22715         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
22716         'assembly_by_name' and add an 'assemblies' list.
22717
22718         * assembly.h assembly.c: Add a new search hook for determining whenever
22719         an assembly is already loaded. Use this instead of searching in the
22720         loaded_assemblies list.
22721
22722         * domain.c appdomain.c: Implement the new search hook so loaded 
22723         assemblies are now scoped by appdomain. Fixes #67727.
22724
22725 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
22726
22727         * threads.c (mono_thread_attach): Initialize synch_lock field so
22728         mono_thread_detach works again.
22729
22730         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
22731         'lib' too. Fixes #63130.
22732
22733 2004-10-06  Jackson Harper  <jackson@ximian.com>
22734
22735         * culture-info-tables.h: regenerated.
22736
22737 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
22738
22739         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
22740         implemented by other interfaces in the result. Fixes #65764.
22741         
22742         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
22743         Handle unloadable modules without crashing.
22744
22745         * image.c (load_modules): Revert the previous patch since modules must
22746         have a fixed index inside the array.
22747         
22748         * image.c (load_modules): Don't include native modules in the modules
22749         array.
22750
22751 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
22752
22753         * reflection.h: Add param_defaults field.
22754
22755         * reflection.c: Add support for parameter defaults in dynamic methods.
22756         Fixes #64595.
22757
22758         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
22759         an empty string when a type has no namespace. Fixes #64230.
22760
22761 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
22762
22763         * tabledefs.h: Added "internal" security actions to support non-CAS
22764         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
22765         Note: they do not seems to be used anymore in 2.0 (new metadata format)
22766
22767 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
22768
22769         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
22770         constructor of abstract class. Fixes #61689.
22771
22772 2004-10-04  Martin Baulig  <martin@ximian.com>
22773
22774         * class-internals.h (MonoGenericContainer): New type.
22775         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
22776         `MonoGenericContainer *generic_container'.
22777         (MonoClass): Replaced `gen_params' and `num_gen_params' with
22778         `MonoGenericContainer *generic_container'.
22779
22780         * metadata.c (mono_metadata_load_generic_params): Return a
22781         `MonoGenericContainer *' instead of a `MonoGenericParam *';
22782         removed the `num' argument.
22783
22784 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
22785
22786         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
22787         for dynamic images.
22788
22789         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
22790         machine fields.
22791
22792         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
22793
22794         * reflection.c: Save pe_kind and machine values into the generated
22795         image file.
22796
22797         * appdomain.c: Bump corlib version number.
22798
22799         * object-internals.h: Reorganize layout of LocalBuilder.
22800
22801         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
22802         New helper function.
22803
22804         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
22805         created MonoType for dynamic types. Fixes #66180.
22806
22807 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
22808
22809         * threadpool.c: the ares hashtable needs a critical section around it.
22810         this prevents some nasty segfaults
22811
22812 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
22813
22814         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
22815         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
22816         bug 67324).
22817         
22818 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
22819
22820         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
22821         
22822 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
22823
22824         * image.c: Always canonicalize image file names, to avoid loading
22825         the same assembly twice when referenced using a relative path.
22826
22827 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
22828
22829         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
22830
22831         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
22832
22833         * marshal.c: Fix warnings.
22834
22835 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
22836
22837         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
22838         attempting to marshal the delegate_trampoline as the method_addr.
22839         This patch has a static hashtable of marshalled delegates so that 
22840         we can map delegate_trampoline addresses back to delegates.  This
22841         allows a delegate passed to managed code to be passed back into native
22842         code.  Fixes #67039
22843
22844 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
22845
22846         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
22847
22848         * reflection.c (method_encode_code): Align method headers properly.
22849         Fixes #66025.
22850
22851 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
22852
22853         * marshal.c: In the runtime invoke wrapper, reset the abort
22854         exception if it is cached. This avoids the automatic rethrowal of 
22855         the exception after the catch of the wrapper. Also check for pending
22856         interruptions before calling the managed method. This is done using
22857         the new method emit_thread_force_interrupt_checkpoint, since the
22858         normal checkpoint method is ignored when running the invoke wrapper.
22859         * object.c: If the abort exception is rethrown, set the abort_exc
22860         field of the thread, so it will be rethrown aftere every catch.
22861         * threadpool.c: Only run an interruption checkpoint if what has been
22862         requested is a stop of the thread (aborts will be ignored).
22863         * threads.c: By default, a thread will now never be interrumped while
22864         running the runtime invoke wrapper (this ensures that runtime_invoke
22865         will always return to the caller if an exception pointer is provided).
22866         There is a new special method mono_thread_force_interruption_checkpoint()
22867         to force an interruption checkpoint even if running a protected
22868         wrapper, which is used by the same runtime invoke wrapper to do a check
22869         at a safe point.
22870
22871 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
22872
22873         * object.c, object-internals.h: Implemented mono_release_type_locks,
22874         which releases the cctor locks held by a thread.
22875         * threads.c, threads.h: In thread_cleanup, release cctor locks held
22876         by a thread. Added mono_thread_exit() method to be used to safely stop
22877         a thread.
22878
22879 2004-09-28  Raja R Harinath  <rharinath@novell.com>
22880
22881         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
22882         Move null check before dereference.  Avoid indexing beyond the end
22883         of the 'modules' array.
22884
22885 2004-09-28  Raja R Harinath  <rharinath@novell.com>
22886
22887         * metadata-internals.h (MonoImage): Add module_count field.
22888         * image.c (load_modules): Set image->module_count.
22889         (mono_image_load_file_for_image): Use image->module_count.
22890         * reflection.c (mono_image_load_module): Append to image->modules array 
22891         of dynamic assembly.
22892         (mono_module_get_object): Fix loop to actually increment index.
22893         Use image->module_count.
22894         * assembly.c (mono_assembly_load_references): Use image->module_count.
22895         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
22896         Likewise.
22897
22898 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
22899
22900         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
22901         Avoid assert on generic types.
22902
22903 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
22904
22905         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
22906
22907         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
22908
22909         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
22910         function to convert a MarshalSpec structure to its managed counterpart.
22911
22912         * reflection.c: Fix warnings.
22913         
22914         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
22915         field.
22916
22917         * icall.c (mono_create_icall_signature): Fix build.
22918
22919 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
22920
22921         * icall.c: Add MakePointType icall.
22922
22923         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
22924         warnings.
22925
22926 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22927
22928         * threadpool.c: reuse allocated slots in the queue.
22929
22930 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
22931
22932         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
22933
22934         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
22935
22936         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
22937         previous change.
22938
22939         * tabledefs.h: Add constants for pinvoke attributes BestFit and
22940         ThrowOnUnmappableChar.
22941
22942         * icall.c (ves_icall_Type_GetPacking): New icall.
22943
22944 2004-09-24  Martin Baulig  <martin@ximian.com>
22945
22946         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
22947
22948 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22949
22950         * appdomain.c:
22951         (mono_domain_set): allow setting a domain that is being unloaded.
22952         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
22953         being unloaded.
22954
22955 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
22956
22957         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
22958         the GetCustomAttributes icall.
22959
22960 2004-09-23  Martin Baulig  <martin@ximian.com>
22961
22962         * object-internals.h (MonoReflectionGenericParam): Replaced
22963         'has_ctor_constraint', `has_reference_type' and `has_value_type'
22964         with `guint32 attrs'.
22965
22966 2004-09-23  Martin Baulig  <martin@ximian.com>
22967
22968         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
22969
22970 2004-09-23  Martin Baulig  <martin@ximian.com>
22971
22972         * object-internals.h (GenericParameterAttributes): New enum.
22973
22974 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
22975
22976         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
22977         
22978         * class.c (init_events): Fill out event->other field.
22979
22980         * class.c: Fix warnings.
22981
22982         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
22983
22984 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
22985
22986         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
22987         walk which doesn't supply the IL offset.
22988
22989 2004-09-22  Martin Baulig  <martin@ximian.com>
22990
22991         * reflection.c (mono_reflection_setup_internal_class): If we're
22992         System.ValueType, System.Object or System.Enum, set
22993         `klass->instance_size' and create the vtable.
22994         (mono_reflection_create_internal_class): If we're an enum type,
22995         get the base class from our current corlib.
22996
22997 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
22998
22999         * reflection.h (MonoResolveTokenError): New type.
23000
23001         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
23002         icall.
23003
23004         * icall.c: Add an 'error' argument to the ResolveToken icalls.
23005
23006 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
23007
23008         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
23009         Support also calling constructors, but only for already allocated objects.
23010
23011 2004-09-17  Geoff Norton <gnorton@customerdna.com>
23012
23013         * reflection.c (type_get_qualified_name): If the klass is null
23014         return the typename to avoid a NullRefEx.
23015         (encode_cattr_value): Get the qualified name of the boxed type,
23016         not the underlying enumtype.  Fixes #62984.
23017
23018 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
23019
23020         * marshal.c: Fix problems with previous checkin.
23021
23022 2004-09-21    <vargaz@freemail.hu>
23023
23024         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
23025         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
23026
23027         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
23028
23029 2004-09-21  Geoff Norton <gnorton@customerdna.com>
23030
23031         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
23032         should only return a type for pointers, arrays, and passbyref types.
23033         Fixes bug #63841.
23034
23035 2004-09-21  Martin Baulig  <martin@ximian.com>
23036
23037         * domain.c (mono_debugger_check_runtime_version): New public
23038         function.
23039
23040         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
23041
23042 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
23043
23044         * reflection.c: Added missing sort to the declarative security 
23045         attributes table. MS implementation stops seeing the attributes if the
23046         token number regress in the table (as shown by ildasm and permview).
23047
23048 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
23049
23050         * object-internals.h (MonoReflectionModule): Add 'token' field.
23051         
23052         * reflection.c (mono_reflection_get_token): Add support for Module
23053         and Assembly.
23054         (mono_module_get_object): Set 'token' field.
23055         (mono_module_file_get_object): Set 'token' field.
23056
23057         * icall.c: Add new Assembly and Module icalls.
23058
23059         * appdomain.c: Bump corlib version.
23060
23061 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
23062
23063         * loader.h loader.c class.h class.c: Add helper functions for obtaining
23064         tokens of metadata objects.
23065
23066         * reflection.h reflection.c (mono_reflection_get_token): New function
23067         to obtain the token of a metadata object.
23068
23069         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
23070
23071 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
23072
23073         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
23074         
23075         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
23076
23077 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
23078
23079         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
23080         * object-internals.h: Added 3 MonoArray* members to MonoReflection
23081         AssemblyBuilder to access the permissions set in the class lib.
23082         * reflection.c: Added security attributes encoding step in 
23083         mono_image_build_metadata.
23084         * tabledefs.h: Added new security actions defined in 2.0:
23085         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
23086
23087 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
23088
23089         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
23090         macro parameter.
23091
23092 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
23093  
23094         * locales.c: nullify the ICU_collator member of CompareInfo when it is
23095           finalized. There where random SIGSEVs at program termination, when
23096           an object being finalized was trying to do a string comparison and
23097           the current culture was already finalized.
23098  
23099 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23100
23101         * threads.c: call thread_cleanup before finishing the thread if we get
23102         there.
23103
23104 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
23105
23106         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
23107         assemblies from the parent. Fixes #65665.
23108
23109 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
23110
23111         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
23112         modifiers.
23113
23114 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
23115
23116         * reflection.h: add prototype for mono_get_dbnull_object
23117         * reflection.c: add prototypes for get_default_param_value_blobs 
23118         and mono_get_object_from_blob for fussier compilers
23119
23120 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
23121  
23122         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
23123         false deadlock checks in class initialization.
23124  
23125 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
23126
23127         * image.c (mono_image_addref): Fix comment.
23128
23129         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
23130         possible.
23131
23132 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
23133
23134         * reflection.c (mono_param_get_objects): Modified to return
23135         ParameterInfo.DefaultValue object.
23136
23137         (get_default_param_value_blobs):
23138         (mono_get_object_from_blob):
23139         (mono_get_dbnull_object): New helper routines. 
23140
23141         * object.c (mono_get_constant_value_from_blob): New helper routine
23142         carved out from get_default_field_value ()
23143
23144         * object-internals.h (mono_get_constant_value_from_blob): Added
23145         function declaration.
23146
23147 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
23148
23149         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
23150         referenced assemblies. Fixes #62135.
23151
23152         * exception.h exception.c (mono_get_exception_file_not_found2): New
23153         helper function.
23154
23155 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
23156
23157         * class.h class.c: Add mono_type_get_underlying_type ().
23158
23159 2004-09-09  Geoff Norton <gnorton@customerndna.com>
23160
23161         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
23162         Fix GetTypes() to support dynamically created assemblies.
23163
23164 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
23165
23166         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
23167         
23168         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
23169         previous patch.
23170
23171         * reflection.h reflection.c loader.c: Allow dynamic construction of
23172         pinvoke methods. Fixes #65571.
23173         
23174         * reflection.c (mono_reflection_get_type): Revert previous change since
23175         it causes regressions.
23176
23177 2004-09-08  Martin Baulig  <martin@ximian.com>
23178
23179         * class.c (class_compute_field_layout): Don't call
23180         mono_class_layout_fields() for open generic instances.
23181
23182 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
23183         * threads.c appdomain.c: fix typo in GC macro
23184
23185 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23186
23187         * threads.c: don't call mono_thread_detach() in start_wrapper(),
23188         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
23189
23190 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
23191
23192         * image.c (mono_image_close): Applied patch from 
23193         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
23194         assembly is loaded multiple times from data.
23195         
23196         * image.c (mono_image_open): Fix warning.
23197
23198 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23199
23200         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
23201         once. Fixes #58334.
23202         
23203         * reflection.c (mono_reflection_create_runtime_class): Initialize
23204         klass->nested_classes. Fixes #61224.
23205
23206 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
23207
23208         * threads.c: sched_yield() on exit, to allow threads to quit.
23209
23210 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23211
23212         * object.c (mono_unhandled_exception): Remove leftover debug code.
23213
23214 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
23215
23216         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
23217
23218 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23219
23220         * marshal.c (emit_marshal_array): Really null terminate string arrays.
23221         
23222         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
23223
23224 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23225
23226         * marshal.c (emit_marshal_array): Null terminate string arrays.
23227         
23228         * marshal.c (raise_auto_layout_exception): Fix warning.
23229
23230         * reflection.c (mono_param_get_objects): Initialize the default value
23231         with DBNull.Value, not null. Fixes #62123.
23232
23233 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
23234
23235         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
23236         throw an exception with a cute explanation.
23237
23238 2004-09-06  Dick Porter  <dick@ximian.com>
23239
23240         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
23241         Close the new process's thread handle, as we don't use it.  The
23242         handle stays around forever otherwise.
23243
23244 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23245
23246         * object.c (arith_overflow): Fix warning.
23247
23248         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
23249         calling conventions in method refs. Fixes #65352.
23250
23251         * reflection.c: Fix warnings.
23252
23253 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
23254
23255         * icall.c: Add a new icall for Array.Clear
23256
23257 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
23258
23259         * object.c: When allocating an array, we have to throw
23260         an overflow exception if any of the lengths are < 0.
23261
23262 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23263
23264         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
23265         properly. Also move implementation of string array marshalling to 
23266         managed code. Fixes #42316.
23267
23268 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23269
23270         * assembly.c: provide more information when loading an assembly fails.
23271
23272 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23273
23274         * filewatcher.c: don't expect the development fam package to be
23275         installed.
23276
23277 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
23278
23279         * marshal.c: Make a copy of the signature cookie since it will be
23280         freed by the caller.
23281         
23282         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
23283
23284         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
23285
23286         * metadata.c (mono_metadata_free_marshal_spec): New function to free
23287         marshal specs.
23288
23289         * marshal.c: More refactoring.
23290         
23291         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
23292         smaller functions.
23293
23294 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
23295
23296         * object.c: In mono_message_invoke, fill the output parameter array after
23297           calling the managed method (it was done before the call). This fixes
23298           bug #59299.
23299
23300 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
23301
23302         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
23303         as well.
23304
23305 2004-09-02  Martin Baulig  <martin@ximian.com>
23306
23307         * class.c (mono_class_instance_size): Don't allow generic type
23308         definitions or open generic instances.
23309         (mono_class_array_element_size): If we're a value type, call
23310         mono_class_instance_size() on the original class.
23311
23312         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
23313         handle generic instances.
23314
23315         * mono-debug-debugger.c (write_type): Handle generic instances
23316         like classes.
23317
23318 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
23319
23320         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
23321         the allocation request fails. Fixes #65089.
23322
23323         * object.c (mono_runtime_free_method): Do not call mono_free_method.
23324         
23325         * object.c (mono_runtime_free_method): New function to free a dynamic
23326         method.
23327
23328         * marshal.c (mono_delegate_free_ftnptr): New function to free the
23329         delegate trampoline.
23330
23331         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
23332         with hasthis as dynamic,
23333
23334         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
23335
23336         * domain.c (mono_jit_info_table_remove): New function to remove an
23337         entry from the jit info table.
23338
23339         * class-internals.h (MonoMethod): Add 'dynamic' field.
23340
23341         * loader.c: Fix warnings.
23342
23343 2004-09-01  Martin Baulig  <martin@ximian.com>
23344
23345         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
23346         instead of mono_debugger_lock() because the latter one is a no-op
23347         unless running in the debugger.
23348
23349 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
23350
23351         * class.c (class_compute_field_layout): Classes with auto-layout or
23352         reference fields are not blittable.
23353         
23354 2004-09-01  Dick Porter  <dick@ximian.com>
23355
23356         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
23357         mono_image_get_filename() to get the assembly location.
23358
23359         * icall.c:
23360         * metadata.h: Fix compile warnings
23361
23362 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
23363
23364         * class.c (class_compute_field_layout): System.Object is blittable.
23365
23366         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
23367         as in/out. Fixes #59909.
23368
23369 2004-09-01  Martin Baulig  <martin@ximian.com>
23370
23371         * metadata.h (MONO_TYPE_ISREFERENCE): Call
23372         mono_metadata_generic_inst_is_valuetype() if we're a generic
23373         instance to check whether our underlying type is a reference type.
23374
23375 2004-09-01  Martin Baulig  <martin@ximian.com>
23376
23377         * metadata.c (mono_type_size): If we're a generic instance, call
23378         mono_class_value_size() for value types.
23379
23380 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
23381
23382         * marshal.c: Implement more custom marshalling functionality. Fixes
23383         #64915.
23384
23385 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
23386
23387         * mono-debug.c, debug-mono-symfile.c: add some locking love.
23388
23389 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
23390
23391         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
23392
23393         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
23394
23395         * icall.c: Fix some warnings.
23396
23397         * threads.c (abort_appdomain_thread): Fix unref errors.
23398         (mono_thread_current): Fix THREAD_DEBUG define.
23399
23400 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
23401
23402         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
23403
23404         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
23405
23406 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
23407
23408         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
23409         string arrays.
23410
23411 2004-08-28  Martin Baulig  <martin@ximian.com>
23412
23413         * metadata.c
23414         (mono_metadata_generic_inst_is_valuetype): New public function.
23415
23416         * metadata.h (MONO_TYPE_ISSTRUCT): Call
23417         mono_metadata_generic_inst_is_valuetype() if we're a generic
23418         instance to check whether our underlying type is a valuetype.
23419
23420 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
23421
23422         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
23423         #63768.
23424
23425 2004-08-25  Martin Baulig  <martin@ximian.com>
23426
23427         * loader.c (mono_get_method_from_token): Abstract methods can also
23428         be generic and thus have type parameters.
23429
23430         * metadata-internals.h
23431         (MonoDynamicImage): Added `GPtrArray *gen_params'.
23432
23433         * reflection.c (mono_image_get_generic_param_info): Don't create a
23434         metadata row, just add an entry to the `gen_params' array.
23435         (build_compressed_metadata): Sort the `gen_params' array and then
23436         actually create the metadata.
23437
23438 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23439
23440         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
23441
23442 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
23443
23444         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
23445
23446 2004-08-24  Martin Baulig  <martin@ximian.com>
23447
23448         * class.cs (mono_class_is_subclass_of): Like an interface, a
23449         generic instance also derives from System.Object.
23450
23451 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
23452
23453         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
23454         custom modifiers to be in any order. Fixes #61990.
23455
23456 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
23457
23458         * object.c: Register mono_object_new_fast icall.
23459         
23460         * object.c (mono_class_get_allocation_ftn): Return to calling
23461         mono_object_new_fast, since it seems faster to compute the object 
23462         size in unmanaged code than passing it as a parameter.
23463
23464         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
23465
23466         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
23467         this function with Boehm as the oom handler, so we don't have to check
23468         the result of GC_malloc.
23469
23470         * object.c: Remove checks for oom.
23471
23472         * object.h object.c (mono_class_get_allocation_ftn): New function to
23473         return the icall which can be used to allocate an instance of a given
23474         class. 
23475
23476         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
23477
23478         * class-internals.h: Add 'enabled' field.
23479
23480 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
23481
23482         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
23483
23484 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
23485         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
23486         value 0x0010.
23487
23488 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
23489
23490         * appdomain.c: use the Tls function for appdomain too,
23491         at Zoltan's request. Actually return in mono_context_get
23492
23493         * appdomain.c, profiler.c, threads.c: use __thread
23494
23495 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
23496
23497         * appdomain.c threads.c: Call GC_CreateThread on windows.
23498
23499         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
23500         multiple libraries since this don't work on windows.
23501
23502 2004-08-18  Martin Baulig  <martin@ximian.com>
23503
23504         * class-internals.h
23505         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
23506         MonoMethodHeader.
23507
23508         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
23509         MonoMethodNormal since we also need it for abstract and interface
23510         methods.
23511
23512         * reflection.c
23513         (build_compressed_metadata): Sort the GenericParam table.
23514         (mono_image_create_token): Added `gboolean create_methodspec'
23515         argument; this is false when generating a MethodImpl token.
23516         (reflection_methodbuilder_to_mono_method): Abstract and interface
23517         methods may also have generic parameters.
23518
23519 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
23520
23521         * appdomain.c: thread local alloc
23522
23523 2004-08-17  Martin Baulig  <martin@ximian.com>
23524
23525         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
23526
23527         * icall.c
23528         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
23529         argument.
23530
23531         * class.c (mono_type_get_full_name): New public function.
23532         (mono_type_get_name): Don't include the type arguments.
23533
23534 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
23535
23536         * Makefile.am: Build static versions of libmetadata and libmonoruntime
23537         for inclusion into the mono executable.
23538
23539 2004-08-16  Martin Baulig  <martin@ximian.com>
23540
23541         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
23542         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
23543
23544 2004-08-14  Martin Baulig  <martin@ximian.com>
23545
23546         * class.c (dup_type): Also copy the `byref' field.
23547
23548 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
23549
23550         * reflection.c (create_dynamic_mono_image): Revert the last change 
23551         since it breaks bootstrap.
23552
23553 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
23554
23555         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
23556
23557         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
23558         not free them with g_free.
23559
23560 2004-08-11  Martin Baulig  <martin@ximian.com>
23561
23562         * reflection.c (mono_reflection_setup_internal_class): Also call
23563         mono_class_setup_mono_type() if we already have a `tb->type.type'.
23564
23565 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
23566
23567         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
23568         called during default (first) AppDomain creation. Keep track of
23569         Evidence when loading assemblies.
23570
23571 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
23572
23573         * opcodes.c, opcodes.h: reduce runtime relocations.
23574
23575 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
23576
23577         * culture-info.h, locales.c: fixes and chages to sue the new
23578         optimized format of the locale data.
23579         * culture-info-tables.h: regenerated.
23580
23581 2004-08-06  Geoff Norton <gnorton@customerdna.com>
23582         
23583         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
23584
23585 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
23586
23587         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
23588         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
23589         * domain-internals.h: icall declaration.
23590         * icall.c: icall registration.
23591         * object-internals.h: New fields in MonoAssembly for CAS.
23592
23593 2004-08-05  Duncan Mak  <duncan@ximian.com>
23594
23595         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
23596         CEE_LDELEM_ANY.
23597
23598 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
23599
23600         * reflection.c: fix to deal with object[] arrays in custom ctors
23601         (bug #62550).
23602
23603 2004-08-05  Martin Baulig  <martin@ximian.com>
23604
23605         * class.c (mono_class_array_element_size): Added support for
23606         generic instances and correctly handle "recursive" types.
23607
23608 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
23609
23610         * assembly.c: Fix warnings.
23611
23612 2004-08-04  Martin Baulig  <martin@ximian.com>
23613
23614         * class.c
23615         (mono_type_get_name_recurse): Added `gboolean include_arity'
23616         argument specifying whether or not we should include the generic
23617         arity in the type name.
23618         (_mono_type_get_name): New static function.
23619         (mono_class_setup_vtable): If we're a generic instance, don't
23620         include the generic arity in the names of explicit method
23621         implementations.        
23622
23623 2004-08-03  Martin Baulig  <martin@ximian.com>
23624
23625         * class.c (mono_type_get_name_recurse): Enclose the generic type
23626         arguments in `<', '>'.
23627
23628 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
23629
23630         * gc.c: make GC warning messages use the trace API, they are just
23631         noise to most of the users.
23632
23633 2004-08-03  Martin Baulig  <martin@ximian.com>
23634
23635         * debug-mono-symfile.c (read_string): Correctly read the string.
23636
23637 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
23638
23639         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
23640         
23641         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
23642         icalls.
23643         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
23644
23645 2004-07-30  Martin Baulig  <martin@ximian.com>
23646
23647         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
23648         Reflect latest symbol writer changes.   
23649
23650 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
23651
23652         * object.c: always create an object if null is passed
23653         to Invoke() where a valuetype is expected.
23654
23655 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
23656
23657         * marshal.c (mono_marshal_init): make managed
23658         signatures match native ones better for 64bits.
23659
23660 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23661
23662         * appdomain.c: hack to build correctly the private bin path on windows.
23663         Fixes bug #61991.
23664
23665 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
23666
23667         * assembly.c: Load mscorlib from the correct framework directory
23668           (mono/<version>/mscorlib.dll).
23669         * appdomain.h: Added prototypes for new functions.
23670         * internals.h: Added some prototypes.
23671         * domain.c: When initializing the runtime, get from the executable and
23672           the configuration files the runtime version that the app supports.
23673           Added support methods for reading app.exe.config. Added list of versions
23674           supported by the JIT. Added two new methods: mono_init_from_assembly,
23675           which initializes the runtime and determines the required version from
23676           the provided exe file, and mono_init_version, which initializes
23677           the runtime using the provided version.
23678         * icall.c: Get machine.config from version-specific directory.
23679         * reflection.c: When generating an image, embed the version number
23680           of the current runtime.
23681
23682 2004-07-28  Dick Porter  <dick@ximian.com>
23683
23684         * socket-io.c
23685         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
23686         returned sockaddr size before creating the remote address object.
23687         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
23688         61608.
23689
23690 2004-07-28  Dick Porter  <dick@ximian.com>
23691
23692         * locales.c (string_invariant_compare_char): Fix invariant char
23693         compares between upper and lower cases.  Fixes bug 61458.
23694
23695 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
23696         
23697         * marshal.c: actually cache stelem.ref wrappers.
23698         
23699 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
23700
23701         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
23702         sections and remove the mono_cli_rva_map () function.
23703
23704 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
23705
23706         * debug-mono-symfile.c: fix one more endianess issue, from a patch
23707         by Geoff Norton (<gnorton@customerdna.com>).
23708
23709 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
23710
23711         * class.c: fix class loads for pointer types (typeof(int) !=
23712         typeof(int*)).
23713
23714 2004-07-27  Martin Baulig  <martin@ximian.com>
23715
23716         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
23717         reading the debugging information from an external ".mdb" file.
23718
23719 2004-07-24  Martin Baulig  <martin@ximian.com>
23720
23721         * reflection.c (mono_image_get_type_info): Only write a class
23722         layout entry if we actually have a size or a packing size.
23723
23724 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
23725
23726         * reflection.c (type_get_fully_qualified_name): 
23727         insert cast to get type checking of ?: with non-gcc compilers
23728
23729 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
23730
23731         * rand.c: use g_getenv for both lookups of
23732         MONO_EGD_SOCKET
23733
23734 2004-07-17  Martin Baulig  <martin@ximian.com>
23735
23736         * reflection.c (mono_reflection_bind_generic_method_parameters):
23737         Set `gmethod->reflection_info'.
23738
23739 2004-07-17  Martin Baulig  <martin@ximian.com>
23740
23741         * class.c (mono_class_create_from_typedef): Insert the newly
23742         created class into the hash table before computing the interfaces
23743         since we could be called recursively.
23744
23745 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
23746
23747         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
23748         function to implement stelem.ref in managed code
23749         * class-internals.h, debug-helpers.c: a new wrapper type
23750         for the above.
23751
23752 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
23753
23754         * gc.c: allow GC handles to work even when no GC is compiled in.
23755         Fix part of bug #61134 (GetAddrOfPinnedObject).
23756
23757 2004-07-13  Peter Williams  <peter@newton.cx>
23758  
23759         * process.c (complete_path): Make sure we don't attempt to execute
23760         directories.
23761  
23762 2004-07-12  Geoff Norton <gnorton@customerdna.com>
23763
23764         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
23765           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
23766           and will add/subtract the hour if needed
23767
23768 2004-07-12  Martin Baulig  <martin@ximian.com>
23769
23770         * reflection.c (mono_field_get_object): If we have
23771         `field->generic_info', take the attributes from
23772         `field->generic_info->generic_type'.    
23773
23774 2004-07-12  Martin Baulig  <martin@ximian.com>
23775
23776         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
23777         This function must be called before initializing the runtime.
23778         (mono_debug_init_1): New function; call this after initializing
23779         the runtime, but before loading the assembly.  It tells the
23780         debugger to load corlib and the builtin types.
23781
23782         * mono-debug-debugger.c: Did some larger changes in the debugging
23783         code; support recursive class declarations, make sure we actually
23784         add all classes.
23785
23786 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23787
23788         * debug-helpers.c: undo my previous patch and fixed the real issue in
23789         ../mini/exceptions-x86.c
23790
23791 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23792
23793         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
23794         when no HOME env. variable was set and a NullRef was thrown in a .cctor
23795         called from other .cctors.
23796
23797 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
23798
23799         * loader.c: Removed the mono_loader_wine_init hack now that we are
23800         doing a managed version of Windows.Forms.
23801
23802 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
23803
23804         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
23805         threadpool.c, threads.c: remove static data from rootset.
23806
23807 2004-07-09  Dick Porter  <dick@ximian.com>
23808
23809         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
23810         Don't do any more processing if the matched length was 0.  It was
23811         increasing the size of the string before.  Fixes bug 61167.
23812
23813 2004-07-09  Dick Porter  <dick@ximian.com>
23814
23815         * socket-io.h:
23816         * socket-io.c
23817         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
23818         Add support for SO_PEERCRED if its available.
23819
23820 2004-07-09  Peter Bartok <pbartok@novell.com>
23821         * loader.c: winelib.exe.so error message is now only displayed if
23822         MONO_DEBUG is set. To help us avoid questions when people are trying
23823         out the new Managed.Windows.Forms.
23824
23825 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
23826
23827         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
23828         for isinst and castclass wrappers.
23829
23830         * class-internals.h icall.c: Move registration and lookup of JIT icalls
23831         to libmetadata from the JIT, so they could be used by the marshalling
23832         code and the interpreter.
23833
23834         * marshal.c: Register marshalling related JIT icalls here instead of
23835         in mini.c. Use CEE_MONO_ICALL instead of the family of 
23836         CEE_MONO_PROC<x> opcodes to call marshalling functions.
23837
23838         * metadata.h: Remove unneeded marshalling conversions.
23839
23840         * opcodes.c: Update for new opcodes.
23841         
23842 2004-07-08  Martin Baulig  <martin@ximian.com>
23843
23844         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
23845         (mono_debug_get_domain_data): Make this function static.
23846
23847 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
23848
23849         * gc.c, object.h: add nice GC handle API for embedders.
23850
23851 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
23852
23853         * reflection.c: more changes for the new api
23854
23855         * object.c: When we reflect on a field w/ a constant value, it
23856         will not have a memory location, so we must access metadata. Also,
23857         allow easier reading of strings so that we can read them from
23858         the constant data.
23859
23860         * class.c (mono_class_layout_fields): no need for literal fields here.
23861
23862         * class-internals.h: api changes for const fields
23863
23864         * icall.c (ves_icall_get_enum_info): use new apis for const fields
23865
23866 2004-07-06  Martin Baulig  <martin@ximian.com>
23867
23868         * mono-debug.h: Increment version number to 44.
23869
23870         * mono-debug.c (mono_debug_add_wrapper): The second argument is
23871         now a gpointer, rewrote this whole method.
23872
23873         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
23874         function.  Add information about the wrapper in a new "misc table".
23875
23876         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
23877         for the new misc table.
23878
23879 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
23880
23881         * metadata-internals.h image.c: Add a cache for helper signatures.
23882
23883         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
23884
23885 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
23886
23887         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
23888         delegates from a delegate. Fixes #61033.
23889         
23890         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
23891         marshalling of stringbuilder arrays. Fixes #59900.
23892
23893 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
23894
23895         * icall.c: Add EnumBuilder:setup_enum_type icall.
23896
23897 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
23898
23899         * icall.c: Added a new icall for the property version of
23900         OffsetOfStringData.
23901
23902 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
23903
23904         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
23905         it has a constant size across platforms.
23906
23907         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
23908         stack trace.
23909
23910 2004-06-29  Martin Baulig  <martin@ximian.com>
23911
23912         * mono-debug.c (mono_debug_add_method): Protect the whole function
23913         in mono_debugger_lock(), not just parts of it.
23914
23915 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
23916
23917         * reflection.c: make sure padding bytes in heaps are zeroed.
23918
23919 2004-06-24  David Waite  <mass@akuma.org>
23920
23921         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
23922         image.c, loader.c, locales.c, marshal.c, metadata.c,
23923         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
23924         string-icalls.c, threads.c: change to C90-style comments from C99 /
23925         C++ -style
23926
23927 2004-06-24  Dick Porter  <dick@ximian.com>
23928
23929         * threads.c
23930         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
23931         return createdNew.  Fixes bug 60412.
23932
23933         * threads-types.h: 
23934         * icall.c: Add createdNew parameter to CreateMutex icall
23935
23936 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
23937
23938         * reflection.c, object-internals.h: save default value in params.
23939
23940 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23941
23942         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
23943         no need to build a new path combining that with the application base.
23944         Fixes bug #60442.
23945
23946 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
23947
23948         * reflection.c: fixed minor standard compliance issues.
23949
23950 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
23951
23952         * reflection.c: fixed issue with encoding some custom attributes
23953         (arrays in properties and fields, bug #60411).
23954
23955 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23956
23957         * reflection.c: fix start address when copying the public key token.
23958
23959 2004-06-23  Martin Baulig  <martin@ximian.com>
23960
23961         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
23962         the `exc' object in a static object to put it into the GC's root set.
23963
23964 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
23965
23966         * reflection.c: make mono_reflection_setup_internal_class ()
23967         callable a second time to setup a new parent class.
23968
23969 2004-06-23  Dick Porter  <dick@ximian.com>
23970
23971         * threads.c: Check for WAIT_IO_COMPLETION return values.
23972
23973 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
23974
23975         * appdomain.c: Removed the g_free on the public key token. Now copy 
23976         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
23977         * assembly.c: Added public key token string value when loading 
23978         assemblies. Fix bug #60439.
23979         * icall.c: Added missing informations (like public key) in 
23980         GetReferencedAssemblies. Fix #60519.
23981         * image.h: Changed definition for public key token from const char*
23982         public_tok_value to guchar public_key_token [17];
23983         * reflection.c: Updated for changes to public key token.
23984
23985 2004-06-22  Lluis Sanchez Gual
23986
23987         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
23988         for the field in base classes.
23989
23990 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
23991
23992         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
23993         mark headers as not supported, they are installed only for use by the
23994         debugger.
23995
23996 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
23997
23998         * *.c, *.h: avoid namespace pollution in public headers.
23999
24000 2004-06-21  Martin Baulig  <martin@ximian.com>
24001
24002         * exception.c (mono_get_exception_security): It's in
24003         "System.Security", not in "System".
24004
24005         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
24006         the exception classes.
24007
24008 2004-06-21  Martin Baulig  <martin@ximian.com>
24009
24010         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
24011         Protect the exception object from being finalized.
24012
24013 2004-06-21  Martin Baulig  <martin@ximian.com>
24014
24015         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
24016         public function.
24017
24018 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
24019
24020         * reflection.c: Load the assembly in mono_reflection_type_from_name,
24021         if it was not loaded before. Fix parts of #60439.
24022
24023 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
24024
24025         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
24026         code that was broken since Ben's change: wrappers are now
24027         dependent on the method signature only again.
24028
24029 2004-06-21  Martin Baulig  <martin@ximian.com>
24030
24031         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
24032         added interface support.
24033
24034 2004-06-21  Martin Baulig  <martin@ximian.com>
24035
24036         * class.c (mono_vtable_get_static_field_data): New public method.
24037
24038 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
24039
24040         * filewatcher.c : Windows build fix to be compliant with API changes.
24041
24042 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
24043
24044         * class.h, class.c: more accessors.
24045         * metadata.h, metadata.c: prepare for hiding MonoType and
24046         MonoMethodSignature: people should use the accessors from now on
24047         outside of the tree.
24048
24049 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
24050
24051         * *.c, *.h: more API cleanups.
24052
24053 2004-06-18  Jackson Harper  <jackson@ximian.com>
24054
24055         * assembly.c: Trace loading assemblies.
24056         * loader.c: Trace loading native libraries.
24057         * mono-config.c: Trace loading config files.
24058         
24059 2004-06-18  Dick Porter  <dick@ximian.com>
24060
24061         * locales.c: Tell ICU the lengths of strings, it can cope with
24062         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
24063
24064 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
24065
24066         * image.c: swapped name/filename;
24067
24068 2004-06-18  Martin Baulig  <martin@ximian.com>
24069
24070         * mono-debug-debugger.c (write_class): Write the parent class at
24071         the end of the header.
24072
24073 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
24074
24075         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
24076
24077 2004-06-17  Raja R Harinath  <rharinath@novell.com>
24078
24079         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
24080         (bundle_obj): New conditional define.
24081         (BUILT_SOURCES): Remove.
24082         ($(bundle_srcs)): Make parallel-make safe.
24083         (libmonoruntime_la_LIBADD): Make unconditional.
24084         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
24085         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
24086
24087 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
24088
24089         * culture-info-tables.h: It was inconsistent with the latest
24090           supp info files.
24091
24092 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
24093
24094         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
24095         be loaded.
24096
24097         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
24098         with gcc 2.95.
24099
24100 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
24101
24102         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
24103         cleaned up public header threads.h.
24104
24105 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
24106
24107         * Makefile.am, *.c, *.h: more API cleanups.
24108
24109 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
24110
24111         * Makefile.am: removed monosn from compilation.
24112         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
24113         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
24114         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
24115         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
24116         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
24117         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
24118
24119 2004-06-15  Jackson Harper  <jackson@ximian.com>
24120
24121         * assembly.c: Make locales lower case when searching the GAC for
24122         assemblies. gacutil will always make locales lowercase when
24123         installing so this effectively makes them case insensitive.
24124         
24125 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
24126
24127         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
24128         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
24129           parameter which allows to choose whether the wait can be interrupted or 
24130           not. Also added the method mono_monitor_enter(), which locks the monitor
24131           using an infinite wait and without allowing interruption.
24132           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
24133           interrupted.
24134         * object.h: Added new fields in MonoThread. suspend_event holds the event
24135           used to susped/resume the thread. synch_lock is the lock object to use for
24136           modifying the thread state.
24137         * threads.c: Use the new synch_lock object for locking, instead of "this",
24138           which can generate deadlocks.
24139           Moved thread state change in Thread.Sleep and Thread.Join from managed
24140           to unmanaged code. This avoids a deadlock when the thread was suspended
24141           just after acquiring the thread lock.
24142           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
24143           Implemented Thread.Suspend using an event instead of ThreadSuspend,
24144           which is not fully implemented in the io-layer.
24145         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
24146
24147 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
24148
24149         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
24150         threads-types.h: more API cleanups.
24151
24152 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
24153
24154         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
24155         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
24156         threadpool.c, threads.c: first pass at the exported API cleanup.
24157
24158 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
24159
24160         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
24161
24162 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24163
24164         * icall.c: added internalGetHome.
24165
24166 2004-06-14  Dick Porter  <dick@ximian.com>
24167
24168         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
24169         possible to return successfully when '.' or '..' were the only
24170         entries in a directory, but were skipped.  The MonoIOStat was not
24171         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
24172         Fixes bug 59574.
24173
24174 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
24175
24176         * reflection.c: make binaries run on .Net 1.1 by default.
24177
24178 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
24179
24180         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
24181
24182 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
24183
24184         * marshal.c: keep track of struct size with explicit layout
24185         (bug #59979).
24186
24187 2004-06-12  Martin Baulig  <martin@ximian.com>
24188
24189         * mono-debug-debugger.c: Comment out a debugging g_message().
24190
24191 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
24192
24193         * reflection.c, reflection.h: do not free custom attrs that are cached.
24194         * icall.c: use braces to make code clearer.
24195
24196 2004-06-11  Martin Baulig  <martin@ximian.com>
24197
24198         * class.h (MonoInflatedField): New type.
24199         (MonoClassField): Replaced `MonoType *generic_type' with
24200         `MonoInflatedField *generic_info'.
24201
24202         * icall.c
24203         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
24204
24205 2004-06-11  Martin Baulig  <martin@ximian.com>
24206
24207         * reflection.c (mono_image_create_method_token): Correctly encode
24208         varargs methods.
24209
24210 2004-06-11  Martin Baulig  <martin@ximian.com>
24211
24212         * metadata.c (mono_metadata_parse_method_signature): When parsing
24213         a MethodDef which has VarArgs, also set sentinelpos if we don't
24214         have any parameters.
24215
24216 2004-06-11  Martin Baulig  <martin@ximian.com>
24217
24218         * verify.c (mono_method_verify): In CEE_CALL, use
24219         mono_method_get_signature() to get the method's signature, unless
24220         we're a PInvoke method.
24221
24222 2004-06-10  Jackson Harper  <jackson@ximian.com>
24223
24224         * assembly.c: Use <path>/lib/mono/gac for the extra paths
24225         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
24226         logical name as the supplied path is just a prefix to the gac not
24227         the direct path to it.
24228         
24229 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
24230
24231         * reflection.c: make the token for a created method match
24232         the token of the MethodBuilder it was created from
24233         (IKVM requires this behaviour now).
24234
24235 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
24236
24237         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
24238         reflection.c, socket-io.c: leak fixes.
24239
24240 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
24241
24242         * icall.c: handle sentinel pos in vararg methods in position different
24243         from 0.
24244
24245 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24246
24247         * culture-info-tables.h: freshly generated.
24248
24249 2004-06-09  Martin Baulig  <martin@ximian.com>
24250
24251         * loader.c (mono_get_method_constrained): Call `mono_class_init
24252         (constrained_class)'.   
24253
24254 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
24255
24256         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
24257         any methods. Fixes #59629.
24258
24259 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24260
24261         * culture-info-tables.h: reflecting locale-builder updates.
24262
24263 2004-06-08  Dick Porter  <dick@ximian.com>
24264
24265         * object.h:
24266         * locales.c: Fixed compile warnings, including a real bug in
24267         CompareInfo_internal_compare.
24268         
24269 2004-06-08  Dick Porter  <dick@ximian.com>
24270
24271         * locales.c
24272         (ves_icall_System_Globalization_CompareInfo_internal_index):
24273         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
24274         Double-check the resuls of usearches, because ICU currently
24275         ignores most of the collator settings here.  Fixes bug 59720.
24276         
24277 2004-06-08  Dick Porter  <dick@ximian.com>
24278
24279         * locales.c
24280         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
24281         Fix memory leak and segfault-causing typo.  No idea how this one
24282         lasted so long without being noticed.
24283
24284 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
24285
24286         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
24287         any methods. Fixes #59629.
24288
24289 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24290
24291         * assembly.c:
24292         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
24293         own the critical section before). Removed dead code (that's done
24294         in the preload hook).
24295
24296         (mono_assembly_load_with_partial_name): call the preload hook.
24297
24298 2004-06-08  Martin Baulig  <martin@ximian.com>
24299
24300         * metadata.c (mono_metadata_signature_alloc): Default
24301         `sentinelpos' to -1.
24302
24303         * reflection.c (mono_image_get_array_token): Likewise.
24304
24305 2004-06-08  Martin Baulig  <martin@ximian.com>
24306
24307         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
24308
24309         * metadata.c (mono_metadata_parse_method_signature): When parsing
24310         a MethodDef which has VarArgs, set sentinelpos.
24311
24312         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
24313         `gint16' since we're using -1 for non-varargs methods.
24314
24315         * reflection.c
24316         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
24317         (method_encode_signature): Added varargs support.
24318         (method_builder_encode_signature): Likewise.
24319         (mono_image_get_varargs_method_token): New static method.
24320         (mono_image_create_method_token): New public method; this is
24321         called via an icall instead of mono_image_create_token() when
24322         calling a varargs method.       
24323
24324 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
24325
24326         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
24327
24328 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24329
24330         * culture-info-tables.h : Reflecting the latest locale-builder that
24331           fixed empty array representation ({} to {0}).
24332
24333 2004-06-07  Jackson Harper  <jackson@ximian.com>
24334
24335         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
24336         looking up extra gac paths. This allows MONO_GAC_PATH to act
24337         exactly like a prefix.
24338         
24339 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
24340
24341         * reflection.c (mono_reflection_type_from_name): Make a copy of the
24342         type name before modifying it. Fixes #59405.
24343
24344 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24345
24346         * culture-info.h: added fields for "all datetime patterns".
24347         * locales.c: (  ves_icall_System_Globalization_CultureInfo
24348           _construct_datetime_format ()): fill xxx_patterns fields.
24349         * object.h: added fields for "all datetime patterns" to
24350           MonoDateTimeFormatInfo.
24351         * culture-info-tables.h: reflecting locale-builder updates.
24352
24353 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
24354
24355         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
24356         the event has no add and remove methods. Fixes #59629.
24357
24358 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
24359
24360         * object.c: Fixed possible integer overflow when allocating large
24361         strings.
24362
24363 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
24364
24365         * culture-info-tables.h: reflecting locale-builder updates.
24366
24367 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
24368
24369         * culture-info-tables.h: reflecting locale-builder updates.
24370
24371 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
24372
24373         * culture-info-tables.h: reflecting locale-builder updates.
24374
24375 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
24376
24377         * threads.c: Made Thread.Sleep abortable.
24378
24379 2004-06-02  Martin Baulig  <martin@ximian.com>
24380
24381         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
24382
24383         * debug-mono-symfile.h: Bumped symbol file version number to 37.
24384
24385 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
24386
24387         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
24388
24389 2004-05-30  Jackson Harper  <jackson@ximian.com>
24390
24391         * reflection.c: Do not hardcode assembly versions or public key
24392         tokens anymore. All of this except the corlib section was dead
24393         code anyways.
24394         
24395 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
24396
24397         * object.c (mono_runtime_invoke_array): Automatically create boxed
24398         objects for byref valuetypes if needed. Fixes #59300.
24399         
24400         * object.c (mono_method_return_message_restore): Handle 
24401         MONO_TYPE_OBJECT as well.
24402
24403 2004-05-28  Jackson Harper  <jackson@ximian.com>
24404
24405         * reflection.c: The modified type encoding was causing build
24406         problems. Reverted for now.
24407         
24408 2004-05-28  Jackson Harper  <jackson@ximian.com>
24409
24410         * reflection.c/h: Take an assembly ref so that we dont create
24411         fully qualified names when encoding types in the same assembly as
24412         the custom attribute being emitted.
24413         * appdomain.c: Increment version number.
24414         
24415 2004-05-26  Duncan Mak  <duncan@ximian.com>
24416
24417         * icall.c
24418         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
24419         Set the full version number (major, minor, build, revision).
24420
24421 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
24422
24423         * marshal.c (emit_struct_conv): increment src/dst after blit
24424         (mono_marshal_get_managed_wrapper,
24425         mono_marshal_get_native_wrapper): make sure we have marshalling
24426         info before marshalling params (info computation affects
24427         blittable)
24428
24429         * class.c (class_compute_field_layout): correctly deal with
24430         blittable
24431         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
24432         value types (as per what windows dows by default)
24433         (mono_class_setup_mono_type): System.ValueType is blittable
24434         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
24435         blittable
24436
24437         * marshal.c (mono_marshal_load_type_info): flag types  as
24438         non-blittable if the native layout doesn't match the managed
24439         layout
24440
24441 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24442
24443         * appdomain.c: don't add stuff in the private search path that is
24444         above the application base. If application base is not set, there's
24445         no private search path.
24446
24447 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
24448
24449         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
24450         byref struct arguments in native->managed marshalling.
24451
24452 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
24453
24454         * marshal.c (mono_marshal_get_runtime_invoke): correctly
24455         cache methods using signature (special case for methods
24456         that are value type or string class)
24457         
24458         * image.c (mono_image_close): clean up allocated GSList's
24459         in runtime_invoke_cache.
24460
24461 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24462
24463         * mono-config.c: set the correct path for mono_cfg_dir on windows when
24464         there's no MONO_CFG_DIR environment variable defined.
24465
24466 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24467
24468         * threads.c: windows version must be >= 0x0500 to include OpenThread.
24469
24470 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
24471
24472         * threadpool.c: Really wait for 500ms after the async call, even if the wait
24473           is interrumped.
24474         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
24475           before waiting for it, and call CloseHandle after the wait to unref it.
24476           This will make sure that handles are not disposed too early.
24477
24478 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24479
24480         * appdomain.c:
24481         * appdomain.h:
24482         * icall.c: removed
24483         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
24484         needed now.
24485
24486         * object.c: se the application_base only for the domain that runs
24487         Main. Fixes bug #59216,
24488
24489 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24490
24491         * appdomain.c:
24492         * object.c: only the domain in which Main is run have
24493         SetupInformation.ConfigurationFile set, so moved a few lines from
24494         appdomain.c to object.c.
24495
24496 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24497
24498         * appdomain.c: we tried to load [name].(dll|exe), but according
24499         to bug #57710, we must also try [culture]/[name].(dll|exe) and
24500         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
24501         There's a test case attached to bug #58922.
24502
24503 2004-05-27  Dick Porter  <dick@ximian.com>
24504
24505         * icall.c:
24506         * file-io.c: Implemented icalls for locking and unlocking regions
24507         in a file.
24508         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
24509         FALSE on error (fixes both compiler warning and real bug.)
24510
24511 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
24512
24513         * culture-info-tables.h: reflecting locale-builder updates.
24514
24515           (Added missing ChangeLog entry for 05/26)
24516
24517 2004-05-27  Jackson Harper  <jackson@ximian.com>
24518
24519         * locales.c: Fix some cut and paste errors.
24520         
24521 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24522
24523         * mono-config.c: set the correct path for config. directory on windows.
24524
24525 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
24526
24527         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
24528           on win32.
24529
24530 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
24531
24532         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
24533         from pinvoke functions.
24534         
24535         * marshal.c (mono_ftnptr_to_delegate): Implement this.
24536
24537 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
24538
24539         * culture-info-tables.h: reflecting locale-builder updates.
24540
24541 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
24542
24543         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
24544         #59086.
24545
24546 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
24547
24548         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
24549         * icall.c: Modified icalls for RNG.
24550         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
24551         Windows (CryptoAPI).
24552
24553 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
24554
24555         * locales.c: Fix build.
24556
24557 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
24558
24559         * culture-info-tables.h: reflecting locale-builder updates.
24560
24561 2004-05-25  Jackson Harper  <jackson@ximian.com>
24562
24563         * locales.c: When creating the current culture use the $LANGs
24564         specific culture. So DateTimeFormat and NumberFormat entries are created.
24565         
24566 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
24567
24568         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
24569         a char array as parameter.
24570
24571 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
24572
24573         * image.c: In mono_image_open(), always use an absolute path name to
24574           look for already loaded images.
24575
24576 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
24577
24578         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
24579         missing in the windows build (like older cygwin include files).
24580
24581 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
24582
24583         * icall.c: Fixed check for possible integer overflow in Buffer_
24584         BlockCopy icall. Replaced comments style // by /* */.
24585
24586 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
24587
24588         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
24589         
24590         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
24591         check after MONO_VTADDR. Fixes pinvoke2.exe.
24592
24593         * marshal.h marshal.c metadata.h: Add beginnings of support for
24594         ftnptr -> delegate marshalling.
24595
24596 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
24597
24598         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
24599         * threads.c: Fix warnings.
24600
24601 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
24602
24603         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
24604         * icall.c: Registered icalls for Suspend and Resume.
24605         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
24606           Thread.Abort.
24607         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
24608         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
24609         * process.c: Use WaitForSingleObjectEx.
24610         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
24611           checkpoints.
24612         * threads.c, threads.h: Make use of new Ex wait methods. Improved
24613           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
24614           for Suspend and Resume. Added new mono_thread_stop, used for stoping
24615           background threads. Added basic support for Abort in Windows.
24616           Start new threads using a managed delegate invoke wrapper. This wrapper
24617           has an interruption checkpoint that is needed since an interruption
24618           can be requested before the thread leaves the unmanaged code that starts 
24619           the thread.
24620         * marshal.c: Added interruption checkpoint after every native call, and
24621           also before managed calls for wrappers called from unmanaged code to
24622           go into managed code.
24623         * object.h: Added new field in MonoThread to keep track of interruption
24624           requests.
24625
24626 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
24627
24628         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
24629         calls.
24630
24631 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24632
24633         * appdomain.c:
24634         * assembly.c:
24635         * gc.c:
24636         * locales.c:
24637         * mono-config.c:
24638         * rand.c: getenv -> g_getenv (windows!)
24639
24640         * process.c: complete_path is also used on non-windows platforms.
24641
24642 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24643
24644         * icall.c: new signature for Process_Start.
24645
24646         * process.[ch]: new signature for Process_Start. If we're on windows
24647         and UseShellExecute is false, we have to search for the program by
24648         ourselves if we don't get a full path.
24649
24650 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
24651
24652         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
24653         marshalling and call CleanUpNativeData if needed. Fixes #58646.
24654
24655 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24656
24657         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
24658         Fixes bug #58373.
24659
24660 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24661
24662         * process.c: use double quotes to quote program name and arguments on
24663         windows. Fixes bug #58575.
24664
24665 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24666
24667         * file-io.c: don't return "." and ".." when using windows Find*File.
24668
24669 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
24670
24671         * marshal.c: Don't pass wrappers to message init because method 
24672         addressed used to lookup metadata. part of remoting[2|3] fix.
24673
24674 2004-05-15  Jackson Harper  <jackson@ximian.com>
24675
24676         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
24677         path is essentially the same as MONO_PATH except that it points to
24678         GACs instead of lib directories.
24679         * loader.h: The user gac is gone so we dont need function to
24680         enable/disable it.
24681         * mono-config.c: user gac option is now gone.
24682         
24683 2004-05-15  Jackson Harper  <jackson@ximian.com>
24684
24685         * culture-info.h: Make defines more consistent, add calendar data
24686         to the culture info table.
24687         * culture-info-tables.h: Add basic calendar data. Basically
24688         everyone gets default gregorian until all the data is
24689         updated.
24690         * locales.c: Use the new consistent defines. Set calendar data for
24691         culture info objects.
24692         * object.h: add a field for calendar data to CultureInfo
24693         
24694 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
24695
24696         * image.c: image->runtime_invoke_cache is keyed on signatures now.
24697         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
24698         a signature.
24699         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
24700         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
24701         an extra param that is the pointer of the method to invoke. The IL for
24702         the invoke method is no longer specific to the method, but to the
24703         signature of the method. Thus, we can share the same code for multiple
24704         methods. This reduces the number of methods that have to be compiled.
24705
24706 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
24707
24708         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
24709
24710         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24711
24712         * icall.c: Optimize Buffer.BlockCopy.
24713
24714 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24715
24716         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
24717         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
24718         quote). Changed them to "MMMM yyyy".
24719
24720 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
24721
24722         * rand.c
24723         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
24724
24725 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
24726
24727         * reflection.h: Updated after changes to managed structures.
24728
24729         * appdomain.c: Bump corlib version.
24730
24731 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24732
24733         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
24734         windows.
24735
24736 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24737
24738         * Makefile.am: link to ../os/libmonoos.la on windows.
24739
24740         * assembly.c:
24741                 -If MONO_DEBUG, warn about non-existing directories in
24742                 MONO_PATH.
24743                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
24744                 compile time variable.
24745                 -Removed init_default_path and call mono_set_rootdir from
24746                 libmonoos.a instead (windows only).
24747
24748         * assembly.h: declare mono_assembly_getrootdir().
24749
24750         * domain.c:
24751         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
24752
24753         * loader.c: s/getenv/g_getenv/
24754
24755 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
24756
24757         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
24758
24759         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
24760
24761         * metadata.h: Add new marshalling conversions.
24762
24763         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
24764         function.
24765
24766         * reflection.c (mono_reflection_get_type): Lookup the type in all
24767         modules of a multi-module assembly. Fixes #58291.
24768
24769 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
24770
24771         * threads.c: Before aborting a background, set the StopRequested
24772         state.  This avoids throwing the Abort exception.
24773         In mono_thread_manage, don't continue with the shutdown until all
24774         aborted threads have actually stopped.
24775
24776 2004-05-10  Jackson Harper  <jackson@ximian.com>
24777
24778         * locales.c: Remove the modifier from culture names.
24779         
24780 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24781
24782         * Makefile.am: monosn is not installed any more. It has been deprecated
24783         in favor of sn.
24784
24785 2004-05-07  Jackson Harper  <jackson@ximian.com>
24786
24787         * locales.c
24788         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
24789         Fix array construction, add bailout if the length is 0.
24790
24791 2004-05-07  Dick Porter  <dick@ximian.com>
24792
24793         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
24794         machine doesn't have a DNS entry.  Patch by Urs Muff
24795         (umuff@quark.com), fixes bug 57928.
24796
24797 2004-05-06  Jackson Harper  <jackson@ximian.com>
24798
24799         * reflection.c: Handle null PublicTokens properly. alloc mem for
24800         assembly names culture so we dont crash when freeing it.
24801         
24802 2004-05-06  Jackson Harper  <jackson@ximian.com>
24803
24804         * assembly.c: Check the usergac when loading with partial names.
24805         
24806 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
24807
24808         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
24809         does nothing for now (not required for Linux/Windows) but the class
24810         library can call it (and a newer or modified runtime could need it).
24811         * icall.c: Registred icall.
24812
24813 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24814
24815         * loader.c: prints a message on module loading error we set MONO_DEBUG
24816         environment variable.
24817
24818 2004-05-05  Jackson Harper  <jackson@ximian.com>
24819
24820         * appdomain.c: Handle PublicKeyToken=null properly.
24821         
24822 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
24823
24824         * environment.c|h: Added icall ves_icall_System_Environment_
24825         GetOSVersionString to get the current OS version as a string.
24826         * icall.c: Registred icall.
24827
24828 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
24829
24830         * object.c: in mono_object_get_virtual_method(), take into account that
24831         non-virtual methods don't have a slot in the vtable. Check needed when
24832         the object is a proxy.
24833
24834 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
24835
24836         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
24837         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
24838
24839         * object.c (mono_class_compute_gc_descriptor): Fix warning.
24840
24841         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
24842         passed when a valuetype is expected.
24843
24844         * object.c (mono_unhandled_exception): Only set the exit code if the
24845         exception happens in the main thread. Fixes thread5.exe.
24846
24847         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
24848         invalid names. Fixes #58047.
24849
24850 2004-05-03  Jackson Harper  <jackson@ximian.com>
24851
24852         * assembly.c: This line was committed accidently and is unneeded.
24853         
24854 2004-05-03  Jackson Harper  <jackson@ximian.com>
24855
24856         * icall.c: Add new icall for Assembly::LoadWithPartialName
24857         * assembly.c/.h: new function that probes the GAC to load partial
24858         assembly names by Paolo Molaro.
24859         
24860 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24861
24862         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
24863         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
24864         (type_get_fully_qualified_name): Added PublicKeyToken when building a
24865         full type name.
24866
24867 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24868
24869         * appdomain.c: fixed check for 'neutral' culture and removed warning.
24870         * reflection.c: fix bug when parsing a full type name and Version is not
24871         the last thing in the string.
24872
24873 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
24874
24875         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
24876         crashes when it is freed.
24877
24878 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24879
24880         * assembly.c: print the compat warning to stderr.
24881
24882 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
24883
24884         * assembly.c (mono_assembly_load_references): Add a compatibility
24885         hack to run old applications that might be still referencing the
24886         3300-based assemblies, only do this for System.xxx.
24887
24888 2004-05-01  Jackson Harper  <jackson@ximian.com>
24889
24890         * appdomain.c: If the culture is neutral we set it to "".
24891         
24892 2004-04-29  Jackson Harper  <jackson@ximian.com>
24893
24894         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
24895
24896 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
24897  
24898         * string-icalls.c: added low overhead function for copying chars
24899         * icall.c: added needed icall for the above function
24900  
24901 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24902
24903         * icall.c: fix return value of get_global_assembly_cache.  Implemented
24904         Environment.GetLogicalDrives.
24905
24906 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
24907
24908         * rand.c: try and talk to egd or prngd
24909         for random bytes if opening devices fail.
24910
24911 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
24912
24913         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
24914         alignment for the type using the native alignment of its members 
24915         instead of using klass->min_align.
24916
24917         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
24918
24919 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24920
24921         * file-io.c:
24922         * socket-io.c: added check for sys/aio.h.
24923
24924 2004-04-28  Dick Porter  <dick@ximian.com>
24925
24926         * threads.c: Don't abort a thread thats already aborting, when
24927         terminating everything.
24928
24929 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24930
24931         * icall.c: added 2 new async calls for Socket.
24932
24933         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
24934         IO on *nix systems.
24935
24936         * threadpool.c: removed unused variable.
24937
24938 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
24939
24940         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
24941
24942 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24943
24944         * locales.c: put back string_invariant_tolower () and
24945         string_invariant_toupper ().
24946
24947 2004-04-26 David Waite <mass@akuma.org>
24948
24949         * file-io.h:
24950         * socket-io.h:
24951         * threads.h:
24952         * unicode.h: remove comma from end of enumeration declarations
24953
24954 2004-04-26 David Waite <mass@akuma.org>
24955
24956         * debug-mono-symfile.h:
24957         * decimal.c:
24958         * mono_debug.h:
24959         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
24960
24961
24962 2004-04-26  Jackson Harper  <jackson@ximian.com>
24963
24964         * appdomain.c: Increment version number.
24965         
24966 2004-04-26  Jackson Harper  <jackson@ximian.com>
24967
24968         * appdomain.c: Set assembly references public token value when
24969         PublicKeyToken is specified, not the hash_value. Free public token
24970         values when free assembly name data. Previously the public key
24971         token was hex decoded, however we are using hex encoded public key
24972         tokens, so this is not neccasary.
24973         * assembly.c: Lookup assemblies in the gac if their public token
24974         value is set. Add function to allow enabling user gac
24975         lookups. Specify whether or not the assembly was loaded from the
24976         GAC. Compare full assembly names when checking the cache for
24977         assemblies (Temporarily disabled see comment in code). Remove
24978         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
24979         specifies trace-loader they get extra info to stdout on the
24980         loading of assemblies.
24981         * image.h: Add a field for an assembly references public token
24982         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
24983         whether an assembly has been loaded from the GAC.
24984         * image.c: Remove a corlib -> mscorlib name mapping.
24985         * loader.h: Add function to enable/disable the user gac.
24986         * mono-config.c: Check if the usergac is enabled in the config
24987         file.
24988         * icall.c: New icall to determine whether or not an assembly has
24989         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
24990         * tabldefs.h: Add constant for assemblyref flag that specifies a
24991         full public key is used instead of a public token.
24992         * reflection.c: Remove mscorlib -> corlib mappings. Set
24993         PublicTokenValue instead of hash value. This value is a hex
24994         string so it does not need to be expanded.
24995
24996 2004-04-26  Martin Baulig  <martin@ximian.com>
24997
24998         * mono-debug-debugger.c (mono_debugger_initialize): Set
24999         `mono_debugger_initialized' before calling mono_debug_lock().
25000
25001 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
25002
25003         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
25004           InternalToUpper/InternalToLower.
25005         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
25006           removed invariant culture shortcut.  This is now done in managed code.
25007         * locales.c: (string_invariant_toupper/tolower) removed.
25008
25009 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25010
25011         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
25012         Added Poll internal call.
25013
25014         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
25015         call for Poll. Select was too heavy for polling a single socket.
25016
25017         * threadpool.[ch]: added mono_threadpool_cleanup.
25018         * threads.c: use it. Don't use Thread_Abort on windows.
25019
25020 2004-04-23  Martin Baulig  <martin@ximian.com>
25021
25022         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
25023
25024 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
25025
25026         * icall.c: Registred new icalls for key pair protection and added an
25027         icall for Environment.GetFolderPath on Windows.
25028         * security.c|h: Added new icalls for key pair protection.
25029
25030 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25031
25032         * socket-io.c: don't display the non-supported family warning for known
25033         families. Now this is not displayed on windows when checking support
25034         for IPv4/IPv6.
25035
25036 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25037
25038         * class.c: don't display the layout warning for static fields.
25039
25040 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
25041
25042         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
25043         * locales.c, locales.h: Added new icalls for culture-specific
25044         Char.ToLower and Char.ToUpper.
25045
25046 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25047
25048         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
25049         by David Waite.
25050
25051 2004-04-20  Martin Baulig  <martin@ximian.com>
25052
25053         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
25054         of the type name before passing it to mono_reflection_type_from_name().
25055
25056 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
25057
25058         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
25059         encodings here. Fixes #56965.
25060
25061 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
25062
25063         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
25064         fix test on strstr result not that I can see anything that
25065         relies on the result.
25066
25067 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
25068
25069         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
25070         Fixes #57081.
25071
25072         * marshal.c (mono_marshal_get_string_encoding): New helper function.
25073
25074         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
25075         function to determine which marshalling to use for strings. Fixes
25076         #56965.
25077
25078         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
25079
25080         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
25081
25082 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
25083
25084         * icall.c: #include mono-config.h
25085
25086 2004-04-15  Jackson Harper  <jackson@ximian.com>
25087
25088         * culture-info-tables.h: Fix date formats for en-US culture.
25089         
25090 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
25091
25092         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
25093         ThreadPool.SetMinThreads.
25094         * threadpool.c: Implemented ThreadPool.GetMinThreads and
25095         ThreadPool.SetMinThreads.
25096
25097 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
25098
25099         * mono-config.c: also load the .config file in the directory
25100         where the assembly was found.
25101
25102 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
25103
25104         * assembly.c: load per-assembly config files.
25105         * icall.c: decrapified code to get the config dir and moved to
25106         mono-config.c.
25107         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
25108         per-assembly config files. When doing a dll map lookup give precedence
25109         to the per-assembly data.
25110
25111 2004-04-14  Martin Baulig  <martin@ximian.com>
25112
25113         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
25114         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
25115         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
25116
25117         * mono-debugger-debugger.c: While the debugger is locked, remember
25118         whether the symbol tables have changes and send one single
25119         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
25120
25121 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
25122
25123         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
25124
25125         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
25126         function.
25127
25128         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
25129         account when marshalling string arrays. Fixes #56965.
25130
25131 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
25132
25133         * icall.c: Add new icalls mapping for security.
25134         * security.c|h: Add internal calls for WindowsIdentity,
25135         WindowsImpersonationContext and WindowsPrincipal.
25136
25137 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
25138
25139         * class.c: Added comment to ensure the System.MonoDummy class
25140         is removed when no longer necessary
25141
25142 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
25143
25144         * appdomain.c: Pass arguments to the bootstraping exceptions to
25145         minimize JITed methods at boot
25146
25147         * metadata.c (mono_exception_from_name_two_strings): Allow for the
25148         second string to be null.
25149
25150         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
25151         Change the protocol to minimize the JIT methods at startup.  Now
25152         it Returns the internal codepage, if the value of "int_code_page"
25153         is 1 at entry, and we can not compute a suitable code page
25154         number, returns the code page as a string.
25155
25156 2004-04-13  Jackson Harper  <jackson@ximian.com>
25157
25158         * culture-info-tables.h: Fix number of decimal digits for all
25159         english locales.
25160
25161 2004-04-13  Jackson Harper  <jackson@ximian.com>
25162
25163         * icall.c: Clairfy out of sync error message. It is not always
25164         your corlib that is out of sync.
25165
25166 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
25167
25168         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
25169         properties when only the set accessor is overriden. Fixes #55874.
25170
25171 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
25172
25173         * assembly.c (mono_assembly_load_references): Make this thread safe.
25174         Fixes #56327.
25175
25176 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
25177
25178         * monosn.c: Add missing initialization calls.
25179
25180 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
25181
25182         * locales.c:
25183         ves_icall_System_Globalization_CultureInfo_construct_number_format
25184         Fix g_assert so it compiles on fussier compilers re int/ptr
25185         mismatch
25186
25187 2004-04-08  Dick Porter  <dick@ximian.com>
25188
25189         * socket-io.h:
25190         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
25191         53992.  Also rearrange the code so that the internal calls return
25192         an error value and exceptions are thrown from managed code.
25193
25194         * icall.c: Add type info to the socket icalls.
25195
25196 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25197
25198         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
25199         owes me a beer.
25200
25201 2004-04-07  Martin Baulig  <martin@ximian.com>
25202
25203         * class.c (mono_class_from_generic_parameter): Don't default
25204         `klass->parent' to `mono_defaults.object_type'.
25205
25206 2004-04-07  Martin Baulig  <martin@ximian.com>
25207
25208         * reflection.c (mono_reflection_initialize_generic_parameter): Set
25209         `param->pklass->reflection_info'.       
25210
25211 2004-04-07  Jackson Harper  <jackson@ximian.com>
25212
25213         * culture-info-tables.h: Fix date separator symbol.
25214         
25215 2004-04-07  Martin Baulig  <martin@ximian.com>
25216
25217         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
25218         from System.Type to System.MonoType.
25219
25220 2004-04-07  Martin Baulig  <martin@ximian.com>
25221
25222         * reflection.h
25223         (MonoReflectionGenericParam): Added `has_reference_type' and
25224         `has_value_type' fields.
25225
25226         * reflection.c (mono_image_get_generic_param_info): Encode the
25227         correct flags if we have the `class' or `struct' constraint.
25228
25229 2004-04-07  Martin Baulig  <martin@ximian.com>
25230
25231         * reflection.h
25232         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
25233
25234 2004-04-07  Jackson Harper  <jackson@ximian.com>
25235
25236         * appdomain.c: Revert extra patches, just wanted to bump the
25237         version number.
25238         
25239 2004-04-07  Jackson Harper  <jackson@ximian.com>
25240
25241         * Makefile.am: Add culture-info private headers.
25242         * icall.c: Add new icalls for contructing locales.
25243         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
25244         * locales.h: Declare new culture info construction methods.
25245         * object.h: Add new fields used to avoid the CultureMap to
25246         MonoCultureInfo.
25247         * culture-info.h: Definition of structs used in the culture info
25248         tables.
25249         * culture-info-tables.h: Autogenerated tables that contain culture
25250         info data. This file was generated with the locale-builder tool.
25251         * appdomain.c: Incement corlib version number.
25252         
25253 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
25254
25255         * appdomain.c: (mono_runtime_init) move mono_thread_init
25256         to before mono_object_new calls so critical sections
25257         are initialized before use.
25258
25259 2004-04-07  Martin Baulig  <martin@ximian.com>
25260
25261         * icall.c
25262         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
25263         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
25264         (ves_icall_MonoGenericParam_initialize): Removed.
25265         (monogenericparam_icalls): Removed.
25266         (generictypeparambuilder_icalls): Added new table for
25267         System.Reflection.Emit.GenericTypeParameterBuilder.
25268
25269         * reflection.c
25270         (mono_reflection_define_generic_parameter): Removed.
25271         (mono_reflection_initialize_generic_parameter): This is now called
25272         from GenericTypeParameterBuilder's .ctor.
25273
25274 2004-04-06  Martin Baulig  <martin@ximian.com>
25275
25276         * class.c (mono_class_init): Don't inflate nested classes in a
25277         generic instance.
25278         (mono_type_get_name_recurse): Include the generic arguments for
25279         generic instances and generic type declarations.
25280         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
25281         (_mono_class_get_instantiation_name): Removed.
25282         (mono_class_create_generic): Always use `gklass->name' as our name.
25283
25284         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
25285
25286         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
25287         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
25288         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
25289         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
25290         closed generic methods here.
25291
25292         * reflection.c
25293         (mono_reflection_generic_inst_get_nested_types): Removed.
25294         (inflate_mono_method): Copy the generic parameters from the
25295         MonoMethodHeader into out MonoGenericMethod.
25296
25297 2004-04-06  Martin Baulig  <martin@ximian.com>
25298
25299         * row-indexes.h
25300         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
25301
25302         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
25303
25304         * reflection.c (build_compressed_metadata): If we have any entries
25305         in the GenericParam, MethodSpec or GenericParamConstraint tables,
25306         set the header version to 1.1.
25307
25308 2004-04-06  Martin Baulig  <martin@ximian.com>
25309
25310         * class.c (mono_class_init): If we're a generic instance,
25311         initialize our nested classes, too.
25312         (_mono_class_get_instantiation_name): Deal with the new `!%d'
25313         suffix. 
25314
25315 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25316
25317         * process.c: quote the argument passed to the shell on windows.
25318
25319 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
25320
25321         * threads.c (mono_alloc_special_static_data): Allow this to be
25322         called during startup.
25323
25324 2004-04-02  Martin Baulig  <martin@ximian.com>
25325
25326         * icall.c
25327         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
25328
25329 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
25330
25331         * icall.c: Fix build.
25332
25333 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
25334
25335         * Makefile.am: Added security.c|h.
25336         * icall.c: Added icall for get_UserName;
25337         * security.c: New file for security related icalls. Added function
25338         get_UserName for System.Environment (fix #56144).
25339         * security.h: New. Header file for security.c
25340
25341 2004-04-02  Dick Porter  <dick@ximian.com>
25342
25343         * icall.c: Deleted the icalls that were obsoleted some time ago
25344         by the ICU string code, and which were mixed into the icall
25345         rearranging.  Fixes bug 55969.
25346
25347         * string-icalls.h: 
25348         * string-icalls.c: Deleted the code that those icalls reference.
25349
25350 2004-04-01  Martin Baulig  <martin@ximian.com>
25351
25352         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
25353
25354         * class.c (mono_class_from_generic_parameter): Don't set 
25355         TYPE_ATTRIBUTE_INTERFACE.
25356         (my_mono_class_from_generic_parameter): Likewise.
25357
25358 2004-04-01  Martin Baulig  <martin@ximian.com>
25359
25360         * loader.c (find_method): Added an optional `MonoClass *ic'
25361         argument to search in a specific interface.
25362         (mono_get_method_constrained): New public function.
25363
25364 2004-04-01  Martin Baulig  <martin@ximian.com>
25365
25366         * reflection.c (mono_image_get_generic_field_token): Use the
25367         `handleref' cache here.
25368
25369 2004-04-01  Martin Baulig  <martin@ximian.com>
25370
25371         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
25372
25373         * reflection.c (create_generic_typespec): Use the `typespec' hash
25374         here, not the `typeref' one.    
25375
25376 2004-04-01  Martin Baulig  <martin@ximian.com>
25377
25378         * class.c (mono_class_inflate_generic_type): Moved the
25379         functionality into a new static inflate_generic_type() which
25380         returns NULL if it didn't do anything.  Only increment the
25381         `mono_stats.inflated_type_count' if we actually inflated
25382         something.
25383         (mono_class_get_full): Check the classes type to see whether we
25384         need to inflate it; also inflate MONO_TYPE_(M)VAR.
25385
25386 2004-04-01  Jackson Harper  <jackson@ximian.com>
25387
25388         * reflection.c: Set culture for assembly references.
25389         
25390 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
25391
25392         * reflection.[ch], icall.[ch], Fix support for pinning variables.
25393
25394 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25395
25396         * assembly.c:
25397         (do_mono_assembly_open): the critical section also covers
25398         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
25399
25400 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25401
25402         * threads.c:
25403         (mono_manage_threads): abort the background threads when finishing.
25404         Fixes bug #47232.
25405
25406 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25407
25408         * gc.c: only close the done_event handle if there was no timeout.
25409         C-ified comments.
25410
25411 2004-03-30  Martin Baulig  <martin@ximian.com>
25412
25413         * icall.c (icall_entries): It's called "System.Activator", not
25414         "System.Activation".    
25415
25416 2004-03-30  Martin Baulig  <martin@ximian.com>
25417
25418         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
25419         (mono_class_create_from_typespec): Likewise.
25420
25421 2004-03-30  Martin Baulig  <martin@ximian.com>
25422
25423         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
25424         `has_ctor_constraint' and `initialized'.
25425
25426 2004-03-30  Martin Baulig  <martin@ximian.com>
25427
25428         * reflection.c (encode_new_constraint): New static function to add
25429         the constructor constraint attribute to a type parameter.
25430         (encode_constraints): Call encode_new_constraint() if necessary.
25431
25432         * reflection.h
25433         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
25434
25435         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
25436         
25437 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
25438
25439         * reflection.c, icall.c: add support for pinning variables. 
25440
25441 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
25442
25443         * marshal.c (mono_marshal_get_managed_wrapper):
25444         init bool local with zero rather than null.
25445
25446 2004-03-29  Martin Baulig  <martin@ximian.com>
25447
25448         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
25449         the "official" behavior here.
25450         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
25451
25452 2004-03-29  Martin Baulig  <martin@ximian.com>
25453
25454         * icall.c: Reflect latest API changes.
25455
25456 2004-03-29  Martin Baulig  <martin@ximian.com>
25457
25458         * loader.c (mono_get_method_from_token): Also call
25459         mono_metadata_load_generic_params () for abstract and interface
25460         methods; replace the type arguments in the method signature with
25461         the ones which are loaded from the metadata.
25462
25463 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
25464
25465         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
25466         of the lock is not the current thread. MS.NET don't do it, in spite of
25467         what the documentation says. See bug #56157.
25468
25469 2004-03-28  Martin Baulig  <martin@ximian.com>
25470
25471         * class.c (mono_class_init): Don't call init_properties() and
25472         init_events() for generic instances; set `prop->parent' when
25473         inflating properties.
25474
25475         * reflection.c (mono_generic_inst_get_object): Call
25476         `mono_class_init (ginst->klass)'.
25477         (mono_type_get_object): Only create a MonoGenericInst if your
25478         generic type is a TypeBuilder.
25479         (do_mono_reflection_bind_generic_parameters): Only set
25480         `ginst->is_dynamic' if our generic type is a TypeBuilder.
25481
25482 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
25483
25484         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
25485         Fixes #56091.
25486
25487 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25488
25489         * icall.c: added Kill_internal icall.
25490         * process.[ch]: added Kill_internal icall.
25491
25492 2004-03-25  Martin Baulig  <martin@ximian.com>
25493
25494         * class.h (MonoStats): Added `generic_instance_count',
25495         `inflated_method_count', `inflated_type_count' and
25496         `generics_metadata_size'.       
25497
25498 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25499
25500         * reflection.c: no warnings now.
25501
25502 2004-03-25  Martin Baulig  <martin@ximian.com>
25503
25504         * class.c (mono_class_get_full): New public function; does a
25505         mono_class_get(), but also takes a `MonoGenericContext *'.
25506
25507         * loader.c (mono_field_from_memberref): Renamed to
25508         `field_from_memberref', made static and added `MonoGenericContext *'
25509         argument.
25510         (mono_field_from_token): Added `MonoGenericInst *' argument.
25511         (method_from_memberef): Likewise.
25512         (mono_get_method_from_token): Likewise.
25513         (mono_get_method_full): New public function; does a
25514         mono_get_method(), but also takes a `MonoGenericContext *'.
25515
25516         * verify.c (mono_method_verify): Get the method's generic context
25517         and pass it to mono_field_from_token(), mono_get_method_full() and
25518         mono_class_get_full().
25519
25520 2004-03-25  Martin Baulig  <martin@ximian.com>
25521
25522         * class.c (mono_class_inflate_generic_type): Take a
25523         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
25524         `MonoGenericMethod *'.
25525
25526 2004-03-25  Martin Baulig  <martin@ximian.com>
25527
25528         * loader.h (MonoMethodInflated): Store the MonoGenericContext
25529         instead of the MonoGenericMethod here.
25530
25531 2004-03-25  Martin Baulig  <martin@ximian.com>
25532
25533         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
25534         each time we create a new MonoGenericInst, we also create a new
25535         context which points back to us.
25536
25537         * class.c (inflate_method): Use `ginst->context' instead of
25538         creating a new context.
25539
25540         * loader.c (method_from_memberref): Use
25541         `klass->generic_inst->context' instead of creating a new context.
25542
25543 2004-03-25  Martin Baulig  <martin@ximian.com>
25544
25545         * class.h (MonoGenericContext): New struct.
25546         (MonoGenericMethod): Removed `generic_inst'.
25547
25548         * class.c (mono_class_inflate_generic_method): Take a
25549         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
25550
25551 2004-03-25  Martin Baulig  <martin@ximian.com>
25552
25553         * loader.h (MonoMethodInflated): New typedef.
25554
25555         * metadata.h (MonoMethodSignature): Removed `gen_method', make
25556         `generic_param_count' consume just 30 bits, added `is_inflated'
25557         and `has_type_parameters' flags (one bit each).
25558
25559         * class.c (mono_class_inflate_generic_method): Create a
25560         MonoMethodInflated instead of a MonoMethodNormal and set
25561         `is_inflated' in the method signature.
25562
25563         * class.h (MonoGenericMethod): Removed `generic_method'.
25564
25565 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
25566
25567         * image.c: Make sure the name of a MonoImage is always an absolute path.
25568           This fixes bug #54415.
25569
25570 2004-03-24  Martin Baulig  <martin@ximian.com>
25571
25572         * class.c (mono_class_setup_vtable): If we're a generic instance,
25573         use our generic type's vtable size.
25574
25575 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
25576
25577         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
25578         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
25579         problems.
25580
25581 2004-03-23  Martin Baulig  <martin@ximian.com>
25582
25583         * class.h (MonoDynamicGenericInst): Added `int count_events' and
25584         `MonoEvent *events'.
25585
25586         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
25587         (typebuilder_icalls): Added "get_event_info"; calls
25588         mono_reflection_event_builder_get_event_info(). 
25589
25590         * reflection.c (mono_reflection_generic_inst_initialize): Added
25591         `MonoArray *events'.
25592         (mono_reflection_event_builder_get_event_info): New function.
25593
25594 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
25595
25596         * object.h: add mono_type_initialization_init
25597
25598         * object.c (mono_runtime_class_init): 
25599         implement class constructor synchronization rules
25600         to cope with threading issues.  
25601         add mono_type_initialization_init
25602
25603         * appdomain.c (mono_runtime_init): call 
25604         mono_type_initialization_init
25605
25606         * class.h: removing initializing field from MonoVTable
25607
25608 2004-03-23  Martin Baulig  <martin@ximian.com>
25609
25610         * class.c (my_mono_class_from_generic_parameter): Use
25611         `param->name' if it's not NULL. 
25612
25613 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
25614
25615         * class.c: do not insert non-virtual methods in the vtable.
25616         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
25617         that means the method is non-virtual. This never would have
25618         happened before.
25619
25620 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
25621
25622         * profiler.c: Added lock for accessing coverage_hash.
25623
25624 2004-03-22  Martin Baulig  <martin@ximian.com>
25625
25626         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
25627         `method->method->signature->generic_param_count != 0' to make it
25628         work for interface methods.
25629
25630 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25631
25632         * process.c: quote the string passed to the shell using g_shell_quote.
25633
25634 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25635
25636         * threads.c:
25637         (mono_threads_manage): don't remove the finalizer thread and self
25638         from the threads hash table so that mono_thread_manage can be called
25639         more than once.
25640
25641 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25642
25643         * process.c: quote the arguments when UseShellExecute is true. Fixes
25644         bug #55790.
25645
25646 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25647
25648         * threads.c: set mono_thread_detach as a cleanup routine for every
25649         thread. This way it's always executed upon thread termination, either
25650         aborted or finished normally. No more xsp hangs!
25651
25652 2004-03-17  Martin Baulig  <martin@ximian.com>
25653
25654         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
25655         `int count_nested' and a `MonoType **nested'.
25656
25657         * reflection.c (mono_reflection_bind_generic_parameters): Moved
25658         most of the functionality into a new static
25659         do_mono_reflection_bind_generic_parameters() and don't take a
25660         `MonoType *nested_in' argument any more.  Don't compute nested
25661         types here.
25662         (mono_reflection_generic_inst_get_nested_types): New public method
25663         to get nested types.
25664
25665         * class.c (mono_class_create_generic): Set `klass->nested_in' if
25666         we're a nested class.
25667
25668         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
25669         mono_reflection_generic_inst_get_nested_types() to compute the
25670         nested types.
25671
25672 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
25673
25674         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
25675         descriptive error message under windows.
25676         
25677 2004-03-17  Martin Baulig  <martin@ximian.com>
25678
25679         * class.c (dup_type): Added `const MonoType *original' argument;
25680         copy the attrs from the original type.
25681
25682 2004-03-17  Martin Baulig  <martin@ximian.com>
25683
25684         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
25685         `m->generic_inst_cache' here.
25686
25687 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
25688
25689         * exception.h exception.c: Add stack_overflow_exception.
25690
25691 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25692
25693         * threadpool.c:
25694         (overlapped_callback): call SetEvent *after* invoking the callback.
25695         No need to call CloseHandle.
25696
25697 2004-03-16  Martin Baulig  <martin@ximian.com>
25698
25699         * reflection.c (mono_image_get_fieldref_token): Take a
25700         `MonoReflectionField *' instead of a `MonoClassField *' and a
25701         `MonoClass *'; store the `MonoReflectionField *' in the hash.
25702
25703 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25704
25705         * appdomain.c: don't add the culture to the filename we're looking for
25706         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
25707
25708 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25709
25710         * locales.c: don't ignore symbols when doing case insensitive compares.
25711         Thanks Dick! Fixes bug #54046.
25712
25713         * threads.c: surround 'threads' usage with enter/leave in
25714         mono_thread_manage.
25715
25716 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
25717
25718         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
25719         implicitly marshalled as [Out]. Fixes #55450.
25720
25721         (mono_marshal_get_runtime_invoke): Zero out the result if there is
25722         an exception.
25723
25724 2004-03-16  Martin Baulig  <martin@ximian.com>
25725
25726         * class.c (mono_class_from_generic_parameter): Use the actual
25727         parameter name. 
25728
25729 2004-03-16  Martin Baulig  <martin@ximian.com>
25730
25731         * reflection.c (type_get_signature_size): New static function.
25732         Compues the size of the type in a method signature.
25733         (method_get_signature_size): New static function; calls
25734         type_get_signature_size() to compute the actual size of the
25735         method's signature.
25736         (method_encode_signature): Use method_get_signature_size() to get
25737         the signature's size rather than using `nparams * 10'.
25738
25739 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25740
25741         * file-io.h: define here WapiOverlapped on windows. I don't want the
25742         regular OVERLAPPED one.
25743
25744         * file-io.c:
25745         * threadpool.c: somehow, BindIoCompletionCallback is not found.
25746         Disabling AIO on windows.
25747
25748 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25749
25750         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
25751         bug #55385.
25752
25753 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25754
25755         * appdomain.c: upgraded corlib version.
25756
25757         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
25758         and BeginWrite. Allow opening files for asynchrnous operations.
25759
25760         * file-io.h: new struct that maps FileStreamAsyncResult.
25761         * icall.c: added new icalls.
25762         * process.[ch]: support setting child process environment variables
25763         and use the SHELL or COMSPEC when UseShellExecute is true.
25764
25765         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
25766         callback for async. IO is here and also BindHandle.
25767
25768         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
25769         from here.
25770
25771 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
25772
25773         * reflection.c (create_custom_attr): Allow len == 0.
25774
25775         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
25776         computation on big-endian machines.
25777
25778 2004-03-13  Martin Baulig  <martin@ximian.com>
25779
25780         * class.h (MonoGenericInst): Added `int count_ifaces'.
25781
25782         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
25783         `ginst->count_ifaces' instead `klass->interface_count' since we
25784         may get called before the vtable is created.
25785
25786         * loader.c (mono_method_get_param_names): If we're a generic
25787         instance, return and don't initialize the class.
25788
25789         * reflection.c (mono_reflection_setup_generic_class): Don't call
25790         ensure_runtime_vtable().
25791         (mono_reflection_bind_generic_parameters): Set
25792         `ginst->count_ifaces'.
25793
25794 2004-03-11  Jackson Harper <jackson@ximian.com>
25795
25796         * icall.c:
25797         * unicode.c:
25798         * unicode.h: Remove unused System.Char icalls.
25799         
25800 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
25801
25802         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
25803         code when we P/Invoke the first library in Windows.Forms, instead
25804         of when we first open the assembly.
25805
25806         * assembly.c: Drop the lookup from here.
25807
25808 2004-03-10  Martin Baulig  <martin@ximian.com>
25809
25810         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
25811         class for properties, fields and events.  Finally fixes #54945.
25812
25813 2004-03-10  Martin Baulig  <martin@ximian.com>
25814
25815         * metadata.c (mono_metadata_class_equal): New static function;
25816         checks whether two generic instances or two generic parameters are
25817         equal.
25818         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
25819         compare classes.        
25820
25821 2004-03-10  Martin Baulig  <martin@ximian.com>
25822
25823         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
25824
25825         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
25826         argument and write it into the `reflection_info' field.
25827
25828         * icall.c
25829         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
25830         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
25831
25832 2004-03-09  Jackson Harper  <jackson@ximian.com>
25833
25834         * char-conversions.h: use 8 bits for numeric data its all we need
25835         * icall.c: numeric data is only 8 bits now.
25836
25837 2004-03-09  Martin Baulig  <martin@ximian.com>
25838
25839         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
25840
25841         * class.c (init_properties, init_events): Initialize the new
25842         `parent' field.
25843
25844         * reflection.c (typebuilder_setup_properties): Likewise.
25845         (typebuilder_setup_events): Likewise.
25846
25847         * reflection.h (MonoEventInfo): Replaced `parent with
25848         `declaring_type' and `reflected_type'.
25849
25850         * icall.c (ves_icall_get_property_info): Distinguish between
25851         declaring and reflected type.
25852         (ves_icall_get_event_info): Likewise.
25853
25854 2004-03-09  Martin Baulig  <martin@ximian.com>
25855
25856         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
25857         (ves_icall_Type_GetField): Correctly set field->klass.
25858
25859 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
25860
25861         * loader.h: Fix warning.
25862
25863 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
25864
25865         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
25866         library routine if present.  Notice that it will still continue
25867         executing even if its missing, for those working on the Gtk#
25868         edition of Windows.Forms.
25869
25870         * assembly.c (do_mono_assembly_open): If loading the
25871         System.Windows.Forms call mono_loader_wini_init.
25872
25873 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
25874
25875         * class.h: Added MonoRemoteClass struct.
25876         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
25877         function for MonoStrings.
25878         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
25879         Added internal call for getting the proxy type.
25880         * marshal.c: Get the type of transparent proxies from its remote_class.
25881         Added methods that generate the IL for type checks and casts:
25882         mono_marshal_get_isinst, mono_marshal_get_castclass, 
25883         mono_marshal_get_proxy_cancast.
25884         * marshal.h: Declaration of the previous new methods.
25885         * object.c: Added new moethods for creating and updating MonoRemoteClass
25886         instances: mono_remote_class, mono_upgrade_remote_class, 
25887         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
25888         * verify.c: FIx transparent_proxy_fields layout.
25889         * appdomain.c: Bump corlib version.
25890
25891 2004-03-04  Jackson Harper  <jackson@ximian.com>
25892
25893         * icall.c: Add icall to access char conversion tables.
25894         * char-conversions.h: Character conversion tables.
25895         * Makefile.am: Add char-conversions.h private header file.
25896         
25897 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
25898
25899         * appdomain.c (unload_thread_main): Increase unloading timeout to
25900         10 sec as a temporary workaround for Nant problems.
25901
25902 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
25903
25904         * gc.c: Add checks for GC_enable and GC_disable.
25905
25906         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
25907         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
25908         (bug #54988).
25909         
25910 2004-02-27  Martin Baulig  <martin@ximian.com>
25911
25912         * reflection.c (mono_reflection_bind_generic_parameters): Take a
25913         `MonoReflectionType *' instead of a `MonoType *'.
25914
25915 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
25916
25917         * gc.c (run_finalize): Avoid finalizing the object representing the
25918         finalizer thread.
25919         (finalizer_thread): Fix warning.
25920
25921 2004-02-25  Martin Baulig  <martin@ximian.com>
25922
25923         * class.c (_mono_class_get_instantiation_name): Added `int offset'
25924         argument for nested types.
25925         (mono_class_create_generic): Added support for nested generictypes.
25926
25927         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
25928         `GList *nested'.
25929
25930         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
25931
25932         * reflection.c (method_encode_signature): Increase the minimum
25933         value of `size' from 10 to 11.
25934         (mono_reflection_bind_generic_parameters): Take `int type_argc'
25935         and `MonoType **types' arguments instead of the `MonoArray
25936         *types'; added `MonoType *nested_in'.  Recursively instantiate
25937         nested classes. 
25938
25939 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
25940
25941         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
25942         stack_overflow_ex members which are used by exception handling.
25943
25944         * appdomain.c (mono_runtime_init): Initialize the new members.
25945
25946         * gc.c (mono_gc_enable): New helper function.
25947         * gc.c (mono_gc_disable): New helper function.
25948
25949 2004-02-23  Martin Baulig  <martin@ximian.com>
25950
25951         * icall.c: I must have been really stupid - make it actually work
25952         this time ;-)
25953
25954 2004-02-23  Martin Baulig  <martin@ximian.com>
25955
25956         * loader.c (method_from_memberref): Only inflate the method if
25957         it's in another klass.
25958
25959 2004-02-23  Martin Baulig  <martin@ximian.com>
25960
25961         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
25962         (mono_class_init): If we're a generic instance and an interface,
25963         compute `class->interface_id'; also create `class->interfaces'
25964         here and inflate them.
25965
25966         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
25967         `ginst->is_open'.
25968         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
25969
25970         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
25971
25972 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
25973
25974         * reflection.c (method_encode_code): Improved the error message
25975         generated by the exception.
25976
25977 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25978
25979         * icall.c: Martin did not do what he said in the ChangeLog for
25980         2004-02-18, but put back the changes for properties and events.
25981         Commenting those changes out again and adding comment to bug #54518.
25982         
25983         * process.c: removed warning.
25984
25985 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
25986
25987         * marshal.c (emit_struct_conv): Print an error message instead of
25988         asserting when a type does not have the StructLayout attribute.
25989
25990 2004-02-20  Martin Baulig  <martin@ximian.com>
25991
25992         * reflection.c (mono_type_get_object): Also use the cache for
25993         generic instances.
25994         (mono_reflection_bind_generic_parameters): Always compute
25995         `ginst->ifaces'.        
25996
25997 2004-02-20  Martin Baulig  <martin@ximian.com>
25998
25999         * class.h (MonoGenericMethod): Removed `klass'.
26000
26001         * class.c (mono_class_inflate_generic_method): Added `MonoClass
26002         *klass' argument.
26003
26004 2004-02-20  Martin Baulig  <martin@ximian.com>
26005
26006         * reflection.c (method_encode_methodspec): Actually use the
26007         uninflated signature for the memberref.
26008
26009 2004-02-20  Martin Baulig  <martin@ximian.com>
26010
26011         * class.h (MonoGenericMethod): Removed `declaring'.
26012
26013         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
26014         is NULL, compute it here.
26015
26016 2004-02-20  Martin Baulig  <martin@ximian.com>
26017
26018         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
26019
26020         * metadata.c (mono_metadata_generic_inst_hash): New method.
26021         (mono_metadata_generic_inst_equal): New method.
26022
26023         * reflection.c (mono_reflection_bind_generic_parameters): Use the
26024         `klass->image->generic_inst_cache' cache to avoid creating
26025         duplicate MonoGenericInst's.
26026
26027         * class.c (mono_class_inflate_generic_type): Use the cache.
26028
26029 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
26030
26031         * object.c: fixed gc descriptor calculation for embedded valuetypes.
26032
26033 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26034
26035         * icall.c: added Socket.WSAIoctl icall.
26036
26037         * socket-io.[ch]: implemented
26038         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
26039
26040 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
26041
26042         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
26043
26044 2004-02-18  Urs C Muff  <umuff@quark.com>
26045
26046         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
26047         this work on PPC and other big-endian architectures.
26048
26049         * debug-mono-symfile.h: Prepended the names of all the `guint32'
26050         fields with an underscore to make sure they're only accessed by
26051         the read32() macro.
26052
26053 2004-02-18  Martin Baulig  <martin@ximian.com>
26054
26055         * icall.c: Put the klass->refclass changes back for methods and
26056         fields, but not for properties and events.  We're currently not
26057         distinguishing between DeclaringType and ReflectedType for
26058         properties and events, that's what caused the regressions.
26059
26060 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26061
26062         * object.c:
26063         (mono_async_result_new): the handle can be NULL.
26064
26065         * threadpool.c: Use an event instead of a semaphore, don't initialize
26066         it until needed. This saves quite a few semaphores from being created
26067         when using the threadpool.
26068
26069 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
26070
26071         * object.c (mono_string_is_interned_lookup): Fix interning of long
26072         strings. Fixes #54473.
26073
26074         * domain.c (ldstr_equal): Optimize if the two strings are equal.
26075
26076         * icall.c: Revert the klass->refclass changes since they introduce
26077         regressions (bug #54518).
26078
26079 2004-02-18  Martin Baulig  <martin@ximian.com>
26080
26081         * class.c (mono_class_init): If we're a generic instance and don't
26082         come from a TypeBuilder, inflate our members here.
26083         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
26084         (mono_class_create_generic): New public method.
26085         (mono_class_initialize_generic): Removed.
26086         (get_instantiation_name): Renamed to
26087         _mono_class_get_instantiation_name() and made it public.
26088
26089 2004-02-18  Martin Baulig  <martin@ximian.com>
26090
26091         * class.c (mono_class_inflate_generic_type): Clear the new
26092         instance's `nginst->klass' when inflating a generic instance.
26093         (mono_class_is_subclass_of): Added (basic) support for generic
26094         instances.
26095
26096 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
26097
26098         * appdomain.h, domain.c: use a MonoCodeManager instead of a
26099         MonoMempool to hold compiled native code.
26100
26101 2004-02-17  Martin Baulig  <martin@ximian.com>
26102
26103         * class.h (MonoDynamicGenericInst): Added `count_properties' and
26104         `properties'.
26105
26106         * reflection.c (mono_reflection_generic_inst_initialize): Added
26107         `MonoArray *properties' argument.
26108
26109         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
26110
26111 2004-02-17  Martin Baulig  <martin@ximian.com>
26112
26113         * icall.c (ves_icall_Type_GetFields): Renamed to
26114         ves_icall_Type_GetFields_internal() and added a
26115         `MonoReflectionType *rtype' argument; pass it to
26116         mono_field_get_object() to set the field's "reflected" type.
26117         (ves_icall_Type_GetConstructors): Likewise.
26118         (ves_icall_Type_GetEvents): Likewise.
26119         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
26120         argument; pass it to mono_method_get_object() to set the method's
26121         "reflected" type.       
26122
26123 2004-02-17  Martin Baulig  <martin@ximian.com>
26124
26125         * class.h (MonoDynamicGenericInst): New type.
26126         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
26127
26128         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
26129         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
26130         (ves_icall_MonoGenericInst_GetFields): New interncall.
26131
26132         * class.c (mono_class_from_generic): Don't call
26133         mono_class_initialize_generic() if this is a dynamic instance;
26134         ie. it's being created from a TypeBuilder.
26135         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
26136         `class->byval_arg.type'.
26137
26138         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
26139         to `inflate_method' and made static.
26140         (mono_reflection_inflate_field): Removed.
26141         (mono_reflection_generic_inst_initialize): New public method.
26142
26143         * reflection.h (MonoReflectionGenericInst): Removed `methods',
26144         `ctors' and `fields'; added `initialized'.
26145
26146 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
26147
26148         * debug-helpers.c (mono_method_full_name): Fix output for empty
26149         namespaces.
26150
26151 2004-02-12  Martin Baulig  <martin@ximian.com>
26152
26153         * class.h (MonoClassField): Added `MonoType *generic_type'.
26154
26155         * reflection.c (mono_image_get_fieldref_token): Added support for
26156         instantiated generic types.
26157         (field_encode_inflated_field): Removed.
26158         (mono_image_get_inflated_field_token): Removed.
26159         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
26160
26161         * reflection.h (MonoReflectionInflatedField): Removed.
26162
26163 2004-02-12  Martin Baulig  <martin@ximian.com>
26164
26165         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
26166         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
26167
26168         * reflection.c (mono_image_get_methodspec_token): Take a
26169         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
26170         (mono_image_create_token): Check whether we have a
26171         `method->signature->gen_method' and call
26172         mono_image_get_methodspec_token() if appropriate.
26173         (inflated_method_get_object): Removed.
26174         (mono_reflection_bind_generic_method_parameters): Return a
26175         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
26176         (mono_reflection_inflate_method_or_ctor): Likewise.
26177
26178         * reflection.h (MonoReflectionInflatedMethod): Removed.
26179
26180 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
26181
26182         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
26183         for custom valuetype marshalling.
26184
26185         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
26186
26187 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26188
26189         * icall.c: fixed WSAGetLastError_internal name.
26190
26191 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
26192
26193         * threads.c (mono_thread_attach): Allow this to be called multiple
26194         times for a thread.
26195         
26196         * threads.c (build_wait_tids): Do not wait for ourselves.
26197
26198         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
26199         appdomain list is empty.
26200
26201         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
26202         memory returned by mono_string_builder_to_utf16, since it points into
26203         managed memory. Thanks to Bernie Solomon for noticing this.
26204
26205         * icall.c: Add AppDomainSetup icalls.
26206
26207         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
26208
26209         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
26210         types.
26211
26212         * reflection.c (reflection_methodbuilder_to_mono_method): Save
26213         custom attributes to the method_aux struct. Also fix array indexes etc.
26214
26215         * loader.c (mono_method_get_param_names): Make dynamic case work again.
26216         
26217 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
26218
26219         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
26220         (both static and runtime) and reduce startup time.
26221
26222 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
26223
26224         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
26225         AsAny marshalling conversion instead of crashing.
26226
26227         * marshal.c: Fix warnings.
26228
26229 2004-02-09  Martin Baulig  <martin@ximian.com>
26230
26231         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
26232
26233         * reflection.h (MonoReflectionInflatedMethod): Removed the
26234         `declaring' field, it's now in the unmanaged MonoGenericMethod.
26235
26236         * reflection.c (method_encode_methodspec): Removed the `method'
26237         argument; we get it from `gmethod->declaring'.
26238         (inflated_method_get_object): Removed the `declaring' argument.
26239
26240 2004-02-09  Martin Baulig  <martin@ximian.com>
26241
26242         * class.h (MonoGenericMethod): New type.
26243         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
26244         `generic_method'.
26245
26246         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
26247         a `MonoGenericMethod *gen_method' one.
26248
26249         * class.c (mono_class_inflate_generic_type): Take an additional
26250         `MonoGenericMethod * argument.  This is only non-NULL if we're
26251         inflating types for a generic method.   
26252         (mono_class_inflate_generic_signature): Renamed to
26253         inflate_generic_signature() and made static; take a
26254         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
26255         (inflate_generic_header): Take a `MonoGenericMethod *' argument
26256         instead of a `MonoGenericInst *' one.
26257         (mono_class_inflate_generic_method): Likewise.
26258
26259         * reflection.c (encode_generic_method_sig): Take a
26260         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
26261         (method_encode_methodspec): Likewise.
26262         (inflated_method_get_object): Likewise. 
26263
26264         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
26265         field with a `MonoGenericMethod *gmethod' one.  
26266
26267 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
26268
26269         * class.h (mono_class_has_parent): add parens to expansion
26270         so you can ! this.
26271
26272 2004-02-08  Martin Baulig  <martin@ximian.com>
26273
26274         * image.h (MonoImage): Removed `generics_cache'.
26275
26276         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
26277         instead of a `MonoType *' argument; removed the `inflate_methods'
26278         argument.  Don't inflate methods here.
26279
26280         * loader.c (find_method): If it's a generic instance, call
26281         mono_class_init() on the `sclass->generic_inst->generic_type'.
26282
26283         * metadata.c (mono_type_size): Make this work on uninitialized
26284         generic instances; call it on the `ginst->generic_type's class.
26285
26286         * reflection.c (mono_reflection_bind_generic_parameters): Call
26287         mono_class_from_generic() to create the `ginst->klass'.
26288
26289 2004-02-08  Martin Baulig  <martin@ximian.com>
26290
26291         * class.h (MonoClass): Changed type of `generic_inst' from
26292         `MonoType *' to `MonoGenericInst *'.
26293
26294 2004-02-08  Martin Baulig  <martin@ximian.com>
26295
26296         * icall.c (ves_icall_Type_BindGenericParameters): Just call
26297         mono_type_get_object(), this is now creating a `MonoGenericInst'
26298         for MONO_TYPE_GENERICINST.
26299         (ves_icall_MonoGenericInst_GetParentType): Likewise.
26300         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
26301
26302         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
26303         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
26304         (inflated_method_get_object): Added `MonoClass *refclass' argument.
26305         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
26306         and reflected type.
26307
26308         * reflection.h (MonoReflectionInflatedMethod): Removed
26309         `declaring_type' and `reflected_type'.
26310
26311 2004-02-08  Martin Baulig  <martin@ximian.com>
26312
26313         * class.h (MonoGenericInst): Added `MonoType *parent' and
26314         `MonoType **ifaces'.
26315
26316         * reflection.h (MonoReflectionGenericInst): Removed `klass',
26317         `parent' and `interfaces'.
26318
26319         * reflection.c (mono_reflection_bind_generic_parameters): Take a
26320         `MonoType *' argument and return a `MonoType *'.
26321
26322         * icall.c
26323         (ves_icall_MonoGenericInst_GetParentType): New interncall.
26324         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
26325
26326 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
26327
26328         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
26329         valuetype marshalling.
26330
26331 2004-02-06  Martin Baulig  <martin@ximian.com>
26332
26333         * class.c
26334         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
26335         (my_mono_class_from_generic_parameter): Likewise.
26336
26337 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
26338
26339         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
26340         contents of the symbol files lazily.
26341
26342         * object.h (MonoThread): Add 'name' and 'name_len' fields.
26343
26344         * threads.h threads.c icall.c: New icalls for getting and setting the
26345         threads name.
26346
26347 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
26348
26349         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
26350         Raise an exception when the domain is not found.
26351
26352 2004-02-03  Martin Baulig  <martin@ximian.com>
26353
26354         * reflection.c (mono_image_get_methodspec_token): Use the
26355         uninflated signature; fixes gen-33.
26356
26357 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
26358
26359         * gc.c threads.c: Make the finalizer thread a normal managed thread so
26360         the finalizer code can use thread functionality.
26361
26362         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
26363         the finalizer thread.
26364
26365         * threads.c: Make some functions more robust.
26366
26367         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
26368
26369         * metadata.h: Add new marshalling conventions.
26370
26371         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
26372         stringbuilder marshalling. Fixes #53700.
26373
26374         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
26375
26376         * reflection.c (mono_image_get_type_info): Save declarative security
26377         info.
26378
26379         * reflection.c (mono_image_get_field_info): Handle uninitialized 
26380         unmanaged fields as well.
26381
26382         * appdomain.c: Bump corlib version.
26383
26384 2004-02-01  Martin Baulig  <martin@ximian.com>
26385
26386         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
26387         method type arguments.  
26388
26389 2004-01-30  Duncan Mak  <duncan@ximian.com>
26390
26391         * marshal.h: Add prototype for
26392         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
26393         and
26394         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
26395         fix the build.
26396
26397 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
26398
26399         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
26400         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
26401
26402 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
26403
26404         * marshal.c (mono_marshal_get_native_wrapper): Add support for
26405         custom marshalling of valuetypes.
26406
26407         * marshal.c: Fix some warnings.
26408
26409 2004-01-29  Martin Baulig  <martin@ximian.com>
26410
26411         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
26412         for generic method parameters.
26413
26414         * reflection.c (method_encode_methodspec): Write the uninflated
26415         signature into the methodspec table.
26416         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
26417         is always the uninflated method.
26418         (reflection_methodbuilder_to_mono_method): Copy the generic
26419         parameters from the MethodBuilder into `header->gen_params'.
26420
26421 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
26422
26423         * class.c (mono_class_from_generic_parameter): Fix warning.
26424
26425 2004-01-27  Martin Baulig  <martin@ximian.com>
26426
26427         * class.c (mono_class_from_generic_parameter): Don't create
26428         `klass->methods' here.  
26429
26430 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
26431
26432         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
26433         extension since it does not work with libraries named lib<FOO>.dll.so.
26434
26435 2004-01-25  Martin Baulig  <martin@ximian.com>
26436
26437         * class.c (mono_class_inflate_generic_type): Added support for
26438         MONO_TYPE_GENERICINST.
26439
26440         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
26441         inflate methods on open constructed types.      
26442
26443 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26444
26445         * object.c: fire ProcessExit event in the root AppDomain after running
26446         Main. Fixes bug #53299.
26447
26448 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
26449
26450         * socket-io.c: include the new socket-wrappers.h header.
26451         Use the wrappers instead of the unix socket functions to make the code
26452         more clear.
26453
26454 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
26455
26456         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
26457
26458         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
26459         Fixes #22532.
26460
26461 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
26462
26463         * reflection.c (mono_image_create_pefile): Handle the case when the
26464         entry point is not a MethodBuilder.
26465
26466         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
26467         field to ReflectionMethod since it is not allways a builder.
26468
26469         * reflection.c (type_get_fully_qualified_name): New helper function to
26470         return the fully qualified name of a type.
26471
26472         * reflection.c (encode_marshal_blob): Always emit the fully qualified
26473         type name for custom marshallers.
26474
26475         * reflection.c (mono_marshal_spec_from_builder): Ditto.
26476
26477         * class.c (mono_class_setup_vtable): If a parent class already 
26478         implements an interface, use the implementing methods from that class.
26479         Fixes #53148.
26480
26481 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26482
26483         * threadpool.c: just return instead of ExitThread to allow for thread
26484         clean up earlier.
26485
26486 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
26487
26488         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
26489         when closing resource modules.
26490
26491         * reflection.c (mono_image_create_pefile): Handle the case when the
26492         entry point is not a MethodBuilder.
26493
26494         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
26495         field to ReflectionMethod since it is not allways a builder.
26496
26497 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
26498
26499         * marshal.c (mono_marshal_get_managed_wrapper): 
26500         mono_marshal_alloc takes native int so CONV_I
26501         the arg for 64bits.
26502
26503 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
26504
26505         * reflection.c (fixup_cattrs): New function to fixup the methoddef
26506         tokens in the cattr table. Fixes #53108.
26507
26508 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26509
26510         * loader.c: don't trim ".dll" before looking up in the config file.
26511         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
26512
26513 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
26514
26515         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
26516         Return the module which contains the resource as well.
26517         (ves_icall_System_Reflection_Module_Close): New icall.
26518
26519         * appdomain.c: Bump corlib version number.
26520
26521         * image.c (mono_image_addref): New public function.
26522
26523         * assembly.c: Call mono_image_addref.
26524
26525         * reflection.c (mono_module_get_object): Increase reference count of 
26526         the image.
26527
26528         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
26529         Fixes #22532.
26530
26531         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
26532         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
26533         proper exceptions on DllImport problems.
26534
26535 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
26536
26537         * class.c, metadata.c: eliminate CSIZE macro.
26538
26539 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
26540
26541         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
26542         * object.h: Added async_callback field in MonoAsyncResult.
26543         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
26544         * verify.c: Added async_callback in MonoAsyncResult layout.
26545
26546 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
26547
26548         * reflection.c (mono_reflection_get_custom_attrs): Add support
26549         for Modules.
26550
26551 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
26552
26553         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
26554         marshalling.
26555         (mono_marshal_method_from_wrapper): Add null pointer check.
26556
26557 2004-01-16  Martin Baulig  <martin@ximian.com>
26558
26559         * debug-mono-symfile.h: Set version number to 36 and reflect
26560         latest symbol writer changes.
26561
26562 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
26563
26564         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
26565         multi-dimensional arrays.
26566         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
26567         (mono_class_from_mono_type): Use bounded_array_class_get.
26568         
26569         * class.c (mono_bounded_array_class_get): New function which takes
26570         a 'bounded' bool argument to distinguish vectors from one dimensional
26571         arrays.
26572
26573         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
26574         bounded_array_class_get if the array has bounds.
26575
26576         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
26577         Search modules loaded using AssemblyBuilder:AddModule as well.
26578
26579 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26580
26581         * appdomain.c: increased corlib version.
26582         * filewatcher.c: removed g_print.
26583         * icall.c:
26584         (get_property_info): only allocate what is actually requested.
26585         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
26586
26587 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26588
26589         * Makefile.am: added filewatcher.[ch]
26590         * filewatcher.[ch]: FileSystemWatcher runtime support.
26591         * icall.c: added new FSW icalls.
26592
26593 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
26594
26595         * string-icalls.c: fix stringbuilder regression as suggested by
26596         Iain McCoy <iain@mccoy.id.au>.
26597
26598 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
26599
26600         * process.c (process_read_stringtable_block): Recognize '007f' as
26601         a language neutral stringtable block.
26602
26603 2004-01-12  Patrik Torstensson
26604
26605         * object.h (MonoStringBuilder) : Changed layout to support our
26606         new stringbuilder class.
26607         * marshal.c: Change marshalling to support the new layout of 
26608         string builder.
26609         * appdomain.c: increased version number because new layout of
26610         string builder.
26611
26612 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
26613
26614         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
26615         assembly name as an string instead of an AssemblyName, since it is
26616         easier to extract info from it.
26617
26618         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
26619         the culture subdirectories too. Fixes #52231.
26620
26621 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26622
26623         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
26624         It takes 2 new parameters with an optional name for the method to look
26625         for and case ignoring info.
26626
26627         * threadpool.c: removed unused variable.
26628
26629 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26630
26631         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
26632         It takes 2 new parameters with an optional name for the property to look
26633         for and case ignoring info.
26634         Fixes bug #52753.
26635
26636 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
26637
26638         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
26639         Fix #52451.
26640
26641 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26642
26643         * appdomain.c:
26644         * assembly.c: escape the uri before passing it to g_filename_from_uri.
26645         Fixes bug #52630.
26646
26647 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
26648
26649         * reflection.c: Add support for more than one unmanaged resource.
26650
26651         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
26652         in field->def_value, as done in all other cases.
26653
26654         * reflection.c (mono_reflection_get_custom_attrs): Add support for
26655         TypeBuilders.
26656
26657         * reflection.c (mono_reflection_create_runtime_class): Remove 
26658         errorneous assignment to klass->element_class, since it is already
26659         done in mono_reflection_setup_internal_class.
26660
26661 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26662
26663         * gc.c: added missing LeaveCriticalSection.
26664         * icall.c: indented a couple of lines.
26665         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
26666         if we call EndInvoke inside a callback. Fixes bug #52601.
26667
26668 2004-01-07  Martin Baulig  <martin@ximian.com>
26669
26670         * mono-debug-debugger.h
26671         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
26672
26673 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
26674
26675         * appdomain.c: Use messages in NotImplementedException.
26676
26677         * exception.c (mono_get_exception_not_implemented): Now this takes
26678         a message argument.
26679
26680         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
26681         exception instead of g_asserting an aborting when something is not
26682         implemented.
26683
26684         Add some inline docs.
26685
26686 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
26687
26688         * reflection.h: Update after changes to object layout.
26689
26690         * reflection.c: Implement saving of unmanaged aka win32 resources.
26691
26692         * appdomain.c: Bump version number.
26693
26694         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
26695         Handle missing domains gracefully.
26696
26697 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
26698
26699         * file-io.c : On Windows, there are much more invalid_path_chars.
26700
26701 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
26702
26703         * class.h, object.c: prepare for GetType () speedup.
26704
26705 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
26706
26707         * profiler.c: workaround for --profile null reference exception on
26708           cygwin. Patch by Patrik Torstensson.
26709
26710 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
26711
26712         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
26713         make work for unaligned access.
26714
26715 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
26716
26717         * class.c: small cleanup (class->fields [i] -> field).
26718         * image.c: check address of metadata is valid.
26719
26720 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
26721
26722         * assembly.h assembly.c (mono_assembly_loaded): New public function to
26723         search the list of loaded assemblies.
26724
26725         * reflection.c (mono_reflection_type_from_name): Use 
26726         mono_assembly_loaded instead of mono_image_loaded.
26727
26728         * reflection.c: Fix warnings.
26729
26730 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
26731
26732         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
26733         is dynamic. This is needed since an assembly can contain both dynamic and
26734         non-dynamic images.
26735
26736         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
26737         assembly->dynamic.
26738
26739         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
26740
26741         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
26742         to store modules loaded using AddModule.
26743
26744         * reflection.c (mono_image_fill_file_table): Generalize this so it works
26745         on Modules.
26746
26747         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
26748
26749         * reflection.c (mono_image_fill_export_table_from_module): New function to
26750         fill out the EXPORTEDTYPES table from a module.
26751
26752         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
26753         into a separate function. Also handle loaded non-dynamic modules.
26754
26755         * reflection.c (mono_image_basic_init): Fix memory allocation.
26756
26757         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
26758
26759         * assembly.c (mono_assembly_load_references): Make this public.
26760
26761 2003-12-19  Martin Baulig  <martin@ximian.com>
26762
26763         * class.c (mono_class_initialize_generic): Made this static, take
26764         a `MonoGenericInst *' instead of a `MonoClass *'.
26765         (mono_class_from_generic): Call mono_class_initialize_generic()
26766         unless we're already initialized or being called from
26767         do_mono_metadata_parse_generic_inst().
26768
26769         * class.h (MonoGenericInst): Added `initialized' and
26770         `init_pending' flags.
26771
26772         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
26773         `mono_class_init (gklass)' or mono_class_initialize_generic()
26774         here; set `generic_inst->init_pending' while parsing the
26775         `type_argv'.
26776
26777 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
26778
26779         * locales.c: include string.h for memxxx prototypes
26780
26781 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
26782
26783         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
26784         constructor when accessing literal fields.
26785
26786 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
26787
26788         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
26789
26790         * reflection.c (assembly_add_resource_manifest): New function to fill
26791         the MANIFESTRESOURCE table.
26792
26793         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
26794
26795         * reflection.h: Update to changes in class layout.
26796
26797         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
26798         Reenable call to mono_runtime_is_shutting_down ().
26799
26800         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
26801         determine if the runtime is shutting down.
26802
26803 2003-12-16  Jackson Harper <jackson@ximian.com>
26804
26805         * icall.c: comment out call to mono_runtime_is_shutting_down to
26806         fix build.
26807         
26808 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
26809
26810         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
26811         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
26812
26813 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
26814
26815         * reflection.c: move definition of swap_with_size
26816         to before its first call
26817
26818 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
26819
26820         * appdomain.c (mono_runtime_is_shutting_down): New public function.
26821
26822         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
26823         icall.
26824
26825         * object.c: Fix warnings.
26826
26827         * icall.c (ves_icall_Type_Get...): Only consider inherited static
26828         members if FlattenHierarchy is set.
26829
26830         * reflection.c (mono_image_add_decl_security): New function to emit
26831         declarative security.
26832
26833         * reflection.h reflection.c: Add support for declarative security.
26834
26835         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
26836         
26837 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
26838
26839         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
26840         
26841         * appdomain.c verify.c: Moved corlib version checking into its own
26842         function in appdomain.c since it needs to create vtables etc.
26843
26844 2003-12-13  Patrik Torstensson <p@rxc.se>
26845
26846         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
26847         instead of unwrapped server.
26848
26849 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
26850
26851         * verify.c (check_corlib): Fix field index.
26852
26853 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
26854
26855         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
26856         GetGacPath icall.
26857
26858 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
26859
26860         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
26861         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
26862         cope with sizeof(size_t) != sizeof(guint32).
26863
26864 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26865
26866         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
26867         in case of failure.
26868
26869 2003-12-10  Mark Crichton <crichton@gimp.org>
26870
26871         * icall.c: removed the GetNonZeroBytes.  We now handle this case
26872         in managed code.
26873
26874         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
26875
26876 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
26877
26878         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
26879         marked as deleted.
26880
26881 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
26882
26883         * verify.c (check_corlib): Handle the case when the version field is 
26884         initialized by a static constructor.
26885
26886 2003-12-08  Patrik Torstensson  <p@rxc.se>
26887
26888     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
26889
26890 2003-12-08  Martin Baulig  <martin@ximian.com>
26891
26892         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
26893         a MonoReflectionGenericParameter, also take the parameter index
26894         and name as arguments.
26895         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
26896         (ves_icall_MonoGenericParam_initialize): New interncall.
26897         (ves_icall_Type_make_byref_type): New interncall.
26898
26899         * reflection.h (MonoReflectionGenericParam): Derive from
26900         MonoReflectionType, not just from MonoObject.  Added `refobj' and
26901         `index' fields.
26902
26903         * reflection.c (mono_reflection_define_generic_parameter): Create
26904         and return a new MonoReflectionGenericParam; don't initialize the
26905         constraints here.
26906         (mono_reflection_initialize_generic_parameter): New public method;
26907         initializes the constraints and creates the `param->pklass'.
26908
26909 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
26910
26911         * reflection.h reflection.c: Use the new fields 'num_types', 
26912         'num_fields' and 'num_methods' to track the number of types etc.
26913
26914         * verify.c (check_corlib): Check corlib version number.
26915
26916 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
26917
26918         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
26919         function works on all methods.
26920
26921 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
26922
26923         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
26924         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
26925         the custom_type_info flag of the transparent proxy.
26926         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
26927         objects that supports IRemotingTypeInfo.
26928         * object.h: Added custom_type_info field in transparent proxy.
26929
26930 2003-12-06  Martin Baulig  <martin@ximian.com>
26931
26932         * class.c (mono_class_create_from_generic): Removed.
26933         (mono_class_from_generic): Check `ginst->klass' before doing
26934         anything else.  This is important to fully support "recursive"
26935         generic types.
26936
26937         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
26938         empty `generic_inst->klass' before doing anything else.
26939
26940 2003-12-06  Dick Porter  <dick@ximian.com>
26941
26942         * verify.c: 
26943         * object.h:
26944         * icall.c:
26945         * locales.c: Use C structs to access class fields.  Don't do a
26946         conversion between MonoString and UChar because both are
26947         platform-endian UTF-16.  Compare now takes startindex and count
26948         parameters.  Add a char overload for IndexOf.  Speed up the
26949         invariant string IndexOf.
26950
26951 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
26952
26953         * Makefile.am (monosn_LDADD): Fix parallel build.
26954
26955 2003-12-04  Martin Baulig  <martin@ximian.com>
26956
26957         * icall.c
26958         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
26959         (ves_icall_Type_make_array_type): New interncall.       
26960
26961 2003-12-04  Martin Baulig  <martin@ximian.com>
26962
26963         * locales.c: also change it in the !HAVE_ICU case.
26964
26965 2003-12-04  Dick Porter  <dick@ximian.com>
26966
26967         * icall.c:
26968         * locales.c: construct_compareinfo is now in CompareInfo, not
26969         CultureInfo.
26970
26971 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
26972
26973         * image.c (mono_image_load_file_for_image): Cache loaded images in the
26974         image->files array.
26975
26976         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
26977         table as well.
26978
26979         * assembly.c (mono_assembly_load_references): Only load references
26980         once.
26981
26982         * class.c (mono_class_from_name): Avoid linear search of the 
26983         EXPORTEDTYPE table.
26984
26985         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
26986
26987 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
26988
26989         * image.h (MonoImage): Add 'field_cache' field.
26990
26991         * loader.c (mono_field_from_token): Cache field lookups.
26992         
26993         * reflection.c (mono_module_get_object): Fix name property.
26994
26995         * icall.c (ves_icall_get_enum_info): Update after changes to 
26996         mono_metadata_get_constant_index ().
26997
26998         * icall.c: Get rid of get_type_info icall, use a separate icall for
26999         each type property to avoid needless memory allocations. Fixes #51514.
27000
27001         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
27002         to avoid needless binary searches.
27003
27004         * class.c (class_compute_field_layout): Move the initialization of
27005         field->def_value to mono_class_vtable ().
27006
27007         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
27008         non-corlib types.
27009
27010         * object.c (mono_object_allocate): Make it inline.
27011
27012         * object.c (mono_object_allocate_spec): Make it inline.
27013         
27014 2003-12-02  Dick Porter  <dick@ximian.com>
27015
27016         * locales.c (create_NumberFormat): NumberFormatInfo construction.
27017         Patch by Mohammad DAMT (mdamt@cdl2000.com).
27018
27019 2003-12-01  Dick Porter  <dick@ximian.com>
27020
27021         * threads.c: Fix signature and call in CreateMutex and
27022         CreateEvent.
27023
27024 2003-12-01  Dick Porter  <dick@ximian.com>
27025
27026         * icall.c: 
27027         * locales.c: Implement string compares and searching
27028
27029         * object.h: Add extra Thread field
27030
27031 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
27032
27033         * reflection.c (fixup_method): Add support for MonoCMethod.
27034
27035 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
27036
27037         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
27038
27039         * reflection.c (assembly_name_to_aname): Allow extra characters in
27040         assembly names. Fixes #51468.
27041
27042 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
27043
27044         * exception.c (mono_exception_from_name_domain): New helper function.
27045
27046         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
27047         exception object in the correct domain.
27048
27049         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
27050         formatting + make a copy a the input data.
27051
27052         * loader.c (mono_get_method_from_token): Methods which contain
27053         native code do not have entries in the ImplMap.
27054
27055         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
27056         Thanks to Gonzalo for spotting this.
27057         
27058         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
27059         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
27060
27061         * assembly.h (mono_assembly_load_from): Split the second part of 
27062         assembly loading into a new public function.
27063
27064         * exception.h (mono_get_exception_bad_image_format): New function.
27065
27066 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
27067
27068         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27069         Enumerate all modules inside a dynamic assembly. Fixes #51293.
27070         
27071         * icall.c: Add new icall for creating dynamic methods.
27072
27073         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
27074
27075         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
27076
27077         * reflection.c (mono_reflection_create_dynamic_method): New icall to
27078         create a dynamic method.
27079
27080         * reflection.c (resolve_object): New helper function.
27081
27082         * reflection.c: Generalize ReflectionMethodBuilder and the functions
27083         which manipulate it so they can also work on dynamic methods.
27084
27085         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
27086         creating the MonoReflectionMethodAux structure if it is not needed.
27087         
27088         * reflection.h verify.c: Update after changes to object layout.
27089
27090         * reflection.c (method_builder_encode_signature): Fix compilation on
27091         gcc 2.95.x.
27092
27093 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
27094
27095         * appdomain.h: Added support for context static fields. Added static_data
27096           field to MonoAppContext and renamed thread_static_fields to a more
27097           generic special_static_fields in MonoAppDomain, since it can now contain
27098           context static fields.
27099         * domain.c: Updated hashtable name.
27100         * object.c: Replaced field_is_thread_static() for a more generic
27101           field_is_special_static() which also checks for context static attribute.
27102           In mono_class_vtable(), added support for static context fields.
27103         * threads.c: Changed methods that manage thread static fields to more
27104           generic methods so they can be reused both for thread and context static
27105           data.
27106         * threads.h: Declared some new methods.
27107
27108 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
27109
27110         * reflection.h: Update after changes to the managed types.
27111
27112         * reflection.c (encode_custom_modifiers): New helper function.
27113
27114         * reflection.c (method_encode_signature): Emit custom modifiers.
27115
27116         * reflection.c (field_encode_signature): Emit custom modifiers.
27117
27118 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
27119
27120         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
27121
27122         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
27123         implementation.
27124
27125         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
27126         icall.
27127
27128         * object.c (mono_field_get_value_object): New function.
27129
27130         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
27131         specific.
27132
27133 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
27134
27135         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
27136         return a preallocated out-of-memory exception instance.
27137
27138         * object.c (out_of_memory): Use the new function.
27139
27140         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
27141         flag is before the custom modifiers. Fixes #49802.
27142
27143 2003-11-16  Martin Baulig  <martin@ximian.com>
27144
27145         * class.c (mono_class_is_open_constructed_type): Implemented the
27146         MONO_TYPE_GENERICINST case.
27147
27148 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
27149
27150         * assembly.c (mono_assembly_fill_assembly_name): New function to
27151         fill out the MonoAssemblyName structure.
27152         (mono_assembly_open): Use the new function.
27153
27154         * icall.c (fill_reflection_assembly_name): New helper function.
27155
27156         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
27157         new function.
27158
27159         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
27160
27161 2003-11-15  Martin Baulig  <martin@ximian.com>
27162
27163         * class.c (mono_class_is_open_constructed_type): New public
27164         function; checks whether a type is an open constructed type,
27165         ie. whether it still contains type parameters.
27166         (mono_class_inflate_generic_type): If we're a type parameter and
27167         the inflated type is also a MONO_TYPE_(M)VAR, return the original
27168         type.
27169
27170         * class.h (MonoGenericInst): Added `guint32 is_open'.
27171
27172         * loader.c (method_from_methodspec): Check whether we're an open
27173         or closed constructed type and set `ginst->is_open'.
27174
27175         * reflection.c (mono_reflection_bind_generic_parameters): Check
27176         whether we're an open or closed constructed type and set
27177         `ginst->is_open'.
27178         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
27179         from open constructed types.
27180
27181 2003-11-15  Martin Baulig  <martin@ximian.com>
27182
27183         * reflection.c (mono_reflection_bind_generic_parameters): If we're
27184         a generic instance (instead of a generic type declaration) with
27185         unbound generic parameters, bind them to our actual types.
27186
27187 2003-11-14  Martin Baulig  <martin@ximian.com>
27188
27189         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
27190
27191         * reflection.c (mono_reflection_bind_generic_parameters): If we're
27192         an interface type, populate `res->interfaces' with instantiated
27193         versions of all the interfaces we inherit.
27194
27195 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
27196
27197         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
27198         when MONO_PATH is set but doesn't contain the install dir.
27199
27200 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27201
27202         * icall.c:
27203         (ves_icall_Type_GetInterfaces): don't return an interface twice when
27204         it's also implemented in base classes. Fixes bug #50927.
27205
27206 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
27207
27208         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
27209         if this method is called from a finalizer. Fixes #50913.
27210
27211 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
27212
27213         * threads.c: Implement VolatileRead/VolatileWrite
27214
27215         * icall.c: Add new icalls for VolatileRead/VolatileWrite
27216
27217 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27218
27219         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
27220         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
27221         2.95.3.
27222
27223         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
27224         from Peter Ross (pro@missioncriticalit.com).
27225         
27226 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
27227
27228         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
27229
27230 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27231
27232         * assembly.c (mono_assembly_load_references): Disable check because it
27233         triggers on older corlibs which lots of people have.
27234
27235 2003-11-12  Jackson Harper  <jackson@ximian.com>
27236
27237         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
27238         load corlib.dll if mscorlib.dll is not found.
27239         * assembly.h: Remove corlib name define.
27240         * class.c:
27241         * domain.c:
27242         * image.c: Change corlib name to mscorlib.
27243         
27244 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27245
27246         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
27247
27248 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
27249
27250         * appdomain.h: Added loader_optimization here to sync with the C#
27251         code, and add disallow_binding_redirects field.
27252
27253 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
27254
27255         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
27256
27257         * reflection.c (mono_image_build_metadata): Fix crash on modules
27258         with no types.
27259
27260         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
27261
27262         * icall.c (ves_icall_get_method_info): Return callingConvention as
27263         well.
27264
27265         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
27266         namespaces from the EXPORTEDTYPE table as well.
27267
27268         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
27269         from all modules inside the assembly.
27270         
27271 2003-11-11  Martin Baulig  <martin@ximian.com>
27272
27273         * reflection.c (mono_reflection_bind_generic_parameters): Make
27274         this work for interfaces.
27275
27276 2003-11-11  Martin Baulig  <martin@ximian.com>
27277
27278         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
27279
27280 2003-11-11  Martin Baulig  <martin@ximian.com>
27281
27282         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
27283         "MonoInflatedMethod" and "MonoInflatedCtor".
27284
27285 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
27286
27287         * reflection.c (resolution_scope_from_image): Use the assembly table
27288         from the manifest module, since other modules don't have it.
27289
27290         * debug-helpers.c (mono_type_full_name): New helper function.
27291
27292         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
27293
27294         * image.c (mono_image_load_file_for_image): New public function which
27295         is a replacement for the load_file_for_image in class.c.
27296
27297         * assembly.c (mono_assembly_load_module): A wrapper for the function
27298         above which does assembly association and reference loading too.
27299
27300         * class.c (mono_class_from_name): Call mono_assembly_load_module.
27301
27302 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27303
27304         * appdomain.c: not all of the attributes for the full assembly name
27305         are required and the order doesn't matter. Fixes bug #50787.
27306
27307 2003-11-10  Dick Porter  <dick@ximian.com>
27308
27309         * locales.c: Use platform-endian UTF16
27310
27311 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
27312
27313         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
27314         
27315 2003-11-10  Martin Baulig  <martin@ximian.com>
27316
27317         * metadata.c
27318         (mono_metadata_load_generic_params): Make this actually work.
27319
27320         * reflection.c (mono_reflection_bind_generic_parameters): If our
27321         parent is a generic instance, pass all the `types' to it, no
27322         matter whether it has the same number of type parameters or not.
27323
27324 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
27325
27326         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
27327
27328         * assembly.c (mono_assembly_load_references): Move the image<->assembly
27329         assignment code to this function so it gets called recursively for all
27330         modules.
27331
27332         * image.c (load_modules): Remove the assembly assignment since it is
27333         now done by mono_assembly_load_references.
27334         
27335         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27336         Add 'module' argument.
27337         (mono_module_get_types): New helper function.
27338         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
27339
27340 2003-11-08  Martin Baulig  <martin@ximian.com>
27341
27342         * class.c (mono_class_inflate_generic_method): Interface method
27343         don't have a header.
27344
27345         * reflection.c (mono_image_get_methodspec_token): Take an
27346         additional `MonoGenericInst *' argument instead of reading it from
27347         the header; this is necessary to support interfaces.
27348         (mono_image_create_token): Pass the `MonoGenericInst *' from the
27349         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
27350         (inflated_method_get_object): Take an additional `MonoGenericInst *'
27351         argument.
27352
27353         * reflection.h (MonoReflectionInflatedMethod): Added
27354         `MonoGenericInst *ginst'.
27355
27356 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
27357
27358         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
27359
27360 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
27361
27362         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
27363
27364 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
27365
27366         * reflection.c 
27367         (reflection_methodbuilder_from_method_builder):
27368         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
27369         initialize a ReflectionMethodBuilder structure.
27370         (mono_image_get_methodbuilder_token):
27371         (mono_image_get_ctorbuilder_token): New functions to emit memberref
27372         tokens which point to types in another module inside the same assembly.
27373
27374         * reflection.c: Use the new helper functions.
27375         
27376         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
27377
27378         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
27379         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
27380
27381         * reflection.c (resolution_scope_from_image): Emit a moduleref if
27382         neccesary.
27383
27384         * reflection.c (mono_image_build_metadata): Emit metadata only for the
27385         current module. Emit the manifest only for the main module.
27386
27387         * reflection.c (mono_image_create_token): Add assertion when a 
27388         memberref needs to be created.
27389
27390         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
27391
27392         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
27393         larger buffer for the custom attribute blob. Fixes #50637.
27394         
27395 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27396
27397         * threadpool.c: notify listener on async processing handles after
27398         invoking the async callback. Thanks to Zoltan.
27399
27400 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27401
27402         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
27403         avoid code duplication.
27404
27405         * reflection.h (MonoDynamicImage): New type which is currently unused,
27406         but will be used through the ref.emit code in place of 
27407         MonoDynamicAssembly.
27408
27409         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
27410         object layout.
27411
27412         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
27413         a MonoDynamicImage instead of just a MonoImage.
27414         
27415         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
27416         icalls to ModuleBuilder but keep their semantics, so they will work
27417         with moduleb->assemblyb. This will change later.
27418         
27419 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27420
27421         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
27422         object layout.
27423
27424         * reflection.c (mono_image_build_metadata): Avoid creation of a default
27425         main module, since it is now done by the managed code.
27426
27427 2003-11-03  Martin Baulig  <martin@ximian.com>
27428
27429         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
27430         `ginst->klass' here.
27431         (method_encode_methodspec): Don't use the `ginst->generic_method's
27432         klass if it's a generic instance, use `ginst->klass' in this case.
27433
27434 2003-11-03  Martin Baulig  <martin@ximian.com>
27435
27436         * reflection.c (mono_image_get_generic_method_param_info):
27437         Removed, use mono_image_get_generic_param_info() instead.
27438         (mono_image_get_type_info): Write the GenericParam table before
27439         the Method table.  This is neccessary because in the GenericParam
27440         table, type parameters of the class (ie. '!0' etc.) must come
27441         before the ones from its generic methods (ie. '!!0' etc).
27442
27443 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27444
27445         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
27446
27447 2003-11-02  Martin Baulig  <martin@ximian.com>
27448
27449         * reflection.c (create_generic_typespec): Take a
27450         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
27451         the generic parameters from it.
27452
27453 2003-11-02  Martin Baulig  <martin@ximian.com>
27454
27455         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
27456         instead of a `MonoClassField *' since we just need the type.
27457         (create_generic_typespec): New static function.  Creates a
27458         TypeSpec token for a generic type declaration.
27459         (mono_image_get_generic_field_token): New static function.
27460         (mono_image_create_token): If we're a FieldBuilder in a generic
27461         type declaration, call mono_image_get_generic_field_token() to get
27462         the token.
27463
27464 2003-11-02  Martin Baulig  <martin@ximian.com>
27465
27466         * reflection.h
27467         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
27468         `MonoReflectionGenericInst *declaring_type' and
27469         `MonoReflectionGenericInst *reflected_type' fields.
27470
27471         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
27472         `MonoReflectionGenericInst *declaring_type' and a
27473         `MonoReflectionGenericInst *reflected_type' argument instead of a
27474         single `MonoReflectionGenericInst *type' one.  Set
27475         `res->declaring_type' and `res->reflected_type' from them.
27476         (mono_reflection_inflate_field): Likewise.      
27477
27478 2003-11-02  Martin Baulig  <martin@ximian.com>
27479
27480         * class.c (mono_class_setup_vtable): Don't store generic methods
27481         in the vtable.  
27482
27483 2003-11-02  Martin Baulig  <martin@ximian.com>
27484
27485         * reflection.h (MonoReflectionGenericInst): Added
27486         `MonoReflectionType *declaring_type'.
27487
27488         * reflection.c (mono_reflection_bind_generic_parameters): Use
27489         `if (tb->parent)' instead of `klass->parent'.
27490
27491 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
27492
27493         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
27494         with an empty ASSEMBLY table.
27495
27496         * reflection.c (mono_image_build_metadata): Avoid using the same loop
27497         variable in the inner and outer loops.
27498
27499 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
27500
27501         * metadata.h (mono_metadata_make_token): Put parentheses around macro
27502         argument.
27503
27504         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
27505         
27506         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
27507         icalls. Instead, do everything in managed code. This is needed since
27508         it is hard to restore the original domain etc. in unmanaged code in the
27509         presence of undeniable exceptions.
27510
27511         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
27512         New icalls to push and pop appdomain refs.
27513
27514 2003-10-31  Martin Baulig  <martin@ximian.com>
27515
27516         * class.c (inflate_generic_type): Renamed to
27517         mono_class_inflate_generic_type() and made it public.
27518
27519         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
27520         New interncall.
27521
27522         * loader.c (mono_field_from_memberref): Also set the retklass for
27523         typespecs.
27524
27525         * fielder.c (mono_image_get_inflated_field_token): New static
27526         method; creates a metadata token for an inflated field.
27527         (mono_image_create_token, fixup_method): Added support for
27528         "MonoInflatedField".
27529         (fieldbuilder_to_mono_class_field): New static function.
27530         (mono_reflection_inflate_field): New public function.
27531
27532         * reflection.h
27533         (MonoReflectionGenericInst): Added `MonoArray *fields'.
27534         (MonoReflectionInflatedField): New typedef.     
27535
27536 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
27537
27538         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
27539         for Solaris and other platforms without s6_addr16
27540
27541 2003-10-30  Martin Baulig  <martin@ximian.com>
27542
27543         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
27544         argument instead of two.
27545         (mono_class_inflate_generic_signature): Likewise.
27546         (inflate_generic_header): Likewise.
27547         (mono_class_inflate_generic_method): Likewise.  In addition, if
27548         `ginst->klass' is set, it becomes the new `method->klass'.
27549
27550         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
27551         field.
27552
27553         * reflection.c (encode_generic_method_sig): Write a 0xa as the
27554         first byte. [FIXME]
27555         (method_encode_methodspec): If we have generic parameters, create
27556         a MethodSpec instead of a MethodRef.
27557         (fixup_method): Added support for "MonoInflatedMethod" and
27558         "MonoInflatedCtor".
27559         (mono_image_create_token): Added support for "MonoInflatedMethod"
27560         and "MonoInflatedCtor".
27561         (inflated_method_get_object): New static function; returns a
27562         managed "System.Reflection.MonoInflatedMethod" object.
27563         (mono_reflection_bind_generic_method_parameters): Return a
27564         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
27565         (mono_reflection_inflate_method_or_ctor): Likewise.
27566         (mono_image_get_generic_method_param_info): Initialize unused
27567         fields to zero.
27568         (mono_image_get_generic_param_info): Likewise.
27569
27570         * reflection.h (MonoReflectionInflatedMethod): New public
27571         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
27572         "S.R.MonoInflatedCtor" classes.
27573
27574         * loader.c (method_from_memberref): If we're a TypeSpec and it
27575         resolves to a generic instance, inflate the method.
27576
27577 2003-10-28  Dick Porter  <dick@ximian.com>
27578
27579         * object.c (mono_runtime_run_main): Convert command-line arguments
27580         into utf8, falling back to the user's locale encoding to do so.
27581
27582 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
27583
27584         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
27585         at this time.
27586
27587         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
27588
27589         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
27590         up icalls at method definition time. Partially fixes #33569.
27591
27592 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
27593
27594         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
27595         marshalling of arrays. Fixes #50116.
27596
27597         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
27598
27599         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
27600         points to a vtable in the dying appdomain.
27601
27602         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
27603         listeners into unmanaged code inside the lock.
27604
27605         * object.c (mono_class_vtable): Turn off typed allocation in non-root
27606         domains and add some comments.
27607
27608 2003-10-25  Martin Baulig  <martin@ximian.com>
27609
27610         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
27611
27612         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
27613
27614         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
27615         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
27616         currently parsing.  Create the generic class and store it in
27617         `generic_inst->klass' before parsing the type arguments.  This is
27618         required to support "recursive" definitions; see mcs/tests/gen-23.cs
27619         for an example.
27620         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
27621         to support recursive typespec entries.
27622
27623         * class.c (mono_class_setup_parent): If our parent is a generic
27624         instance, we may get called before it has its name set.
27625         (mono_class_from_generic): Splitted into
27626         mono_class_create_from_generic() and mono_class_initialize_generic().
27627
27628 2003-10-25  Martin Baulig  <martin@ximian.com>
27629
27630         * icall.c (ves_icall_Type_BindGenericParameters): Return a
27631         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
27632         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
27633         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
27634
27635         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
27636         (create_typespec): Likewise.
27637         (mono_reflection_bind_generic_parameters): Return a
27638         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
27639         (mono_reflection_inflate_method_or_ctor): New public function.
27640
27641         * reflection.h (MonoReflectionGenericInst): New typedef.        
27642
27643 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
27644
27645         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
27646         inside the domain lock. Fixes #49993.
27647         
27648         * object.c (mono_class_vtable): When typed allocation is used, 
27649         allocate vtables in the GC heap instead of in the mempool, since the
27650         vtables contain GC descriptors which are used by the collector even
27651         after the domain owning the mempool is unloaded.
27652
27653         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
27654
27655         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
27656         reflect what it does. Also invalidate mempools instead of freeing
27657         them if a define is set.
27658
27659         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
27660         of the appdomain.
27661         
27662         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
27663         hold the finalizable objects in this domain.
27664
27665         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
27666         appdomain.
27667
27668         * appdomain.c (mono_domain_set): New function to set the current
27669         appdomain, but only if it is not being unloaded.
27670
27671         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
27672         appdomain which is being unloaded.
27673         
27674         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
27675         unloading of the root appdomain.
27676
27677         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
27678         icall to execute a method in another appdomain. Intended as a 
27679         replacement for InternalSetDomain, which can confuse the code 
27680         generation in the JIT.
27681
27682         * appdomain.c (mono_domain_is_unloading): New function to determine
27683         whenever an appdomain is unloading.
27684
27685         * appdomain.c (mono_domain_unload): New function to correctly unload
27686         an appdomain.
27687
27688         * assembly.c (mono_assembly_load_references): Check that an assembly
27689         does not references itself.
27690
27691         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
27692         domain manually, it asks the finalizer thread to do it, then waits for
27693         the result. Also added a timeout.
27694
27695         * icall.c: Register the new icalls.
27696
27697         * threads.h threads.c: Export the mono_gc_stop_world and 
27698         mono_gc_start_world functions.
27699         
27700         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
27701         function to fill out the mempool with 0x2a.
27702
27703 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
27704
27705         * reflection.h (MonoReflectionMethodAux): New structure to store
27706         information which is rarely used, thus is not in the MonoMethod
27707         structure.
27708
27709         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
27710         store the aux info.
27711
27712         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
27713         and marshalling info into the aux structure.
27714
27715         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
27716         from the aux structure.
27717
27718         * loader.c (mono_method_get_param_names): Retrieve the param names from
27719         the aux structure.
27720         
27721 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
27722
27723         * exception.h exception.c: Add AppDomainUnloadedException && fix 
27724         warning.
27725
27726 2003-10-21  Dick Porter  <dick@ximian.com>
27727
27728         * socket-io.c
27729         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
27730         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
27731
27732 2003-10-21  Martin Baulig  <martin@ximian.com>
27733
27734         * reflection.c (mono_reflection_bind_generic_parameters):
27735         `klass->parent' is NULL for interfaces.
27736
27737 2003-10-21  Martin Baulig  <martin@ximian.com>
27738
27739         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
27740
27741 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
27742
27743         * exception.c (mono_exception_from_name_msg): New helper function for
27744         creating exceptions and initializing their message field.
27745
27746         * exception.c: Simplify functions using the new helper.
27747
27748         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
27749         New function.
27750
27751         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
27752         mono_raise_exception, since otherwise gcc doesn't generate the function
27753         epilog for raise_exception, confusing the stack unwinding in the JIT.
27754         Fixes #45043.
27755
27756         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
27757         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
27758         Fixes #49499.
27759
27760 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27761
27762         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
27763         utf8.
27764
27765 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
27766
27767         * icall.c: Removed GetUninitializedObject method because
27768           AllocateUninitializedClassInstance does the same.
27769
27770 2003-10-18  Martin Baulig  <martin@ximian.com>
27771
27772         * class.c (inflate_generic_signature): Renamed to
27773         mono_class_inflate_generic_signature() and made it public.
27774         (my_mono_class_from_generic_parameter): New static function; if we
27775         don't already have the generic parameter's MonoClass, create a
27776         very simple one which is just used internally in the runtime and
27777         not passed back to managed code.
27778
27779         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
27780
27781         * metadata.h (MonoMethodSignature): Moved the
27782         `MonoGenericParam *gen_params' to the MonoMethodHeader.
27783         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
27784
27785         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
27786         ves_icall_MonoMethod_GetGenericArguments(); this is now an
27787         interncall on the MonoMethod class, not on MethodInfo.
27788         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
27789         calling mono_reflection_bind_generic_method_parameters() directly.
27790
27791         * loader.c (mono_method_get_signature): If this is a MethodSpec;
27792         return the already computed `method->signature'.
27793         (method_from_methodspec): New static function to load a method
27794         from a MethodSpec entry.
27795         (mono_get_method_from_token): Call the new method_from_methodspec()
27796         for MethodSpec tokens.  
27797         (mono_get_method_from_token): If we're a generic method, load the
27798         type parameters.
27799
27800         * reflection.c (mono_image_get_memberref_token): Allow
27801         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
27802         table.
27803         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
27804         (mono_image_create_token): First check whether it's a generic
27805         method (so we'd need to create a MethodSpec), then do the other
27806         two alternatives.
27807         (mono_reflection_bind_generic_method_parameters): Return a
27808         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
27809         called directly from the interncall.
27810
27811 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
27812
27813         * reflection.c (load_public_key): Move loading of the public key
27814         into managed code.
27815
27816         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
27817
27818         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
27819         fields.
27820
27821         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
27822         culture, hash_alg and public_key. Fixes #49555.
27823
27824 2003-10-17  Martin Baulig  <martin@ximian.com>
27825
27826         * class.h (MonoGenericInst): Moved this declaration here and added
27827         `MonoMethod *generic_method'.
27828
27829         * icall.c
27830         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
27831         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
27832
27833         * metadata.c (mono_metadata_type_equal): Two types of
27834         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
27835         index; ie. don't compare the address of the `MonoGenericParam'
27836         structure.
27837         (mono_metadata_load_generic_params): Removed the `MonoMethod
27838         *method' argument.
27839
27840         * metadata.h (MonoGenericInst): Moved declaration to class.h.
27841         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
27842
27843         * reflection.c (method_encode_signature): Encode the number of
27844         generic parameters.
27845         (encode_generic_method_sig): New static function.
27846         (method_encode_methodspec): New static function; creates an entry
27847         in the MethodSpec table for a generic method.
27848         (mono_image_get_methodspec_token): New static function.
27849         (mono_image_create_token): Call mono_image_get_methodspec_token()
27850         for generic methods.
27851         (mono_reflection_bind_generic_method_parameters): New public
27852         function.  Instantiates a generic method.
27853
27854 2003-10-16  Martin Baulig  <martin@ximian.com>
27855
27856         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
27857         *gen_params' here from MonoMethodHeader.
27858
27859         * metadata.c (mono_metadata_parse_method_signature): If we have
27860         generic parameters, initialize `method->gen_params' and then set
27861         the correct `type->data.generic_param' in all the parameters.
27862
27863 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
27864
27865         * threads.c (mono_threads_get_default_stacksize): New function to 
27866         return the default stacksize.
27867
27868         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
27869         termination of the finalizer thread, since the previous method had
27870         race conditions. Fixes #49628.
27871
27872         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
27873         as for the other managed threads.
27874
27875 2003-10-16  Martin Baulig  <martin@ximian.com>
27876
27877         * class.c (inflate_generic_signature): Copy `generic_param_count'
27878         and `gen_params'.
27879
27880         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
27881         New interncall.
27882
27883         * metadata.c (mono_metadata_parse_method_signature): Actually set
27884         the `method->generic_param_count' here.
27885         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
27886
27887 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
27888
27889         * object.h: Add a new field to TypedRef to simplify the implementation
27890         of the REFANY opcodes in the JIT.
27891
27892         * icall.c: Make use of the new field.
27893
27894         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
27895         dynamically.
27896
27897 2003-10-15  Martin Baulig  <martin@ximian.com>
27898
27899         * class.c (mono_class_from_gen_param): Renamed to
27900         mono_class_from_generic_parameter() and moved most of the
27901         functionality from mono_reflection_define_generic_parameter()
27902         here; ie. we create a "real" class here.
27903         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
27904         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
27905         previously been called.
27906
27907         * class.h (MonoGenericParam): Moved the declaration of this struct
27908         here from metadata.h and added `MonoMethod *method'.
27909
27910         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
27911         interncall.
27912
27913         * loader.c (mono_get_method_from_token): If we have any generic
27914         parameters, call mono_metadata_load_generic_params() to read them
27915         from the MONO_TABLE_GENERICPAR.
27916
27917         * metadata.c (mono_metadata_load_generic_params): Added
27918         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
27919
27920         * metadata.h (MonoMethodSignature): Replaced
27921         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
27922         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
27923
27924         * reflection.c (mono_reflection_define_generic_parameter): Moved
27925         most of the functionality into the new
27926         mono_class_from_generic_parameter(); set the `method' field if
27927         we're a method parameter.       
27928
27929 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
27930
27931         * marshal.c (emit_struct_conv): if native size is 0
27932         emit no code.
27933
27934 2003-10-14  Martin Baulig  <martin@ximian.com>
27935
27936         * icall.c: The generics API has changed in the spec since it was
27937         added to System.Type; these modifications make it match the spec
27938         again.
27939         (ves_icall_Type_GetGenericParameters): Renamed to
27940         `ves_icall_Type_GetGenericArguments'.
27941         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
27942         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
27943         `ves_icall_MonoType_get_HasGenericArguments'.
27944         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
27945         `ves_icall_MonoType_get_IsGenericParameter'.
27946         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
27947         this is no interncall anymore.
27948         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
27949         `ves_icall_TypeBuilder_get_IsGenericParameter'.
27950
27951 2003-10-14  Martin Baulig  <martin@ximian.com>
27952
27953         * reflection.c (mono_reflection_bind_generic_parameters): Also
27954         inflate generic methods if we're reading the class from IL.
27955
27956 2003-10-13  Martin Baulig  <martin@ximian.com>
27957
27958         * reflection.c (mono_reflection_define_generic_parameter): This
27959         method isn't called directly from the icall anymore; take a
27960         `MonoReflectionAssemblyBuilder *' so we can use this for type and
27961         method generic parameters.
27962         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
27963         (method_builder_encode_signature): Encode generic parameters.
27964         (mono_image_get_method_info): Write generic params to the
27965         MONO_TABLE_GENERICPARAM table.
27966
27967         * reflection.h (MonoReflectionMethodBuilder): Added
27968         `MonoArray *generic_params'.
27969
27970         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
27971
27972         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
27973         wrapper for mono_reflection_define_generic_parameter().
27974         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
27975
27976 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
27977
27978         * marshal.h: Add missing function to fix build.
27979
27980         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
27981         the SetLastError pinvoke attribute.
27982
27983         * marshal.c (mono_marshal_set_last_error): New helper function called
27984         by the generated code.
27985         
27986         * marshal.c (mono_mb_emit_branch): New helper function.
27987
27988         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
27989
27990         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
27991         classes as parameters and return values of delegates. Fixes #29256. 
27992
27993 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
27994
27995         * locales.c: use gint32 in non HAVE_ICU case
27996
27997 2003-10-11  Martin Baulig  <martin@ximian.com>
27998
27999         * mono-debug.c (mono_debug_add_method): Added a workaround for
28000         bug #48591.
28001
28002 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
28003
28004         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
28005         delegates passed to native code must use the STDCALL calling 
28006         convention. Fixes #35987.
28007
28008 2003-10-10  Martin Baulig  <martin@ximian.com>
28009
28010         * class.c (inflate_generic_type): If we're inflating for a generic
28011         type instance (and not for a generic method), return
28012         MONO_TYPE_MVAR unchanged.
28013
28014 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28015
28016         * string-icalls.c: Join ignores null strings in the source array.
28017         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
28018         * threads.c: GetAvailableTheads is slightly more accurate.
28019
28020 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
28021
28022         * threads.h threads.c : add mono_threads_set_default_stacksize
28023         and pass default to CreateThread calls.
28024
28025 2003-10-09  Dick Porter  <dick@ximian.com>
28026
28027         * icall.c:
28028         * locales.h:
28029         * locales.c: Internal calls for constructing CultureInfo and
28030         related objects from libicu (if its available.)
28031
28032 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
28033
28034         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
28035
28036 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28037
28038         * threadpool.c: added an argument to async_invoke_thread that is the
28039         item to process, pass the MonoAsyncResult to the thread start function
28040         when creating a new thread. This way we don't need to acquire any lock
28041         when we're creating a new thread. Readded a semaphore for faster
28042         response times (instead of that Sleep i added).
28043
28044 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
28045
28046         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
28047         get daylight change dates better on Windows, fix handling
28048         of platforms without tm_gmtoff.
28049
28050 2003-10-06  Martin Baulig  <martin@ximian.com>
28051
28052         * class.c (inflate_generic_method): Renamed to
28053         mono_class_inflate_generic_method() and made public.
28054         (mono_class_init): Don't inflate the generic methods here.
28055         (mono_class_from_generic): Added `gboolean inflate_methods'
28056         argument.  Inflate the methods here.
28057
28058         * loader.c (mono_method_get_param_names): Ignore instances of
28059         generic types for the moment.
28060
28061         * reflection.c (fixup_method): Added support for inflated methods.
28062         (mono_image_create_token): Use mono_image_get_methodref_token()
28063         for inflated methods.
28064         (mono_custom_attrs_from_param): Ignore instances of generic types
28065         for the moment.
28066         (mono_reflection_bind_generic_parameters): New public function.
28067         Moved all the functionality from
28068         ves_icall_Type_BindGenericParameters() here and added support for
28069         dynamic types.
28070         (mono_reflection_define_generic_parameter): Initialize
28071         `klass->methods' here.
28072
28073         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
28074         functionality into mono_reflection_define_generic_parameter().
28075         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
28076         TypeBuilder, return that TypeBuilder.
28077
28078 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28079
28080         * appdomain.c: removed mono_delegate_semaphore.
28081
28082         * threadpool.c:
28083         (mono_thread_pool_add): moved hash table creation inside and the thread 
28084         creation outside of the critical region.
28085         (mono_thread_pool_finish): removed obsolete code.
28086         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
28087         continue or exit the thread depending on the queue.
28088
28089 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
28090
28091         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
28092         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
28093         handle more bool marshalling options
28094
28095 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
28096
28097         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
28098         arrays of structs. Also add a more descriptive error message when
28099         a structure member is marshalled as LPArray.
28100
28101 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
28102
28103         * marshal.c (mono_marshal_get_native_wrapper): Add support for
28104         marshalling arrays of complex types. Fixes #29098. Also remove an
28105         usused and incomplete function.
28106
28107 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
28108
28109         * gc.c: report heap_size - free_bytes as total memory allocated
28110         (bug#49362).
28111
28112 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
28113
28114         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
28115         fix timezone handling problems on Windows.
28116         
28117         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
28118         asserts when the year is outside the range handled by ms the functions.
28119
28120         * class.c (setup_interface_offsets): If the class is an interface,
28121         fill out its interface_offsets slot.
28122
28123 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28124
28125         * threadpool.c: mark threadpool threads as background.
28126
28127 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
28128
28129         * decimal.c - define DECINLINE to nothing if not using GCC
28130
28131 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
28132
28133         * assembly.c: More refcount fixes.
28134
28135 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28136
28137         * string-icalls.c: if we're not trimming, return the same string.
28138         When not splitting, don't create a new string.
28139
28140 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28141
28142         * image.c:
28143         (mono_image_open): increment the ref_count inside the critical section.
28144
28145 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
28146
28147         * image.c (mono_image_open): Fix reference counting bug.
28148
28149 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
28150
28151         * marshal.c (mono_marshal_type_size) struct alignment changed for 
28152         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
28153         64bits. Avoid leak in mono_marshal_get_native_wrapper when
28154         mono_lookup_pinvoke_call throws.        
28155
28156 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
28157
28158         * reflection.c (mono_reflection_parse_type): Fix #49114.
28159
28160         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
28161         temporary workaround for cygwin header problem.
28162
28163         * object.c (mono_object_isinst): Synchronize this with the code
28164         generated by the JIT for casts.
28165
28166 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
28167
28168         * reflection.c (encode_type): Fix #38332.
28169
28170 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
28171
28172         * marshal.c (mono_marshal_method_from_wrapper): New function to return
28173         the original method from the wrapper method.
28174
28175 2003-09-25  Martin Baulig  <martin@ximian.com>
28176
28177         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
28178         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
28179         (ves_icall_Type_get_IsGenericInstance): New interncall.
28180
28181 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
28182
28183         * object.c: fix cast warning in big endian code.
28184
28185 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
28186
28187         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
28188         
28189 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28190
28191         * assembly.c: don't call check_env from mono_assembly_load. It's
28192         already done once in mono_assemblies_init and may cause headaches when
28193         multiple threads are loading assemblies.
28194
28195 2003-09-19  Martin Baulig  <martin@ximian.com>
28196
28197         * reflection.c (mono_reflection_define_generic_parameter): Don't
28198         allocate `klass->methods', set `klass->flags' to
28199         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
28200
28201 2003-09-18  Martin Baulig  <martin@ximian.com>
28202
28203         * class.c (mono_class_init): Don't create `class->methods' if it's
28204         already initialized.
28205
28206         * metadata.c (mono_metadata_load_generic_params): Make this
28207         actually work.
28208
28209         * reflection.c (mono_reflection_define_generic_parameter): Set
28210         parent class and interfaces from the constraints.
28211
28212         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
28213         to keep this struct in sync with the declaration in TypeBuilder.cs.
28214
28215 2003-09-17  Martin Baulig  <martin@ximian.com>
28216
28217         * metadata.h (MonoType): Replaced the data's `int type_param'
28218         field with `MonoGenericParam *generic_param'.
28219         (MonoGenericParam): Added `MonoClass *klass'.
28220
28221         * class.c (mono_class_from_gen_param): Removed the
28222         `MonoImage *image' and `int type_num' arguments.
28223
28224         * metadata.c (mono_metadata_parse_generic_param): New static
28225         method; creates a MonoGenericParam which just contains the index.
28226         (do_mono_metadata_parse_type): Call
28227         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
28228         MONO_TYPE_MVAR.
28229
28230         * reflection.c (mono_image_typedef_or_ref): Generic type
28231         parameters may be in the same assembly, but never use a typedef
28232         for them.
28233         (mono_reflection_define_generic_parameter): We're now creating a
28234         "real" class for the type parameter; it's now safe to call
28235         mono_class_from_mono_type() on the class'es type, it'll do the
28236         right thing.
28237
28238 2003-09-16  Martin Baulig  <martin@ximian.com>
28239
28240         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
28241         `symfile->range_entry_size' and `symfile->class_entry_size' here;
28242         the `symfile' data structure must be fully initialized before it
28243         gets added to the table.
28244
28245 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
28246
28247         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
28248
28249         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
28250         class init trampolines.
28251
28252 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
28253
28254         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
28255         to the built-in profiler to turn off time and allocation profiling
28256         respectively.
28257
28258 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
28259
28260         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
28261         g_direct_equal.
28262
28263         * debug-helpers.c (mono_method_full_name): Print the wrapper type
28264         in human readable form.
28265
28266 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
28267
28268         * reflection.c icall.c: Fixed warnings.
28269
28270         * image.c (load_class_names): Use a temporary hash table to hold the
28271         namespaces in order to avoid doing many string comparisons.
28272
28273         * image.h: Fix typo.
28274
28275         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
28276         Pass NULL instead of g_direct_equal to the GHashTable constructor 
28277         since the NULL case is short-circuited inside g_hash_table_lookup, 
28278         leading to better performance.  
28279
28280         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
28281         obtain the first custom attribute for a given index. Depends on the
28282         CustomAttribute table being sorted by the parent field.
28283
28284         * reflection.c (mono_custom_attrs_from_index): Use the new function 
28285         for better performance.
28286
28287 2003-09-07  Martin Baulig  <martin@ximian.com>
28288
28289         * class.c (mono_class_init): If we're a generic instance, inflate
28290         all our methods instead of loading them from the image.
28291         (mono_class_from_generic): Set `class->methods = gklass->methods'.
28292
28293 2003-09-07  Martin Baulig  <martin@ximian.com>
28294
28295         * mono-debug-debugger.c: Added support for constructors.
28296
28297 2003-09-06  Martin Baulig  <martin@ximian.com>
28298
28299         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
28300         New interncall.
28301
28302         * reflection.c (mono_reflection_setup_generic_class): Call
28303         ensure_runtime_vtable() to create the vtable.
28304
28305 2003-09-05  Martin Baulig  <martin@ximian.com>
28306
28307         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
28308         MONO_TYPE_MVAR.
28309
28310 2003-09-04  Martin Baulig  <martin@ximian.com>
28311
28312         * reflection.c (mono_reflection_define_generic_parameter): Generic
28313         parameters start with zero.
28314
28315 2003-09-04  Martin Baulig  <martin@ximian.com>
28316
28317         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28318
28319         * reflection.h (MonoReflectionGenericParam): New typedef.
28320         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
28321         the generic parameters from the managed TypeBuilder.
28322
28323         * reflection.c (mono_reflection_define_generic_parameter): New function.
28324         (mono_reflection_create_runtime_class): Encode generic parameters.
28325         (mono_reflection_setup_generic_class): New function; this is
28326         called after adding adding all generic params to the TypeBuilder.
28327         (encode_type): Added MONO_TYPE_VAR.
28328
28329 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
28330
28331         * class.h class.c (mono_class_needs_cctor_run): Moved this method
28332         here from the JIT.
28333
28334         * assembly.h assembly.c: Moved the AOT loading code into an assembly
28335         load hook.
28336
28337 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
28338
28339         * reflection.h reflection.c class.h class.c: Delete duplicate 
28340         definition of mono_type_get_name () from reflection.c and export the
28341         one in class.c.
28342
28343         * class.c: Class loading fixes from Bernie Solomon 
28344         (bernard@ugsolutions.com).
28345
28346         * reflection.c: Endianness fixes from Bernie Solomon 
28347         (bernard@ugsolutions.com).
28348         
28349 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
28350
28351         * assembly.h assembly.c: Define a file format version for AOT
28352         libraries.
28353         
28354         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
28355
28356         * appdomain.h (MonoJitInfo): New field to determine whenever the
28357         code is domain neutral.
28358         
28359 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
28360
28361         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
28362
28363 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
28364
28365         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
28366         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
28367         Avoid caching the result since strings must be domain specific. Fixes
28368         #48050.
28369
28370 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
28371
28372         * marshal.c (mono_marshal_init): Make this callable multiple times
28373         since it is hard to find a correct place to call it.
28374
28375         * object.c (mono_runtime_class_init): Execute static constructors in
28376         the correct appdomain.
28377
28378         * image.c (build_guid_table): Handle the case when multiple images have
28379         the same GUID.
28380
28381 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28382
28383         * icall.c: added a couple of icalls for System.Web.
28384
28385 2003-08-28  Martin Baulig  <martin@ximian.com>
28386
28387         * icall.c (ves_icall_Type_BindGenericParameters): Use
28388         `klass->generic_inst' instead of `&klass->byval_arg' in the
28389         mono_type_get_object() call.  The returned type must be
28390         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
28391
28392 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
28393
28394         * NOTES: New file.
28395
28396         * object.c (mono_class_proxy_vtable): Make it thread safe.
28397
28398         * pedump.c: Fix warning.
28399
28400         * object.c appdomain.h: Get rid of metadata_section. 
28401         It is no longer needed and it was causing deadlocks with domain->lock.
28402
28403         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
28404
28405 2003-08-26  Martin Baulig  <martin@ximian.com>
28406
28407         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
28408
28409 2003-08-26  Martin Baulig  <martin@ximian.com>
28410
28411         * pedump.c (main): Call mono_metadata_init(),
28412         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
28413         and mono_loader_init().
28414
28415 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
28416
28417         * loader.h: Add missing include to fix build.
28418
28419         * image.h: mono_image_load_references is no more.
28420
28421         * assembly.c: Reworked assembly loading to make it really thread safe.
28422         After these changes, the assembly returned by mono_assembly_open is
28423         fully initialized, i.e. all its references assemblies are loaded.
28424
28425         * assembly.c (mono_image_load_references): Renamed to 
28426         mono_assembly_load_references, and made private, since clients no
28427         longer need to call it.
28428
28429         * class.c: Removed calls to mono_assembly_load_references, since it was
28430         a source of deadlocks.
28431
28432         * loader.h loader.c class.h class.c: Protect data structures using a 
28433         new lock, the loader lock.
28434
28435         * class.c (mono_class_setup_vtable): Create temporary hash tables and
28436         GPtrArrays only when needed.
28437
28438         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
28439         into empty structures by mcs. Fixes pinvoke7.cs.
28440         
28441         * domain.c (mono_init): Call a new initialization function.
28442
28443         * appdomain.c (mono_runtime_init): Call the new initializer function
28444         of the marshal module.
28445
28446         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
28447         inserted into empty structures by mcs. Fixes pinvoke7.cs.
28448
28449         * marshal.h marshal.c: Added locks around the wrapper caches to make
28450         this module thread safe.
28451
28452         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
28453         this argument. Fixes pinvoke1.exe.
28454
28455 2003-08-25  Lluis Sanchez <lluis@ximian.com>
28456
28457         * object.h: Added call_type field to MonoMethodMessage and the corresponding
28458         enumeration of values. Removed fields to store remote call output values in
28459         MonoAsyncResult. Not needed any more.
28460         * object.c: Initialize call_type and async_result fields in mono_message_init.
28461         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
28462         dispatching the message.
28463         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
28464         async call to finish. To do it use a message with EndInvoke call type.
28465
28466 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
28467
28468         * loader.h loader.c (mono_method_hash_marhal_info): New function which
28469         determines whenever a method has marshalling info.
28470
28471 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28472
28473         * assembly.c: fix the build on windows.
28474
28475 2003-08-22 Lluis Sanchez <lluis@ximian.com>
28476
28477         * object.cs: Fixed bug #47785.
28478
28479 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
28480
28481         * string-icalls.c (StringReplace): If their are no occurances of
28482         the old string found return a reference to the supplied
28483         string. This saves some memory and matches MS behavoir.
28484         
28485 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28486
28487         * socket-io.c: fixed compilation for systems that define AF_INET6
28488         and don't define SOL_IP/SOL_IPV6.
28489
28490 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
28491
28492         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
28493         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
28494
28495         * rawbuffer.c rawbuffer.h: Make this module thread safe.
28496
28497         * domain.c: Make this module thread safe.
28498
28499         * domain.c (mono_init): Call new initialization function.
28500
28501         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
28502         reference types too. Fixes #38812.
28503
28504         * image.c (mono_image_init): Fixed warnings.
28505
28506         * class.c (mono_class_from_typeref): Handle assembly load failure
28507         correctly.
28508
28509         * appdomain.c (add_assemblies_to_domain): Handle the case when
28510         the references of an assembly are not yet loaded.
28511
28512         * metadata.c image.c assembly.c: Moved initialization of global
28513         variables to a separate function called at startup since lazy 
28514         initialization of these variables is not thread safe.
28515         
28516         * image.c assembly.c: Made this module thread safe by adding locks in 
28517         the appropriate places.
28518
28519         * domain.c (mono_init): Call the new initialization functions of the
28520         three modules.
28521
28522 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
28523
28524         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
28525           make a direct call. It is proxy's work to make the call asynchronous.
28526           mono_delegate_end_invoke(): If the targe is a proxy, just collect
28527           the return values.
28528         * object.cs: mono_method_call_message_new(): read AsyncResult and
28529           state object from parameters list, if this info is requested.
28530         * object.h: Added fields to store remote call output values in
28531           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
28532
28533 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
28534
28535         * object.h: add needed fields to MonoThread.
28536         * threads.c, threads.h: allow registering a function to cleanup data
28537         allocated per thread by the JIT.
28538
28539 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
28540
28541         * loader.h: portability fix by Bernie Solomon
28542         * <bernard@ugsolutions.com>.
28543
28544 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
28545
28546         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
28547         return a MonoArray. This simplifies the code and also ensures that
28548         the cache allways contains an object reference as a value.
28549
28550         * icall.c (ves_icall_get_parameter_info): Simplified using the new
28551         function.
28552
28553 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28554
28555         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
28556         fixes a problem with byte ordering when getting the address family for
28557         a socket.
28558
28559 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
28560
28561         * .cvsignore: Added monosn.
28562
28563         * reflection.h reflection.c loader.c: Added support for parameter
28564         marshalling to dynamically created types. Fixes #47295.
28565
28566 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
28567
28568         * rand.c: remove useless warnings.
28569
28570 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
28571
28572         * class.c: implemented ldtoken for methods and fieldrefs.
28573
28574 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28575
28576         * threadpool.c: when mono_async_invoke was called, no one took care of
28577         monitoring the queue. So if the method invoked took some time and we
28578         got new async invoke requests after 500 ms (the thread created waited
28579         that long in WaitForSingleObject), the new async invoke was not called
28580         until the previous one finished.
28581
28582         This is fixed now. Thanks to Totte for helping with it.
28583
28584 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28585
28586         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
28587
28588 2003-08-11  Martin Baulig  <martin@ximian.com>
28589
28590         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
28591
28592 2003-08-06  Martin Baulig  <martin@ximian.com>
28593
28594         * mono-debug-debugger.c: Added support for static fields,
28595         properties and methods.
28596
28597 2003-08-06  Martin Baulig  <martin@ximian.com>
28598
28599         * mono-debug-debugger.c: Don't store the MonoString's vtable to
28600         make this work for applications with multiple application domains.
28601
28602 2003-08-04  Martin Baulig  <martin@ximian.com>
28603
28604         * mono-debug-debugger.c: Completely reworked the type support; the
28605         most important thing is that we're now just using one single
28606         `MonoType' instance per type.
28607
28608 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
28609
28610         * mono-endian.h, mono-endian.c, icall.c: Added icall
28611         ves_icall_System_Double_AssertEndianity to assert double word endianity
28612         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
28613
28614 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
28615
28616         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
28617         support, icalls and fixes.
28618
28619 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
28620
28621         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
28622         classes that are a punctuation character in .NET is not the same a
28623         g_unichar_ispunct.
28624
28625 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
28626
28627         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
28628
28629 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
28630
28631         * icall.c: Add new MemCopy internalcall.
28632         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
28633         Simplified code; It is not necessary to handle all the cases here,
28634         as the C# code takes care of it.  Only handle the case of the name
28635         resource embedded into the assembly.
28636
28637         Changed signature to return the data pointer and the size of the
28638         data. 
28639
28640 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
28641
28642         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
28643         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
28644
28645 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
28646
28647         * socket-io.c: ignore EINTR error in select.
28648
28649 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
28650
28651         * class.h, class.c: removed unused subclasses field in MonoClass.
28652
28653 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
28654
28655         * icall.c: improve fix of get_base_definition(). If the parent class
28656           doesn't have the mehod, look at the parent of the parent.
28657         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
28658           to check if a parameter is an in or out parameter
28659           (PARAM_ATTRIBUTE_IN is not set by default).
28660           mono_method_return_message_restore(): Use mono_class_value_size to
28661           get the size of a value type. mono_type_stack_size (parameterType)
28662           does not return the correct value if parameterType is byRef.
28663           mono_load_remote_field(), mono_load_remote_field_new(),
28664           mono_store_remote_field(), mono_store_remote_field_new():
28665           raise exception if the remote call returns an exception.
28666
28667 2003-07-28  Martin Baulig  <martin@ximian.com>
28668
28669         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
28670         method.  This is a wrapper around mono_runtime_invoke() which
28671         boxes the instance object if neccessary.
28672
28673 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
28674
28675         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
28676         metadata.h, row-indexes.h, verify.c: first cut of generics support.
28677
28678 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
28679
28680         * icall.c: disable mcs bug workaround.
28681
28682 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
28683
28684         * object.c (mono_runtime_class_init): Take the metadata_section
28685         mutex before obtaining the domain mutex.
28686
28687         * appdomain.h: Added definition of metadata_section mutex here. 
28688
28689         * object.c: define metadata_mutex here.
28690
28691 2003-07-24  Ravi Pratap  <ravi@ximian.com>
28692
28693         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
28694         fixed.
28695
28696 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
28697
28698         * reflection.c: Fix bug #46669
28699
28700 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28701
28702         * exception.c:
28703         * exception.h:
28704         * icall.c:
28705         * object.h: fill in the type name for TypeLoadException.
28706
28707 2003-07-23  Ravi Pratap  <ravi@ximian.com>
28708
28709         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
28710         relationship between TypeBuilders while compiling corlib) and bug
28711         45993 (Array types returned from the runtime while compiling
28712         corlib were from the loaded corlib).
28713
28714 2003-07-22  Martin Baulig  <martin@ximian.com>
28715
28716         * mono-debug-debugger.c: Reworked the type support a bit more;
28717         distinguish between types and classes.
28718
28719 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
28720
28721         * icall.c: add IsArrayImpl icall.
28722
28723 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
28724
28725         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
28726         initializing real_size only once. Also fix bug #46602.
28727
28728 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
28729
28730         * object.c: Renamed mono_metadata_section to metadata_section.
28731
28732 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
28733
28734         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
28735           empty array if the type is an array. Fixed.
28736           ves_icall_MonoMethod_get_base_definition: if the base method
28737           is abstract, get the MethodInfo from the list of methods of
28738           the class.
28739         * reflection.c: ParameterInfo.PositionImpl should be zero-based
28740           and it was 1-based. Fixed in mono_param_get_objects.
28741
28742 2003-07-20  Martin Baulig  <martin@ximian.com>
28743
28744         * mono-debug.h: Set version number to 31.
28745         (mono_debug_init): Added `MonoDomain *' argument.
28746
28747         * mono-debug-debugger.c: Reworked the type support; explicitly
28748         tell the debugger about builtin types; pass the `klass' address to
28749         the debugger.
28750
28751 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
28752
28753         * image.c: Allow new metadata tables to be loaded without a
28754         warning. Also update the warning message to give the new constant value.
28755                 
28756 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
28757
28758         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
28759         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
28760         array type representation changes.
28761
28762 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
28763
28764         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
28765         on Environment.Exit () call.
28766
28767 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
28768
28769         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
28770         requires a matching corlib.
28771
28772 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
28773
28774         * Changelog: My editor decided to add a CR to each line. Sorry about that.
28775           Committed again without the CRs.
28776         
28777 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
28778
28779         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
28780           getting it from the "this" socket instance. Did not work
28781           if the socket is a subclass of Socket.
28782           Also fixed bug #35371.
28783
28784 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
28785
28786         * metadata.c: fixed size for TypedByRef.
28787         * loader.c: when searching for a method, consider the vararg amrker.
28788         * unicode.c, decimal.c: constify some arrays.
28789
28790 2003-07-15  Dick Porter  <dick@ximian.com>
28791
28792         * socket-io.c: Fixed compilation for gcc < 3.2.
28793
28794         Fixed compilation for machines that don't have AF_INET6 (thanks to
28795         Bernie Solomon <bernard@ugsolutions.com> for that part.)
28796
28797         Fixed compile warnings.
28798         
28799         Fixed formatting and line endings.
28800
28801 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
28802
28803         * socket-io.h:
28804         * socket-io.c: Added IPv6 support.
28805
28806 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
28807
28808         * class.c (mono_class_is_assignable_from): New function to implement
28809         the is_assignable_from logic. Used by mono_object_isinst, 
28810         Type::IsAssignableFrom () and the interpreter.
28811
28812         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
28813         Object, even interfaces.
28814         
28815         * object.c (mono_object_isinst): Implement in terms of 
28816         is_assignable_from.
28817
28818         * icall.c (ves_icall_type_is_assignable_from): New icall.
28819
28820 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
28821
28822         * domain.c (foreach_domain): fix compiler warning.
28823
28824 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
28825
28826         * image.c (load_metadata_ptrs): use g_strndup because strndup is
28827         not available on all plattforms
28828
28829 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
28830
28831         * image.h image.c: Store the metadata version string in MonoImage.
28832         * icall.c: New icall to retrieve the image version.
28833         * reflection.c (create_dynamic_image): Fill in the image version field
28834         * reflection.c (build_compressed_metadata): Use the image version
28835         from the image structure.
28836
28837 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28838
28839         * appdomain.c: modified comment.
28840         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
28841         That will be its last iteration when mono_gc_cleanup is called from
28842         mono_runtime_cleanup and before the domain is unloaded.
28843
28844         Fixes bug #45962.
28845
28846 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
28847
28848         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
28849         attributes.
28850
28851 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
28852
28853         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
28854         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
28855         Bernie Solomon <bernard@ugsolutions.com>.
28856
28857 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
28858
28859         * object.c, object.h: provide mono_object_new_fast() for faster
28860         allocation in some special cases.
28861
28862 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
28863
28864         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
28865         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
28866
28867 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
28868
28869         * threadpool.c: fix leaks.
28870
28871 2003-07-01  Dick Porter  <dick@ximian.com>
28872
28873         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
28874         using MonoGHashTables.  Fixes threadpool bug posted to list.
28875
28876 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
28877
28878         * image.h, image.c: added support to load an assembly from a byte array.
28879         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
28880         assembly bundle support.
28881
28882 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
28883
28884         * threadpool.c (mono_thread_pool_add): keep a reference to the
28885         AsyncResult to prevent GC
28886
28887 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
28888
28889         * class.c: leak fix.
28890
28891 2003-06-25  Dick Porter  <dick@ximian.com>
28892
28893         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
28894         for the async object, the WaitHandle object will close the handle.
28895         Fixes bug 45321.
28896
28897 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
28898
28899         * class.c: in mono_array_class_get (), lookup from the hash with the
28900         same type we insert: this works around a bug in
28901         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
28902         lluis. The real fix will have to wait for after the release.
28903
28904 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
28905
28906         * icall.c: fix memory leak when getting type members.
28907
28908 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
28909
28910         * reflection.c: added more pubtoken special cases.
28911
28912 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
28913
28914         * class.c: handle field offset correctly when class size
28915         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
28916
28917 2003-06-20  Martin Baulig  <martin@ximian.com>
28918
28919         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
28920         *image' field.
28921
28922 2003-06-20  Martin Baulig  <martin@ximian.com>
28923
28924         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
28925
28926 2003-06-20  Martin Baulig  <martin@ximian.com>
28927
28928         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
28929         just distinguish between variables in registers and variables at
28930         an offset relative to a register.
28931
28932 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28933
28934         * icall.c: #ifdef out latest changes until mcs is fixed.
28935
28936 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
28937
28938         * icall.c: return members in metadata order.
28939
28940 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
28941
28942         * icall.c: avoid infinite loop in GetTimeZoneData.
28943
28944 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
28945
28946         * icall.c: added Marshal.Prelink/All icalls.
28947
28948 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
28949
28950         * object.c, object.h: fix warnings and do some overflow checking
28951         when creating arrays.
28952
28953 2003-06-17  Dick Porter  <dick@ximian.com>
28954
28955         * file-io.h:
28956         * file-io.c: File attributes need to be tweaked slightly when
28957         passed from the managed to the w32 world.
28958
28959 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
28960         * profiler.h profiler-private.h profiler.c: Rework last patch
28961         based on suggestion by Paolo.
28962         
28963 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
28964
28965         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
28966         instruction level coverage data collection.
28967         * profiler.h profiler.c (: Added new callback function which can be
28968         used by the profiler to limit which functions should have coverage
28969         instrumentation.
28970         * profiler.c (mono_profiler_load): Call g_module_build_path to
28971         generate the file name of the profiler library.
28972
28973 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
28974
28975         * profiler.c, profiler.h, profiler-private.h: added basic block 
28976         coverage profiling API.
28977
28978 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
28979
28980         * reflection.c (mono_reflection_create_runtime_class): Add support
28981         for events in dynamically generated code.
28982
28983         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
28984         not allocated.
28985
28986 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
28987
28988         * icall.c: when getting timezone info, return reasonable values if we
28989         can't get the actual data.
28990
28991 2003-06-14  Dick Porter  <dick@ximian.com>
28992
28993         * threads.c (start_wrapper): Remove the reference to the thread
28994         object in the TLS data, so the thread object can be finalized.
28995         This won't be reached if the thread threw an uncaught exception,
28996         so those thread handles will stay referenced :-( (This is due to
28997         missing support for scanning thread-specific data in the Boehm GC
28998         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
28999
29000 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
29001
29002         * reflection.c: ensure streams and tables are first allocated with
29003         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
29004
29005 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29006
29007         * icall.c: fixed GetElementType for byrefs (bug# 44792).
29008
29009 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
29010
29011         * reflection.c (mono_reflection_create_runtime_class): Add support for
29012         properties to dynamically created classes.
29013         * reflection.c: Fix a few places where non-MonoObjects were inserted
29014         into the tokens hashtable.
29015
29016 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29017
29018         * object.c: some support to handle out of memory exceptions.
29019
29020 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
29021
29022         * marshal.c (mono_marshal_get_native_wrapper): support reference
29023         return types
29024
29025 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
29026
29027         * object.h, object.c: more portability stuff from Bernie Solomon.
29028         Unexport mono_object_allocate(). Added mono_object_unbox ().
29029         Set exitcode when an unhandled exception is thrown.
29030
29031 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
29032
29033         * marshal.c (mono_marshal_get_native_wrapper): use custom
29034         marshaler for return types.
29035
29036 2003-06-10  Dick Porter  <dick@ximian.com>
29037
29038         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
29039         ip_mreq is available
29040
29041 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
29042
29043         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
29044         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
29045         by Bernie Solomon <bernard@ugsolutions.com>.
29046
29047 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
29048
29049         * gc.c (mono_gc_init): Avoid error message on shutdown when
29050         GC_DONT_GC=1 is used.
29051
29052         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
29053         New icall to return the GUID of a module.
29054
29055 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
29056
29057         * class.c: ensure instance size always includes the parent's size
29058         even whem class size is set explicitly (fixes bug#44294).
29059
29060 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
29061
29062         * profiler.h, profiler.c: made the simple profiler thread-safe,
29063         get more accurate timing info. Allow the loading of an
29064         externally-developed profiler module.
29065
29066 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
29067
29068         * marshal.c (mono_marshal_get_native_wrapper): improved
29069         class/byref arguments.
29070         (mono_marshal_get_native_wrapper): better string marshaling support.
29071
29072 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
29073
29074         * class.c: ensure .pack and .size are handled correctly and
29075         simplified layout of static fields.
29076
29077 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
29078
29079         * appdomain.c
29080         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
29081
29082         * loader.c (mono_lookup_pinvoke_call): look for modules in the
29083         current directory (fix bug 44008)
29084
29085 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
29086
29087         * marshal.c (mono_marshal_get_native_wrapper): started support for
29088         custom marshalers.
29089         (mono_delegate_to_ftnptr): consider marshalling specifications
29090
29091 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
29092
29093         * reflection.c, reflection.h: emit custom marshal info.
29094
29095 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29096
29097         * object.c: free the GError.
29098         * icall.c: added CloseEvent_internal.
29099         * threads.[ch]:
29100         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
29101         call.
29102
29103 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
29104
29105         * loader.c (mono_method_get_signature): Add support for dynamic
29106         assemblies.
29107
29108 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
29109
29110         * reflection.c: fixed bug #43905.
29111
29112 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
29113
29114         * class.c, domain.c, icall.c, metadata.h, object.h: support for
29115         handling TypedReference and ArgIterator.
29116         * loader.c, loader.h: added function to get signature at call site.
29117
29118 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29119
29120         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
29121         data readonly. Buglets and warning fixes. Some MethodSpec support.
29122
29123 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
29124
29125         * class.h, class.c, object.c: remove relative numbering support.
29126
29127 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
29128
29129         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
29130         free the string, until we get a chance to fix Gtk#
29131
29132 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29133
29134         * marshal.c: revert last patch.
29135
29136 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
29137
29138         * icall.c: updates for new mono_class_vtable() not calling
29139         the type constructor anymore.
29140
29141 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
29142
29143         * object.h, object.c: separate vtable creation from type
29144         initialization. Make running the .cctor thread safe.
29145
29146 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
29147
29148         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
29149
29150 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
29151
29152         * loader.c (mono_get_method): consider calling convention
29153
29154 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
29155
29156         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
29157         to return the invisible global type for a module.
29158
29159         * reflection.c (mono_image_build_metadata): Emit global fields too.
29160
29161 2003-05-20  Peter Williams  <peterw@ximian.com>
29162
29163         * loader.c (mono_lookup_internal_call): Add a few newlines.
29164
29165 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
29166
29167         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
29168         literal strings.
29169
29170         * appdomain.c (set_domain_search_path): Recalculate search path when
29171         AppDomainSetup.PrivateBinPath changes.
29172
29173         * object.c (mono_class_compute_gc_descriptor): It turns out some
29174         parts of the class libs (like System.Thread) holds pointers to
29175         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
29176         to treat native int a pointer type here.
29177         
29178 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
29179
29180         * appdomain.h, domain.c: add hashtable for jump target resolution.
29181
29182 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
29183
29184         * reflection.h reflection.c icall.c: Added new icalls 
29185         GetManifestResourceInfoInternal, GetModulesInternal and support
29186         infrastructure.
29187
29188 2003-05-16  Dick Porter  <dick@ximian.com>
29189
29190         * icall.c:
29191         * file-io.h:
29192         * file-io.c: Implement System.IO.MonoIO::GetTempPath
29193
29194 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
29195
29196         * object.c: mono_store_remote_field: little fix to previous patch.
29197
29198 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29199
29200         * class.c: add constructors to array classes.
29201         * icall.c: special case array construction for InternalInvoke (),
29202
29203 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
29204
29205         * class.h class.c reflection.c object.c: Added support for field
29206         defaults in dynamically generated classes.
29207
29208 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
29209
29210         * reflection.c: properly encode charset for ddlimport.
29211
29212 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
29213
29214         * threads.c: allow compiling without GC.
29215
29216 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
29217
29218         * appdomain.h, object.c, object.h, threads.c, threads.h: added
29219         handling of thread static data.
29220
29221 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29222
29223         * reflection.h, reflection.c: added mono_custom_attrs_free ().
29224
29225 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
29226
29227         * class.c (mono_array_class_get): always set the serializable flags
29228         (mono_array_class_get): always set the SEALED attribute for array types
29229
29230 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
29231
29232         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
29233         attributes (fix for bug 42021).
29234
29235 2003-05-12  Dick Porter  <dick@ximian.com>
29236
29237         * gc.c: Don't run finalizers when the finalizer thread is
29238         finishing up, because the default domain has already been
29239         destroyed.
29240
29241 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
29242
29243         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
29244         value is null, we should throw an exception.   This is slightly
29245         different than the other conventions used for the constructor.
29246
29247 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29248
29249         * socket-io.c: fixed windows build.
29250
29251 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29252
29253         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
29254
29255 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
29256
29257         * object.c (mono_string_new_wrapper): Compatibility fix for MS
29258         compilers.
29259
29260 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
29261
29262         * class.c (mono_class_layout_fields): Add experimental GC aware
29263         auto layout facility. Requires class library changes to work correctly.
29264
29265         (mono_class_setup_vtable): Avoid overriding explicit interface
29266         method implementations. Fixes iface3.exe test.
29267
29268         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
29269         object reference.
29270         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
29271         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
29272
29273         * metadata.h: Add new type classification macro which determines
29274         whenever the type holds an object reference.
29275
29276 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
29277
29278         * marshal.c (mono_marshal_get_native_wrapper): cleanups
29279
29280 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
29281
29282         * gc.c (finalizer_thread): Work around a GC bug.
29283
29284 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
29285
29286         * marshal.c (emit_struct_conv): allow unions
29287
29288         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
29289
29290 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
29291
29292         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
29293
29294 2003-05-06  Martin Baulig  <martin@ximian.com>
29295
29296         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
29297
29298 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29299
29300         * socket-io.c:
29301         (Select_internal): allow NULLs, don't create arrays if not needed.
29302         Coupled with Socket.cs changes.
29303
29304         * threadpool.c:
29305         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
29306         register a finalizer for it that will close the semaphore handle. This
29307         fixes the leak and make Lupus' test run with > 4080 loops.
29308
29309 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
29310
29311         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
29312         Jerome Laban (bug #42287)
29313
29314 2003-05-02  Martin Baulig  <martin@ximian.com>
29315
29316         * debug-mono-symfile.h
29317         (MonoSymbolFile): Moved declaration into mono-debug.h.
29318         (MonoDebugMethodJitInfo): Likewise.
29319         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
29320         argument.
29321         (_mono_debug_address_from_il_offset): Take a
29322         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
29323
29324         * mono-debug.h
29325         (MonoDebugDomainData): New struct.
29326         (mono_debug_get_domain_data): New function.
29327         (mono_debug_add_method): Take an additional `MonoDomain *'
29328         argument.
29329         (mono_debug_source_location_from_address): Likewise.
29330         (mono_debug_il_offset_from_address): Likewise.
29331         (mono_debug_address_from_il_offset): Likewise.
29332
29333 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
29334
29335         * reflection.c: one more check for null type in custom attrs.
29336
29337 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29338
29339         * reflection.c: avoid warning (comparison is always false due to limited
29340         range of data type).
29341
29342 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29343
29344         * icall.c: throw an exception in Type.GetField if the argument 'name'
29345         is NULL.
29346
29347 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
29348
29349         * reflection.c: fixed handling of enums in named arguments to custom
29350         attributes (bug #42123).
29351
29352 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
29353
29354         * reflection.c: use the right array element type and handle
29355         a null for a Type argument, too.
29356
29357 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
29358
29359         * reflection.c: handle arrays as arguments to custom attributes.
29360
29361 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29362
29363         * reflection.c: handle a string value in a custom attr
29364         ctor that takes an object.
29365
29366 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
29367
29368         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
29369         (fix bug #42063)
29370
29371 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
29372
29373         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
29374
29375 2003-04-27  Martin Baulig  <martin@ximian.com>
29376
29377         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
29378         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
29379         MONO_DEBUGGER_EVENT_BREAKPOINT.
29380         (mono_breakpoint_trampoline_code): Removed.
29381         (mono_debugger_event_handler): The last argument is now a
29382         `guint32'.
29383         (mono_debugger_insert_breakpoint_full): Removed the
29384         `use_trampoline' argument.
29385         (mono_debugger_method_has_breakpoint): Likewise.
29386         (mono_debugger_trampoline_breakpoint_callback): Renamed to
29387         mono_debugger_breakpoint_callback(); take the method and
29388         breakpoint number as arguments.
29389
29390 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
29391
29392         * metadata.c: fix off by one when loading parameters attributes.
29393
29394 2003-04-24  Martin Baulig  <martin@ximian.com>
29395
29396         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
29397
29398 2003-04-24  Martin Baulig  <martin@ximian.com>
29399
29400         * mono-debug-debugger.c: Moved all code which interacts with the
29401         Mono Debugger here.
29402
29403         * debug-mono-symfile.c: This code now just deals with the symbol
29404         file itself, the debugger code is now in mono-debug-debugger.c.
29405
29406 2003-04-23  Martin Baulig  <martin@ximian.com>
29407
29408         * mono-debug.c (mono_debug_source_location_from_il_offset):
29409         New method; like mono_debug_source_location_from_address(), but
29410         takes an IL offset instead of a machine address.
29411
29412 2003-04-23  Martin Baulig  <martin@ximian.com>
29413
29414         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
29415         `line' field; this is now computed by the debugger.
29416
29417 2003-04-23  Martin Baulig  <martin@ximian.com>
29418
29419         * mono-debug.[ch]: New files.  This is the new debugging interface.
29420
29421         * mono-debug-debugger.[ch]: New files.  Moved all code which
29422         interacts with the Mono Debugger here.
29423
29424 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
29425
29426         * domain.c (mono_init): initialize mono_defaults.monitor_class
29427
29428 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
29429
29430         * reflection.c (method_encode_code): Add a spicy exception to help
29431         future compiler authors.
29432
29433 2003-04-21  Martin Baulig  <martin@ximian.com>
29434
29435         * icall.c
29436         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
29437         Make this work with relative pathnames; g_filename_to_uri() needs
29438         an absolute filename.
29439
29440 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
29441
29442         * icall.c: Track name changes in Object and ValueType.
29443
29444 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
29445
29446         * metadata.c (mono_type_stack_size): size should be a multiple of
29447         sizeof (gpointer)
29448
29449 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29450
29451         * gc.c:
29452         (internal_domain_finalize): moved into mono_domain_finalize. No need
29453         to create another thread because the finalizers will be run in the
29454         finalizer thread.
29455         
29456         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
29457         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
29458         to be run (MS does this too).
29459
29460 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
29461
29462         * object.c (mono_class_compute_gc_descriptor): Update comment.
29463
29464         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
29465
29466         * image.h: Add synchronized wrapper cache.
29467
29468         * image.c (do_mono_image_open): Initialize cache.
29469
29470         * reflection.c (create_dynamic_mono_image): Initialize cache.
29471
29472 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29473
29474         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
29475         ves_icall_System_Buffer_ByteLengthInternal.
29476
29477 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29478
29479         * reflection.c: setup klass->nested_in earlier. Allow
29480         a dash in the assembly name.
29481
29482 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
29483
29484         * metadata.c (mono_type_to_unmanaged): dont access
29485         type->data.klass for MONO_TYPE_OBJECT
29486         (mono_type_to_unmanaged): consider System.Delegate class
29487
29488 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
29489
29490         * class.c: just setup supertypes in the proper place instead of
29491         initializing the full element class for arrays.
29492
29493 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
29494
29495         * class.c: ensure the element class of arrays is initialized.
29496         Setup the supertype info for array classes, too.
29497
29498 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
29499
29500         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
29501
29502 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29503
29504         * Makefile.am: re-added -m option when running cygpath. This way,
29505         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
29506         separator.
29507         * mono-config.c: same codepath for locating mono config file for WIN32
29508         and the rest.
29509         * assembly.c: if mono_assembly_setrootdir is called, don't override
29510         the value set.
29511
29512 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29513
29514         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
29515         MONO_ASSEMBLIES variable.
29516
29517 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
29518
29519         * icall.c: added Assembly::GetNamespaces() icall.
29520
29521 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29522
29523         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
29524
29525 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
29526
29527         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
29528         * object.c: fixed bug in the construction of vtable for proxies
29529
29530 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
29531
29532         * object.c (mono_array_new): Mark mono_array_new as an icall.
29533
29534 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29535
29536         * class.c: fixed test for public method when overriding interfaces.
29537         Closes bug #40970.
29538
29539 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
29540
29541         * appdomain.h, domain.c: added mono_domain_foreach() to
29542         be able to access the currently loaded appdomains.
29543         * object.c: make string interning work across sppdomains.
29544         Mark some functions for use as icalls.
29545
29546 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
29547
29548         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
29549
29550         * reflection.h reflection.c: Allocate long living data using 
29551         GC_MALLOC_ATOMIC so the collector does not need to scan it.
29552
29553         * reflection.c: Double the allocation size in streams instead of
29554         increasing it, to prevent unneccesary copying on large assemblies.
29555         
29556         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
29557         creation if the assembly does not have the Run flag set.
29558
29559 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
29560
29561         * class.h: avoid the C++ keywords in header files (Jerome Laban
29562         spotted and fixed this).
29563
29564 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29565
29566         * object.c:
29567         (mono_unhandled_exception): fill in the arguments for the
29568         UnhandledException event. Only trigger that event for the default
29569         domain (as MS does).
29570
29571 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
29572
29573         * object.c: Improve typed allocation stuff based on suggestions from
29574         Paolo. Also turn it on if the GC library supports it.
29575
29576 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
29577
29578         * object.c object.h class.h: Added experimental typed allocation
29579         facility using the interfaces in gc_gcj.h.
29580
29581         * os/gc_wrapper.h: Added new include files.
29582         
29583 2003-04-03  Martin Baulig  <martin@ximian.com>
29584
29585         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
29586         which is not yet enabled by default.
29587
29588         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
29589         functions.
29590         (mono_gc_lock, mono_gc_unlock): New static functions.
29591
29592         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
29593         functions; stop/start the world for the garbage collector.  This
29594         is using the windows API; we need to complete the SuspendThread()/
29595         ResumeThread() implementation in the io-layer to make this work on Unix.
29596         (mono_gc_push_all_stacks): New public function; tells the garbage
29597         collector about the stack pointers from all managed threads.
29598
29599 2003-04-03  Martin Baulig  <martin@ximian.com>
29600
29601         * object.h (MonoThread): Added `gpointer stack_ptr'.
29602
29603         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
29604
29605 2003-04-03  Martin Baulig  <martin@ximian.com>
29606
29607         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
29608
29609 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
29610
29611         * reflection.c (typebuilder_setup_fields): Initialize field.first and
29612         field.last.
29613
29614 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
29615
29616         * loader.c (mono_lookup_internal_call): Report the corlib that is
29617         out of sync.
29618
29619 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
29620
29621         * icall.c (ves_icall_type_GetTypeCode): fixed check for
29622         System.DBNull (it's class not valuetype).
29623
29624 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
29625
29626         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
29627         if the array method was already assigned a token (fixes bug#40646).
29628
29629 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
29630
29631         * reflection.c (mono_reflection_get_type): Attempt type resolve even
29632         if no assembly is given.
29633
29634 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
29635
29636         * metadata.h: Added the new tables.
29637
29638         * row-indexes.h: Added definitions for new tables.
29639
29640         * metadata.c: Add schemas for new tables, and add support for
29641         computing the sizes of them.
29642
29643         * class.c: Update for handling the new type cases.
29644
29645 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
29646
29647         * metadata.h (MONO_TYPE_IS_VOID): new macro
29648
29649 2003-03-31  Martin Baulig  <martin@ximian.com>
29650
29651         * threads.h (MonoThreadCallbacks): Added `thread_created'.
29652
29653         * threads.c (mono_thread_new_init): Call `thread_created' in the
29654         mono_thread_callbacks.
29655
29656 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
29657
29658         * loader.h: added marshalbyrefobject_class to mono_defaults
29659         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
29660         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
29661           generation of output parameters.
29662           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
29663         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
29664           contextbound and the target object belongs to the context of the caller.
29665         * object.h: added context and unwrapped_server variables in MonoRealProxy.
29666         * object.c: Implemented support for interfaces and abstract classes
29667           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
29668           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
29669
29670 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
29671
29672         * class.h class.c (mono_class_is_subclass_of): New function.
29673         
29674         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
29675         routines for most common case (calls from ArrayList::ToArray).
29676
29677         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
29678         routine so programs which call Environment::Exit() can be profiled.
29679
29680         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
29681         Added MONO_ARCH_SAVE_REGS.
29682
29683         * icall.c (ves_icall_type_is_subtype_of): Use new function.
29684
29685 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
29686
29687         * blob.h: Add a couple of new MonoType types definitions.
29688
29689         * tabledefs.h: Add a couple of new call convs.
29690
29691 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
29692
29693         * reflection.h (MonoReflectionDynamicAssembly): track changes in
29694         the layout of the class.
29695
29696         * reflection.c (alloc_table): double the size on overflow to avoid
29697         unnecessary copying.
29698
29699         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
29700         avoid filling out metadata tables and blobs. Also set mb->ilgen to
29701         null so it can be garbage collected.
29702         
29703 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
29704
29705         * reflection.c (mono_reflection_get_type): Return the resolved type
29706         only if it is in the assembly we searched.
29707
29708         * reflection.c (ensure_runtime_vtable): Initialize method slots.
29709
29710         * class.c (mono_class_setup_vtable): Set the slot of the overriding
29711         method.
29712
29713 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29714
29715         * appdomain.c:
29716         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
29717         the right one is 'file:///blah', but MS allows it.
29718         * assembly.c:
29719         (mono_assembly_open): allow 'file://blah'
29720
29721         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
29722
29723 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
29724
29725         * socket-io.c: fixes bug #40310.
29726
29727 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
29728
29729         * reflection.c (mono_reflection_parse_type): handle deeply nested
29730         types correctly.
29731
29732         * reflection.c (mono_image_create_token): Use unique token values
29733         since they will be put into a hash table.
29734
29735         * class.c (mono_class_setup_vtable): If a method occurs in more than
29736         one place in the vtable, and it gets overriden, then change the
29737         other occurances too.
29738
29739         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
29740         object as return type.
29741
29742 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
29743
29744         * icall.c: Deleted "ToString" implementation for double and float
29745         because they are full implemented in managed code.
29746
29747 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
29748
29749         * reflection.c, reflection.h: implemented and exported functions
29750         to retrieve info about custom attributes.
29751
29752 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29753
29754         * appdomain.c: moved Uri handling to assembly.c
29755         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
29756         work when using a file Uri in *nix and windows.
29757
29758         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
29759         GetReferencedAssemblies.
29760
29761 2003-03-18  Dick Porter  <dick@ximian.com>
29762
29763         * icall.c: Rename a couple of internal calls
29764
29765         * threads.c: Set the thread state to Stopped when a thread exits.
29766         Fixes bug 39377.
29767
29768 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
29769
29770         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
29771         New icall.
29772
29773         * object.c (mono_class_vtable): fix warning.
29774
29775 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
29776
29777         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
29778
29779         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
29780         memory.
29781         (method_encode_clauses): Create exception info structures in the right
29782         order.
29783         (mono_reflection_setup_internal_class): Initialize supertypes field.
29784
29785         * class.c object.c: Handle interfaces which implement other interfaces 
29786         correctly.
29787
29788         * class.h class.c: Move the supertypes array initialization code into 
29789         a separate function so it can be used for dynamic types too. Also call
29790         it earlier, in mono_class_init(), since it can be used before the
29791         type is initialized.
29792
29793 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29794
29795         * Makefile.am:
29796         * assembly.c:
29797         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
29798
29799         * appdomain.c:
29800         * appdomain.h:
29801         * marshal.c:
29802         * object.c: remove warnings.
29803
29804 2003-03-13  Martin Baulig  <martin@ximian.com>
29805
29806         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
29807         (MonoDebugLexicalBlockEntry): New types.
29808
29809         * debug-mono-symfile.c
29810         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
29811
29812 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29813
29814         * process.c: ret can be any non-zero value accroding to MS doc.
29815
29816 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
29817
29818         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
29819         fixing a warning for a miss-used prototype, would have cause
29820         random memory corruption.
29821
29822 2003-03-07  Martin Baulig  <martin@ximian.com>
29823
29824         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
29825         getting really annoying ....
29826
29827 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
29828
29829         * reflection.c (fixup_method): added support for array methods.
29830
29831 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
29832
29833         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
29834         (pointed out by Michael Adams).
29835
29836 2003-03-04  Dick Porter  <dick@ximian.com>
29837
29838         * icall.c: Temporarily reverted the Double and Single ToString()
29839         change, because it broke nunit.
29840
29841 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
29842
29843         * object.h, threads.h: make include files compatible with C++
29844         (patch by Jerome Laban <jlaban@wanadoo.fr>).
29845
29846 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
29847
29848         * icall.c: Erased ToString helper functions for Double and Single.
29849         Now, that implementations ar all in managed code (Double and Single
29850         Formatters).
29851
29852 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
29853
29854         * appdomain.c: Added method for initializing the default context of
29855         a domain. Added internal call for getting the default context.
29856         * appdomain.h: Added context variable in MonoDomain struct.
29857         * domain.c: mono_domain_set also sets the default context of the domain
29858         * icall.c: Mapped internal method InternalGetDefaultContext.
29859         * object.c: mono_object_get_virtual_method returns always a remoting
29860         wrapper if the object is a transparent proxy.
29861         mono_runtime_invoke_array: when creating an object by calling the
29862         constructor, if the created object is a proxy, then the constructor should
29863         be called using the a remoting wrapper.
29864
29865 2003-03-03  Dick Porter  <dick@ximian.com>
29866
29867         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
29868         variable so it compiles on solaris.  Problem spotted by
29869         Christopher Taylor <ct@cs.clemson.edu>
29870
29871 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29872
29873         * appdomain.c:
29874         (get_info_from_assembly_name): don't leak value.
29875
29876         * icall.c:
29877         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
29878         result.
29879
29880 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
29881
29882         * assembly.c: export mono_image_load_references ().
29883         * class.c: handle function pointers. mono_class_from_name() now
29884         supports nested type names directly.
29885
29886 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
29887
29888         * reflection.h reflection.c: Encode already created dynamic methods 
29889         and fields correctly as a DEF instead of a REF.
29890
29891         * reflection.c: Get rid of the force_ref argument to 
29892         mono_image_typedef_or_ref since it was wrong in the first place.
29893
29894         * string-icalls.c: add error checking to string constructors according
29895         to the MSDN docs.
29896
29897         * reflection.c: Emit types in the order their TypeBuilders were 
29898         created. Previously, a new table index was assigned to each type before
29899         the tables were emitted. This was wrong because the signature blob
29900         might already refer to a type by its original table index.
29901
29902 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
29903
29904         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
29905         change.
29906         
29907 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29908
29909         * Makefile.am: make assemblies dir have \ instead of / on windows.
29910
29911 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
29912
29913         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
29914         iterate over the NESTEDCLASS table using a linear search since the
29915         table is not guaranteed to be sorted by the secondary key.
29916
29917         * class.c (mono_class_create_from_typedef): fixed up call to
29918         mono_metadata_nesting_typedef.
29919         
29920 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
29921
29922         * marshal.c (mono_string_to_byvalstr): clear the memory as
29923         suggested by Jerome Laban <jlaban@wanadoo.fr>
29924
29925 2003-02-26  Dick Porter  <dick@ximian.com>
29926
29927         * process.c: Cope with padding in .rsrc blocks
29928
29929 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
29930
29931         * metadata.h: reverted the filter_len change, it breaks reflection
29932         
29933 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
29934
29935         * metadata.h: added a new field to store the filter_len
29936         
29937
29938 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
29939
29940         * reflection.c: handle custom attributes for types and members
29941         created with Reflection.Emit (bug#38422).
29942
29943 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
29944
29945         * reflection.c: define RTSpecialName automatically for constructors for
29946         compatibility with MS.NET.
29947
29948         * reflection.c (mono_reflection_create_runtime_class): initialize
29949         nested_in field of dynamically created classes.
29950
29951 2003-02-22  Martin Baulig  <martin@ximian.com>
29952
29953         * debug-mono-symfile.h: Incremented version number.
29954
29955 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
29956
29957         * object.h icall.c process.c: fix warnings.
29958
29959 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
29960
29961         * appdomain.h appdomain.c:
29962         (mono_domain_try_type_resolve): split the 
29963         name_or_tb argument into a name and a tb argument.
29964         (mono_domain_has_type_resolve): new function to check whenever the
29965         application has registered a TypeResolve event handler.
29966         
29967         * icall.c reflection.h reflection.c: move the type resolve logic into
29968         mono_reflection_get_type () so it will be invoked when 
29969         Assembly::GetType () is called.
29970
29971         * reflection.c:
29972         (mono_reflection_get_type): renamed to get_type_internal.
29973         (mono_reflection_get_type): fixed type name generation so it works 
29974         for nested types too.
29975         (mono_reflection_get_type): call has_type_resolve () to avoid the 
29976         costly type name generation if there is no resolve event handler.
29977
29978 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
29979
29980         * class.c, image.c: load exported types from file references.
29981
29982 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
29983
29984         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
29985           used to cache the managed methods used to create proxies and make 
29986           remote invocation of methods.
29987         * class.h: Added in MonoVTable a flag to indicate that a class needs 
29988           to be remotely created.
29989         * object.c: Modified the method mono_class_vtable(). It now initializes 
29990           the remote flag of the vtable. Modified mono_object_new_specific(), 
29991           so now it checks the remote flag.
29992         * icall.c: Added a couple of internal methods, one for enabling instance 
29993           creation interception for a type, and one for creating objects bypassing
29994           the remote check.
29995
29996 2003-02-18  Martin Baulig  <martin@ximian.com>
29997
29998         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
29999         New interncall to get a method's metadata token.
30000
30001         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
30002         New interncall for the debugger.
30003
30004 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
30005
30006         * class.c (mono_class_setup_vtable): allocate supertype array
30007
30008 2003-02-18  Martin Baulig  <martin@ximian.com>
30009
30010         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
30011
30012 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30013
30014         * reflection.c:
30015         (assembly_name_to_aname): jump over unknown properties (i've found
30016         something like: 'type, assembly, version=xxx, custom=null, public...',
30017         so now will ignore custom=null and still get the rest of the values).
30018
30019 2003-02-17  Dick Porter  <dick@ximian.com>
30020
30021         * threads.c: Have Thread.Start() wait for a semaphore to signal
30022         that the thread has set up all its local data.  This fixes bug
30023         34323, where Abort() raced the new thread's TLS data.
30024
30025         Also removes the handle_store() call from start_wrapper, because
30026         threads are now always created suspended and there is no longer a
30027         race between the parent and child threads to store the info.
30028
30029 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
30030
30031         * image.c: explain the #- heap issue in a message, hopefully
30032         avoiding FAQs on mono-list.
30033
30034 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30035
30036         * icall.c:
30037         (GetEntryAssembly): if the domain has not invoked
30038         AppDomain.ExecuteAssembly yet, return the assembly of the default
30039         AppDomain.
30040
30041 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
30042
30043         * class.c (mono_ldtoken): make it work in dynamic assemblies.
30044
30045 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
30046
30047         * metadata.c, reflection.c: simple speedup to type hash
30048         and equals code.
30049
30050 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
30051
30052         * image.c, image.h, class.c, assembly.c: move module loading
30053         to MonoImage. When loading metadata, consider alignemnet from
30054         the start of metadata, not from the metadata address in memory.
30055
30056 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
30057
30058         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
30059         AssemblyBuilder objects. Factored out custom attribute creation into
30060         a separate function.
30061         (create_custom_attr): new function to create custom attributes.
30062
30063 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
30064
30065         * Makefile.am: Got tired of typing the full pathname to pedump.
30066         Until there is another option, am installing this.
30067
30068 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
30069
30070         * class.c (class_compute_field_layout): always set field->parent 
30071         (mono_ldtoken): use mono_defaults.fieldhandle_class;
30072
30073 2003-02-11  Dick Porter  <dick@ximian.com>
30074
30075         * threads-types.h:
30076         * monitor.c: Rewrote Monitor, making lock much faster and
30077         Pulse/Wait work as specified.  Also uses much fewer handles, and only
30078         creates them as needed.
30079
30080         * exception.c: Added SynchronizationLockException
30081
30082         * threads.c: Deleted old Monitor implementation.  The new one is
30083         in a new file.
30084
30085 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
30086
30087         * class.c: handled TypedReference type code. Set the correct size for
30088         class data. Setup interface_offsets for interface classes, too.
30089
30090 2003-02-09  Martin Baulig  <martin@ximian.com>
30091
30092         * debug-mono-symfile.h: Reflect latest symbol writer changes.
30093
30094 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
30095
30096         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
30097         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
30098         * object.c: fixed mono_object_get_virtual_method () for interfaces.
30099         * verify.c: check for code that runs after the end of the method.
30100
30101 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30102
30103         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
30104         "System.Math::Round2".
30105         * sysmath.h: Added Floor, Round and Round2 definitions.
30106         * sysmath.c: Modified certain functions that were not 100% compliant
30107         with MS.NET (math precision) and added the implementation of Floor,
30108         Round and Round2.
30109
30110 2003-02-07  Martin Baulig  <martin@ximian.com>
30111
30112         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
30113
30114 2003-02-07  Martin Baulig  <martin@ximian.com>
30115
30116         * debug-mono-symfile.c: Reflected latest symwriter changes.
30117         (mono_debug_create_mono_symbol_file): Removed.
30118         (mono_debug_open_mono_symbol_file): Take an argument which
30119         specifies whether to create a dynamic symbol file.
30120
30121 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
30122
30123         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
30124
30125 2003-02-05  Martin Baulig  <martin@ximian.com>
30126
30127         * reflection.c (mono_image_build_metadata): Make this public,
30128         protect it against being called multiple times, don't create
30129         resources and don't build the compressed metadata here.
30130         (mono_image_create_pefile): Do this here.
30131
30132         * icall.c
30133         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
30134
30135 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30136
30137         * socket-io.c: fixed bug #36322.
30138
30139 2003-02-06  Piers Haken <piersh@friskit.com>
30140
30141         * appdomain.[ch]:
30142         * class.h:
30143         * debug-mono-symfile.c:
30144         * icall.c:
30145         * loader.c:
30146         * mono-config.c:
30147         * monosn.c:
30148         * reflection.c:
30149         * socket-io.c: warning cleanups
30150
30151 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
30152
30153         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
30154         function. works like remoting invoke, but does a check for the Proxy first.
30155
30156 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
30157
30158         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
30159
30160 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
30161
30162         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
30163         array of pointers.
30164         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
30165         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
30166
30167         * object.c (mono_store_remote_field_new): used by the new jit
30168         instead of mono_store_remote_field
30169         (mono_load_remote_field_new): used by the new jit
30170         instead of mono_load_remote_field
30171
30172 2003-02-05  Patrik Torstensson
30173
30174         * appdomain.c: changed unload to take the domain id instead
30175         of domain
30176         
30177         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
30178
30179
30180 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30181
30182         * appdomain.c: don't look for assemblies in ApplicationBase if
30183         PrivateBinPathProbe is set.
30184
30185 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30186
30187         * object.c: make the first argument in main_args contain the absolute
30188         path to the assembly. Fixes bug #37511.
30189
30190 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30191
30192         * icall.c: get correct UTC offset for countries not using daylight
30193         time saving. Fixes bug #30030.
30194
30195 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30196
30197         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
30198         and 1 are the family).
30199
30200 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
30201
30202         * icall.c (ves_icall_InternalExecute): removed wrong assertion
30203
30204         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
30205
30206 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
30207
30208         * reflection.c: added support for SignatureHelper tokens, which is
30209         needed by the Calli opcode.
30210
30211         * reflection.h: track changes to SignatureHelper class.
30212
30213         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
30214
30215 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30216
30217         * appdomain.c: fixed loading assemblies from PrivateBinPath.
30218
30219 2003-02-03  Patrik Torstensson
30220         * appdomain.[c|h], domain.c : 
30221          - Added support for getting a domain via domain id
30222          - Support for setting and getting domain from System.AppDomain 
30223            (used in cross appdomain channel)
30224          - Added support for get/set for a MonoAppContext on a thread 
30225            (Context class in System.Runtime.Remoting.Contexts),
30226          - Removed hack in Get/SetData and ExecuteAssembly.
30227         
30228         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
30229         the managed world to get control when a proxy is created.
30230
30231         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
30232         
30233 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
30234
30235         * icall.c
30236         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
30237         Populate the codebase field as well.
30238
30239 2003-02-02  Martin Baulig  <martin@ximian.com>
30240
30241         * debug-mono-symfile.c
30242         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
30243         (mono_debug_symfile_add_method): Allow interncalls.
30244
30245 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30246
30247         * icall.c: throw parse exception if strtod fails or the string is empty.
30248
30249 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
30250
30251         * marshal.c: handle object type separately from defined
30252         class types.
30253
30254 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
30255
30256         * marshal.c: handle NATIVE_LPSTR for strings when it's
30257         explicitly specified.
30258
30259 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
30260
30261         * reflection.c, reflection.h, icall.c: setup the reflection
30262         handle cache for ModuleBuilders and AssemblyBuilders.
30263
30264 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
30265
30266         * reflection.c (reflection_methodbuilder_to_mono_method): set
30267         pinvoke flag
30268
30269 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30270
30271         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
30272
30273 2003-01-29  Dick Porter  <dick@ximian.com>
30274
30275         * threads.c: No need for the fake_thread kludge now that Thread
30276         doesn't run a class constructor
30277         
30278 2003-01-29  Dick Porter  <dick@ximian.com>
30279
30280         * threads.c: Use g_direct_hash instead of the rather bogus
30281         g_int_hash
30282
30283 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
30284
30285         * marshal.c (mono_marshal_get_native_wrapper): add check for null
30286         (fix pinvoke12.exe)
30287         (mono_marshal_get_struct_to_ptr): generate valid IL code
30288         (mono_marshal_get_ptr_to_struct): generate valid IL code
30289         (*): correctly set sig->pinvoke, we need to memdup the signature
30290         to do that
30291
30292 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30293
30294         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
30295         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
30296
30297 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
30298
30299         * profiler.c: provide more callers information.
30300
30301 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
30302
30303         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
30304
30305         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
30306
30307         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
30308
30309 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30310
30311         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
30312         exception instead of going into an infinite loop on dates which it 
30313         can't yet handle.
30314
30315         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
30316         out-of-range exception if needed.
30317
30318         * class.c (mono_class_setup_vtable): allow a virtual method to provide
30319         an implementation for an interface method and to override an inherited
30320         method at the same time. 
30321         Imagine a scenario when a virtual method is used to override a
30322         virtual abstract method in a parent class, and this same method 
30323         provides an implementation for an method inherited from an interface. 
30324         In this case, the interface resolution code will set im->slot, which 
30325         means that the virtual method override pass will skip this method 
30326         which means a pointer to the abstract method inherited from the parent
30327         will remain in the vtable of this non-abstract class.
30328
30329         * class.c: (mono_class_setup_vtable): continue search for a real 
30330         method if only an abstract method is found.     
30331
30332 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
30333
30334         * reflection.c: add size to encoding for ByValStr and ByValArray
30335         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
30336
30337 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30338
30339         * class.c (mono_class_setup_vtable): pass the override info as an
30340         argument.
30341
30342         * class.c (mono_class_setup_vtable): set the slot of overriding methods
30343         correctly.
30344         
30345         * reflection.c (ensure_runtime_vtable); add support for method 
30346         overrides.
30347         
30348 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30349
30350         * reflection.c (resolution_scope_from_image): Hack to work to work with
30351         dynamic assemblies.
30352
30353         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
30354         added a 'force_ref' argument to force this function to allways return 
30355         a TypeRef. This is needed by mono_image_get_memberref_token ().
30356         
30357 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30358
30359         * reflection.c (mono_image_get_type_info): interfaces really don't have
30360         a parent.
30361
30362         * reflection.c (mono_image_basic_init): fill out missing fields of
30363         image structure.
30364
30365         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
30366         dynamic assemblies. This is required so dynamic assemblies show up in
30367         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
30368         Type::GetType() etc. This is consistent with MS behaviour.
30369
30370         * image.c image.h reflection.c: add newly created classes to the name 
30371         cache so mono_class_get () will find them.      
30372
30373 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30374
30375         First part of changes to get IKVM.NET running under mono.
30376         
30377         * appdomain.h, appdomain.c: added new function 
30378         mono_domain_try_type_resolve() which will emit TypeResolve events. 
30379         This function will call AppDomain::DoTypeResolve to do the actual work.
30380
30381         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
30382         moved existing code dealing with dynamic tokens to a new function 
30383         called mono_reflection_lookup_dynamic_token (). This function will 
30384         raise TypeResolve events when appropriate. Since reflection.c is not 
30385         part of libmetadata, a new hook function called 
30386         mono_lookup_dynamic_token() is added to class.c which will call this.
30387
30388         * assembly.h assembly.c: make the invoke_load_hook function public,
30389         so it can be called for dynamic assemblies.
30390
30391         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
30392
30393         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
30394         type isn't found.
30395
30396         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
30397         MonoGHashTable, since it contains pointers to objects which the GC 
30398         needs to track.
30399
30400         * assembly.c (search_loaded): remove unused variable.
30401         
30402 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
30403
30404         * object.c: fixed issue exposed by gcc-generated IL programs
30405         that use RVA data for pointers.
30406
30407 2003-01-25  Martin Baulig  <martin@ximian.com>
30408
30409         * threads.c (start_wrapper): Moved the initialization of
30410         `start_func' above the mono_new_thread_init() call to which we
30411         pass it as argument.
30412
30413 2003-01-24  Martin Baulig  <martin@ximian.com>
30414
30415         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
30416         the MonoThread pointer.
30417
30418 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
30419
30420         * icall.c: Rename `PowImpl' to Pow.
30421
30422 2003-01-23  Dick Porter  <dick@ximian.com>
30423
30424         * threads.c (start_wrapper): Create a Thread object if needed, so
30425         the Main() thread can do the class initialisation in a subthread
30426         that has been set up to allow managed code execution.
30427
30428         Pass the thread ID instead of the MonoThread pointer to the thread
30429         start and attach callbacks.  This change is required, because the
30430         jit thread start callback must be called _before_ the Thread
30431         object can be created.
30432         
30433         (mono_thread_init): Removed much object creation code that is no
30434         longer needed.  No managed code is called from here now.
30435
30436         * object.c (mono_runtime_exec_managed_code): Create a subthread
30437         for Main, and call back to the runtime to use it.
30438         Set the exit code when Main exits.
30439
30440         * gc.c: Make sure domain finalisation happens in a subthread.
30441         Re-enable threaded GC, fixing bug 31333 (again).
30442
30443         * environment.c: System.Environment internall calls (so far just
30444         ExitCode is here, the others are still in icall.c)
30445
30446         * appdomain.c (mono_runtime_cleanup): All threads running managed
30447         code should have finished before mono_runtime_cleanup() is
30448         reached, so no need to clean up threads.
30449
30450 2003-01-22  Martin Baulig  <martin@ximian.com>
30451
30452         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
30453         `gpointer func' arguments.      
30454         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
30455         but added `MonoThread *thread' argument.
30456         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
30457
30458         * threads.c (mono_new_thread_init): Added `gpointer func' argument
30459         and pass it to the mono_thread_start_cb callback.
30460         (mono_install_thread_callbacks): New public function to install a
30461         set of callbacks which are set by the debugger.
30462         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
30463
30464 2003-01-22  Martin Baulig  <martin@ximian.com>
30465
30466         * Makefile.am: Install debug-mono-symfile.h.
30467
30468 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
30469
30470         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
30471
30472 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
30473
30474         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
30475         * class.c (mono_ptr_class_get): correctly set access levels of pointers
30476         (mono_array_class_get): correctly set access levels of arrays
30477
30478 2003-01-20      Patrik Torstensson
30479         * image.h (MonoAssemblyName): changed major, minor, build, revision
30480         from signed to unsigned.
30481
30482 2003-01-20  sean kasun <skasun@azstarnet.com>
30483
30484         * reflection.c (load_cattr_value): Now this handles
30485         MONO_TYPE_SZARRAY.  Fixes bug #35629
30486
30487 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
30488
30489         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
30490         integer value
30491
30492 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30493
30494         * decimal.c: fixed bug #26056.
30495
30496 2003-01-17  Martin Baulig  <martin@ximian.com>
30497
30498         * gc.c: Raise an ExecutionEngineException instead of using g_error().
30499
30500 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30501
30502         * exception.[ch]:
30503         (mono_get_exception_type_initialization): new function.
30504
30505         * object.c: throw a TypeInitializationException when an exception is
30506         thrown invoking the class constructor.
30507
30508 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30509
30510         * reflection.c: fixed attribute reading.
30511
30512 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30513
30514         * icall.c:
30515         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
30516         provided, look for the type in the calling assembly and then in
30517         mscorlib; if the assembly name is provided, only try that one.
30518
30519 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
30520
30521         * object.c: register the vtable before there is a chance it's
30522         queried again recursively.
30523
30524 2003-01-13  Duncan Mak  <duncan@ximian.com>
30525
30526         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
30527         gc-internal.h. 
30528         
30529 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
30530
30531         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
30532
30533 2003-01-11  Martin Baulig  <martin@ximian.com>
30534
30535         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
30536         this to 20 for the release.
30537
30538 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
30539
30540         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
30541
30542         * loader.c (mono_method_get_marshal_info): bug fix
30543
30544         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
30545         structures with explicit layout
30546
30547 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
30548
30549         * profiler.c: made the output more readable (and sorted). 
30550         Added caller information for the allocation profiler.
30551
30552 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
30553
30554         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
30555
30556 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30557
30558         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
30559         to get value types.
30560         
30561 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
30562
30563         * object.c, profiler.h, profiler.c, profiler-private.h:
30564         Added object allocation profiler.
30565
30566 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
30567
30568         * reflection.h, reflection.c: handle global methods.
30569         Compress blob entries.
30570
30571 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
30572
30573         * marshal.c: fix compilation.
30574
30575 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
30576
30577         * loader.c (mono_method_get_marshal_info): impl.
30578
30579         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
30580
30581 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30582
30583         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
30584         for reference types.
30585
30586 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
30587
30588         * loader.c: fixed off by one error in loaded parameter names.
30589
30590 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
30591
30592         * marshal.c (mono_marshal_get_icall_wrapper): like
30593         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
30594         instead of a MonoMethod.
30595
30596 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30597
30598         * decimal.c: fixed bug #36537.
30599
30600 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
30601
30602         * marshal.c: throw a missing method exception if a
30603         P/Invoke method is not found.
30604
30605 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
30606
30607         * icall.c: allow a null this for constructors.
30608
30609 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
30610
30611         * icall.c: raise the proper exceptions if the arguments to the
30612         internal Invoke are incorrect.
30613
30614 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
30615
30616         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
30617
30618 2003-01-03  Martin Baulig  <martin@ximian.com>
30619
30620         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
30621
30622 2002-12-31  Martin Baulig  <martin@ximian.com>
30623
30624         * debug-mono-symfile.c: Completely rewrote the type section.
30625         Instead of using individual malloc()ed fields, we use one big
30626         continuous memory area and offsets into this area.
30627         See the comments in the source code for details.
30628
30629 2002-12-30  Martin Baulig  <martin@ximian.com>
30630
30631         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
30632
30633 2002-12-30  Martin Baulig  <martin@ximian.com>
30634
30635         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
30636         line number table in this data blob instead of using an external
30637         pointer.
30638
30639 2002-12-28  Martin Baulig  <martin@ximian.com>
30640
30641         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
30642
30643 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
30644
30645         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
30646         as a boxed return type.
30647
30648 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
30649
30650         * appdomain.c
30651         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
30652         g_build_filename to properly get separators on the filename created.
30653
30654         * object.h: Small change, introduce MonoMarshalByRefObject to
30655         track the layout of that structure in the C# universe as we make
30656         changes there.
30657
30658 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
30659
30660         * object.c: removed assert to allow static fields on interfaces.
30661         * loader.c: a TypeSpec may be used for any type, not just arrays.
30662
30663 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
30664
30665         * class.c, class.h: added mono_class_array_element_size ().
30666         Ignore static methods in interfaces.
30667
30668 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30669
30670         * threads.c: fixed the build under cygwin.
30671
30672 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
30673
30674         * reflection.c: handle nullref constants. Allocate keys for
30675         reflection handles with the GC.
30676
30677 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
30678
30679         * threads.c, threads.h: added mono_thread_get_abort_signal()
30680         to get a suitable signal for thread abort.
30681
30682 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
30683
30684         * metadata.c: fix handling of ExportedType table.
30685
30686 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30687
30688         * icall.c: added WriteWindowsDebugString internal call.
30689
30690 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30691
30692         * reflection.h: added fields to match C# implementation.
30693
30694 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30695
30696         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
30697
30698 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
30699
30700         * gc.h, gc-internal.h: Rename header for GC internal calls to
30701         gc-internal.h from gc.h as to not clash with Boehm GC having its
30702         header installed as <gc.h> in outside include paths.
30703         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
30704         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
30705
30706 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30707
30708         * icall.c: assign minor, build and revision in FillName.
30709
30710 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
30711
30712         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
30713         Added support for running code generated by Reflection.Emit.
30714
30715 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30716
30717         * appdomain.c: check for NULL argument in LoadFrom.
30718
30719 2002-12-10  Dick Porter  <dick@ximian.com>
30720
30721         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
30722
30723 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30724
30725         * appdomain.c: fix buglet when building exe file name.  Handle full
30726         assembly name (needed after latest changes to AssemblyName).
30727         * image.c:
30728         (mono_image_close): free some hashtables.
30729
30730 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
30731
30732         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
30733         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
30734         on some systems (redhat 7.3) 
30735
30736 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
30737
30738         * threads.c: delete the critical section of a sync block,
30739         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
30740
30741 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
30742
30743         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
30744
30745 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30746
30747         * appdomain.[ch]: handle the assembly preload event to try loading the
30748         assemblies using the paths we have in the current domain.
30749
30750         * assembly.[ch]: created an assembly preload hook that is called to try
30751         loading the assembly by other means that the ones provided here.
30752
30753         * domain.c: initialize the domain search path.
30754
30755         From now on, assemblies (TODO: except corlib and System) are loaded
30756         according to these rules when using mono_assembly_load ():
30757
30758                 1. It tries to load the assembly from the ApplicationBase
30759                 of the current domain appending .dll and .exe (TODO: have to
30760                 try loading from name/name.dll and name/name.exe).
30761
30762                 2. It tries the search path specified in PrivateBinPath for the
30763                 current domain (if any).
30764
30765                 3. Previous behavior.
30766
30767 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
30768
30769         * icall.c: implemented GetInterfaceMap() related icall.
30770         * domain.c, loader.h: load MethodInfo in mono_defaults.
30771
30772 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
30773
30774         * gc.c: disable the finalizer thread for now, untill all the issues
30775         with it are resolved.
30776
30777 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
30778
30779         * string-icalls.c: handle embedded nulls in string ctor when the
30780         length is specified.
30781
30782 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
30783
30784         * class.c: look for explicit interface implementation in parent
30785         classes, too.
30786
30787 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
30788
30789         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
30790
30791 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
30792
30793         * gc.c: protect handles with a critical section.
30794
30795 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30796
30797         * icall.c:
30798         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
30799         parameters. If no assembly specified, try getting the type from all
30800         the assemblies in the current domain, else, load the assembly and get
30801         the type from it.
30802
30803 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30804
30805         * marshal.c: applied patch from Aleksey Demakov that fixes
30806         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
30807
30808 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30809
30810         * icall.c: fixed get_location.
30811
30812 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
30813
30814         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
30815         declarations to make it work with older gcc. 
30816
30817         * loader.c (mono_get_method): set signature->pinvoke for native calls
30818
30819 2002-11-20  Dick Porter  <dick@ximian.com>
30820
30821         * threads.c (mono_thread_init): Set the main thread's handle
30822
30823 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
30824
30825         * gc.c: allow compilation without GC support. Changed to match the
30826         mono coding style.
30827
30828 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
30829
30830         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
30831
30832 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
30833
30834         * reflection.c: set a public key token on the core assemblies.
30835
30836 2002-11-18  Dick Porter  <dick@ximian.com>
30837
30838         * threads.c: Split out some thread initialisation so that other
30839         files can set the start callback function.
30840
30841         * gc.c: Run finalisers in a separate thread, to avoid stack
30842         overflow.  Fixes bug 31333.
30843
30844         * appdomain.c: Set up GC finalisation thread.
30845
30846         * reflection.c: 
30847         * object.c: 
30848         * domain.c: Use gc.h macros for GC_malloc
30849         
30850 2002-11-15  Dick Porter  <dick@ximian.com>
30851
30852         * threadpool.c: 
30853         * threads.c:
30854         * appdomain.c: Removed mono_runtime_init_with_attach(),
30855         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
30856         merging the extra parameter with the existing function.  Removed
30857         unneeded code in mono_thread_attach().
30858
30859 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
30860
30861         * image.c (mono_image_loaded_by_guid): a method to get loaded
30862         images by guid. 
30863         (load_metadata_ptrs): we store the guid as string.
30864
30865 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
30866
30867         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
30868
30869         * metadata.c (mono_guid_to_string): imported method form Zoltan
30870         Varga (slightly modified)
30871
30872         * assembly.c (mono_assembly_open): load precompiled code
30873
30874         * loader.h (MonoMethod): we store the method token for use in the
30875         aot compiler. 
30876
30877 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30878
30879         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
30880         the hook function called when an assembly is loaded.
30881         
30882         * domain.c: Modified file.
30883         (mono_domain_assembly_load): removed hash table insertion of assemblies.
30884
30885         Fixes bug #33196.
30886
30887 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
30888
30889         * reflection.c: Map PEFileKind to the value expected by the WinNT
30890         image loader. 
30891
30892 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30893
30894         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
30895         Read until the buffer is filled completely.
30896
30897 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30898
30899         * icall.c: implemented MonoType.InternalGetEvent ().
30900
30901 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30902
30903         * appdomain.c: implemented InitAppDomainSetup. Delayed
30904         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
30905         the entry_assembly.
30906
30907         * assembly.c: base_dir is now an absolute path ending with
30908         G_DIR_SEPARATOR.
30909
30910         * icall.c: modified get_location according to the above changes.
30911
30912         * object.c: init AppDomain.SetupInformation for the default domain after
30913         we have the entry assembly.
30914
30915         * domain.c: when unloading a domain, setup = NULL.
30916
30917 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
30918
30919         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
30920
30921 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
30922
30923         * object.h, object.c: introduced mono_object_get_virtual_method ()
30924         to lookup the method invoked on an object when a callvirt is done on
30925         a method.
30926         * icall.c: make MethodInfo::Invoke() always do a virtual call.
30927
30928 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30929
30930         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
30931         current domain when loaded an assembly and failed to load it.
30932
30933         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
30934
30935 2002-10-31  Dick Porter  <dick@ximian.com>
30936
30937         * icall.c: 
30938         * file-io.h: 
30939         * file-io.c: Return the error status in a parameter, as the
30940         GetLastError() value has long since been blown away if we try and
30941         look it up in a subsequent internal call invocation.  Delete the
30942         GetLastError() internal call, because it's useless.
30943
30944 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
30945
30946         * class.[ch]: added cast_class to fix bug 29517
30947
30948 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
30949
30950         * marshal.c: create valid IL code in the filter clause:
30951         the new JIT is less forgiving:-)
30952
30953 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30954
30955         * icall.c: removed get_property internal call.
30956
30957 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
30958
30959         * appdomain.h domain.c: Added an ID to appdomains.
30960         
30961         * threads.c threads.h icall.c: Implement icall
30962         Thread:GetDomainID(), and remove unused icall 
30963         CurrentThreadDomain_internal.
30964
30965 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30966
30967         * icall.c: Don't recurse through the base types in GetConstructor.
30968         Fixes bug #32063. 
30969
30970 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
30971
30972         * mempool.h, mempool.c: added mono_mempool_empty() and
30973         mono_mempool_stats().
30974
30975 2002-10-23  Dick Porter  <dick@ximian.com>
30976
30977         * file-io.c: 
30978         * file-io.h: 
30979         * icall.c: Added MonoIO.GetFileType internal call
30980
30981 2002-10-17  Dick Porter  <dick@ximian.com>
30982
30983         * appdomain.c (mono_runtime_cleanup): Don't signal the async
30984         delegate semaphore before waiting for all threads to finish,
30985         because new threads can also call async delegates.  Fixes bug
30986         32004.
30987
30988         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
30989         of 3 seconds, in case another async job is queued.  (This part is
30990         needed because the bug fix reintroduced the 3s exit lag.)  This
30991         makes the mono_runtime_shutdown flag superfluous.
30992
30993 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
30994
30995         * reflection.c: include ehader size in method section headers.
30996         Really check for suplicated modules entries.
30997
30998 2002-10-17  Martin Baulig  <martin@gnome.org>
30999
31000         * debug-mono-symfile.c: Added back support for locals.
31001
31002 2002-10-14  Martin Baulig  <martin@gnome.org>
31003
31004         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
31005         MONO_TYPE_VOID.
31006
31007 2002-10-14  Martin Baulig  <martin@gnome.org>
31008
31009         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
31010         mono_class_get() instead of looking in the class cache. 
31011
31012 2002-10-13  Martin Baulig  <martin@gnome.org>
31013
31014         * debug-mono-symfile.c: Set version number to 28, include the
31015         signature in method names.
31016
31017 2002-10-13  Martin Baulig  <martin@gnome.org>
31018
31019         * debug-mono-symfile.h: Set version number to 27.
31020
31021 2002-10-11  Martin Baulig  <martin@gnome.org>
31022
31023         * gc.c: Don't register/unregister NULL pointers as disappearing links.
31024
31025 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31026
31027         * metadata.c, metadata.h: added helper function to allocate signatures.
31028
31029 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31030
31031         * icall.c: added internal call to get the location of machine.config.
31032
31033 2002-10-08  Martin Baulig  <martin@gnome.org>
31034
31035         * debug-mono-symfile.c: Ignore classes with a pending init for the
31036         moment.
31037
31038 2002-10-03  Dick Porter  <dick@ximian.com>
31039
31040         * threads.c: Freebsd pthread_t is a pointer
31041
31042 2002-10-03  Dick Porter  <dick@ximian.com>
31043
31044         * socket-io.c: Implemented GetHostName_internal
31045
31046 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31047
31048         * mono-config.c:
31049         (mono_config_parse_file): don't leak the text.
31050
31051 2002-10-02  Martin Baulig  <martin@gnome.org>
31052
31053         * debug-mono-symfile.c: Added support for methods.
31054
31055 2002-10-01  Martin Baulig  <martin@gnome.org>
31056
31057         * debug-mono-symfile.c: Don't emit methods and line numbers for
31058         the dynamic symbol file, just write the type table.  We can easily
31059         have an external helper program which creates a symbol file for an
31060         IL file.        
31061
31062 2002-10-01  Dick Porter  <dick@ximian.com>
31063
31064         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
31065         Only add the handle to the cleanup array when we're about to
31066         launch the thread.  Bug 31425 deadlocked when the test was run on
31067         mono under w32.
31068
31069 2002-10-01  Martin Baulig  <martin@gnome.org>
31070
31071         * debug-mono-symfile.c: Added support for properties.
31072
31073 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
31074
31075         * reflection.c: unaligned store fix from Mark Crichton
31076         <crichton@gimp.org>.
31077
31078 2002-09-27  Martin Baulig  <martin@gnome.org>
31079
31080         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
31081         New interncall.
31082
31083 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
31084
31085         * assembly.h, assembly.c: use a sane API to hook into the assembly
31086         loading process instead of a useless special-purpouse hack
31087         (ngen needs a hook, too, for example).
31088
31089 2002-09-27  Dick Porter  <dick@ximian.com>
31090
31091         * threads.c (mono_thread_init): Call GetCurrentProcess() so
31092         io-layer can set up some process handle info.  Not needed on w32,
31093         but doesn't hurt either.
31094
31095         * process.c: Pass the program name in the second parameter to
31096         CreateProcess, so the path is searched.  Include the working
31097         directory. Implemented process name, process enumeration, and some
31098         process detail internal calls.
31099         
31100         * icall.c: Added internal calls for process lookup, and some
31101         process details
31102
31103 2002-09-26  Martin Baulig  <martin@gnome.org>
31104
31105         * assembly.c (mono_install_open_assembly_hook): New global
31106         function to install a function to be invoked each time a new
31107         assembly is loaded.
31108         (mono_assembly_open): Run this callback function if set.
31109
31110         * debug-mono-symfile.c: Put back line numbers for the dynamic
31111         symbol file and also record the .il file as source file.  This
31112         allows us to install the temporary symbol file as `file.dbg' just
31113         like a compiler-generated one.
31114
31115 2002-09-26  Nick Zigarovich <nick@chemlab.org>
31116
31117         * Corrected typo in gc.c (BOHEM vs BOEHM).
31118
31119 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31120
31121         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
31122         GetProperties. Also avoid calling g_slist_length in GetProperties and
31123         GetMethods.
31124
31125 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
31126
31127         * reflection.c: avoid unaligned stores (bug spotted by
31128         Mark Crichton  <crichton@gimp.org>).
31129
31130 2002-09-25  Martin Baulig  <martin@gnome.org>
31131
31132         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
31133         instead of guint64 for addresses and added prologue/epilogue info.
31134
31135 2002-09-25  Martin Baulig  <martin@gnome.org>
31136
31137         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
31138         store line number info.  For the dynamic symbol file, we only need
31139         to provide the JIT generated dynamic line number info for the dynamic
31140         symbol file.
31141
31142 2002-09-25  Martin Baulig  <martin@gnome.org>
31143
31144         * debug-mono-symfile.h: Incremented version number.
31145
31146 2002-09-24  Martin Baulig  <martin@gnome.org>
31147
31148         * class.c (mono_debugger_class_init_func): New global function
31149         pointer variable.
31150         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
31151         call it.
31152
31153         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
31154         function.  This is called via the mono_debugger_class_init_func
31155         hook to add all types to the dynamic type table.
31156         (ves_icall_MonoDebugger_GetType): New interncall to get a class
31157         from its metadata token.
31158
31159         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
31160         New interncall for the debugger.
31161
31162 2002-09-24  Nick Drochak <ndrochak@gol.com>
31163
31164         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
31165         before using it in case it is null.
31166         
31167 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31168
31169         * metadata.c: allow custom modifiers in local var signatures
31170         (bug spotted by Zoltan Varga).
31171
31172 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
31173
31174         * class.c: deal with the <Module> class that may have a NULL vtable.
31175         Eliminate warnings.
31176
31177 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31178
31179         * image.c, image.h: more strong name helpers.
31180         * monosn.c: more work: convert pem keys to cryptoapi format.
31181
31182 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
31183
31184         * string-icalls.c: speedup IndexOf.
31185
31186 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31187
31188         * icall.c: updates from Zoltan.2.Varga@nokia.com.
31189
31190 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
31191
31192         * icall.c: cleanup: use mono_object_domain ().
31193
31194 2002-09-23  Martin Baulig  <martin@gnome.org>
31195
31196         * debug-mono-symfile.c: Improved type support.
31197
31198 2002-09-22  Martin Baulig  <martin@gnome.org>
31199
31200         * debug-mono-symfile.c: Added support for reference types and strings.
31201
31202 2002-09-22  Martin Baulig  <martin@gnome.org>
31203
31204         * debug-mono-symfile.c: Started to work on the type table.
31205
31206 2002-09-21  Martin Baulig  <martin@gnome.org>
31207
31208         * debug-mono-symfile.c: Largely reworked the symbol table format.
31209         The symbol table is now incrementally updated each time a new
31210         method is added.  We're now also using our own magic and version
31211         so that you don't need to recompile all your classes if the
31212         dynamic table changes.
31213         (mono_debug_update_mono_symbol_file): Removed.
31214         (mono_debug_symfile_add_method): New function to add a method.
31215
31216 2002-09-21  Martin Baulig  <martin@gnome.org>
31217
31218         * icall.c
31219         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
31220         New interncall.
31221
31222         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
31223         New interncall to get a method from its metadata token.
31224
31225 2002-09-21  Martin Baulig  <martin@gnome.org>
31226
31227         * debug-mono-symfile.c: Create type table.
31228
31229 2002-09-20  Martin Baulig  <martin@gnome.org>
31230
31231         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
31232
31233 2002-09-20  Martin Baulig  <martin@gnome.org>
31234
31235         * debug-mono-symfile.c: Provide information about params and locals.
31236
31237 2002-09-20  Martin Baulig  <martin@gnome.org>
31238
31239         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
31240         New interncall.
31241
31242         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
31243         interncall to get a method from its metadata token.
31244
31245 2002-09-20  Martin Baulig  <martin@gnome.org>
31246
31247         * debug-mono-symfile.c: Added a few checks for method->header
31248         being non-NULL.  This should never happen, but for the moment
31249         let's use a g_warning() rather than a g_assert().
31250
31251 2002-09-19  Mark Crichton  <crichton@gimp.org>
31252
31253         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
31254         even if support for it isn't present.  Added an #ifdef to fix this.
31255
31256         * socket-io.c: Added checks back for Solaris support.
31257
31258 2002-09-19  Martin Baulig  <martin@gnome.org>
31259
31260         * debug-mono-symfile.c (read_string, write_string): Reflect latest
31261         changes in the symbol file format.
31262
31263 2002-09-18  Martin Baulig  <martin@gnome.org>
31264
31265         * debug-mono-symfile.c: Set version number to 21.
31266
31267 2002-09-18  Dick Porter  <dick@ximian.com>
31268
31269         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
31270         on netbsd.  Fixes bug 30051.
31271
31272 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31273
31274         * reflection.c:
31275         (set_version_from_string): little fix.
31276
31277 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31278
31279         * monosn.c, Makefile.am: added strong name utility.
31280         * reflection.h, reflection.c: implemented delayed signing,
31281         locale, version and hash id assembly attributes.
31282
31283 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
31284
31285         * loader.c, metadata.c: load param attributes in signatures.
31286
31287 2002-09-16  Martin Baulig  <martin@gnome.org>
31288
31289         * debug-mono-symfile.c: Added string table with all method names.
31290
31291 2002-09-14  Martin Baulig  <martin@gnome.org>
31292
31293         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
31294         fast method lookup.
31295
31296 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31297
31298         * reflection.c: record the public key token of referenced assemblies.
31299
31300 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31301
31302         * image.c, image.h: added functions to get the strong name and the
31303         public key of an assembly.
31304         * pedump.c: use them.
31305
31306 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
31307
31308         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
31309
31310 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
31311
31312         * marshal.c (mono_marshal_get_managed_wrapper): Added
31313         MONO_TYPE_BOOLEAN 
31314
31315 2002-09-11  Martin Baulig  <martin@gnome.org>
31316
31317         * gc.c: Call GC_unregister_disappearing_link() on all links when
31318         finalizing them, this is necessary to aviod a crash in boehm's
31319         finalize handler.
31320
31321 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31322
31323         * gc.c: handle GetTarget for finalized objects spotted and fixed by
31324         nick@chemlab.org.
31325
31326 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
31327
31328         * icall.c: implemented MonoType::Module.
31329         * reflection.c, reflection.h: mono_module_get_object () from
31330         Tomi Pakarinen <tomi.pakarinen@welho.com>.
31331
31332 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
31333
31334         * icall.c: ignore overridden methods in GetMethods ().
31335         Fix for FieldInfo::SetValue().
31336         * object.c: handle float/double in runtime invoke.
31337
31338 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
31339
31340         * object.c: allow a constructor to be called again on an object.
31341
31342 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31343
31344         * class.h, class.c: move field layout code to it's own function and
31345         export it. Get an interface id earlier. Move fields in MonoClass
31346         so they are more cache friendly and align the bitfields.
31347         * loader.c: temporary handle get_param_names() for a runtime method.
31348         * reflection.c, reflection.h: more code to handle runtime creation of
31349         types.
31350
31351 2002-09-09  Martin Baulig  <martin@gnome.org>
31352
31353         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
31354         signature with the pinvoke field being set for the actual call.
31355
31356 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
31357
31358         * icall.c: removed some unused icalls. Start of map of glib charsets
31359         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
31360
31361 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
31362
31363         * debug-helpers.c: break infinite loop (found and fixed by
31364         Holger Arnold <harnold@gmx.de>).
31365
31366 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31367
31368         * icall.c: target may be null in create_delegate.
31369
31370 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31371
31372         * marshal.c: handle a boolean return type.
31373
31374 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31375
31376         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
31377
31378 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
31379
31380         * gc.c: fix weakreferences.
31381
31382 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
31383
31384         * icall.c: added icall to get default codepage.
31385
31386 2002-09-03  Dick Porter  <dick@ximian.com>
31387
31388         * threads.h: 
31389         * threads.c: Use MonoThread instead of MonoObject where
31390         apropriate.
31391
31392         Store running thread objects in a hash table, so that we have all
31393         the info to hand when waiting for them to finish
31394         (means we don't need OpenThread() any more, so mingw builds should
31395         be fully functional again.)
31396
31397         * verify.c:
31398         * object.h: Added thread ID to MonoThread
31399
31400 2002-09-03  Martin Baulig  <martin@gnome.org>
31401
31402         * icall.c (System.Reflection.Assembly::get_location): New interncall.
31403
31404 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31405
31406         * icall.c: fixed leak in get_temp_path. Thanks lupus.
31407
31408 2002-09-03  Martin Baulig  <martin@gnome.org>
31409
31410         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
31411         argument to store the end address of the disassembled instruction.
31412
31413         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
31414         here from debug-symfile.h.
31415         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
31416         JIT into this struct.
31417         (MonoSymbolFile): Added `char *image_file' field.
31418         (MonoDebugGetMethodFunc): Removed.
31419         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
31420         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
31421         (mono_debug_find_method): New method.
31422
31423         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
31424         create a full symbol file.
31425         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
31426         and static symbol files.
31427         (mono_debug_find_method): The symbol file keeps an internal method hash,
31428         call this to get a MonoDebugMethodInfo from a MonoMethod.
31429
31430         * debug-symfile.[ch]: Removed.
31431
31432 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
31433
31434         * image.c (do_mono_image_open): Remove linker version check.
31435
31436 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
31437
31438         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
31439         wrappers for instance methods.
31440         
31441 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31442
31443         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
31444
31445 2002-08-28  Dick Porter  <dick@ximian.com>
31446
31447         * Makefile.am: Export HOST_CC for w32 builds
31448
31449 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31450
31451         * file-io.c process.c: MonoString are null terminated, no
31452         need for mono_string_to_utf16() anymore.
31453
31454 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
31455
31456         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
31457
31458 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
31459
31460         * icall.c, reflection.h: speedup System.MonoType.
31461
31462 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
31463
31464         * reflection.c: allow null as the value of a string argument in
31465         custom attributes constructors.
31466
31467 2002-08-27  Martin Baulig  <martin@gnome.org>
31468
31469         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
31470         `trampoline_address' field.
31471
31472 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
31473
31474         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
31475         check (fixes bug #29486) 
31476
31477 2002-08-27  Martin Baulig  <martin@gnome.org>
31478
31479         * debug-mono-symfile.c: Changed the file format in a way that allows us
31480         open it read-only and to use a specially malloced area for all the
31481         dynamic data.  We can now also generate a symbol file on-the-fly if we're
31482         debugging IL code and there is no MCS generated symbol file for it.
31483
31484 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
31485
31486         * object.c: added a define for a good string and array
31487         creation speedup (not enabled by default because we need to deal with
31488         the synch stuff).
31489
31490 2002-08-26  Martin Baulig  <martin@gnome.org>
31491
31492         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
31493         function to create a dynamic symbol file.  This is used by the
31494         debugger to create a symbol file for IL code on-the-fly.
31495
31496 2002-08-26  Martin Baulig  <martin@gnome.org>
31497
31498         * loader.c (mono_lookup_pinvoke_call): Include the error message
31499         from g_module_error() in the error message.
31500
31501 2002-08-24  Martin Baulig  <martin@gnome.org>
31502
31503         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
31504         function to update the symbol file.  The symbol file is mmap()ed
31505         writable, but private.  This allows us to install the symbol file
31506         together with the assembly.
31507
31508 2002-08-24  Martin Baulig  <martin@gnome.org>
31509
31510         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
31511         but they can read the new symbol file format which mcs is now creating.
31512
31513         * debug-symfile.c (mono_debug_find_source_location): Moved to
31514         debug-mono-symfile.c; this is now operating on the new symbol file.
31515
31516 2002-08-23  Martin Baulig  <martin@gnome.org>
31517
31518         * debug-helpers.c (mono_method_desc_from_method): New function to get
31519         a MonoMethodDesc from a MonoMethod.
31520
31521 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
31522
31523         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
31524         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
31525
31526 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
31527
31528         * string-icalls.[ch]: make helper methods static.
31529
31530 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31531
31532         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
31533         types to it and to SetValueInternal.
31534
31535         * object.c: Moved handle_enum label to its proper place. This was the
31536         f... bug! ;-)
31537
31538         This time i compiled mcs and gtk-sharp and they both work.
31539
31540 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31541
31542         * icall.c: reverted partially my previous patch until 
31543         object.c:set_value handles enums correcly.
31544
31545 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31546
31547         * icall.c:
31548         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
31549         (ves_icall_System_Environment_get_MachineName): removed warning when
31550         compiling under cygwin.
31551
31552 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
31553
31554         * object.c: fixed field_get_value() for reference types.
31555
31556 2002-08-22  Dick Porter  <dick@ximian.com>
31557
31558         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
31559         Don't free a buffer while it's still needed.  Patch from Jonathan
31560         Liger <Jonathan.liger@wanadoo.fr>
31561
31562 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
31563
31564         * icall.c (ves_icall_System_Environment_get_Platform): Add new
31565         internal call.
31566
31567 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
31568
31569         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
31570         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
31571
31572         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
31573         we call unmanaged code which throws exceptions.
31574
31575 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31576
31577         * appdomain.h: added per-domain entry_assembly.
31578         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
31579         arguments.
31580         * icall.c: Assembly::GetEntryAssembly icall.
31581         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
31582         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
31583
31584 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
31585
31586         * appdomain.h, gc.c: added mono_domain_finalize ().
31587
31588 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31589
31590         * object.c:
31591         (mono_print_unhandled_exception): changed g_warning by g_printerr
31592         because g_log has a 1024 characters limit (yeah, i got a big stack
31593         trace). Don't print exception name, that should be in ToString 
31594         returned string.
31595
31596 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31597
31598         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
31599         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
31600
31601 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31602
31603         * object.c:
31604         (mono_print_unhandled_exception): after previous commit, i realized
31605         that MS calls ToString on the exception. I changed this function to
31606         do that. This way we get stack_trace for free.
31607
31608 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31609
31610         * object.c:
31611         (mono_print_unhandled_exception): invoke Message property instead of
31612         getting 'message' field from Exception. Don't allocate memory for
31613         'trace' and 'message' if not needed.
31614
31615 2002-08-18  Dick Porter  <dick@ximian.com>
31616
31617         * unicode.c: Fix asserts to match Encoder.cs checks
31618
31619 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
31620
31621         * marshal.c: fix unaligned store issue and a few wrong
31622         opcode argument types.
31623
31624 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31625
31626         * icall.c: added GetUninitializedObjectInternal internal call.
31627
31628 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
31629
31630         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
31631         to the right domain.
31632
31633 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
31634
31635         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
31636
31637         * class.c (class_compute_field_layout): set blittable to false for Strings
31638
31639         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
31640
31641 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
31642
31643         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
31644         first chunk of code to create types at runtime. Code to
31645         handle ReflectedType/DeclaringType. Make reflection handles
31646         domain specific.
31647
31648 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
31649
31650         * class.c: set correct name in arrays.
31651
31652 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
31653
31654         * appdomain.c (mono_domain_transfer_object): make it work with
31655         valuetypes. bug fixes.
31656
31657 2002-08-12  Dick Porter  <dick@ximian.com>
31658
31659         * object.h: Rename some parameters to avoid c++ keywords (Patch
31660         from Joseph Wenninger <kde@jowenn.at>)
31661
31662 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
31663
31664         * icall.c: added icall to implement Assembly.GetFile*.
31665
31666 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
31667
31668         * reflection.h, reflection.c: code to embed managed resources.
31669
31670 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
31671
31672         * class.c: move all the type size stuff into
31673         class_compute_field_layout().
31674
31675 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31676
31677         * class.c: ensure enums have always the correct instance size.
31678         * unicode.c: remove wrong assert.
31679
31680 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
31681
31682         * assembly.c: fix mem corruption issue.
31683         * image.h, image.c: added mono_image_get_resource () to access
31684         managed resources.
31685         * icall.c: implemented Assembly.EntryPoint property and some
31686         Managed Resources related internalcalls.
31687
31688
31689 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
31690
31691         * image.c, image.h: impemented mono_image_get_entry_point ().
31692         * appdomain.c: use mono_image_get_entry_point.
31693
31694 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
31695
31696         * reflection.c: support the object type argument when loading
31697         custom attributes.
31698
31699 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
31700
31701         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
31702         String as return type.
31703
31704 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
31705
31706         * reflection.c: fix encoding of named args for custom attrs to match
31707         the ms implementation. Read them back when instantiating custom
31708         attributes.
31709
31710 2002-08-02  Radek Doulik  <rodo@ximian.com>
31711
31712         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
31713         by Dietmar as quick fix
31714         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
31715         16 as stack size, used on more places as quick fix before Dietmar
31716         will fix it properly
31717
31718 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
31719
31720         * object.h, object.c: added accessors for fields and properties.
31721
31722 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
31723
31724         * class.c, class.h: made mono_class_get_field_from_name ()
31725         loop on parent types.
31726         Added mono_class_get_property_from_name ().
31727
31728 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
31729
31730         * class.c, class.h: move the code to setup the type vtable in its own
31731         function so that it can be reused also for types created at runtime.
31732         Eliminate the "class" identifier from the header file.
31733         * reflection.c: setup the vtable for enums so that we can create
31734         objects for use in SetConstant ().
31735
31736 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
31737
31738         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
31739         instead of the delegate itself as this pointer (bug #28383)
31740
31741 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
31742
31743         * marshal.c (mono_marshal_get_managed_wrapper): added return type
31744         conversions.
31745
31746 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
31747
31748         * loader.c: don't set the pinvoke bit on icalls.
31749
31750 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
31751
31752         * debug-helpers.c (mono_method_full_name): only print a number to
31753         indicate wrapper type (so that the output is more readable in traces).
31754
31755 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
31756
31757         * class.c (mono_class_init): include method override patch from Paolo
31758
31759 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
31760
31761         * icall.c: fixed GetTypeCode().
31762
31763 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
31764
31765         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
31766         use real delegate invoke function to make it work with multicast
31767         delegates (fix bug# 28291).
31768
31769 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
31770
31771         * object.c: load constant strings.
31772
31773 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
31774
31775         * reflection.c: no magic numbers.
31776         * tabledefs.h: security action enum.
31777
31778 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
31779
31780         * assembly.c: fix possible memory corruption.
31781
31782 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
31783
31784         * reflection.h, reflection.c: added support for linking resources.
31785         * verify.c: check we have an updated corlib.
31786
31787 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
31788
31789         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
31790         string arrays.
31791         (mono_marshal_string_array): null terminate unmanaged string arrays.
31792         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
31793
31794 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
31795
31796         * icall.c: Type.GetType () can now return also types from the
31797         calling assembly.
31798
31799 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
31800
31801         * loader.h, loader.c: stack walking support.
31802         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
31803         GetCallingAssembly.
31804
31805 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
31806
31807         * marshal.c: added optimisations for blittable types 
31808
31809         * class.c (mono_array_class_get): do not set blittable attribute on arrays
31810         (mono_class_setup_mono_type): set blittable attribute for single
31811         and double.
31812
31813         * marshal.c (mono_string_utf8_to_builder): impl.
31814         (mono_string_builder_to_utf8): impl.
31815         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
31816
31817 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
31818
31819         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
31820         (mono_marshal_get_managed_wrapper): impl. byref types
31821
31822 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31823
31824         * icall.c:
31825         (search_method): don't display debug message. 
31826
31827 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
31828
31829         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
31830
31831 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
31832
31833         * appdomain.c: set the missing filename when throwing exception.
31834
31835 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
31836
31837         * metadata.c (mono_type_size): code cleanup
31838         (mono_type_stack_size): removed some test code
31839
31840 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
31841
31842         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
31843         mono_get_exception_file_not_found now.
31844
31845         * exception.c (mono_exception_from_name_two_strings): New version
31846         that will call a constructor with two string arguments. 
31847         (mono_get_exception_file_not_found): New helper routine, used to
31848         report file-not-found errors.
31849
31850 2002-07-20  Dick Porter  <dick@ximian.com>
31851
31852         * process.h:
31853         * process.c: Pass file handles to CreateProcess
31854         
31855         * icall.c:
31856         * file-io.h:
31857         * file-io.c: Implemented CreatePipe
31858
31859 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
31860
31861         * metadata.c (mono_get_param_info): set alignment for value types
31862
31863 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
31864
31865         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
31866         Constify mono_domain_assembly_open().
31867         * loader.c: handle null namespace in icalls.
31868
31869 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
31870
31871         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
31872         (emit_str_to_ptr_conv): marshal object as structs
31873
31874         * metadata.c (mono_type_to_unmanaged): marshal object as structs
31875
31876         * marshal.c (mono_marshal_get_runtime_invoke): support value types
31877
31878 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
31879
31880         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
31881         (mono_marshal_get_native_wrapper): we an now return value types
31882
31883 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
31884
31885         * verify.c: more checks implemented.
31886
31887 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
31888
31889         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
31890         (fix bug #27695)
31891         (mono_marshal_get_native_wrapper): allow byref arguments
31892         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
31893         impl. PtrToStringXXX methods
31894         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
31895         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
31896         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
31897         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
31898         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
31899
31900 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
31901
31902         * reflection.c: fix buglet in parsing an assembly name.
31903
31904 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
31905
31906         * marshal.c (emit_ptr_to_str_conv): first impl.
31907
31908 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
31909
31910         * object.c, class.h: cache the vtable in the class as suggested by
31911         vargaz@freemail.hu (Zoltan Varga).
31912
31913 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
31914
31915         * class.h, loader.c: added mono_field_from_token().
31916         * verify.c: first cut of type checking code.
31917
31918 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
31919
31920         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
31921
31922 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
31923
31924         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
31925         (fix bug #27782)
31926         (mono_marshal_get_remoting_invoke): impl.
31927         (mono_delegate_begin_invoke): impl.
31928         (mono_mb_emit_save_args): impl.
31929         (mono_delegate_end_invoke): impl.
31930         (mono_marshal_get_delegate_begin_invoke):
31931         (mono_marshal_get_delegate_end_invoke):
31932         (mono_marshal_get_delegate_invoke): generate a special name for
31933         those methods (including the signature) and associate them whith
31934         the delegate class. 
31935
31936 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
31937
31938         * reflection.[ch]: 
31939         (mono_reflection_type_from_name): now it has a MonoImage parameter
31940         which is used as the default image to search the type in. If the image
31941         is NULL or getting the type from it fails, it defaults to corlib.
31942
31943         * icall.c: changed 1 call to mono_reflection_type_from_name to match
31944         new parameter.
31945
31946 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
31947
31948         * reflection.c: update the parameter table index.
31949
31950 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
31951
31952         * domain.c: don't include the mark byte in the string hash.
31953
31954 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
31955
31956         * icall.cs: icall for Type.GetTypeCode ().
31957         * verify: a couple of fixes and disabled local initialization checks.
31958
31959 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
31960
31961         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
31962
31963         * debug-helpers.c (mono_method_full_name): print the type of the
31964         runtime wrapper
31965
31966         * metadata.c (mono_signature_hash): a hash function for signatures
31967         (mono_signature_hash): better hash algorithm
31968
31969         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
31970
31971         * debug-helpers.c (mono_method_full_name): this can now generate
31972         method names with signatures
31973
31974         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
31975         method dont have this pointers.
31976
31977 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
31978
31979         * reflection.c: fixup typebuilder tokens.
31980         * image.c: fix buglet.
31981         * marshal.h: remove whitespace.
31982         * metadata.h, metadata.c: reinstate code that was removed.
31983         * verify.c: handle catch directives and fix another couple of bugs.
31984
31985 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
31986
31987         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
31988         (mono_marshal_get_native_wrapper): make it comp. with the old code
31989         (mono_marshal_get_native_wrapper): support boolean
31990         (mono_marshal_get_managed_wrapper): support more types
31991
31992 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
31993
31994         * class.c (class_compute_field_layout): compute class->blittable attribute.
31995
31996 2002-07-09  Dick Porter  <dick@ximian.com>
31997
31998         * threads.c: Make the thread cleaning up cope with threads that
31999         call ExitThread()
32000
32001 2002-07-08  Radek Doulik  <rodo@ximian.com>
32002
32003         * reflection.c (method_encode_code): use non-translated values to
32004         compute finally_start, this fixes exception handling on ppc, yay!
32005
32006         * decimal.h (struct signscale): fix endianess
32007
32008 2002-07-07  Radek Doulik  <rodo@ximian.com>
32009
32010         * reflection.c: swap box_val and not val
32011
32012 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
32013
32014         * reflection.c, reflection.h: handle full assembly info in type name.
32015         Handle Type arguments when loading custom attributes.
32016         * icall.c: updated to use new mono_reflection_type_from_name () method.
32017
32018 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32019
32020         * loader.c:
32021         (method_from_memberref): also print assembly name when method not found.
32022
32023 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32024
32025         * icall.c:
32026         (ves_icall_TypeGetProperties): fixed bug #27473. 
32027
32028 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32029
32030         * reflection.c: display image name and token when cannot find the
32031         .ctor for an attribute.
32032
32033 2002-07-05  Martin Baulig  <martin@gnome.org>
32034
32035         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
32036
32037 2002-07-04  Dick Porter  <dick@ximian.com>
32038
32039         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
32040         compile on mingw.  This will cause mingw builds to not wait for
32041         subthreads to terminate after the main thread does.  I've lodged a
32042         bug with the mingw developers for them to wrap OpenThread().
32043
32044 2002-07-03  Dick Porter  <dick@ximian.com>
32045
32046         * threads.c: Store thread IDs instead of handles, because
32047         GetCurrentThread() returns a pseudohandle and therefore stores
32048         useless values.  mono_thread_cleanup() continues checking the
32049         array of threads until it is empty, to cope with subthreads
32050         spawning new threads after the main thread has finished.
32051
32052         * profiler.h:
32053         * profiler.c:
32054         * profiler-private.h: Pass the thread ID to thread profiler
32055         functions, instead of a handle
32056
32057 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32058
32059         * verify.c: fixes to make it more usable.
32060         * pedump.c: added --verify code to verify IL code in an assembly.
32061
32062 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32063
32064         * reflection.c: turn errors into warnings to allow compiling corlib.
32065
32066 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
32067
32068         * reflection.c: add special cases to compile corlib.
32069
32070 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32071
32072         * reflection.c: handle properties with only a set method.
32073
32074 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32075
32076         * opcodes.h: add enum with opcodes in opval order.
32077
32078 2002-07-01  Dick Porter  <dick@ximian.com>
32079         
32080         * object.h:
32081         * object.c (mono_runtime_run_main): Removed unneeded argument
32082
32083 2002-06-28  Martin Baulig  <martin@gnome.org>
32084
32085         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
32086
32087 2002-06-27  Dick Porter  <dick@ximian.com>
32088
32089         * threads.c: Store the handle in both the parent thread and in the
32090         subthread, to minimise the time between starting a new thread and
32091         storing its ID.
32092
32093 2002-06-26  Dick Porter  <dick@ximian.com>
32094
32095         * appdomain.c (mono_runtime_cleanup): Close the socket library
32096         after all the threads have finished, not before
32097
32098 2002-06-26  Martin Baulig  <martin@gnome.org>
32099
32100         * debug-symfile.c (mono_debug_find_source_location): Added
32101         `guint32 *line_number' argument.  If it's not NULL, store the line number
32102         there and return the file name without the line number.
32103
32104 2002-06-25  Dick Porter  <dick@ximian.com>
32105
32106         * icall.c:
32107         * process.h:
32108         * process.c: Process forking and other support functions
32109
32110 2002-06-25  Dick Porter  <dick@ximian.com>
32111
32112         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
32113         things dont happen when the image is closed.
32114         (mono_image_lookup_resource): Walk the resource section looking
32115         for a particular entry
32116
32117         * cil-coff.h: PE resource section decoding
32118
32119 2002-06-25  Dick Porter  <dick@ximian.com>
32120         
32121         * assembly.h:
32122         * assembly.c: 
32123         (mono_assembly_foreach): Accessor functions to walk the list of
32124         loaded assemblies
32125         (mono_assembly_set_main):
32126         (mono_assembly_get_main): Process methods need to know which
32127         assembly is the "main" one
32128
32129         * object.c (mono_runtime_run_main): Record the main assembly
32130
32131         * debug-helpers.c: Fix typo
32132
32133 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
32134
32135         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
32136         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
32137
32138 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32139
32140         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
32141
32142 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
32143
32144         * image.c (do_mono_image_open): Initialize reference count,
32145         otherwise we leak the MonoImage.
32146
32147 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32148
32149         * reflection.c: small tweak to handle self-hosting.
32150
32151 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32152
32153         * reflection.c: fix type name parse code.
32154
32155 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32156
32157         * reflection.c: break out of the loop.
32158         * image.c: special case corlib.
32159
32160 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32161
32162         * reflection.c: add all the custom attrs at the end to ensure the
32163         ctors have been properly initialized when the attributes are defined
32164         in the current assembly.
32165
32166 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32167
32168         * reflection.c: handle correctly multiple-nested types.
32169
32170 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
32171
32172         * row-indexes.h: fix typos.
32173         * reflection.c: adjust for typos and fix method_def_or_ref
32174         encoding in MethodImpl table.
32175
32176 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32177
32178         * reflection.c: fix entry point patching (thanks Serge!).
32179
32180 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
32181
32182         * verify.c: add check for System.Exception
32183
32184 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32185
32186         * image.c, class.c: minifix for code just c&p'ed.
32187         * reflection.c: warning fix.
32188         * object.h, loader.h, domain.c: load also StringBuilder.
32189
32190 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32191
32192         * marshal.h, marshal.c: some support code to handle complex marshaling.
32193
32194 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32195
32196         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
32197         Better signatures with vtable error dump.
32198
32199 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
32200
32201         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
32202
32203 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
32204
32205         * icall.c (ves_icall_Type_GetField): impl.
32206
32207 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32208
32209         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
32210         to retrieve a marshal description blob for a field or param.
32211
32212 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32213
32214         * reflection.h, reflection.c: change order of nested type emission
32215         to avoid table corruption. The NestedTypes table is sorted.
32216         * icall.c: change order of GetConstructor results to workaround mcs bug.
32217
32218 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32219
32220         * reflection.h, reflection.c: handle field and param marshal
32221         information.
32222
32223 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32224
32225         * icall.c, marshal.c marshal.h: more Marshal class implementation.
32226
32227 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32228
32229         * reflection.c: fix call convention.
32230
32231 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32232
32233         * reflection.h, reflection.c: mono_image_get_memberref_token()
32234         takes a type instead of a class, now. Added
32235         mono_image_get_array_token() to create tokens for the special
32236         multi-dim array methods.
32237
32238 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32239
32240         * assembly.c: handle modules (no assembly table). Split
32241         loading references in its own function.
32242         * class.c: handle moduleref resolution scope.
32243         * image.c, image.h: cache module name in image.
32244
32245 2002-06-07  Martin Baulig  <martin@gnome.org>
32246
32247         * reflection.c (mono_image_get_type_info): Only add a class layout entry
32248         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
32249
32250 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32251
32252         * icall.c: more signature fixes that used uint instead of int.
32253
32254 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32255
32256         * reflection.c: fixed signature of field refs.
32257
32258 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32259
32260         * class.c, reflection.c: handle typerefs of nested types
32261         (both on read and when writing files).
32262
32263 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
32264
32265         * icall.c: fix method signatures that tried to workaround the previous
32266         typo, d'oh!
32267
32268 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32269
32270         * debug-helpers.c: fix typo.
32271
32272 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32273
32274         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
32275         rewrote the PE/COFF writing code (our programs are understood by the
32276         ms runtime, now).
32277
32278 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32279
32280         * gc.c, gc.h, icall.c: weakreference support.
32281
32282 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32283
32284         * Makefile.am, mono-config.c: use $(sysconfdir).
32285
32286 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32287
32288         * icall.c: changed default precision of Double.ToString() to 15.
32289         Fixed memory leak. Unified with Single.ToString.
32290
32291 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
32292
32293         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
32294
32295 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32296
32297         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
32298         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
32299         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
32300         and myself.
32301
32302 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32303
32304         * debug-symfile.c, sysmath.c: yet more compilation fixes.
32305
32306 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32307
32308         * reflection.c, socket-io.c: more compilation fixes.
32309
32310 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32311
32312         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
32313         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
32314         unicode.c: warning and compiler compatibility fixes.
32315
32316 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32317
32318         * class.h, metadata.c: fixed warnings/compilation errors.
32319
32320 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32321
32322         * Makefile.am, mono-config.c, mono-config.h: configuration file
32323         support routines.
32324         * loader.c, loader.h: make Dll mapping configurable at runtime in the
32325         config file. Export methods to insert and lookup mappings.
32326
32327 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32328
32329         * reflection.c: handle types and boxed objects in custom attr
32330         constructors.
32331
32332 2002-05-30  Martin Baulig  <martin@gnome.org>
32333
32334         * debug-symfile.c
32335         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
32336
32337 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
32338
32339         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
32340         to lookup the implmap row for a P/Invoke method.
32341         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
32342         P/Invoke method from the runtime on an as needed basis.
32343
32344 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
32345
32346         * metadata.c (mono_metadata_parse_signature): impl.
32347
32348 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32349
32350         * class.c: handle .pack directive.
32351
32352 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32353
32354         * object.c: initialize static fields with RVA data.
32355
32356 2002-05-25  Martin Baulig  <martin@gnome.org>
32357
32358         * debug-symfile.c
32359         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
32360
32361 2002-05-24  Martin Baulig  <martin@gnome.org>
32362
32363         * debug-symfile.c
32364         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
32365         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
32366         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
32367
32368 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32369
32370         * object.c: special case string ctros in invoke.
32371         * gc.c: silly whitespace changes.
32372
32373 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
32374
32375         * threadpool.[ch]: impl. a threadpool that can
32376         be used by mint and mono.
32377
32378 2002-05-22  Martin Baulig  <martin@gnome.org>
32379
32380         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
32381         The first argument is now a `MonoReflectionModuleBuilder *', the return
32382         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
32383         `methods' field to get the method builder.  The `token' argument is the
32384         unfixed token.
32385
32386         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
32387         invalid characters instead of g_assert_not_reached()ing.  This seems
32388         to be the behaviour of mscorlib.
32389
32390 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
32391
32392         * object.c (mono_runtime_invoke_array): applied patch from Rachel
32393         Hestilow to fix bug #25104
32394
32395 2002-05-21  Martin Baulig  <martin@gnome.org>
32396
32397         * debug-symfile.c (mono_debug_find_source_location): New function.
32398         Looks up an IL offset in the line number table and returns the source
32399         location as a string.
32400
32401 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32402
32403         * icall.c:
32404         (mono_double_ToStringImpl): changed %f by %g until we have something
32405         better.
32406
32407 2002-05-21  Nick Drochak  <ndrochak@gol.com>
32408
32409         * icall.c : Use different name for Math.Pow's icall.  Needed to check
32410         parameters first in C#.
32411
32412 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32413
32414         * icall.c, reflection.h: added icall to get info about an event.
32415
32416 2002-05-20  Radek Doulik  <rodo@ximian.com>
32417
32418         * object.c (mono_value_box): don't use memcpy for boxing on BIG
32419         endian
32420         (mono_value_box): don't use memcpy for small sizes on
32421         architectures with unaligned access
32422
32423 2002-05-20  Martin Baulig  <martin@gnome.org>
32424
32425         * reflection.c (mono_reflection_setup_internal_class): Don't crash
32426         if `tb->parent == NULL'.
32427         (mono_reflection_create_internal_class): New function.  This is
32428         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
32429         for enum types.
32430
32431         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
32432         New interncall.
32433
32434 2002-05-19  Martin Baulig  <martin@gnome.org>
32435
32436         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
32437         argument to get the length, don't default to the array length.
32438
32439 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
32440
32441         * assembly.c (mono_assembly_setrootdir): New function used to
32442         override the MONO_ASSEMBLIES directory.
32443
32444 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32445
32446         * icall.c: ValueType_GetHashCode() initialize local var.
32447
32448 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32449
32450         * reflection.c: sort custom attributes table.
32451
32452 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32453
32454         * reflection.c: support named args in custom attributes (write support).
32455
32456 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
32457
32458         * reflection.c: fix finally position calculation.
32459
32460 2002-05-15  Radek Doulik  <rodo@ximian.com>
32461
32462         * reflection.c: fixed endianess at many places
32463
32464         * icall.c (ves_icall_InitializeArray): comment out debug msg
32465
32466 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
32467
32468         * object.c (mono_unhandled_exception): new function to handle
32469         unhandled exceptions.
32470         (mono_unhandled_exception): call the UnhandledException event.
32471         (mono_runtime_delegate_invoke): impl.
32472
32473 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
32474
32475         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
32476         returns the RVA, not the direct pointer to the data. Handle the case
32477         when the class size is fixed.
32478
32479 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32480
32481         * reflection.c: fix some endianess issues.
32482
32483 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
32484
32485         * object.c (mono_runtime_invoke): is now able to catch exceptions.
32486
32487         * threads.c (mono_thread_init): added a callback which is invoked
32488         at thread start.
32489
32490 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
32491         
32492         * icall.c: make GetHashCode return non-negative values.
32493
32494 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
32495
32496         * object.c, icall.c, gc.c: revert to address-based hashcode.
32497
32498 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
32499
32500         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
32501
32502 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32503
32504         * icall.c, class.c: special case <Module>.
32505
32506 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
32507
32508         * icall.c: fix bug in GetNow().
32509
32510 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
32511
32512         * object.c (mono_runtime_class_init): make sure that we call all
32513         static class constructors.
32514
32515 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32516
32517         * reflection.c: sort methodsemantics table.
32518
32519 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32520
32521         * reflection.h, reflection.c: honour init locals setting.
32522
32523 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
32524
32525         * icall.c: copied Double ToStringImpl for Single ToStringImpl
32526
32527 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
32528
32529         * reflection.c: support ContructorBuilders in attribute blob creation.
32530
32531 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32532
32533         * reflection.c: some changes to build a binary that can be run
32534         directly in windows.
32535
32536 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
32537
32538         * loader.c: print a big message when an icall can't be found.
32539
32540 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32541
32542         * string-icalls.c: fix bug 24248.
32543
32544 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
32545
32546         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
32547         icall.c, reflection.h: separate assembly loading by pathname and by
32548         assembly name. Use the MONO_PATH env var to search for assemblies.
32549
32550 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32551
32552         * assembly.c, image.h: add some support for assemblies
32553         with multiple modules.
32554         * class.c, class.h: export mono_class_from_typeref().
32555         * loader.c: remove duplicated code and use mono_class_from_typeref(),
32556         instead.
32557
32558 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32559
32560         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
32561         documentation says (the ECMA one is correct).
32562
32563 2002-05-02  Dick Porter  <dick@ximian.com>
32564
32565         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
32566         Don't name the synchronisation mutex.
32567
32568 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
32569
32570         * rand.c
32571         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
32572         Make the prototypes match.
32573         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
32574         Same.
32575
32576         * icall.c
32577         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
32578         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
32579         all systems have tm.tm_zone, so use strftime() with %Z to print
32580         the timezone abreviation into a temp string.
32581
32582         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
32583         rather than mono_array_addr() on a MonoString on Big Endian
32584         machines.
32585
32586 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
32587
32588         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
32589         fix bug 24041
32590
32591 2002-04-30  Dick Porter  <dick@ximian.com>
32592
32593         * socket-io.c: Cope with SOCKET being an integer rather than a
32594         pointer now.
32595
32596         * threads.c: Added Thread_free_internal, to deal with thread
32597         handle cleanup.  Moved calls to handle_store() and handle_remove()
32598         to start_wrapper(), so each can only be called once.  Allocate
32599         synchronisation blocks with GC_malloc(), and use GC finalisation
32600         to close the handles.
32601
32602         * icall.c: added System.Threading.Thread::Thread_free_internal
32603
32604 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32605
32606         * icall.c: support Environment.Exit, CommandLineArgs().
32607
32608 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32609
32610         * object.c, object.h: added mono_runtime_run_main () and
32611         mono_runtime_get_main_args () for use in System.Environment.
32612
32613 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32614
32615         * gc.c: fix thinko, enable actual finalization since the jit is now
32616         fixed.
32617
32618 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32619
32620         * gc.c, object.c: take into account that an object may be offset wrt the address
32621         returned by GC_malloc().
32622
32623 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
32624
32625         * image.c: handle files without entries in the assembly table (modules).
32626
32627 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
32628
32629         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
32630         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
32631         allowed to be null when it's System.Object class setup.
32632
32633 2002-04-27  Martin Baulig  <martin@gnome.org>
32634
32635         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
32636         if `tb->parent == NULL' rather than crashing.
32637
32638 2002-04-28  Nick Drochak  <ndrochak@gol.com>
32639
32640         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
32641         calling acos() where asin() should have been called.
32642
32643 2002-04-26  Martin Baulig  <martin@gnome.org>
32644
32645         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
32646         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
32647         there's a subdirectory called `System', but we don't want to read that
32648         subdirectory as an assembly.
32649
32650 2002-04-25  Martin Baulig  <martin@gnome.org>
32651
32652         * debug-symfile.c: Reflect latest MonoString changes.
32653
32654 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32655
32656         * rand.c, rand.h: instance method icalls need to have an explicit
32657         this pointer as first argument in the C implementation.
32658
32659 2002-04-25  Nick Drochak <ndrochak@gol.com>
32660
32661         * icall.c: Fix typo in map for GetNonZeroBytes
32662
32663 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
32664
32665         * string-icalls.c : String does now passes unit tests without any 
32666         errors, the following changes has been made:
32667         
32668         Implemented replace methods.
32669         Renaming of methods to (try) follow the standard.
32670         Fixed compare ordinal
32671         Made all memory allocated directly to function instead of via icall function.
32672         Small performance fix in is_in_array function
32673                         
32674  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
32675
32676         c (mono_string_Internal_ctor_charp_int_int):
32677         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
32678         sindex < 0, throw ArgumentOutOfRangeException instead of
32679         ArgumentNullException.
32680
32681         Added new check for length == 0, however
32682         I need to make it return String.Empty from the C code.
32683         
32684         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
32685         that calculate the length for us here.
32686         
32687         (mono_string_Internal_ctor_sbytep_int_int): Replaced
32688         mono_string_new_utf16 with mono_string_new, since value is utf8.
32689
32690 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32691
32692         * object.c: register the object for finalization if needed.
32693         Allocate one more char in the string for the terminating 0 char.
32694
32695 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32696
32697         * class.c, class.h, image.c: check if a type implemenst a destructor.
32698         Use the proper key for array class lookups.
32699         * icall.c: register the icalls in the System.GC class.
32700         * gc.c, gc.h: GC-related functions and icalls.
32701
32702 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32703
32704         * icall.c:
32705         * socket-io.c:
32706         * unicode.c: free some strings gotten from mono_string_to_utf8 and
32707         changed a couple of free () by g_free ().
32708
32709         * decimal.c: one-liner in the comments for decimal2string ().
32710
32711 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
32712
32713         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
32714
32715 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
32716
32717         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
32718         * object.c (mono_runtime_invoke_array) : handle null in params
32719
32720 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
32721
32722         * string-icalls.c: fixed bug in split (one off bug)
32723
32724 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
32725
32726         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
32727         * icalls.c: added String::Equals as internal method
32728
32729 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
32730
32731         * threads.c: fixed bug in the double interlocked functions
32732
32733 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
32734
32735         * threads.c: implemented all of the new interlocked icalls.
32736         * string-icalls.c: fix a bug in insert.
32737         * icalls.c: added the icalls for interlocked, removed old string functions.
32738         
32739 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
32740
32741         * loader.c: fix off-by-one error when reading argument names.
32742
32743 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32744
32745         * profiler.c: win32 counter implementation (untested).
32746         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
32747         (the latter needs testing and more complete impl. from win32 folks).
32748
32749 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
32750
32751         * object.c: mono_array_new_full workaround mono_array_class_get
32752         problem.
32753
32754 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
32755
32756         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
32757         * object.h (mono_string_chars): Changed casting type.
32758
32759 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
32760
32761         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
32762                            method signatures to use gunichar2 instead of gint16.
32763
32764 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
32765
32766         * object.h, object.c: domain-specific versions of mono_object_new and
32767         mono_array_new.
32768
32769 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
32770
32771         * object.c: changed String layout
32772
32773         * string-icalls.c (mono_string_Internal_ctor_chara): added
32774         internal string constructors.
32775
32776 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
32777
32778         * threads.c: pass 'this' to the thread start routine.
32779
32780 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32781
32782         * string-icalls.c: fix IndexOf and LastIndexOf. Now
32783         InternalCompareStr don't call twice mono_string_cmp_char for the last
32784         character. Improved performance in mono_string_cmp_char.
32785
32786 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
32787
32788         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
32789         code into its own library: libmonoruntime.
32790
32791 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
32792
32793         * object.h, object.c: changed array format so that szarrays do not
32794         require a bounds structure.
32795         * icall.c, appdomain.c: support for new szarray format.
32796
32797 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
32798
32799         * metadata.c: compare also the retuns type when comparing signatures:
32800         we didn't do this as an optimization since really overloaded methods
32801         must differ also in the arguments, but this doesn't work with
32802         low-level IL code (or when using explicit conversion operators: see
32803         bug#23498 for an example).
32804
32805 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32806
32807         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
32808
32809 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
32810
32811         * icall.c: make MonoType::GetElementType its own icall.
32812
32813 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32814
32815         * icall.c: remove MonoMethod_get_Name().
32816         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
32817         object.
32818
32819 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
32820
32821         * string-icalls.c: optimized a few methods.
32822
32823 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
32824
32825         * icall.c: added all new string internal calls
32826         * string-icalls.c: added, new string internal call implementation.
32827         * object.c: added mono_string_new_size for allocating a string a size
32828
32829 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
32830
32831         * object.c (mono_object_isinst): use the same code as in the
32832         optimized x86 version.
32833
32834 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32835
32836         * profiler.c: TSC-based timer code (faster and more accurate).
32837         Not hooked up in configure, yet (set USE_X86TSC to 1).
32838
32839 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
32840
32841         * profiler.c, profiler.h: track time spent compiling methods.
32842         * threads.c: track thread creation/destruction.
32843
32844 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
32845
32846         * profiler.c, profiler.h, profiler-private.h: profiling interface
32847         and sample implementation. Moved here so that it can be used also by
32848         the jit.
32849
32850 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
32851
32852         * reflection.c, reflection.h: keep types and other handles separate in
32853         the hash tables for referred tokens. Add guid for modules.
32854
32855 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32856
32857         * assembly.c: fix bugs found with valgrind.
32858         * metadata.h, metadata.c: added mono_metadata_guid_heap().
32859
32860 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
32861
32862         * threads: added icall support for getting current domain for
32863                    the thread.
32864  
32865 2002-04-13  Martin Baulig  <martin@gnome.org>
32866
32867         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
32868         (MonoDebugVarInfo): Added `index' field for register based addresses.
32869         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
32870         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
32871         `MonoDebugVarInfo *params' and `guint32 this_offset' with
32872         `MonoDebugVarInfo *this_var'.
32873
32874         * debug-symfile.c (relocate_variable): New static function to write
32875         a location description for a local variable or method parameter.
32876
32877 2002-04-12  Martin Baulig  <martin@gnome.org>
32878
32879         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
32880         stack offset and begin/end scope address of a local variable.
32881         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
32882         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
32883         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
32884
32885         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
32886         Added new relocation types for start/end scope of a local variable.
32887
32888 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32889
32890         * object.h: add mono_object_domain() macro.
32891         * reflection.c: handle typespecs.
32892         * icall.c: MonoMethod::get_Name() implementation.
32893
32894 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32895
32896         * icall.c: String::GetHashCode() icall implementation.
32897
32898 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32899
32900         * icall.c: String::IndexOfAny icall.
32901         * object.c, object.h: make array->max_length more useful.
32902         Intrduced mono_object_class() and mono_string_length() macros.
32903
32904 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32905
32906         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
32907         instead of g_unichar_isdigit.
32908
32909 2002-04-11  Nick Drochak  <ndrochak@gol.com>
32910
32911         * icall.c: Implement a simple Double.ToString().
32912
32913 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
32914
32915         * appdomain.h: only io-layer.h is supposed to be included.
32916         * icall.c: explicitly import environ. Fix warning.
32917
32918 2002-04-10  Nick Drochak  <ndrochak@gol.com>
32919
32920         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
32921                 return true even if it's not Daylight Savings time.
32922                 Only return false for the case where the function isn't
32923                 implemented for a plaform (read Windows).
32924
32925 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32926
32927         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
32928         data with a mutex.
32929
32930 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
32931
32932         * mempool.c (mono_mempool_alloc): only use g_malloc when
32933         absolutely necessary.
32934
32935 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
32936
32937         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
32938
32939         * class.c (mono_class_vtable): use domain mempool to allocate vtable
32940         (mono_class_proxy_vtable): use domain mempool
32941
32942 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32943
32944         * appdomain.h, appdomain.c: split initialization that requires the
32945         execution engine support into mono_runtime_init().
32946
32947 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
32948
32949         * class.c (mono_class_init): don't include vtable inside MonoClass
32950         to save some memory, gather some statistics.
32951         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
32952
32953 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
32954
32955         * icall.c: internalcall implementation for ValueType.Equals().
32956
32957 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
32958
32959         * object.c (mono_message_init): moved 
32960         (mono_runtime_exec_main): new arch. independent impl.
32961         (mono_runtime_invoke_array): new method - like
32962         mono_runtime_invoke, but you can pass an array of objects.
32963         (mono_remoting_invoke): new arch. independent impl.
32964         (mono_message_invoke): new arch. independent impl.
32965         (mono_runtime_class_init): new arch. independent impl.
32966         (mono_runtime_object_init): new arch. independent impl.
32967
32968 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32969
32970         * metadata.c, object.c, reflection.c: documented the exported
32971         functions.
32972
32973 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
32974
32975         * icall.c: simpler code to pass the assembly builder data to corlib.
32976         Implement GetNestedTypes() internalcall.
32977
32978 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
32979
32980         * class.c: warn if a type can't be loaded.
32981
32982 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
32983
32984         * image.h: typedef MonoImageOpenStatus
32985         * types.h: removed unused file
32986         
32987 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
32988
32989         * icall.c: Enum_ToObject accepts enum value arguments.
32990
32991 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32992
32993         * class.c: move initialization of properties, events and nested
32994         classes, so that they happen for interfaces, too.
32995
32996 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32997
32998         * icall.c: cleanup some ugly casts in Array_SetValue*.
32999
33000 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33001
33002         * icall.c: the values array fro enums is of the correct type, now.
33003         Implement (correctly) getFullName instead of assQualifiedName for
33004         MonoType.
33005         * reflection.h, reflection.c: added mono_type_get_name ().
33006
33007 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33008
33009         * assembly.c, image.h: for each MonoImage, record from wich assembly
33010         it was loaded.
33011         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
33012         Make Type.Assembly work.
33013
33014 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
33015
33016         * debug-symfile.h: use char* instead of gpointer to avoid
33017         unnecessary casts.
33018
33019         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
33020
33021         * icall.c (ves_icall_InternalExecute): impl. FielSetter
33022         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
33023
33024 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
33025
33026         * icall.c (mono_message_init): impl. (code cleanup)
33027         (ves_icall_InternalExecute): impl. FieldGetter
33028
33029         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
33030         defined we call all (non-static)methods through the vtable. 
33031
33032 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
33033
33034         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
33035         finalizer even though the memory is still referenced (and the chunk of
33036         memory is not freed).
33037
33038 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
33039
33040         * assembly.c: fix brokeness.
33041
33042 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
33043
33044         * class.c: kill some warnings. Check explicit interface method
33045         implementation also without considering the namespace.
33046         Load also literal strings in static class data.
33047
33048 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
33049
33050         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
33051         (default_assembly_name_resolver): Make the resolver take the
33052         "base" directory where the assembly was originally defined, so we
33053         can load DLLs that are in the same directory as the assembly that
33054         is being referenced.
33055
33056 2002-03-28  Dick Porter  <dick@ximian.com>
33057
33058         * file-io.h: 
33059         * file-io.c:
33060         * socket-io.c: 
33061         * unicode.h: 
33062         * unicode.c: Warning cleanups
33063
33064 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
33065
33066         * object.h, reflection.h: use the correct type instead of MonoObject.
33067
33068 2002-03-28  Martin Baulig  <martin@gnome.org>
33069
33070         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
33071         (mono_debug_update_symbol_file): Initialize classes if necessary.
33072
33073 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
33074
33075         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
33076         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
33077
33078 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
33079
33080         * assembly.h: fix function prototype.
33081         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
33082         * mono-endian.h: use const cast.
33083
33084 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
33085
33086         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
33087
33088 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
33089
33090         * loader.c: don't assert when a typeref can't be loaded, give
33091         a chance to the runtime to trow an exception instead.
33092         * loader.h: fix warning.
33093
33094 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
33095
33096         * class.c (mono_class_proxy_vtable): added proxy support
33097
33098 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
33099
33100         * icall.c: removed last of PAL calls, added System.Environment
33101         * file-io.h, file-io.c: MonoIO implementation
33102         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
33103
33104 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
33105
33106         * appdomain.c: do not use the byte marker in ldstr table lookup.
33107         * debug-helpers.c: allow two ':' to separate class and method name.
33108         * object.c: allocate arrays bounds with the GC, too.
33109         * verify: add a few more checks.
33110
33111 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
33112
33113         * reflection.c: output also literal strings. Allocate parameter data
33114         with GC_malloc() (thanks, Martin, for catching this!).
33115
33116 2002-03-26  Martin Baulig  <martin@gnome.org>
33117
33118         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
33119         include the `this' offset in the `param_offsets'.
33120
33121 2002-03-25  Martin Baulig  <martin@gnome.org>
33122
33123         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
33124         mono_debug_get_class() function to get the classes. Added new
33125         relocation types for arrays and strings.
33126         (mono_debug_get_class): New static function to search in all
33127         referenced assemblies for a metadata token.
33128
33129         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
33130
33131 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33132
33133         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
33134         hold gc-allocated objects. Make the string heap a stream like the
33135         others. Removed duplicated code when writing stream info.
33136         Added asserts to catch possible buffer overflows. Set the sorted map
33137         for tables that need sorting. Added some documentation.
33138
33139 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
33140
33141         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
33142         for interned strings and vtables.
33143
33144 2002-03-24  Martin Baulig  <martin@gnome.org>
33145
33146         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
33147         it in the array since it was created with g_slist_prepend().
33148
33149 2002-03-24  Martin Baulig  <martin@gnome.org>
33150
33151         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
33152         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
33153         (mono_debug_method_from_token): Renamed to
33154         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
33155         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
33156
33157         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
33158         relocation types.
33159
33160         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
33161
33162 2002-03-24  Martin Baulig  <martin@gnome.org>
33163
33164         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
33165         (mono_debug_method_from_token): New func.
33166
33167         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
33168         New interncall, calls mono_debug_local_type_from_signature().
33169         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
33170         calls mono_debug_method_from_token().
33171
33172 2002-03-23  Martin Baulig  <martin@gnome.org>
33173
33174         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
33175         specifies the number of bytes to be converted, not the array size.
33176         Return the number of chars, not the number of bytes.
33177         (ves_icall_iconv_get_chars): The `byteCount' argument
33178         specifies the number of bytes to be converted, not the array size.
33179
33180 2002-03-23  Martin Baulig  <martin@gnome.org>
33181
33182         * reflection.h (MonoReflectionSigHelper): New type.
33183
33184         * reflection.c (mono_reflection_sighelper_get_signature_local),
33185         (mono_reflection_sighelper_get_signature_local): New functions.
33186
33187         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
33188         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
33189         interncalls.
33190
33191 2002-03-23  Martin Baulig  <martin@gnome.org>
33192
33193         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
33194         is_writeable is set.
33195         (mono_raw_buffer_update): New function to write the modified map
33196         back to disk.
33197
33198         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
33199
33200         * debug-symfile.c (mono_debug_update_symbol_file): Call
33201         mono_raw_buffer_update() when done writing.
33202
33203 2002-03-23  Martin Baulig  <martin@gnome.org>
33204
33205         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
33206
33207         * debug-symfile.c: Added support for arguments and local variables.
33208
33209 2002-03-23  Dick Porter  <dick@ximian.com>
33210
33211         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
33212         protected by ifdefs, hence breaking the w32 build.
33213
33214 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33215
33216         * object.c: implement is_interned() the right way.
33217
33218 2002-03-21  Martin Baulig  <martin@gnome.org>
33219
33220         * debug-symfile.[ch]: New files to handle debugging information
33221         files. There's also support to dynamically update these symbol
33222         files to include machine dependent information.
33223
33224 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
33225
33226         * threads.c (mono_thread_create): new function to create thread
33227         from C
33228
33229 2002-03-20  Martin Baulig  <martin@gnome.org>
33230
33231         * icall.c (ves_icall_InternalInvoke): Create a new object if the
33232         method is a constructor.
33233         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
33234         points to ves_icall_InternalInvoke().
33235
33236 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
33237
33238         * file-io.c: Flush shouldn't throw exceptions.
33239
33240 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
33241
33242         * file-io.c: FileStream flush support; FileSetLength now
33243         restores file pointer.
33244
33245 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
33246
33247         * class.c: set image for pointer classes.
33248
33249 2002/03/19  Nick Drochak <ndrochak@gol.com>
33250
33251         * sysmath.c: Forgot one.
33252
33253 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
33254
33255         * sysmath.c: Avoid redefining existing names.
33256
33257 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
33258
33259         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
33260         handled by runtime as icall rather than dllimport from libm.so
33261         * file-io.c, file-io.h: fixed handle argument type.
33262
33263 2002-03-18  Dick Porter  <dick@ximian.com>
33264
33265         * reflection.c (mono_image_get_type_info): rename interface to
33266         iface, because of "#define interface struct" on windows.
33267
33268 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
33269
33270         * class.c, class.h: rename and export mono_ptr_class_get().
33271         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
33272         * reflection.c, reflection.h, icall.c: better/saner type name
33273         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
33274         method signatures.
33275
33276 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
33277
33278         * class.c (mono_class_init): removed hardcoded GHC_SLOT
33279
33280         * icall.c (ves_icall_InternalInvoke): impl.
33281
33282 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33283
33284         * reflection.c: output the interface map table, too.
33285
33286 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
33287
33288         * class.c (class_compute_field_layout): separate computation of 
33289         static field layout
33290
33291 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
33292
33293         * icall.c: added System.Buffer support.
33294         * file-io.c: moved file icalls from PAL to FileStream.
33295
33296 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
33297
33298         * icall.c (ves_icall_System_Object_GetHashCode): impl.
33299
33300 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
33301
33302         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
33303
33304 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33305
33306         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
33307
33308 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
33309
33310         * debug-helpers.{c,h}: moved here from monograph some useful functions
33311         to locate a method by name/signature in a class or image. Included
33312         also a small and flexible IL disassembler.
33313
33314 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33315
33316         * reflection.c: fixup tokens in methods with small header size, too.
33317
33318 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
33319
33320         * object.c (mono_string_to_utf8): remove assert(!error), instead
33321         print a warning. 
33322
33323 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
33324
33325         * icall.c: update to the new mono_Array_class_get interface.
33326
33327 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
33328
33329         * appdomain.c, object.c: Boehm-GC enable.
33330         * icall.c: make get_data_chunk() support split data requests.
33331         Ensure a class is initialized in more cases. Return only the first
33332         property found in GetProperties() or the compiler gets confused. 
33333         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
33334         * reflection.h, reflection.c: add fixup mechanism for field and method
33335         tokens. Initialize assembly->typeref in a single place. Output
33336         properties after events. Support custom attributes for events, too.
33337         Typo fix for paramter custom attrs.
33338
33339 2002-03-07  Martin Baulig  <martin@gnome.org>
33340
33341         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
33342
33343 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
33344
33345         * class.c (mono_array_class_get): fix. for multi. dim. arrays
33346
33347 2002-03-06  Martin Baulig  <martin@gnome.org>
33348
33349         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
33350         non-zero lower bounds. See testcases #F10-#F13.
33351
33352 2002-03-05  Martin Baulig  <martin@gnome.org>
33353
33354         * exception.c (mono_get_exception_argument_out_of_range): New exception.
33355
33356         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
33357         ves_icall_System_Array_GetValue(), only calculate the absolute array position
33358         here.
33359         (ves_icall_System_Array_SetValue): Likewise.
33360         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
33361         as argument and does the actual work. This function is used when copying a
33362         multi-dimensional array.
33363         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
33364         now do all the widening conversions of value types.
33365         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
33366
33367 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33368
33369         * class.c: remove some magic numbers and use the smbolic names,
33370         instead. Added init_events() to load event info at class init time.
33371         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
33372         and mono_metadata_methods_from_event().
33373         * reflection.h, reflection.c: added support for writing out the evnets
33374         related information.
33375
33376 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
33377
33378         * reflection.h, icall.c: use a different method (GetInterfaces)
33379         to gather interface info and add isbyref, isprimitive and
33380         ispointer to the ves_icall_get_type_info() return value.
33381
33382 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
33383
33384         * class.h: stared adding support for events.
33385         * icall.c: split find_members implementation. Added debug icall to get
33386         the address of an object.
33387         * reflection.c: handle TypeBuilders in mono_type_get_object().
33388
33389 2002-03-01  Martin Baulig  <martin@gnome.org>
33390
33391         * icall.c (ves_icall_System_Array_GetLength): This must throw an
33392         ArgumentOutOfRangeException(), not an ArgumentException().
33393         (ves_icall_System_Array_GetLowerBound): Likewise.
33394         (ves_icall_System_Array_GetValue): Improved argument checking.
33395         (ves_icall_System_Array_SetValue): Improved argument checking.
33396
33397 2002-03-01  Martin Baulig  <martin@gnome.org>
33398
33399         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
33400         called with invalid arguments rather than just dying with g_assert().
33401         (ves_icall_System_Array_SetValue): Likewise.
33402         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
33403         raise a NotImplementedException instead.
33404         (ves_icall_System_Array_GetLength): Added argument checking.
33405         (ves_icall_System_Array_GetLowerBound): Added argument checking.
33406
33407 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
33408
33409         * object.h (mono_assert): new macros mono_assert and
33410         mono_assert_not_reached
33411
33412 2002-02-28  Martin Baulig  <martin@gnome.org>
33413
33414         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
33415         and "System::String::IsInterned" to "System::String::_IsInterned".
33416
33417 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
33418
33419         * icall.c: remove hacks for typebuilder. Added icall to create a
33420         modified type from a tybebuilder.
33421         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
33422         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
33423         to create a backing MonoClass for a TypeBuilder.
33424
33425 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33426
33427         * class.c, class.h: more refactoring of class init.
33428         Export mono_class_setup_mono_type() and mono_class_setup_parent().
33429
33430 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
33431
33432         * marshal.c, marshal.h: start of marshaling interface.
33433
33434 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
33435
33436         * icall.c: fix order in assembly qualified name icall.
33437
33438 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
33439
33440         * class.c: do not free str, since we store it in the hash table.
33441         * reflection.h: add label field to MonoILExceptionInfo.
33442         * reflection.c: handle references to more than one assembly. Handle
33443         case when there isn't a module created in the assembly.
33444
33445 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
33446
33447         * class.c: Fix typo. Start refactoring of class init code.
33448
33449 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
33450
33451         * appdomain.c: exit with 1 on error.
33452         * class.c: we already have the name in MonoClassField.
33453         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
33454         MonoStreamHeader instead of an offset of image->raw_metadata.
33455
33456 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
33457
33458         * appdomain.c (mono_init): Be even more descriptive about the error.
33459
33460 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
33461
33462         * appdomain.c: give the user an informative message when corlib can't
33463         be loaded.
33464
33465 2002-02-26  Martin Baulig  <martin@gnome.org>
33466
33467         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
33468         New icall to get the time zone data.
33469
33470 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33471
33472         * reflection.c: set virtual and raw size of section correctly.
33473         * threads.c: transfer domain information to newly created threads.
33474
33475 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
33476
33477         * class.c: when instancing a class in a domain, load the default
33478         vaules for static fields from the constant table. Fix System.Enum to
33479         not be an enum.
33480         * icall.c: implement Object::GetType() internalcall. Implemented
33481         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
33482         Fixed checking of binding flags in find_members().
33483         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
33484         * reflection.c: handle enumerations when writing to the constant
33485         table. Use a different object cache for types.
33486
33487
33488 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
33489
33490         * object.c (mono_object_isinst): fix for arrays
33491
33492         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
33493
33494 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
33495
33496         * object.c: don't use mprotect ()  and fix intern pool hash table
33497         lookup for big endian systems.
33498
33499 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33500
33501         * icall.c: change type_is_subtype_of () signature.
33502
33503 2002-02-21  Mark Crichton  <crichton@gimp.org>
33504
33505         * rand.c, rand.h: Added random number generator for
33506         System.Security.Cryptography classes.
33507
33508         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
33509
33510         * icall.c: Added System.Security.Cryptography calls.
33511
33512 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33513
33514         * class.c, icall.c, metadata.c: better support for pointer types.
33515         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
33516         * reflection.c: Add support for getting custom attrs for properties
33517         and simplify some code.
33518
33519 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33520
33521         * icall.c: change getToken () and add custom attribute GetBlob()helper
33522         method.
33523         * reflection.h: add custom attrs array to the reflection builder structures.
33524         * reflection.c: encode and emit custom attributes for all the relevant
33525         reflection objects. Cache fieldref and methodref tokens. Change
33526         mono_image_create_token() interface to take a MonoDynamicAssembly.
33527         More complete custom attributes decoder. Load custom attributes for
33528         Assembly, Field, Method and Constructor objects, too. Make the
33529         returned array an Attribute[] one, not object[]. Added
33530         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
33531         custom attribute constructor.
33532
33533 2002-02-20  Dick Porter  <dick@ximian.com>
33534
33535         * icall.c:
33536         * rawbuffer.c:
33537         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
33538         problem code out for now).
33539
33540 2002-02-19  Radek Doulik  <rodo@ximian.com>
33541
33542         * object.c (mono_ldstr): use hash table to avoid multiple swapping
33543
33544 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
33545
33546         * icall.c: register the GetCustomAttributes method.
33547         * object.c, object.h: add mono_string_new_len ().
33548         * reflection.h, reflection.c: added mono_runtime_invoke(),
33549         mono_install_runtime_invoke(). Added
33550         mono_reflection_get_custom_attrs () to load custom attributes and
33551         create the attribute objects.
33552
33553 2002-02-19  Dick Porter  <dick@ximian.com>
33554         * threads-dummy-types.c:
33555         * threads-dummy-types.h:
33556         * threads-dummy.c:
33557         * threads-dummy.h:
33558         * threads-pthread-types.c:
33559         * threads-pthread-types.h:
33560         * threads-pthread.c:
33561         * threads-pthread.h:  Deleted obsolete files
33562
33563 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
33564
33565         * class.c (mono_class_vtable): runtime init the class when we
33566         allocate static class data.
33567
33568         * icall.c (ves_icall_System_Array_SetValue): check for null values.
33569
33570         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
33571         and String - but we will need generic marshalling support in the
33572         future. 
33573         (mono_init): set the domain name in a ms compatible way
33574
33575         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
33576         String[].
33577
33578 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
33579
33580         * object.c (mono_array_clone): use alloca() instead of g_malloc  
33581         for sizes
33582
33583         * appdomain.c (mono_domain_unload): impl.
33584
33585 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33586
33587         * appdomain.c, object.c: fix intern pool implementation.
33588         * class.c: fix alignment code.
33589
33590 2002-02-16  Radek Doulik  <rodo@ximian.com>
33591
33592         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
33593         and s2 > s1, just copy lower bytes to be compatible with little
33594         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
33595         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
33596
33597         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
33598         force big_endian to be 1 for big endian machines 
33599         (ves_icall_iconv_new_decoder): ditto
33600
33601 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
33602
33603         * socket-io.c (convert_sockopt_level_and_name): If the system
33604         doesn't define SOL_IP or SOL_TCP, get them by hand using
33605         getprotobyname() and caching the values (because this could be a
33606         slow operation).
33607         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
33608         Use the appropriate struct when the system does support it. Ie,
33609         not all systems have struct ip_mreqn so use struct ip_mreq when
33610         appropriate.
33611
33612 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
33613
33614         * reflection.c: handle finally clauses.
33615
33616 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
33617
33618         * socket-io.c: use g_snprintf() instead of snprintf.
33619
33620 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
33621
33622         * reflection.c (mono_param_get_objects): Cast second argument to
33623         mono_method_get_param_names to a const char** to silence the
33624         compiler warning.
33625
33626         * appdomain.c (mono_domain_assembly_open): Put parens around the
33627         truth statement in the for-loop.
33628
33629         * unicode.c (iconv_convert): Got rid of a compiler warning about
33630         int i being unused when the system has a new iconv.
33631         (iconv_get_length): Same.
33632
33633         * image.c (load_class_names): Cast the second argument to
33634         g_hash_table_insert() to char* to hush compiler warnings about the
33635         arg being a const.
33636         (mono_image_open): Same here.
33637
33638         * socket-io.c: Don't conditionally include sys/filio.h or
33639         sys/sockio.h here anymore since we now get them from
33640         io-layer/io-layer.h
33641         (inet_pton): If the system doesn't support inet_aton, implement
33642         using inet_addr and also #define INADDR_NONE if it isn't defined
33643         by the system.
33644
33645 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33646
33647         * metadata.c, metadata.h: added function to get packing and size info
33648         of a typedef.
33649         * reflection.h, reflection.c: handle field RVA data. Save info about
33650         the table layout if needed. Assign typedef indexes to all the types
33651         before dumping the info about them to avoid forward reference problems.
33652
33653 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
33654
33655         * socket-io.c (convert_sockopt_level_and_name): ifdef
33656         SO_ACCEPTCONN because it is not defined on my system (old debian)
33657
33658 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33659
33660         * opcode.c: use stddef.h to get NULL.
33661
33662 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
33663
33664         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
33665         for FIONBIO, FIONREAD and SIOCATMARK.
33666         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
33667         define INADDR_NONE and besides, inet_addr() is deprecated and
33668         should not be used. Use inet_pton() instead - it also has the
33669         added bonus that it can easily handle IPv6 addresses as well.
33670         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
33671
33672 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
33673
33674         * decimal.c: remove _MSC_VER conditional.
33675
33676 2002-02-13  Dick Porter  <dick@ximian.com>
33677
33678         * socket-io.c: 
33679         * icall.c: Internal calls for Blocking, Select, Shutdown,
33680         GetSocketOption and SetSocketOption
33681
33682 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33683
33684         * assembly.cs: better resolver: use it instead of some kludgy
33685         code.
33686
33687 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
33688
33689         * reflection.c: the best way to speed-up the compiler is to avoid
33690         infinite loops.
33691
33692 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
33693
33694         * class.c (mono_class_vtable): changed the object layout
33695         (obj->vtable->class). 
33696         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
33697
33698 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33699
33700         * assembly.c: look for assemblies in the assembly dir, too.
33701
33702 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33703
33704         * class.c: fix thinko in mono_class_from_type().
33705
33706 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33707
33708         * exception.h, exception.c: added TypeLoadException.
33709         * object.h, object.c: added mono_array_clone ().
33710         * icall.c: handle throwOnError in AssemblyGetType().
33711         Added Array.Clone().
33712         * opcode.h, opcode.c: use a single value for the opcode val.
33713         Compile fix for non-gcc compilers.
33714
33715 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
33716
33717         * opcodes.c, opcodes.h: export interesting info about opcodes.
33718
33719 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
33720
33721         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
33722         icalls. 
33723
33724         * class.c (class_compute_field_layout): set element_class for enums
33725         (mono_class_create_from_typedef): set element_class for normal classes
33726
33727         * icall.c (ves_icall_System_Enum_get_value): impl.
33728
33729         * class.c (mono_class_create_from_typedef): do not set valuetype
33730         flag for System.ValueType and System.Enum
33731
33732 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
33733
33734         * unicode.c (iconv_convert): fix big endian problem.
33735
33736 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33737
33738         * class.c: add asserts if we are ever going to scribble over memory.
33739         * socket-io.c: not all systems have AF_IRDA defined.
33740
33741 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
33742
33743         * class.c (class_compute_field_layout): do not consider static
33744         fields to compute alignment
33745
33746 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
33747
33748         * appdomain.c (mono_appdomain_get): impl.
33749         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
33750
33751 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
33752
33753         * icall.c: ignore "file://" prefix when loading an assembly.
33754
33755 2002-01-23  Dick Porter  <dick@ximian.com>
33756
33757         * socket-io.c:
33758         * icall.c:
33759         * Makefile.am: Added socket support
33760
33761 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
33762
33763         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
33764         code back.  This should return the assemblies that are loaded by
33765         the runtime on behalf of an application domain. 
33766
33767         The current implementation is still broken, it just returns every
33768         assembly loaded, but until we get real applications domain this
33769         will do.
33770
33771 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
33772
33773         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
33774         AppDomain object.
33775
33776 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
33777
33778         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
33779         the mono_class_from_name lookup.
33780         (ves_icall_get_parameter_info): ditto.
33781         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
33782         method.
33783         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
33784
33785 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
33786
33787         * class.c: load also nested classes on class init.
33788         System.ValueType instance methods gets passed boxed
33789         values, unless methods in derived classed that get a pointer to the
33790         data.
33791         * icall.c: use better name parsing code in GetType().
33792         * image.c, image.h: add mono_image_loaded ().
33793         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
33794         * reflection.c, reflection.h: added mono_reflection_parse_type().
33795
33796 2002-01-22  Veronica De Santis <veron78@interfree.it>
33797
33798         * icall.c : Added mapping of internal calls for Manual and Auto reset events
33799         * threads.c : Added the implementation of internal calls for events
33800         * threads.h : Added prototypes of internal calls for events
33801         
33802 2002-01-21  Radek Doulik  <rodo@ximian.com>
33803
33804         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
33805
33806 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
33807
33808         * class.c (mono_class_init): set min_align to 1 (instead of 0)
33809         (mono_class_value_size): use min_align
33810
33811 2002-01-20  Dick Porter  <dick@ximian.com>
33812
33813         * threads.h:
33814         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
33815         so it compiles on w32.
33816
33817 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
33818
33819         * metadata.c (mono_type_stack_size): impl.
33820
33821         * class.c (mono_class_get_field): impl. memberref token
33822
33823 2002-01-16 Veronica De Santis <veron78@@interfree.it>
33824
33825         * icall.h : Added the internal calls mapping for CreateMutex_internal
33826                     and ReleaseMutex_internal.
33827         * threads.h : Added the prototype of mutexes internal calls.
33828         * threads.c : Added the implementations of mutexes internal calls.
33829
33830 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
33831
33832         * metaparse.h: removed unused file.
33833         * reflection.c, reflection.h: added stream_data_align () function 
33834         to align data in streams and keep stream aligned. Add support for
33835         exception support in method headers.
33836
33837 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
33838
33839         * unicode.c: make iconv_convert () return the number of bytess written
33840         in the output buffer.
33841
33842 2002-01-15  Dick Porter  <dick@ximian.com>
33843         * threads.c: Make the runtime's idea of infinite timeouts coincide
33844         with the class library's
33845
33846         Fix a particularly egregious bug in mono_thread_cleanup(). That
33847         code was so utterly bogus it must have been written on a Monday.
33848
33849 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
33850
33851         * reflection.h: add subtypes field to TypeBuilder.
33852         * reflection.c: encode constants for literal fields.
33853         Handle subtypes. Fix user string token (and add a zero byte)
33854         at the end.
33855         
33856 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
33857
33858         * class.c (mono_class_init): bug fix: assign slot numbers for
33859         abstract methods.
33860
33861 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33862
33863         * reflection.c: don't try to output a code RVA for abstract methods.
33864         Small fixes for method header format. Output parameter info to the
33865         ParamDef table. Save method overriding info to MethodImpl table.
33866         Fix property support. Allow typedef.extends to be a type in the
33867         building assembly.
33868         * verify.c: fix off-by-one error.
33869
33870 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
33871
33872         * class.c: fix mono_class_from_mono_type () for szarray types.
33873         Remove unused cache check in mono_class_from_type_spec().
33874         * icall.c: *type_from_name () functions handle simple arrays and byref.
33875         * reflection.c: handle byref and szarray types. Handle methods without
33876         body (gets P/Invoke compilation working). Handle types and fields in
33877         get_token ().
33878         * reflection.h: add rank to MonoTypeInfo.
33879
33880 2002-01-10  Dick Porter  <dick@ximian.com>
33881
33882         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
33883         internal calls
33884
33885 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
33886
33887         * icall.c: initialize class in type_from_handle ().
33888         Loop also in parent classes for get_method ().
33889         * reflection.c: properly encode class and valuetype types.
33890         Start on encoding TypeBuilder types. Handle fieldrefs.
33891         Use correct length when registering a user string.
33892         Handle ConstructorBuilder and MonoMethod in get_token ().
33893         Make mono_type_get_object () aware of cached types.
33894         * object.c: back out change to mono_string_new ().
33895
33896 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
33897         * object.c: mono_string_new should return a NULL when the string 
33898         passed in is NULL -- not try to deference it.
33899         
33900 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
33901
33902         * icall.c: hack to make IsSubType work for TypeBuilders.
33903         * reflection.c: emit constructors before methods.
33904         Retrieve param names in mono_param_get_objects().
33905
33906 2002/01/05  Nick Drochak  <ndrochak@gol.com>
33907
33908         * Makefile.am: fix list of headers and sources so automake 1.5
33909         doesn't complain. Removed \# at end of list.
33910
33911 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
33912
33913         * reflection.c: get token for a method ref. Set return type of
33914         constructor to void.
33915         * loader.c: debug message.
33916         * class.c: typo fix.
33917
33918 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
33919
33920         * icall.c: fix array init with rank > 1. FindMembers
33921         loops in parent class as well.
33922         * image.c: do not insert nested types in name cache.
33923         * reflection.c: warning fix.
33924         * reflection.h: add override method (for interface impl).
33925
33926 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
33927
33928         * metadata.c: fix customattr decoding.
33929
33930 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
33931
33932         * rawbuffer.cs: Added native Win32 implementation, avoids using
33933         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
33934
33935 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
33936
33937         * class.c: make the low-level routines handle the cache.
33938
33939 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
33940
33941         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
33942
33943 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
33944
33945         * class.c: fix mono_array_element_size() for objects.
33946         * class.h, class.c: add properties to MonoClass and load them
33947         at init time.
33948         * icall.c: check with isinst() when assigning a value to an array
33949         instead of requiring the classes to match exactly.
33950         Implemented icall for System.Type::GetType().
33951         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
33952         enums. Handle bindingflags when looking for methods and fields.
33953         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
33954         and mono_metadata_methods_from_property().
33955         * reflection.h, reflection.c: added structures for propreties,
33956         parameters and enums. Implemented mono_property_get_object() and
33957         mono_param_get_objects().
33958
33959 2001-12-18  Dick Porter  <dick@ximian.com>
33960
33961         * file-io.c: Use mono_string_to_utf16() instead of
33962         mono_string_chars()
33963
33964         * object.c: Added mono_string_to_utf16(), which copies the non
33965         NULL-terminated MonoString into a new double-null-terminated
33966         buffer.
33967
33968 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
33969
33970         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
33971
33972 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
33973
33974         * file-io.c: raise exceptions if handle is invalid.
33975
33976 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
33977
33978         * assembly.c: yet another check for mscorlib.
33979         * class.c, class.h: load nesting info for classes.
33980         * icall.c: many new functions to support the Reflection classes.
33981         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
33982         * reflection.h, reflection.c: mono_image_create_token(),
33983         mono_assembly_get_object(), mono_type_get_object(),
33984         mono_method_get_object(), mono_field_get_object(): methods to return
33985         objects that parallel the C representation of assemblies, types,
33986         methods, fields.
33987
33988 2001-12-11  Dick Porter  <dick@ximian.com>
33989
33990         * icall.c:
33991         * file-io.c: Internal calls for file IO.
33992
33993 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
33994
33995         * tabledefs.h: missing FileAttributes.
33996         * verify.h, verify.c: use is_valid_string () to simplify and check for
33997         valid strings more correctly. Fix warnings and speeling.
33998         Check more tables: Filed, File, ModuleRef, StandAloneSig.
33999         Check code: branches, maxstack, method calls.
34000
34001 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
34002
34003         * object.c (mono_object_allocate): removed static, so that the jit
34004         can allocate value types.
34005
34006         * icall.c (ves_icall_System_DateTime_GetNow): impl.
34007
34008 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34009
34010         * class.c: init enum types right away and register the
34011         token->MonoClass map in mono_class_create_from_typedef ().
34012         * verify.h, verify.c: first cut of the verifier.
34013         * pedump.c: add --verify switch to verify metadata tables.
34014         * tabledefs.h: add some missing enums.
34015
34016 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
34017
34018         * class.c (mono_install_runtime_class_init): impl.
34019         (mono_class_init): renamed mono_class_metadata_init to
34020         mono_class_init, also removed the metadata_inited flag
34021
34022         * object.c (mono_object_isinst): use faster algorithm
34023
34024 2001-11-30  Radek Doulik  <rodo@ximian.com>
34025
34026         * mono-endian.h: reverted last change
34027         added function prototypes
34028
34029         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
34030         add mono-endian.c back
34031
34032         * mono-endian.c: returned back, as Paolo pointed out, it's needed
34033         for unaligned access, I've mistaked it with endianess. I am
34034         sorry.
34035         (mono_read16): fix reverted endianess
34036         (mono_read64): ditto
34037         (mono_read32): ditto
34038
34039 2001-11-30  Dick Porter  <dick@ximian.com>
34040
34041         * exception.c: Implement mono_exception_from_name()
34042
34043 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
34044
34045         * metadata.h, metadata.c: remove params_size and locals_size and their
34046         calculation from the metadata code: they are only usefult to the
34047         interp.
34048
34049 2001-11-29  Radek Doulik  <rodo@ximian.com>
34050
34051         * object.c (mono_ldstr): swap bytes here, it's probably not the
34052         best place, but works for me now, I'll redo it once I know mono
34053         better, also note that I add PROT_WRITE and don't reset back, also
34054         note that it's only affects big endians, so x86 should be OK
34055
34056         * mono-endian.h (read16): use just glib macros for both endians
34057
34058         * mono-endian.c: removed as glib macros are used in in
34059         mono-endian.h so we don't need to care about endianess for read
34060         macros as glib does that for us already
34061
34062 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
34063
34064         * class.h, class.h: take minimum alignment into consideration so
34065         that the fields of a class remain aligned also when in an array.
34066
34067 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34068
34069         * loader.h, loader.c: add mono_method_get_param_names().
34070         * class.c: 0-init class fields.
34071
34072 2001-11-26  Dick Porter  <dick@ximian.com>
34073
34074         * icall.c:
34075         * threads-types.h:
34076         * threads.c: New file that handles System.Threading on all platforms
34077
34078         * object.c: 
34079         * object.h: Remove the synchronisation struct from MonoObject,
34080         replace it with a pointer that gets initialised on demand
34081
34082         * Makefile.am: Replace all the system-specific threading code with
34083         a single file that uses the new wrapper library
34084
34085 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
34086
34087         * class.c, class.h: add mono_install_trampoline() so that the runtime
34088         can register a function to create a trampoline: removes the ugly
34089         requirement that a runtime needed to export arch_create_jit_trampoline.
34090         * object.h, object.c: added mono_install_handler() so that the runtime
34091         can install an handler for exceptions generated in C code (with
34092         mono_raise_exception()). Added C struct for System.Delegate.
34093         * pedump.c: removed arch_create_jit_trampoline.
34094         * reflection.c: some cleanups to allow registering user strings and
34095         later getting a token for methodrefs and fieldrefs before the assembly
34096         is built.
34097         * row-indexes.h: updates and fixes from the new ECMA specs.
34098
34099 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
34100
34101         * class.h, class.c: add enum_basetype field to MonoClass.
34102         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
34103         to get index in the constant table reated to a field, param or
34104         property.
34105         * reflection.h, reflection.c: handle constructors. Set public-key and
34106         version number of the built assembly to 0.
34107         * row-indexes.h: update from new ECMA spec.
34108
34109 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
34110
34111         * class.h, class.c: add a max_interface_id to MonoClass.
34112         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
34113         since it's used to do that. Added mono_type_type_from_obj().
34114         Make GetType() return NULL instead of segfaulting if the type was not
34115         found. Handle simple arrays in assQualifiedName.
34116         * object.h: add a struct to represent an Exception.
34117         * reflection.c: output call convention in method signature.
34118         Add code to support P/Invoke methods and fixed offsets for fields.
34119
34120 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
34121
34122         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
34123         the value.
34124         * icall.c: use mono_array_addr instead of array->vector: fixes the
34125         reflection image writing.
34126         * reflection.c: init call convention byte to 0 in method signature.
34127         Encode the property signature. Don't output property-related methods
34128         twice. Really process the properties for a type (don't cast a field to
34129         a property, my mom always told me that).
34130         Fix 64 bit issues in pointer alignment in a different and more
34131         readable way.
34132
34133 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
34134
34135         * loader.h: Removed type class from MonoDefaults, added monotype
34136
34137         * loader.c: Loaded MonoType, removed loading of Type
34138
34139         * icall.c (my_mono_new_object): Now returns a System.MonoType,
34140         and fills in System.Type._impl with a RuntimeTypeHandle rather
34141         than the actual MonoClass *
34142
34143         (ves_icall_type_from_handle): change from type_class to
34144         monotype_class
34145
34146         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
34147         implemented
34148
34149         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
34150         implemented
34151
34152         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
34153
34154         (ves_icall_System_Reflection_Assembly_GetType): implemented
34155
34156         (ves_icall_System_MonoType_assQualifiedName): implemented
34157
34158         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
34159
34160 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
34161
34162         * assembly.c (mono_assembly_open): Implement a cache for the
34163         assemblies. 
34164
34165         (mono_assembly_close): only destroy the assembly when the last
34166         reference is gone.
34167         
34168 2001-11-09  Dick Porter  <dick@ximian.com>
34169
34170         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
34171
34172 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
34173
34174         * class.c (mono_class_metadata_init): bug fix: compute the right slot
34175
34176 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
34177
34178         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
34179         from Martin Weindel.
34180         * object.h: add mono_string_chars ().
34181
34182 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
34183
34184         * reflection.c (build_compressed_metadata): Eliminates warnings
34185         and uses 64-bit clean code.
34186
34187         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
34188         (mono_type_equal): Change signature to eliminate warnings.
34189
34190 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34191
34192         * icall.c, loader.c: remove the internalcall array constructors.
34193         Changes to match the new MonoArray structure.
34194         * object.h, object.c: an array object doesn't allocate an extra
34195         vector. Add mono_array_new_full () to create jagged arrays easily.
34196
34197 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
34198
34199         * metadata.h, metadata.c: add mono_metadata_field_info () to
34200         retreive all the info about a field from vairous tables.
34201         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
34202         * class.h, class.c: augment MonoClassField with more info.
34203         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
34204         policy and load a field's RVA if needed.
34205
34206 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
34207
34208         * class.c (mono_class_metadata_init): create a trampoline for all
34209         virtual functions instead of actually compiling them.
34210
34211 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
34212
34213         * class.h, class.c: include name in MonoClassField.
34214         * class.c: fix fundamental type of System.Object and System.String.
34215         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
34216         tokens in ldtoken.
34217         * icall.c: remove internalcalls for the Reflection stuff that is now
34218         done in C# code.
34219         * loader.c: mono_field_from_memberref () implementation.
34220         * mono-endian.c: thinko (s/struct/union/g).
34221         * object.c, object.h: make the mono_string_* prototypes actually use
34222         MonoString instead of MonoObject.
34223         * reflection.c, reflection.h: updates for changes in the reflection
34224         code in corlib: we use C structures that map to the actual C# classes.
34225         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
34226         fat method header if needed and use the info from the ILGenerator for
34227         methods. Handle fields in types. Misc fixes.
34228
34229 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
34230
34231         * class.c (mono_class_metadata_init): bug fix: always allocate
34232         space for static class data
34233
34234 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
34235
34236         * class.c (mono_compute_relative_numbering): use relative
34237         numbering to support fast runtime type checks.
34238
34239 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
34240
34241         * class.c (mono_class_create_from_typeref): added debugging output
34242         to print class name when MonoDummy is returned instead of real class
34243
34244 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
34245
34246         * class.c (mono_class_metadata_init): interface offset table now
34247         contains pointers into the vtable - this is more efficient for the jit
34248
34249 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
34250
34251         * class.c (mono_class_metadata_init): use a temporary vtable (the
34252         old algorithm only worked for the interpreter, but not for the jit)
34253
34254 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
34255
34256         * loader.c (method_from_memberref): use mono_class_get to get the
34257         class of an array instead of using System.Array directly.
34258         (mono_get_method): also add MEMBERREF methods to the method cache
34259         which usefull for arrays.
34260
34261 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
34262
34263         * pedump.c (arch_compile_method): added to compute vtable entry
34264
34265         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
34266         number of interfaces.
34267         
34268         * class.h: merged MonoArrayClass into MonoClass
34269
34270         * class.c (mono_class_create_from_typedef): compute the vtable size and
34271         allocate space to include the vtable inside MonoClass
34272         (mono_class_metadata_init): initialize the vtable
34273
34274 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
34275
34276         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
34277         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
34278         * image.c: endian fixes by Laurent Rioux.
34279         * object.h, object.c: rename MonoStringObject to MonoString and
34280         MonoArrayObject to MonoArray. Change some function names to conform to
34281         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
34282         guint16* as first argument, so don't use char*.
34283         Provide macros to do the interesting things on arrays in a portable way.
34284         * threads-pthread.c: updates for the API changes and #include <sched.h>
34285         (required for sched_yield()).
34286         * icall.c: updates for the API changes above.
34287         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
34288         platforms that need them.
34289
34290 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
34291
34292         * class.c: set the correct type for all the fundamental
34293         type when loading the class.
34294
34295 2001-10-05  Dick Porter  <dick@ximian.com>
34296
34297         * threads-pthread.c (pthread_mutex_timedlock): Simple
34298         compatibility version for C libraries that lack this call.
34299
34300 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34301
34302         * class.c: MonoTypes stored in MonoClass are stored as
34303         fundamental MonoTypes when the class represents a
34304         fundamental type (System.Int32, ...).
34305         The TypeHandle return by ldtoken is a MonoType*.
34306         * icall.c: ves_icall_get_data_chunk () write out all the
34307         PE/COFF stuff. Implement ves_icall_define_method (),
34308         ves_icall_set_method_body (), ves_icall_type_from_handle ().
34309         * image.c: properly skip unknown streams.
34310         * loader.h, loader.c: add type_class to mono_defaults.
34311         * metadata.c, metadata.h: export compute_size () as
34312         mono_metadata_compute_size () with a better interface.
34313         Typo and C&P fixes.
34314         * pedump.c: don't try to print the entry point RVA if there is no entry point.
34315         * reflection.c, reflection.h: many cleanups, fixes, output method
34316         signatures and headers, typedef and typeref info, compress the metadata
34317         tables, output all the heap streams, cli header etc.
34318         * row-indexes.h: typo fixes.
34319
34320 2001-10-04  Dick Porter  <dick@ximian.com>
34321
34322         * object.h: Add a synchronisation mutex struct to MonoObject
34323
34324         * object.c (mono_new_object): Initialise the object
34325         synchronisation mutexes
34326
34327         * icall.c: System.Threading.Monitor internal calls
34328         
34329         * threads-pthread.h:
34330         * threads-pthread.c: System.Threading.Monitor internal calls
34331
34332         * threads-types.h: New file, includes the system-specific thread
34333         structures
34334         
34335         * threads-pthread-types.h:
34336         * threads-pthread-types.c: New files, handle pthread-specific
34337         synchronisation types
34338
34339         * threads-dummy-types.h: 
34340         * threads-dummy-types.c: New files of dummy support for
34341         thread-specific types
34342
34343         * metadata.c:
34344         * image.c:
34345         * pedump.c: include mono-endian.h not endian.h
34346         
34347         * Makefile.am: More threads files.
34348         Name mono-endian.h not endian.h
34349
34350 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
34351
34352         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
34353         stuff and implement a few more bits.
34354         * icall.c: a field needs to be dereferenced twice. Do not use the same
34355         name for two variables in the same scope.
34356         * image.c, image.h: cleanups.
34357
34358 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
34359
34360         * class.c (mono_class_metadata_init): bug fix: compute the right size
34361
34362 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
34363
34364         * icall.c: implemented some of the Reflection internalcalls.
34365         * image.c, image.h: start writing out the PE/COFF image.
34366         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
34367         that does the reverse than decode_blob_size ().
34368         * object.c: use mono_metadata_encode_value (). Move here
34369         temporary implementation of mono_string_to_utf8 ().
34370         * rawbuffer.c: make malloc_map static.
34371
34372 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34373
34374         * metadata.c: fix type comparison for arrays.
34375         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
34376         Added a couple of new classes to monodefaults.
34377         * icall.c: added a couple of Reflection-related internalcalls.
34378         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
34379         Added a byval_arg MonoType to MonoClass.
34380
34381 2001-09-28  Dick Porter  <dick@ximian.com>
34382
34383         * icall.c:
34384         * threads-pthread.h: 
34385         * threads-pthread.c: Implemented internal calls for
34386         LocalDataStoreSlot operations.  Applied mutexes around all shared
34387         data.  Reworked the thread creation and Start() operations to
34388         avoid a race condition.
34389         
34390         * threads-dummy.h:
34391         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
34392
34393 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
34394
34395         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
34396
34397 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
34398
34399         * class.c, loader.c: warn and return NULL instead of erroring out.
34400         * icall.c: added System.AppDomain::getCurDomain().
34401         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
34402
34403 2001-09-25  Dick Porter  <dick@ximian.com>
34404
34405         * threads-pthread.h:
34406         * threads-pthread.c: Implemented timed thread joining and added
34407         System.Threading.Thread::Join_internal internal call
34408
34409         * icall.c: Added System.Threading.Thread::Join_internal internal call
34410
34411         * threads-dummy.h:
34412         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
34413
34414 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
34415
34416         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
34417         mono_string_intern () to implement the semantics of the ldstr opcode
34418         and the interning of System.Strings.
34419         * icall.c: provide hooks to make String::IsIntern and String::Intern
34420         internalcalls.
34421
34422 2001-09-23  Dick Porter  <dick@ximian.com>
34423
34424         * threads-dummy.c: 
34425         * threads-dummy.h: New files of dummy threading routines
34426
34427         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
34428         support code based on system specifics
34429
34430         Rename PTHREAD_LIBS to THREAD_LIBS
34431         
34432 2001-09-23  Dick Porter  <dick@ximian.com>
34433
34434         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
34435         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
34436         internal calls.
34437         (mono_thread_init): Set up a Thread object instance to return when
34438         the main thread calls Thread.CurrentThread
34439         (mono_thread_cleanup): Wait for all subthreads to exit
34440
34441         * icall.c: New internal calls for System.Threading.Thread::Sleep
34442         (including Schedule) and CurrentThread
34443
34444         * threads.h: New file, to insulate thread-specific stuff from the
34445         rest of the code
34446
34447 2001-09-21  Dick Porter  <dick@ximian.com>
34448
34449         * threads-pthread.h: 
34450         * threads-pthread.c: New file, for handling pthreads-style
34451         threading support.  Start() now starts a new thread and executes
34452         the ThreadStart delegate instance.
34453
34454         * icall.c: Added the internalcall for
34455         System.Threading.Thread::Start_internal
34456
34457         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
34458
34459 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
34460
34461         * loader.c: work around the different signatures for delegates
34462         constructors csc generates in compiled code vs the ones compiled in mscorlib.
34463
34464 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
34465
34466         * class.h, class.c: add mono_class_get_field_from_name ().
34467         * *: Fix C comments and other ANSI C issues.
34468
34469 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
34470
34471         * endian.h, assembly.c: fix some endianness issues.
34472
34473 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
34474
34475         * loader.h, load.c: add delegate_class to mono_defaults.
34476         Handle runtime provided methods in mono_get_method ().
34477
34478 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
34479
34480         * loader.c (mono_get_method): use pinvoke for internal call
34481
34482         * icall.c: use pinvoke for internal call
34483
34484         * loader.c (method_from_memberref): set the method name
34485
34486 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
34487
34488         * metadata.c: help the compiler generate better code for
34489         mono_class_from_mono_type ().
34490
34491 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
34492
34493         * class.c (mono_class_metadata_init): delayed computing of the
34494         class size to mono_class_metadata_init ()
34495
34496 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
34497
34498         * class.c, class.h: add an interfaces member to MonoClass.
34499         * image.c, image.h: add assembly_name field to MonoImage
34500         from the assembly table.
34501         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
34502
34503 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
34504
34505         * class.c: Handle Array in mono_class_from_mono_type ().
34506         * metadata.c, pedump.c: some endian fixes.
34507
34508 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
34509
34510         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
34511         * metadata.c: fix small problem introduced with the latest commit.
34512
34513 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
34514
34515         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
34516         We don't need a MonoMetadata pointer anymore to compare signatures in
34517         mono_metadata_signature_equal (), update callers.
34518         Reduced memory usage an number of allocations for MonoMethodHeader and
34519         MonoMethodSignature.
34520
34521 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
34522
34523         * metadata.c: added compare for szarray.
34524
34525 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
34526
34527         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
34528         and add a couple more types to it and mono_defaults. Give an hint on
34529         classes that need implementing in our corlib and are referenced
34530         in mscorlib.
34531
34532 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
34533
34534         * class.h, class.c: keep track if a class is also an Enum.
34535         * loader.c: Implement a couple more types for use in libffi
34536         marshalling. Gives better diagnostics when failing to dlopen
34537         a library. Set method->klass for P/Invoke methods, too.
34538
34539 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
34540
34541         * class.c, class.h: add a MonoType this_arg to MonoClass that
34542         represents a pointer to an object of the class' type that
34543         can be used by the interpreter and later the type cache.
34544         Add best guess alignment info for valuetype objects.
34545
34546 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
34547
34548         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
34549         into MonoType: one less level of indirection and allocation and
34550         simplifies quite a bit of code. Added cache for MonoTypes that are
34551         used frequently, so that we don't need to allocate them all the time.
34552
34553 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
34554
34555         * class.c (mono_class_create_from_typedef): System.Enum is also a
34556         value type, although it does not derive from System.ValueType
34557         (maybe a bug in the ms compiler?)
34558
34559         * metadata.c (mono_type_size): return the right size for value types
34560
34561         * loader.c (mono_get_method): only initialize method header if not abstract
34562
34563         * class.c (mono_class_from_mono_type): use mono_default values. 
34564
34565 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
34566
34567         * *: use MonoClass pointers instead of <type_tokens>
34568         
34569         * class.h: new flag: metadata_inited.
34570
34571         * class.c (mono_class_metadata_init): impl.
34572         (mono_class_instance_size): impl.
34573         (mono_class_data_size): impl.
34574
34575 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34576
34577         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
34578         MonoClass now has the name and name_space fields. 
34579         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
34580         mono_get_method () takes and optional MonoClass as argument.
34581         Removed mono_typedef_from_name() and added mono_class_token_from_name()
34582         instead that takes advantage of a map from class names to typedef
34583         tokens in MonoImage.
34584
34585 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
34586
34587         * metadata.c: zero is not a valid alignment boundary.
34588         Merge MONO_TYPE_VOID in default decoding code.
34589
34590 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
34591
34592         * image.h: merged MonoMetadata into MonoImage
34593
34594         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
34595         identify the type of elements.
34596
34597 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
34598
34599         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
34600         * cil-coff.h: split MonoMSDOSHeader and add size info.
34601         * image.c: add some consistency checks.
34602         * metadata.c: fix row size computation: one programmer
34603         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
34604         add explanation for the locator routine.
34605         Fix decoding of size in method header.
34606         
34607 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
34608
34609         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
34610         (g_concat_dir_and_file): Bring g_concat_dir_and_file
34611         function from gnome-libs.  This uses the right path separator
34612         based on the OS, and also works around a bug in some systems where
34613         a double slash is not allowed. 
34614         (default_assembly_name_resolver): Use g_concat_dir_and_file
34615         (mono_assembly_open): ditto.
34616
34617 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
34618
34619         * metadata.c (mono_metadata_signature_equal): impl.
34620
34621         * *: void is now a realy MonoType (instead of using NULL)
34622         
34623         * metadata.c (do_mono_metadata_parse_type): use
34624         mono_metadata_parse_type to parse void value.
34625
34626 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
34627
34628         * metadata.c, metadata.h: in the signature and method header store
34629         only the space required for holding the loca vars and incoming arguments.
34630
34631 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
34632
34633         * metadata.c (do_mono_metadata_parse_type): treat void like any
34634         other type (instead of assigning NULL);
34635
34636 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
34637
34638         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
34639
34640 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
34641
34642         * image.c (do_mono_image_open): added a cache for arrays.
34643
34644 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
34645
34646         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
34647         decode a single column from a row in a metadata table and changes
34648         to take advantage of it in the typedef locator (gives a nice speed up).
34649         Store offset info for function params.
34650
34651 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
34652
34653         * image.h (MONO_IMAGE_IS_CORLIB): removed 
34654
34655 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
34656
34657         * assembly.c: how could mono_assembly_close () had ever worked?
34658         * metadata.c, metadata.h: provide offset info for local vars.
34659         Implement mono_type_size () to take care of alignment as well
34660         as size (it was mono_field_type_size in cli/class.c before).
34661
34662 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
34663
34664         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
34665
34666         * assembly.h (CORLIB_NAME): set to corlib.dll
34667
34668         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
34669
34670 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
34671
34672         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
34673         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
34674         tokentype.h: massive namespace cleanup.
34675
34676 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
34677
34678         * metadata.h, metadata.c: decode exception clauses when parsing method header.
34679
34680 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
34681
34682         * metadata.c (mono_metadata_free_type): added check for type !=
34683         NULL (void) before calling mono_metadata_free_type()
34684
34685 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
34686
34687         * metadata.h, row_indexes.h: added header with enumerations to use
34688         to index in the columns from tables in metadata and to decode coded
34689         tokens: we should start using this instead of embedding magic numbers
34690         all over the code.
34691
34692 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
34693
34694         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
34695         Move metadata_t info from cli_image_info_t to MonoImage, where
34696         it's easily accessible. Changed all the uses accordingly.
34697         Added the method and class caches to MonoImage.
34698         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
34699         and mono_metadata_decode_value () signature to be more consistent
34700         with the other parse functions (and simplify code). Taken advantage
34701         of zero-length array allocation with GCC. Removed reduntant (and
34702         wrong) MonoFieldType struct and use MonoParam instead. Changed
34703         mono_metadata_parse_field_type () to use common code for parsing.
34704         Added mono_metadata_typedef_from_field () and
34705         mono_metadata_typedef_from_method () to lookup a typedef index from a
34706         field or method token.
34707         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
34708
34709 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
34710
34711         * metadata.c (mono_metadata_parse_field_type): Implement. 
34712         (do_mono_metadata_parse_type): Split engine from
34713         mono_metadata_parse_type, so that we can create smaller structures
34714         for things that just have one pointer to the MonoType (look at
34715         the MonoFieldType)
34716
34717 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
34718
34719         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
34720         as Jan Gray found out, it is incorrect. 
34721
34722 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
34723
34724         * assembly.c: Implement asssembly loading.  This loads an image
34725         and loads all the referenced assemblies.  Come to think of it, we
34726         could always do lazy loading of the assemblies. 
34727
34728         * image.c (mono_image_open): Keep loaded images in a hashtable.
34729
34730         * image.h (MonoImage): Add reference count.
34731
34732 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
34733
34734         * assembly.c (mono_assembly_open): Keep track of the file name in
34735         case the assembly has no ASSEMBLY table.
34736
34737         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
34738         from get.c here.
34739
34740 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
34741
34742         * metadata.c, metadata.h: decode local vars in method header
34743         parse function. Change callers accordingly.
34744
34745 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
34746
34747         * metadata.h, cil-coff.h: protect against multiple inclusion.
34748         Added some new structures to hold information decoded from metadata:
34749         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
34750         and relevant decoding/free functions.
34751         * metadata.c: implement decoding functions. Add warning for out of bounds
34752         index in mono_metadata_locate(). Implement mono_get_method () to retreive
34753         all the info about a method signature and invocation. Remove check on
34754         uninitialized local var in parse_mh() and fix memory leak.
34755
34756 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
34757
34758         * metadata.h: More macros.
34759
34760         * tokentype.h: New file.
34761
34762 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
34763
34764         * assembly.c: added a consistency check and initialize
34765         some structures with g_new0().
34766         * metadata.c: fixed a couple more bugs in table size computation
34767         and add other checks for out-of bound access to metadata.
34768
34769 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
34770
34771         * metatada.c: fix bugs computing table sizes. Spew a
34772         warning when index in string heap is out of bounds.
34773
34774 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
34775
34776         * metadata.h: Add a couple of macros to manipulate tokens. 
34777
34778 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
34779
34780         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
34781         cli_section_tables).
34782
34783 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
34784
34785         * metadata.c (mono_metadata_user_string): New function, provides
34786         access to the UserString heap. 
34787
34788 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
34789
34790         * metadata.c: Add inline documentation.
34791
34792 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
34793
34794         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
34795         files. 
34796
34797 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
34798
34799         * typeattr.h: New file, TypeAttribute flags. 
34800
34801 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
34802
34803         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
34804         mono_assembly_ensure_section): Section loading code.
34805         (load_section_tables): Load the sections.
34806
34807         * mono/metadata/metadata.c (mono_metadata_locate_token,
34808         mono_metadata_locate): Functions to locate the information
34809         definition given a token or a table and an index.
34810         (mono_metadata_compute_table_bases): New.
34811         (compute_size): New function to compute the sizes of the various
34812         tables.
34813
34814         * mono/metadata/metadata.h: Finish listing the different index
34815         types. 
34816
34817         * mono/metadata/pedump.c: Improve to dump new information.
34818
34819 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
34820
34821         * mono/metadata/metadata.c: Entered all the tables matching
34822         Beta2. 
34823
34824         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
34825
34826
34827
34828