2009-04-23 Tom Hindle <tom_hindle@sil.org>
[mono.git] / mono / metadata / ChangeLog
1 2009-04-23 Tom Hindle <tom_hindle@sil.org>
2
3         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
4         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
5
6 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
7
8         * security-core-clr.c: Avoid redundant checks for platform code, 
9         e.g. check for method and for class (very common) and check
10         for class and outer class (less common)...
11
12 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
13
14         * reflection.c: Avoid returning random cattrs for synthetic methods.
15         Fixes #498545.
16
17 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
18
19         * assembly.c: assemblies in the GAC should never be shadow-copied.
20
21 2009-04-26  Mark Probst  <mark.probst@gmail.com>
22
23         * domain.c, domain-internals.h: Disable
24         track_resurrection_{objects,handles}_hash in MonoDomain if using
25         SGen.
26
27 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
28
29         * metadata-verify.c: Verify the param table.
30
31 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
32
33         * metadata-verify.c (verify_typedef_table): Range check FieldList and
34         MethodList.
35
36         * metadata-verify.c (verify_method_table): Proper check the ParamList
37         field.
38
39 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
40
41         * metadata-verify.c (verify_method_table): Check for runtime
42         implemented functions such as delegate .ctors. Remove spurious
43         printf.
44         
45 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
46
47         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
48
49 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
50
51         Don't allocate MonoGenericInfo for ownerless generic params.
52         * class-internals.h (MonoGenericParam::info): Move field to ...
53         (MonoGenericParamFull): ... this.  New struct.
54         (MonoGenericContainer::type_params): Change type to
55         MonoGenericParamFull.
56         (MonoGenericParam, MonoGenericContainer): Update accessors.
57         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
58         'info' field for ownerless generic param.
59         (mono_metadata_load_generic_params): Update to changes.
60         * reflection.c (mono_reflection_create_generic_class): Likewise.
61         (reflection_methodbuilder_to_mono_method): Likewise.
62         (mono_reflection_initialize_generic_parameter): Likewise.
63
64 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
65
66         Don't use MonoGenericParamInfo for ownerless generic params.
67         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
68         use ParamInfo class at all.
69         (mono_class_from_generic_parameter): Use them.
70         (make_generic_param_class): Fix a couple of instances where 'pinfo
71         == NULL' wasn't handle.
72
73 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
74
75         * class.c (make_generic_param_class): Carve out of ...
76         (mono_class_from_generic_parameter): ... here.
77
78 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
79
80         Simplify mono_class_from_generic_parameter
81         * class-internals.h (MonoGenericParamInfo::token): New field.
82         * metadata.c (mono_metadata_load_generic_params): Initialize it
83         from metadata.
84         * class.c (mono_class_from_generic_parameter): Use it instead of
85         searching through metadata.
86
87 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
88
89         * metadata-verify.c: Add verification of the method table.
90
91 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
92
93         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
94         Delegate::Invoke optimization.
95
96 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
97
98         * appdomain.c (mono_domain_create_appdomain_internal): Free the
99         string returned by get_shadow_assembly_location_base.
100
101         * appdomain.c (get_shadow_assembly_location_base): Add a comment
102         about caller's ownership.
103
104 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
105
106         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
107         reflection memory on domain unload.
108
109         * domain.c (mono_domain_free): Don't free refobject_hash, let the
110         reflection cleanup code do it.
111
112         * domain-internals.h: Add mono_reflection_cleanup_domain.
113
114         This fixes a memory leak for managed mirrors of reflection objects
115         on domain unload. 
116
117 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
118
119         * metadata-verify.c: Implement more verification of the field table.
120
121 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
122
123         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
124         doesn't try to parse the input assembly, which can be broken.
125
126 2009-04-23  Mark Probst  <mark.probst@gmail.com>
127
128         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
129         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
130         by using the lowest bit in the link to store whether the link is
131         tracked.  Move the track_resurrection hashes into boehm-gc.c.
132
133 2009-04-22  Miguel de Icaza  <miguel@novell.com>
134
135         * Makefile.am: Split the console support in platform specific code
136         and put together a framework for making this easy in the future so
137         that we can start splitting code instead of having a mess of PLATFORM_WIN32
138
139 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
140
141         * pedump.c: Fix a warning.
142
143 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
144
145         * verify.c (mono_delegate_type_equal): Compare valuetypes using
146         mono_class_from_mono_type to avoid bad interactions with the dual representation
147         of the generic type definition.
148
149 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
150
151         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
152         get the MonoClass for the call context type as it might be a generic
153         instance.
154
155         Fixes #491483.
156
157 2009-04-21  Mark Probst  <mark.probst@gmail.com>
158
159         * object-internals.h: The Thread object has no execution_context
160         member anymore.
161
162         * threads.c, threadpool.c, threads-types.h: Accessor functions for
163         the execution context.
164
165         * appdomain.c: Bump corlib version.
166
167 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
168
169         * verify.c (do_newobj): Improve error message.
170
171 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
172
173         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
174         is nested in the filter block.
175
176         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
177         block is not fully nested.
178
179         Fixes #495656.
180
181 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
182
183         * verify.c (verify_type_compatibility_full): Compare MonoClass and
184         not MonoType to check for equality of valuetypes as the generic type
185         definition allows for two different encodings: the generic type definition
186         class or a generic instance over the GTD arguments.
187
188         Fixes #496175.
189
190 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
191
192         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
193
194         * verify.c (do_initobj): Improve error message.
195
196 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
197
198         * metadata-verify.c: Enable pe verification as the issue with #496453
199         is that the authenticode data directory have a different unspecified
200         format. Ignore it for now.
201
202         * pedump.c: Run the metadata verifier together with the IL verifier.
203
204         Fixes ##496453.
205
206 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
207
208         * metadata-verify.c: Temporarily disable pe verification due to #496453.
209
210 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
211
212         * class.c (can_access_type): Check visibility against
213         the element type for pointers and arrays.
214
215         Fixes #496150.
216
217 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
218
219         * metadata-verify.c: Fix cli and table verification to use information
220         from the MonoImage. A lot of duplicated code got killed.
221
222 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
223
224
225         This patch starts to integrate the metadata verifier with the runtime code.
226
227         This patch causes major regression in functionality for the metadata verifier
228         as cli and table verification are disabled since they require to be ported to
229         use MonoImage information.
230
231         * image.c (do_mono_image_load): Split the code in this function
232         into mono_image_load_pe_data and mono_image_load_cli_data.
233         Add     care_about_pecoff parameter to not load pecoff data.
234         Call into the metadata verifier for pecoff and cli verification.
235
236         * image.c (mono_image_open_raw): New function that doesn't perform
237         any parsing of the image contents.
238         
239         The reason for the 3 new functions is to give pedump better control
240         into the interaction with the verifier.
241
242         * metadata-internals.h: Add new functions from image.c as part of the
243         internal mono API.
244
245         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
246         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
247         to make those functions work together with the runtime.
248
249         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
250         true if the image needs to be verified.
251
252         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
253
254         * pedump.c: Use new metadata verifier API.
255
256 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
257
258         * object.c (mono_install_vtable_trampoline): Make this receive a
259         trampoline creation function instead of trampoline, allowing the JIT
260         to use a different trampoline for each vtable.
261
262 2009-04-18  Mark Probst  <mark.probst@gmail.com>
263
264         * object.c (mono_raise_exception): Don't reset the thread abort
265         exception state here.
266
267 2009-04-18  Mark Probst  <mark.probst@gmail.com>
268
269         * icall-def.h: New icall for getting the thread abort exception
270         state for a thread.
271
272         * object.c, thread.c, object-internals.h: A thread's abort
273         exception state is now a GC handle.  To get the object it stands
274         for, we must move it into the current app domain, if it's
275         different than the one where it originated from.
276
277         * appdomain.c: Bump corlib version.
278
279         * domain.c, domain-internals.h: New function for setting the
280         domain and migrate the thread abort exception or not.
281
282 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
283
284         * metadata-verify.c: Add initial verification of the
285         field table.
286
287 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
288
289         * metadata-verify.c: Add a macro to conditionally enable
290         dumping of verification information. Add  make_coded_token
291         and search_sorted_table to enable search sorted tables
292         by a given coded token.
293
294 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
295
296         * metadata-verify.c: Add array mapping from table index
297         to description offset. Add get_col_offset and get_col_size
298         functions.
299
300 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
301
302         * metadata-verify.c: Add remaining table descriptions offsets.
303         Add remaining coded index descriptions.
304
305 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
306
307         * metadata-verify.c: Fixed constant table description.
308         Fixed calculation of HasCustomAttribute coded index size.
309         Fixed calculation of size for many table indexes. 
310
311 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
312
313         * pedump.c (dump_metadata): Dump table offset instead
314         of useless pointer in memory.
315
316 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
317
318         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
319
320 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
321
322         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
323         a missing of for interface types.
324
325 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
326
327         * metadata-verify.c (verify_pe_optional_header): Add comment of why
328         the code is commented.
329
330         * metadata-verify.c (verify_resources_table): Remove spurious printf
331         and don't fail if there are unmanaged resources. Gmcs generates a useless
332         one     for all assemblies - I bet it's some MS compatibility junk.
333
334 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
335
336         * metadata-verify.c (verify_typedef_table): Verify the extends field.
337
338         * metadata-verify.c (mono_image_verify): Add a is_corlib.
339
340         * verify-internals.h: Same.
341
342         * pedump.c: Fix for mono_image_verify new signature.
343
344 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
345
346         * metadata-verify.c (verify_typedef_table): Verify for some invalid
347         flags combinations.
348
349 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
350
351         * metadata-verify.c (verify_module_table): Ignore the generation field.
352
353 2009-04-15  Martin Baulig  <martin@ximian.com>
354
355         * debug-mono-symfile.c
356         (mono_debug_symfile_lookup_location): Don't print a warning for
357         unknown extended opcodes if they're within 0x40 and 0x7f.
358
359 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
360
361         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
362         invoke signatures returning an enum. Fixes #494847.
363
364 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
365
366         * metadata-verify.c: Initial code to verify the typedef table.
367
368 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
369
370         * verify.c (mono_method_verify): Don't fail if an unconditional branch
371         with non empty stack happens before the beginning of a try block.
372
373         Fixes #494812.
374
375 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
376
377         * metadata-verify.c: Verify typename and typenamespace fields of
378         the typeref table.
379
380 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
381
382         * metadata-verify.c: Initial code to verify the typeref table.
383
384 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
385
386         * verify.c (verify_delegate_compatibility): Fix error message.
387
388 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
389
390         * security-core-clr.c: Fix typo
391
392 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
393
394         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
395         a MonoGHashTable to keep its values alive.
396         (emit_marshal_boolean): Fix a warning.
397
398 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
399
400         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
401         not have any interface configured for IPv4/IPv6.
402
403 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
404
405         * assembly.c: fix typo in error message.
406
407 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
408
409         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
410         allocating the location holding the this argument to prevent
411         'too many root sets' errors.
412
413         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
414         to mark fields as special static.
415         (mono_field_static_get_value): Handle special static fields.
416         (mono_field_static_set_value): Ditto.
417
418         * class-internals.h (struct _MonoClassField): Document this.
419
420 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
421
422         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
423           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
424           case.  This will handle when managed code returns null to native code.
425
426         Code is contributed under MIT/X11 license.
427
428 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
429
430         * object.c (build_imt_slots): Changing a free to a g_free to match
431           the g_malloc0 in add_imt_builder_entry that allocated this memory.
432
433         Code is contributed under MIT/X11 license.
434
435 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
436
437         * marshal.c (emit_marshal_boolean): Adding code to ensure that
438           the correct TRUE value is passed through the marshaling layer.
439
440         Code is contributed under MIT/X11 license.
441
442 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
443
444         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
445         correctly. Fixes #492330.
446         
447         * marshal.c: Fix the embedding of object pointers into JITted code in
448         the native-to-managed wrappers by allocating some GC tracked memory, and
449         embedding the address of that.
450
451 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
452
453         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
454         pointers into the vtable.
455
456 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
457
458         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
459
460         * verify.c (verify_ldftn_delegate): Improve error message.
461
462 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
463
464         * reflection.c (my_mono_class_from_mono_type): Remove.
465
466 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
467
468         Prepare to reduce memory usage of owner-less generic parameters (1/n)
469         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
470         and constraints fields into ...
471         (MonoGenericParamInfo): ... this.
472         (mono_generic_param_info, mono_generic_container_get_param_info):
473         New accessors.
474         * class.c, debug-helpers.c, icall.c: Update to changes.
475         * metadata.c, reflection.c, verify.c: Likewise.
476
477 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
478
479         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
480
481         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
482         
483         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
484         booleans with sbytes.
485
486 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
487
488         * class.c (can_access_instantiation): Verify accesibility of element types
489         for arrays and pointers.
490
491         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
492
493         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
494
495         Fixes #493068.
496
497 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
498
499         * verify.c (do_invoke_method): Improve error messages.
500
501 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
502
503         * verify.c:  Fixing the MSVC build.
504
505         Code is contributed under MIT/X11 license.
506
507 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
508
509         * security-core-clr.c: Simplify get_reflection_caller not to call
510         mono_method_get_last_managed (another stack walk) and adjust the
511         callers to handle a (should not happen) NULL return value.
512
513 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
514
515         Add accessors to some MonoGenericParam fields
516         * class-internals.h (mono_generic_param_owner): New accessor.
517         (mono_generic_param_num): Likewise.
518         (mono_type_get_generic_param_owner): New helper.
519         (mono_type_get_generic_param_num): New helper.
520         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
521
522 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
523
524         * class-internals.h (mono_generic_container_get_param): New wrapper.
525         * class.c, icall.c, metadata.c, verify.c: Use it.
526
527 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
528
529         Fix gtest-252.cs
530         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
531         the standard case/loop.  In particular, don't complain about
532         references to generic type definitions.
533
534 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
535
536         * debug-helpers.c (dis_one): Decode string arguments.
537
538 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
539
540         * pedump.c (dump_verify_info): Dump type name correctly.
541
542 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
543
544         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
545         are larger than code size.
546
547         This can happen in valid code if the try/catch block is not followed by any instruction
548         and do a backward branch on the leave instruction.
549
550         Fixes #492494.
551
552 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
553
554         * security-core-clr.c: Fix typo while comparing second method names
555         in can_avoid_corlib_reflection_delegate_optimization
556
557 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
558
559         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
560
561         Fixes #487738.
562
563 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
564
565         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
566         a MVAR using a class context.
567
568         Fixes #490335.
569
570 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
571
572         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
573
574         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
575
576         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
577         functions supplied by the JIT for the SGEN GC.
578
579         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
580         
581 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
582
583         monitor.c (mono_monitor_try_enter_internal):
584         Added calls to profile monitor contentions.
585         Also duplicated a small piece of code (the "get the monitor" logic)
586         from the fast path to the slow path, and changed the relevant goto
587         statements, so that monitor acquisition events can be emitted from the
588         slow path (this is by Paolo Molaro).
589
590 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
591
592         * profiler.c, profiler.h, profiler-private.h:
593         Added support for profiling monitor contentions.
594
595 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
596
597         * metadata-verify.c: Verify the modules table.
598
599 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
600
601         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
602         using the context of the method been verifier and not of the method been called.
603
604         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
605         safely inflate generic types. 
606
607 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
608
609         * security-core-clr.c: Change the strategy for checking the 
610         "reflection using delegates optimization" to avoid unneeded 
611         attributes in multiple class libraries.
612
613 2009-04-02  Mark Probst  <mark.probst@gmail.com>
614
615         * sgen-gc.c: Remove object element in the disappearing link struct
616         by storing the object pointer in the link.
617
618 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
619
620         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
621
622 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
623
624         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
625
626         * verify.c (mono_method_verify): Do proper bounds checking of exception
627         clause ranges.
628
629 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
630
631         * loader.c (mono_field_from_token): Don't crash if the field parent could
632         not be decoded.
633
634 2009-03-31  Mark Probst  <mark.probst@gmail.com>
635
636         * sgen-gc.c: Execute critical finalizers after ordinary
637         finalizers.
638
639         * class-internals.h, domain.c: Add CriticalFinalizerObject to
640         mono_defaults.
641
642 2009-03-31 Jb Evain <jbevain@novell.com>
643
644         * verify.c (do_ldstr): don't check if a string is in the user strings
645         heap if the current image is dynamic.
646
647 2009-03-31  Mark Probst  <mark.probst@gmail.com>
648
649         * sgen-gc.c: Wait until the last finalizer has executed when
650         returning from WaitForPendingFinalizers.
651
652 2009-03-31  Martin Baulig  <martin@ximian.com>
653
654         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 2.
655
656 2009-03-31  Martin Baulig  <martin@ximian.com>
657
658         * mono-debug-debugger.h (MonoDebuggerEvent): Add
659         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
660         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
661         (mono_debugger_event_create_appdomain): New function.
662         (mono_debugger_event_unload_appdomain): New function.
663
664         * appdomain.c (mono_domain_create_appdomain_internal): Call
665         mono_debugger_event_create_appdomain().
666
667 2009-03-31  Martin Baulig  <martin@ximian.com>
668
669         * mono-debug-debugger.c
670         (mono_debugger_register_class_init_callback): Also register the
671         class init callback if the class is already initialized to make
672         things work with shadow copied assemblies.
673
674 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
675
676         * security-core-clr.c
677         (mono_security_core_clr_ensure_reflection_access_field): Let 
678         critical code access the field (just like we do for methods). Use
679         check_field_access helper.
680         (mono_security_core_clr_ensure_reflection_access_method): Use 
681         check_field_access helper.
682
683 2009-03-31  Mark Probst  <mark.probst@gmail.com>
684
685         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
686         call the run-finalize function directly.
687
688         * gc.c, gc-internal.h: Make run_finalize() non-static.
689
690 2009-03-31  Mark Probst  <mark.probst@gmail.com>
691
692         * sgen-gc.c: Use a separate struct for disappearing links.
693
694 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
695
696         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
697         * MaxIOVectorLength enabled, just ignore them.
698         Fixes bug #349688.
699
700 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
701
702         * metadata-verify.c: Fix eglib build.
703
704 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
705
706         * threads-types.h: Fix the win32 build.
707
708 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
709
710         * class.c: move coreclr inheritance/override checks to 
711         security-core.clr.c
712         * security-core.clr.c|h: add code from class.c with additional
713         documentation. Fix override check when the method is not critical.
714
715 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
716
717         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
718         (match_class): Ditto.
719
720 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
721
722         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
723
724         * metadata-verify.c: Implement table layout row size calculation. Verify
725         the total size of the tables.
726
727 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
728
729         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
730
731 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
732
733         * appdomain.c:
734         * console-io.[ch]: added new mono_console_init() to make sure that
735         file descriptors 0, 1 and 2 are opened.
736         Bug #489019 fixed.
737
738 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
739
740         * appdomain.h: Export a new callback type and a new function to
741         set this callback. This allow a mono host to provide it's own
742         definition for "platform code".
743         * metadata-internals.h: Add a core_clr_platform_code flag on 
744         _MonoImage to (cache and) know if it is representing platform 
745         code.
746         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
747         on platform code images.
748         * security-core-clr.c|h 
749         (mono_security_set_core_clr_platform_callback): Allow the host
750         to provide it's own platform check definition.
751         (mono_security_core_clr_determine_platform_image): Detect if an 
752         image is platform code (using the specified callback).
753         (mono_security_core_clr_is_platform_image): Return cached value 
754         for platform code.
755
756 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
757
758         * threads.c (mono_create_thread): New helper function to wrap CreateThread
759         which has different parameter types for the 'tid' argument in windows and
760         the io-layer.
761
762         * appdomain.c attach.c threads.c: Use the new helper.
763
764 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
765
766         * metadata-verify.c: Verify valid table bits.
767
768 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
769
770         * metadata-verify.c (verify_metadata_header): Store size in the size field.
771
772         * metadata-verify.c: Add initial table schema verification.
773
774 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
775
776         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
777         obtain the refclass argument needed by mono_param_get_objects (). Fixes
778         #488383.
779
780         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
781
782         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
783
784 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
785
786         * security-core-clr.c: Add/update documentation
787
788 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
789
790         * marshal.c (emit_marshal_object): Generate code to throw an exception
791         instead of throwing it. Fixes #488670.
792
793 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
794
795         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
796         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
797         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
798         and add a call to mono_security_core_clr_ensure_delegate_creation
799         to do the extra checks required by CoreCLR.
800         * security-core-clr.c|h: Add function to check delegate creation,
801         both in the binding and accessibility, under CoreCLR.
802
803 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
804
805         * reflection.c (mono_reflection_create_dynamic_method): when 
806         coreclr is enabled make sure that every resolved object are
807         checked (e.g. field and method access).
808         * security-core-clr.c|h: Add function to check objects resolved
809         when a dynamic method is created.
810
811 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
812
813         * metadata-verify.c: Cache directory rva translations.
814
815         * metadata-verify.c: Add cli-header and streams verification.
816
817 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
818
819         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
820         the wrong offset (8 instead of 6).
821
822 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
823
824         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
825         methods, return the native function address itself. Fixes
826         #487758.
827
828 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
829
830         * console-io.c: some of the values for control characters might not be
831         present.
832
833 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
834
835         * exception.c|h: Add helpers to create [Field|Method]AccessException
836         * icall.c: Add required coreclr check calls for field reflection.
837         Move the existing (method) check logic into security-core-clr.c
838         * security-core-clr.c: Add functions to check if the access of a
839         field or method is allowed when reflecting under coreclr. This is
840         mostly done using a stack walk to find the "real" caller: i.e. the
841         code that is calling the reflection
842
843 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
844
845         * gc-internal.h: Change location of gc_wrapper.h
846
847 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
848
849         * class.c: Simplification to coreclr checks for overrides that
850         makes it easier to set breakpoints.
851
852 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
853
854         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
855         mono_security_core_clr_method_level): Avoid potential 
856         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
857         user/application code) and make it easier to set breakpoints
858
859 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
860
861         * metadata-verify.c: Reject cli header tables that mono don't handle.
862
863 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
864
865         * pedump.c: Fix CLI header dumping.
866
867 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
868
869         * metadata-verify.c: More CLI header verification.
870
871 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
872
873         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
874
875 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
876
877         * metadata-verify.c: Initial verification of the CLI header.
878
879 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
880
881         * metadata-verify.c (verify_resources_table): Fix verification of zero
882         sized resource section and id entries count.
883
884 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
885
886         * icall.c: Handle user types in many Type icalls. Fixes #486303.
887
888 2009-03-17  Jb Evain  <jbevain@novell.com>
889
890         * profiler.c: call mono_gc_base_init from mono_profiler_load.
891
892 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
893
894         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
895         (mono_gc_make_descr_for_array): Ditto.
896
897 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
898
899         * verify.c (mono_verifier_is_class_full_trust): Add support for
900         CoreCLR security mode where trusted assemblies are defined as
901         "platform code".
902
903 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
904
905         * metadata-verify.c: Add minimal PECOFF resource verification.
906
907 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
908
909         * metadata-verify.c: Be less restrictive with some coff fields.
910
911 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
912
913         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
914         params as boxed values on stack. Fixes #485706.
915
916 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
917
918         * console-io.c: the termios values may vary in different flavors of unix.
919
920 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
921
922         * console-io.[ch]: return the entire set of control characters when
923         initializing the terminal.
924         * appdomain.c: bump corlib version.
925
926 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
927
928         * mono-perfcounters.c: added support for in-process custom
929         performance counters.
930
931 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
932
933         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
934
935 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
936
937         * metadata-verify.c: Verify the data pointed by the import table. 
938
939 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
940
941         * metadata-verify.c (load_data_directories): Store data
942         directory contents.
943
944         * metadata-verify.c: Verify the import table. 
945
946 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
947
948         * metadata-verify.c: Verify data directories.
949
950 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
951
952         * metadata-verify.c: Check section header flags.
953
954 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
955
956         * appdomain.c: if the assembly name is a shadow-copied file, return
957         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
958         in mono_make_shadow_copy.
959         * icall.c: if the assembly name is a shadow-copied file, replace it
960         with the original assembly path.
961
962         Bug #484244 fixed. NUnit tests for corlib can be run without
963         --noshadow now.
964
965 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
966
967         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
968         entries when the table is reallocated.
969
970         * icall.c: Allocate the memory used by the mono_ptr_array macros using
971         mono_gc_alloc_fixed () since it contains GC refs.
972
973 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
974
975         * reflection.c (ensure_complete_type): New helper function to call
976         type resolve handlers for unfinished dynamic types.
977         (resolve_object): Call it for MonoClassFields. Fixes #483852.
978
979 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
980
981         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
982         #483247.
983
984 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
985
986         * appdomain.c (get_shadow_assembly_location): Fix memleak.
987
988 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
989
990         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
991         between GCHandles of type WeakTrackResurrection and the objects they
992         point to.
993
994         * gc.c: Partly implement the sematics of GCHandles of type 
995         WeakTrackResurrection: these handles should only be cleared after the
996         finalizer of the object they are pointing to has ran.
997
998 2009-03-06  Mark Probst  <mark.probst@gmail.com>
999
1000         * icall.c: Partially revert r126631 because using the jump
1001         trampolines for generic shared methods makes it superfluous.
1002
1003 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
1004
1005         * threads.c (handle_store): Create the 'threads' hash table with the proper
1006         MONO_HASH_VALUE_GC type.
1007
1008 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
1009
1010         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
1011         FIRST_GC_TRACKED.
1012
1013         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
1014         and LAST_GC_TRACKED as a GC root.
1015
1016         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
1017
1018         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
1019         the static data even if it consists of 1 reference.
1020
1021         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
1022         if there is a GC descriptor.
1023
1024         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
1025         instead of through the GC since they contain no object references.
1026
1027 2009-03-05  Mark Probst  <mark.probst@gmail.com>
1028
1029         * generic-sharing.c (instantiate_other_info): Always return a jump
1030         trampoline for method code.
1031
1032 2009-03-05  Marek Habersack  <mhabersack@novell.com>
1033
1034         * culture-info-tables.h: generated to include the en-tt culture.
1035
1036 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
1037
1038         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
1039         capture the thread context.
1040
1041         * object.c (mono_async_result_new): Cache the invoke wrappers to
1042         ExecutionContext::Capture.
1043
1044 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
1045
1046         * marshal.h: Add a prototype for what mono_compile_method returns
1047         for invoke wrappers.
1048
1049         * gc.c: Use the new prototype declaration.
1050
1051 2009-03-04  Geoff Norton  <gnorton@novell.com>
1052
1053         * boehm-gc.c: Add some MONO_LOG tracing for the GC
1054         * gc-internal.h:
1055         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
1056
1057 2009-03-04  Martin Baulig  <martin@ximian.com>
1058
1059         * mono-debug.h
1060         (mono_debugger_runtime_invoke): Removed.
1061
1062         * mono-debug-debugger.c
1063         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
1064
1065 2009-03-02  Martin Baulig  <martin@ximian.com>
1066
1067         * mono-debug.h
1068         (mono_debugger_unhandled_exception): Removed.
1069         (mono_debugger_handle_exception): Removed.
1070         (mono_debugger_throw_exception): Removed.
1071
1072         * mono-debug.c
1073         (mono_debug_debugger_version): Bump to 5.
1074
1075         * mono-debug-debugger.c: Moved the exception handling code to
1076         ../mini/debug-mini.c
1077
1078 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
1079
1080         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
1081         finalize_objects_hash.
1082
1083         * gc.c: Use the separate lock to access the finalize_objects_hash field.
1084         
1085         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
1086         field.
1087
1088         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
1089         cache.
1090
1091         * image.c (mono_image_close): Free it.
1092         
1093         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
1094         allowing a creation of a wrapper which invokes its method using a CALLVIRT
1095         on the this argument.
1096
1097         * gc.c (run_finalize): Optimize the calling of the finalizers.
1098
1099 2009-03-03  Martin Baulig  <martin@ximian.com>
1100
1101         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
1102         of the `MonoGenericInst' changes.
1103
1104 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
1105
1106         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
1107         mono_array_class_get_cached to reduce locking contention. Extract
1108         a domain var.
1109
1110         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
1111         intermediary managed arrays. Use caching version of mono_array_new
1112         to allocate the result array.
1113
1114         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
1115
1116         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
1117
1118         * locales.c (create_names_array_idx):  Use mono_array_new_cached
1119         to reduce locking contention.
1120
1121 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
1122                 
1123         * object.c (mono_method_add_generic_virtual_invocation): Put back the
1124         thunk builder code for the non-interface case.
1125
1126 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
1127
1128         * object.c (get_generic_virtual_entries): New helper function to collect
1129         the virtual generic method instances which need to be added to an IMT
1130         thunk.
1131         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
1132         Instead of creating a new IMT thunk, reset the vtable slot to the
1133         trampoline, the thunk will be created the next time the trampoline is called.
1134         (build_imt_slots): Add support for virtual generic methods in interfaces by
1135         adding to the IMT thunk all the methods registered using 
1136         mono_method_add_generic_virtual_invocation ().
1137
1138         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
1139         (struct _MonoIMTCheckItem): Ditto.
1140
1141         * object.c (mono_method_add_generic_virtual_invocation): Take a
1142         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
1143         the IMT thunk to include all items.
1144         
1145         * object.c (mono_class_create_runtime_vtable): Add a missing
1146         mono_loader_unlock ().
1147
1148 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1149
1150         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1151
1152         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
1153
1154 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1155
1156         * object-internals.h: Rename _MonoReflectionEvent to
1157         MonoReflectionMonoEvent so it reflects the right managed type.
1158         Add a MonoReflectionEvent that correctly represents System.EventInfo.
1159
1160         * icall.c:
1161         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
1162         type.
1163
1164 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1165
1166         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
1167         intermediary managed arrays. Use caching version of mono_array_new
1168         to allocate the result array.
1169
1170 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
1171
1172         * reflection.c: Use cached version of mono_array_new alongside
1173         the mono_reflection_get_custom_attrs_by_type call path.
1174
1175 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
1176
1177         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
1178         intermediary managed arrays. Use caching version of mono_array_new
1179         to allocate the result array.
1180
1181         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
1182
1183 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
1184
1185         * icall.c: Add small implementation of a growable stack bound array.
1186
1187         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
1188
1189         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
1190         intermediary managed arrays. Use caching version of mono_array_new
1191         to allocate the result array.
1192
1193 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
1194
1195         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
1196         helps Enum::CompareTo to be implemented without reboxing all enums
1197         to their underlying type.
1198 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
1199
1200         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
1201         since it acquires a global lock leading to scalability problems.
1202
1203         * profiler.c: Make the stat profiler work with multiple appdomains, this
1204         currently only works when no appdomains are unloaded.
1205
1206 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1207
1208         * appdomain.c: make the check to avoid copying when the assembly is
1209         already shadow copied actually work.
1210
1211 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
1212
1213         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1214
1215         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
1216         changes to the managed side.
1217
1218 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
1219
1220         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
1221         classes + a separate lock for it, as it is used frequently at runtime, not
1222         just during metadata loading/JIT compilation.
1223
1224         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
1225         for szarrays.
1226         
1227         * object-internals.h (mono_class_from_name_cached): New macro to cache
1228         the results of the lookup locally without having to declare a static
1229         variable to hold it.
1230         (mono_class_get_field_from_name_cached): Ditto.
1231         (mono_array_class_get_cached): Ditto.
1232
1233         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
1234         the new macros.
1235         
1236         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
1237         slower search in metadata.
1238
1239         * pedump.c: Fix a warning.
1240
1241 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
1242
1243         * reflection.c (encode_locals): Add checks for user types.
1244         (method_encode_clauses): Ditto.
1245         (method_encode_code): Ditto.
1246         (mono_image_create_token): Ditto.
1247
1248         * object-internals.h: Change the type of more fields from MonoReflectionType*
1249         to MonoObject*.
1250
1251 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
1252
1253         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
1254         the a thread does not suspend within 100ms.
1255
1256         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
1257         in addition to StopRequested as well.
1258
1259         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
1260
1261         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
1262         search the method_hash before inserting a new entry, to avoid crashes when
1263         the same method is inserted multiple times, causing the old 
1264         MonoDebugMethodInfo structure to be freed by the value dtor function.
1265
1266 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1267
1268         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
1269         SO_EXLUSIVEADDRUSE where available.
1270
1271 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
1272
1273         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
1274         runtime invoke wrappers, this time it is string ctor wrappers, which
1275         pass a dummy string as 'this' instead of their obj argument. Fixes
1276         #478473.
1277
1278 2009-02-21  Jb Evain  <jbevain@novell.com>
1279
1280         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
1281         only get create_culture once.
1282
1283 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
1284
1285         * reflection.c (mono_reflection_setup_internal_class): Move the user type
1286         check before the locking.
1287         
1288         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
1289         (mono_reflection_create_runtime_class): Ditto.
1290         (mono_reflection_sighelper_get_signature_local): Ditto.
1291         (mono_reflection_sighelper_get_signature_field): Ditto.
1292
1293         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
1294         is a System.MonoType object or similar.
1295         (monotype_cast): New helper function to cast a MonoObject to a 
1296         MonoReflectionType object.
1297
1298         * object-internals.h: Change MonoReflectionType* members in structures to
1299         MonoObject* members to force the usage of the monotype_cast () function.
1300
1301         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
1302         structures/arrays. This causes us to assert instead of crashing when 
1303         instances of user defined subclasses of System.Type are encountered.
1304
1305 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1306
1307         * cil-coff.h:
1308         * icall-def.h:
1309         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
1310         win32 resource loaded from a PE file.
1311
1312         * image.c: fix mono_image_lookup_resource.
1313
1314 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1315
1316         * icall-def.h:
1317         * threads-types.h:
1318         * threads.c: added internal call for WaitHandle.SignalAndWait.
1319
1320 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
1321
1322         * cominterop.c : Adding cominterop_type_from_handle and 
1323           registering it as an icall.  Replacing all references
1324           to type_from_handle.
1325
1326         Code is contributed under MIT/X11 license.
1327
1328 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
1329
1330         * Makefile.am: Add lock-tracer.h and lock-trace.c.
1331
1332         * appdomain.c: Call the tracer init function.
1333
1334         * domain-internals.h: Enable the tracer for the domain locks.
1335
1336         * image.c: Enable the tracer for image locks.
1337
1338         * loader.c: Enable the trace for the loader lock.
1339
1340         * lock-tracer.h:
1341         * lock-tracer.c: Initial implementation of the lock trace utility.
1342         The tracer requires a compile time define to be enabled and a env var
1343         to be enabled at runtime.
1344
1345 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
1346
1347         * domain.c (mono_domain_code_foreach): Improve documentation.
1348
1349 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
1350
1351         * appdomain.c:
1352         * generic-sharing.c:
1353         * object.c:
1354         * reflection.c:  Adjust locking order to the new semantics where the loader lock
1355         comes first.
1356
1357 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
1358
1359         * domain.c: Add mono_domain_code_* functions that perform locking
1360         around the domain codeman.
1361
1362         * domain-internals.h: Export those functions.
1363
1364         * object.c: Use new functions instead of acquiring the domain lock.
1365
1366 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
1367
1368         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
1369         delegate. Fixes #477396.
1370
1371 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
1372
1373         * reflection.c (create_custom_attr): Get rid of alloca.
1374
1375 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
1376
1377         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
1378           Adding exception handling for all CCW calls.
1379
1380         Code is contributed under MIT/X11 license.
1381
1382 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
1383
1384         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
1385
1386         * marshal.c (emit_marshal_boolean): Add null checks to the new 
1387         native->managed marshalling code. Fixes #476247.
1388
1389 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
1390
1391         * class.c (mono_class_get_vtable_entry): Move the addition of
1392         static rgctx invoke wrappers for vtable methods here, this simplifies
1393         a lot of code and causes fewer rgctx wrappers to be created.
1394
1395         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
1396         name of the statistics to begin with an uppercase.
1397
1398 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
1399
1400         * reflection.c: Revert previous change as it breaks the build.
1401         
1402 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
1403
1404         * verify.c: Properly handle SZARRAY element type.
1405
1406         Fixes #474271.
1407
1408 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
1409
1410         * reflection.c (mono_image_create_method_token): Correctly encode
1411         MethodDef MemberRefParent token.
1412
1413         Fixes #472845.
1414
1415 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
1416
1417         * image.c (mono_image_close): Delete the critical section before
1418         freeing the memory holding it.
1419
1420 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1421
1422         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
1423         Fixes #476257.
1424
1425 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1426
1427         * pedump.c (main): Call mono_marshal_init so pedump
1428         doesn't crash.
1429
1430 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1431
1432         * loader.c (method_from_memberref): Properly fix #474271 and
1433         don't break the runtime bad.
1434
1435 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
1436
1437         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
1438         (mono_domain_alloc0): Ditto.
1439
1440 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1441
1442         * loader.c (method_from_memberref): Don't abort if the array
1443         method is not found. A regular loader failure is more informative
1444         and correct.
1445
1446         Fixes #474271.
1447
1448 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1449
1450         *loader.c: Guard MonoImage::method_cache/methodref_cache
1451         using the image lock instead of the loader lock.
1452
1453         * metadata.h: Add comments about which fields are protected by
1454         the image lock.
1455
1456 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
1457
1458         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
1459
1460         * generic-sharing.c (mono_method_construct_object_context): Remove the
1461         wrapper_type == NONE assert, it is not needed.
1462
1463 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
1464
1465         * reflection.c (clear_cached_object): New helper function.
1466         (mono_method_clear_object): New function to clear the cached reflection
1467         objects for a dynamic method.
1468
1469         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
1470         Partly fixes # 463323.
1471         
1472 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
1473
1474         * class.c:
1475         * loader.c:
1476         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
1477
1478 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
1479
1480         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
1481         take the image lock instead of the loader lock.
1482
1483         * metadata-internals.h: Export new functions.
1484
1485 2009-02-12  Miguel de Icaza  <miguel@novell.com>
1486
1487         * domain.c (app_config_parse): Remove another use of stat that is
1488         not necessary as g_file_get_contents already does the presence
1489         check. 
1490
1491 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
1492
1493         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
1494
1495         * marshal.c: Move the bstr handling code to cominterop.c.
1496
1497         * marshal.c: Remove some COM interop code missed previously.
1498
1499 2009-02-12  Miguel de Icaza  <miguel@novell.com>
1500
1501         More Paolo patches from the Wii port:
1502         
1503         * security.c: Remove ves_icall_System_Environment_get_UserName
1504         from here.
1505
1506         * icall.c: And put ves_icall_System_Environment_get_UserName
1507         here. 
1508
1509         * appdomain.c (mono_set_private_bin_path_from_config): Remove
1510         redundant call to stat that was only used to test for the file
1511         existence.   Patch from Paolo.
1512
1513         * gc.c (run_finalize): If COM is disabled, do not link in
1514         mono_marshal_free_ccw.
1515
1516         * generic-sharing.c: Use alloca.h here as well.
1517
1518 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
1519
1520         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
1521
1522 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
1523
1524         * cominterop.c cominterop.h: New files.
1525
1526         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
1527         function/typedefs which are needed by cominterop.c global.
1528
1529 2009-02-12  Mark Probst  <mark.probst@gmail.com>
1530
1531         * generic-sharing.c: Don't take the loader lock to guard image
1532         mempool allocs.
1533
1534 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1535
1536         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
1537         called without the loader lock which is required to guard MonoImage:tokens.
1538
1539 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1540
1541         * class.c:
1542         * metadata.c:
1543         * method-builder.c:
1544         * marshal.c:
1545         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
1546
1547 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1548
1549         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
1550         Rework the code to use regular mono_image_alloc/0.
1551
1552         * loader.c: Rework the code to use regular mono_image_alloc/0.
1553
1554         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
1555
1556 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
1557
1558         * object-internals.h : Fixing a typo in the 
1559           MonoReflectionComVisibleAttribute struct.
1560
1561         * marshal.c (cominterop_com_visible): Check the implemented 
1562           interfaces for ComImport.
1563
1564         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
1565           assume that bools should be treated as VARIANTBOOLs.
1566
1567         * marshal.c (emit_marshal_boolean): Adding cases for 
1568           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
1569
1570         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
1571           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
1572
1573         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
1574           should be treated as VARIANTBOOLs.    
1575
1576         Code is contributed under MIT/X11 license.
1577
1578 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1579
1580         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
1581         allocation with the image lock.
1582
1583 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1584
1585         This patch is the last of a series to remove explicit reference of MonoImage::mempool
1586         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
1587
1588         * object.c: Add mono_string_to_utf8_image.
1589
1590         * object-internals.h: Export mono_string_to_utf8_image.
1591
1592         * reflection.c: Rework all explicit references to the the image mempool to go thought
1593         the mono_image_alloc set of functions.
1594
1595 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1596
1597         This patch is the third of a series to remove explicit reference of MonoImage::mempool
1598         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
1599         and generics-sharing.c.
1600
1601         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
1602         as first argument. Note that this function remains broken as it doesn't perform locking around the
1603         mempool allocation.
1604
1605         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
1606
1607         * image.c: Add g_slist_append_image.
1608
1609         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
1610         the supplied image for allocation. Move code into mono_metadata_field_info_full.
1611
1612         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
1613         Fix all related code to do the same.
1614
1615         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
1616
1617         * metadata-internals.h: Fix the signatures.
1618
1619 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1620
1621         This patch is the second of a series to remove explicit reference of MonoImage::mempool
1622         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
1623         and similar to work using MonoImage.
1624
1625         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
1626         MonoMemPool.
1627
1628         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
1629
1630         * class.c (mono_metadata_signature_deep_dup): Same.
1631
1632         * class.c (inflate_generic_type): Same.
1633
1634         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
1635
1636         * metadata.c (mono_metadata_signature_dup_full): Same.
1637
1638         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
1639         mono_metadata_signature_dup_full.
1640
1641         * metadata.c (mono_metadata_type_dup): Same.
1642
1643         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
1644
1645         * reflection.c: Same.
1646
1647         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
1648
1649         * metadata-internals.h: Fix the signatures.
1650
1651         * class-internals.h: Same.
1652
1653 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
1654
1655         This patch is the first of a series to remove explicit reference of MonoImage::mempool
1656         and use mono_image_alloc set of functions instead. 
1657
1658         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
1659         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
1660         of a MonoMemPool.
1661
1662         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
1663
1664         * class.c (g_list_prepend_mempool): Removed.
1665
1666         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
1667
1668         * image.c: Add g_list_prepend_image.
1669
1670         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
1671
1672         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
1673
1674
1675 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
1676
1677         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
1678         mono_image_unlock.
1679
1680         * image.c (mono_image_init): Init the lock field.
1681  
1682         * image.c (mono_image_init): Cleanup the lock field.
1683
1684         * image.c: Add mono_image_(un)lock functions.
1685
1686 2009-02-11  Mark Probst  <mark.probst@gmail.com>
1687
1688         * class.c, class-internals.h: mono_method_get_context_general()
1689         combines the functionality of mono_method_get_context() and
1690         mini_method_get_context().
1691
1692         * generic-sharing.c, domain-internals.h:
1693         mono_method_construct_object_context() and
1694         mono_domain_lookup_shared_generic() moved from mini.
1695
1696         * icall.c (ves_icall_InternalInvoke): Handle the case where the
1697         method doesn't have the correct instantiation because it's shared
1698         generic code.  Fixes #473999.
1699
1700 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
1701
1702         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
1703
1704         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
1705         
1706 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
1707
1708         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
1709
1710         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
1711
1712         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
1713         and recheck the cache for dups after it.
1714
1715         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
1716
1717         Fixes one of the deadlocks found in #473150.
1718
1719 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
1720
1721         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
1722           For Win32, add additional break conditions for accept.
1723
1724         Code is contributed under MIT/X11 license.
1725
1726 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
1727
1728         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
1729         lazily initialize the native wrapper cache.
1730         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
1731         cache, since they are different from the normal wrappers.
1732
1733         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
1734
1735         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
1736         AOT compiled native wrappers.
1737
1738 2009-02-09  Geoff Norton  <gnorton@novell.com>
1739
1740         * appdomain.h:
1741         * security-core-clr.c: Allow enabling core-clr from the embedding
1742         API.
1743
1744 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1745
1746         * socket-io.c: when requesting all the local ips, if there are no
1747         interfaces up and running, MS returns 127.0.0.1.
1748
1749 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1750
1751         * mono-perfcounters-def.h: processor time is an inverse time.
1752         Fixes bug #468625.
1753
1754 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1755
1756         * socket-io.c: an empty host name returns the list of local IPs.
1757         Fixes bug #386637 part 1/2.
1758
1759 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
1760
1761         * verify.c (mono_class_interface_implements_interface): Call
1762         mono_class_setup_interfaces ().
1763         (merge_stacks): Ditto.
1764
1765 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
1766
1767         * class.c (mono_class_setup_interfaces): New function to lazily initalize
1768         klass->interfaces.
1769         (mono_generic_class_get_class): Don't initalize klass->interfaces.
1770         (mono_generic_class_get_class): Ditto.
1771
1772 2009-02-06  U-QUACK\miguel  <miguel@quack>
1773
1774         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
1775         they live in security.c
1776
1777         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
1778         another bit from Paolo's code.
1779
1780 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
1781
1782         * object.c (build_imt_slots): Add a small optimization to avoid inflating
1783         methods which will be discarded by add_imt_builder_entry ().
1784
1785         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
1786         need to be boxed.
1787
1788         * loader.c: Add a statistics for the size of the memberref signature cache.
1789         
1790         * loader.c (find_cached_memberref_sig): New helper function.
1791         (cache_memberref_sig): Ditto.
1792
1793         * loader.c: Cache the result of parsing memberref signatures, since otherwise
1794         they will be parsed again for every generic instantiation, leading to unbounded
1795         memory growth.
1796
1797 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
1798
1799         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
1800         parameters of generic methods.
1801
1802         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
1803         after the original method is copied to the inflated method.
1804         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
1805
1806         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
1807         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
1808
1809         * class.c metadata.c: Update after the changes above.
1810
1811 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
1812
1813         * metadata-verify.c: Simplified error handling and added
1814         section table validation.
1815
1816 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
1817
1818         * class-internals.h (MonoClassExt): New structure containing rarely used
1819         fields of MonoClass.
1820         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
1821         through a new 'ext' field.
1822
1823         * class.c (mono_class_alloc_ext): New helper function to allocate 
1824         class->ext.
1825
1826         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
1827
1828 2009-02-05  Mark Probst  <mark.probst@gmail.com>
1829
1830         * object.c (mono_object_get_virtual_method): Properly inflate
1831         generic methods.  Fixes #472692.
1832
1833 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
1834
1835         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
1836         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
1837         for the parent type, the created type must be ready to be used on a generic
1838         instantiation.
1839         We fill this_arg/byval_arg if the parent is a generic instance to make sure
1840         we won't have duplicated entries in generic_inst_cache.
1841
1842         Fixes #469553.
1843
1844 2009-02-05  Miguel De Icaza  <miguel@novell.com>
1845
1846         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
1847         replace with plain BSD per the comments on the bug MONO77637.
1848
1849 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
1850
1851         * class.c (mono_class_get_generic_class): New accessor function.
1852         (mono_class_get_generic_container): Ditto.
1853
1854         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
1855         fields, similar to the ones in MonoMethod.
1856
1857         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
1858         (mono_class_create_from_typedef): Set klass->is_generic if needed.
1859
1860         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
1861         
1862         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
1863         the same information as element_class->byval_arg.
1864
1865         * class.c reflection.c: Remove references to class->byval_arg.
1866
1867         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
1868         klass->enum_basetype directly.
1869
1870         * verify.c metadata.c object.c icall.c reflection.c: Use 
1871         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
1872         directly.
1873
1874 2009-02-04  Miguel de Icaza  <miguel@novell.com>
1875
1876         * icall-def.h: Remove internal calls for sockets when
1877         DISABLE_SOCKET is defined, file system writing features when the
1878         OS only support reading and not writing data and Policy support if
1879         the Policy is disabled.
1880         
1881         * image.c (do_mono_image_open): Apply Paolo's patches for using
1882         mono_file_map_ APIs here.
1883
1884         * assembly.c: Add support for platforms to avoid prefix
1885         auto-detection. 
1886
1887 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
1888
1889         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
1890         warning.
1891
1892         * class.c (mono_class_inflate_generic_class): New helper function.
1893
1894         * class.c: Use mono_class_inflate_generic_class in a few places. Add
1895         statistics for inflated methods/classes.
1896
1897         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
1898
1899         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
1900         the call is made from Delegate.CreateDelegate () for the invoke method of
1901         a delegate.
1902
1903         * loader.c: Add a statistics for the memory occupied by inflated signatures.
1904
1905         * metadata.c (mono_metadata_signature_size): New helper function.
1906
1907         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
1908         generic instances.
1909
1910         * metadata.c (inflated_method_in_image): Avoid calling 
1911         mono_method_signature () if the method does not already have a signature.
1912
1913 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
1914
1915         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
1916         valuetype is compatible with target type, check by inheritance as a
1917         VT is not really compatible with System.ValueType, for example.
1918
1919         * verify.c (do_invoke_method): Improve error message.
1920
1921         * verify.c (do_box_value): If boxing a nullable, use the type argument
1922         on stack instead.
1923
1924         * verify.c (do_newobj): Improve error message.  
1925
1926         Fixes #469549.
1927
1928 2009-02-03  Miguel de Icaza  <miguel@novell.com>
1929
1930         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
1931
1932 2009-02-03  Mark Probst  <mark.probst@gmail.com>
1933
1934         * generic-sharing.c: Don't hold domain lock when calling
1935         instantiate_other_info().  Fixes #471958.
1936
1937         * domain-internals.h, loader.c: Describe locking policy of domain
1938         lock vs loader lock.
1939
1940 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
1941
1942         * verify.c (mono_delegate_signature_equal): Make it possible to check
1943         first-arg-bound delegates to static method.
1944
1945         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
1946         static methods with the first arg bound.
1947
1948         Fixes #469529.
1949
1950 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
1951
1952         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
1953         errors.
1954
1955         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
1956         under strict mode. Any type, when boxed can be seen as a reference type.
1957
1958         Fixes #469528.
1959
1960 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
1961
1962         * object.h: The lower bound of an array is a signed integer value.
1963         Introduce mono_array_lower_bound_t typedef. It should be used instead of
1964         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
1965
1966         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
1967         calculate the upper bound.
1968         
1969         Fixes #471252.
1970
1971 2009-02-02  Miguel de Icaza  <miguel@novell.com>
1972
1973         From Paolo's work, refactored, cleared up:
1974         
1975         * threadpool.c, icall.c: ifdef code that requires a working socket
1976         stack.
1977
1978         * metadata.c (mono_metadata_field_info): Do not attempt to return
1979         a value from a function declared as void.
1980
1981         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
1982         from the console stack.
1983
1984         * assembly.c: use strrchr instead of rindex.
1985
1986         * class.c, object.c, marshal.c, icall.c, reflection.c: include
1987         alloca.h on systems that have it.
1988
1989         * environment.c: Avoid code that uses stuff from
1990         HAVE_SYS_UTSNAME_H
1991         
1992         * appdomain.c: Include sys/time.h.
1993
1994         * console-io.c: include sys/ioctl.h if it is available.
1995
1996 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
1997
1998         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
1999
2000         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
2001         the method builder.
2002
2003         * marshal.c: Set mb->skip_visibility instead of setting it on the method
2004         after it was created and cached, as the later is not thread safe.
2005         
2006 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
2007
2008         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
2009         called while the debugging module is not initialized. Fixes #471669.
2010
2011 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
2012
2013         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
2014
2015         Fixes #471255.
2016
2017 2009-02-02  Mark Probst  <mark.probst@gmail.com>
2018
2019         * generic-sharing.c (lookup_or_register_other_info): Make sure the
2020         loader lock is not taken while the templates lock is held.  Fixes
2021         #471089.
2022
2023 2009-02-02  Mark Probst  <mark.probst@gmail.com>
2024
2025         * metadata.c (type_in_image): Added a check to fix a monodis
2026         crash.
2027
2028 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
2029
2030         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
2031         nullable arguments.
2032
2033         * object.c (mono_runtime_invoke_array): Ditto.
2034         
2035         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
2036         freeing wrappers of dynamic methods.
2037
2038         * loader.c (mono_free_method): Call it. Fixes #463323.
2039         
2040         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
2041         methods taking vtype/byref arguments, to fix yet another bug caused by
2042         the sharing of runtime invoke wrappers. Partly fixes #471259.
2043
2044 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
2045
2046         * debug-mono-symfile.c (check_line): Return NULL instead of returning
2047         <first file in file table>:1 when the IL offset does not have an associated
2048         line number.
2049
2050 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
2051
2052         * mono-debug.c (mono_debug_lookup_locals): New function to return local
2053         variable info for a method.
2054
2055         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
2056         
2057 2009-01-30  Jb Evain  <jbevain@novell.com>
2058
2059         * pedump.c: reuse code from monodis to make sure pedump honors
2060         MONO_PATH, which is needed to verify net_2_1 assemblies.
2061
2062 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
2063
2064         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
2065         there is no line number info.
2066
2067 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
2068
2069         Avoid some MonoType allocations
2070         * reflection.c (mono_reflection_initialize_generic_parameter):
2071         Reuse MonoType from param->pklass rather than allocating one.
2072         (mono_dynamic_image_free): Update to changes.
2073
2074 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
2075
2076         Rearrange some code to improve consistency
2077         * reflection.c (mono_reflection_setup_generic_class): Move body ...
2078         (mono_reflection_initialize_generic_parameter): ... here.
2079
2080 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
2081
2082         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
2083         with type constraints as an experiment.
2084
2085         * boehm-gc.c (on_gc_notification): Update mono_stats.
2086
2087 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
2088
2089         Avoid some allocations
2090         * class-internals.h (_MonoGenericInst::type_argv): Convert from
2091         pointer to tail array to avoid extra allocation.
2092         * metadata.c (free_generic_inst): Update to changes.
2093         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
2094         on-stack struct.
2095
2096 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
2097
2098         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
2099         return TRUE if the two type objects are the same.
2100
2101 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
2102
2103         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
2104         (mono_class_native_size): Use klass->marshal_info->min_align instead of
2105         klass->min_align, since klass->min_align contains the managed alignment,
2106         while the native alignment can be different, like for longs on x86.
2107         Fixes #469135.
2108
2109         * class-internals.h (MonoMarshalType): Add a min_align field.
2110
2111 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
2112
2113         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
2114         the 1.0 format.
2115
2116 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
2117
2118         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
2119         some comments about the usage of the used_regs field.
2120
2121         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
2122         Fixes #469217.
2123
2124 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2125
2126         * appdomain.c: return NULL instead of throwing FileNotFoundException
2127         when LoadAssembly() fails.
2128
2129 2009-01-23  Mark Probst  <mark.probst@gmail.com>
2130
2131         * metadata.c (mono_metadata_generic_param_equal): Only compare the
2132         image if the owner is NULL.  Fixes the AOT failures.
2133
2134 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
2135
2136         * metadata.c (mono_metadata_load_generic_params): Initialize the 
2137         MonoGenericParam structure using memset so the image field is initialized
2138         as well.
2139
2140 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
2141
2142         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
2143         a plain store.
2144
2145 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
2146
2147         * class.c (mono_class_setup_vtable_general): In the generic instance
2148         optimization, set method->slot for abstract virtual methods. Fixes part of
2149         #467834.
2150
2151 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
2152
2153         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
2154         which signals that the unloading has started but all appdomain services must
2155         remain operational.
2156
2157         * appdomain.c (mono_domain_unload): The initial state for unloading now
2158         is unloading_start and we switch to unloading after the managed call to
2159         AppDomain::DomainUnload has finished.
2160
2161         The new unloading state has to be created because managed code in the
2162         DomainUnload event can depend on things like the threadpool still working.
2163         The domain must remain fully functional while the event executes.
2164
2165         This shown as an issue due to Process::WaitForExit, which waits for
2166         async reads of stdout and stderr to complete. Since those are processed
2167         in the threadpool the code deadlocks because the DomainUnload callback 
2168         waits for the async read finished event, which should have been set by a
2169         threadpool job but has been discarded due to the domain been in unload
2170         state.
2171
2172 2009-01-21  Mark Probst  <mark.probst@gmail.com>
2173
2174         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
2175         image must match.
2176
2177 2009-01-21  Mark Probst  <mark.probst@gmail.com>
2178
2179         * reflection.c (resolve_object): For fields, inflate the class and
2180         then get the field in the inflated class.
2181
2182 2009-01-20  Mark Probst  <mark.probst@gmail.com>
2183
2184         * object-internals.h (struct _MonoException): Added a comment
2185         explaining the new use of trace_ips.
2186
2187 2009-01-20  Mark Probst  <mark.probst@gmail.com>
2188
2189         * generic-sharing.c (inflate_other_data): Inflate array methods
2190         correctly.
2191
2192         * loader.c, class-internals.h: Rename search_in_array_class() to
2193         mono_method_search_in_array_class() and make it non-static.
2194
2195 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
2196
2197         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
2198         Hopefully fixes #458168.
2199
2200 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
2201
2202         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
2203         as it is performed elsewhere.
2204
2205         Code is contributed under MIT/X11 license
2206
2207 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
2208
2209         * mono-perfcounters-def.h: Add counters for asp.net requests total and
2210         requests queued.
2211         * object.c (mono_raise_exception): Increment the exceptions total
2212         counter when an exception is thrown.
2213         * class-internals.h: Add a location for storing the total number of
2214         asp.net requests served.
2215         * mono-perfcounters.c: Implement update support for asp.net counters
2216         from the class libraries. Implement read support for asp.net counters
2217         and exceptions total counter.
2218
2219 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
2220
2221         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
2222         accessing klass->methods. Fixes #467385.
2223
2224 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
2225
2226         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
2227         for byval arguments without an [Out] attribute. Fixes #467212.
2228
2229         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
2230         Fix compilation under android.
2231         
2232         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
2233         processed, scan them directly after they are copied, to achieve better locality
2234         and cache usage.
2235
2236         * socket-io.c: Applied patch from Koushik Dutta
2237         (koush@koushikdutta.com). Disable IPV6 when running under android.
2238
2239 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
2240
2241         * icall.c (ves_icall_InternalExecute): Add write barriers.
2242
2243         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
2244         the GC code.
2245
2246         * sgen-gc.c: Implement write barriers in IL code.
2247
2248 2009-01-17  Geoff Norton  <gnorton@novell.com>
2249
2250         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
2251
2252 2009-01-17  Geoff Norton  <gnorton@novell.com>
2253
2254         * image.c: When unloading the image->references table, there can be gaps
2255         in it.  Ensure that we iterate every entry to avoid leaking assembly references
2256         when unloading an appdomain.
2257
2258 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
2259
2260         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
2261         speed up ptr-in-nursery checks.
2262
2263         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
2264         threads_lock () to prevent deadlocks.
2265
2266         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
2267         does not need to be scanned during minor collections, since writes to it
2268         must use write barriers.
2269
2270 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
2271
2272         * metadata-verify.c: Add pe nt header verification.
2273         
2274 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
2275
2276         * gc.c: Fix a few warnings when using SGEN.
2277
2278 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
2279
2280         * metadata-verify.c: Add pe optional header verification.
2281
2282 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
2283
2284         * sgen-gc.c: Add support for user defined marker functions, used by
2285         MonoGHashTable to avoid registering a GC root for every hash node.
2286
2287 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
2288
2289         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
2290         non-pinned roots into separate hashes to avoid having to traverse them
2291         in functions which are only interested in one kind.
2292
2293 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
2294
2295         * metadata-verify.c: Add pe header machine field verification.
2296         
2297 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
2298
2299         * metadata-verify.c: Add pe header size verification.
2300
2301 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
2302
2303         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
2304         using the GC, they don't contain references.
2305
2306         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
2307
2308 2009-01-13  Geoff Norton  <gnorton@novell.com>
2309
2310         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
2311         AppDomains created on the native side can be cleaned up on the native side.
2312
2313 2009-01-13  Geoff Norton  <gnorton@novell.com>
2314
2315         * appdomain.c: Ensure that we call mono_context_init for the embedding api
2316         as well as the managed api.
2317
2318 2009-01-13  Geoff Norton  <gnorton@novell.com>
2319
2320         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
2321         with a MonoAppDomain initialized against it.
2322
2323 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
2324
2325         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
2326         
2327         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
2328
2329         * marshal.c: Avoid setting the exception clauses after a method has been entered 
2330         into the wrapper caches. Fixes #465700.
2331
2332         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
2333         method builder.
2334         (mono_mb_create_method): Set the clauses from the method builder.
2335
2336 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
2337
2338         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
2339         Patch from Makoto Kishimoto.
2340
2341 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
2342
2343         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
2344         encoding them as ROOT_DESC_COMPLEX.
2345         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
2346
2347 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
2348
2349         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
2350         no longer point to the nursery.
2351
2352         * sgen-gc.c: Add a few comments/FIXMEs.
2353         
2354         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
2355
2356         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
2357         initialization of the various _method variables thread safe. Fixes
2358         #465377.
2359
2360 2009-01-12  Mark Probst  <mark.probst@gmail.com>
2361
2362         * domain.c, domain-internals.h: Remove the shared_generics_hash
2363         and its lookup functions.
2364
2365 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
2366
2367         * socket-io.c:  Fixing the MSVC build. 
2368
2369         Code is contributed under MIT/X11 license.
2370
2371 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
2372
2373         * metadata-verify.c: Add pe header watermark verification.
2374
2375 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
2376
2377         * metadata-verify.c: Add lfanew verification.
2378
2379 2009-01-12  Jb Evain  <jbevain@novell.com>
2380
2381         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
2382         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
2383
2384 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
2385
2386         * socket-io.c: Fix the build.
2387
2388         * environment.c: Fix an #ifdef.
2389
2390 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
2391
2392         * threadpool.c (async_invoke_thread): Handle the wait function returning
2393         WAIT_IO_COMPLETION as well.
2394         (async_invoke_io_thread): Ditto.
2395
2396 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
2397
2398         * threads.c: Fixing the Windows build.
2399
2400         Code is contributed under MIT/X11 license.
2401
2402 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
2403  
2404         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
2405         interrupt a wait.
2406         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
2407         the thread to wait again.
2408
2409 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
2410
2411         * metadata-verify.c: Initial skeleton of the metadata verifier.
2412
2413         * pedump.c: Add support for the metadata verifier.
2414
2415         * verify-internal.h: Export the whole assembly metadata verifier function.
2416
2417 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
2418
2419         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
2420
2421 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
2422
2423         * Makefile.am: Upgrade dtrace-prelink.sh location.
2424
2425 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
2426
2427         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
2428         well. Otherwise the shutdown deadlock that happens on unix will can happen
2429         as well.
2430         If the main thread code finishes too fast it's possible that the finalizer
2431         thread won't have executed yet, won't record itself as the finalizer thread
2432         and the shutdown sequence will wait on it forever.
2433
2434 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
2435
2436         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
2437         with MSVC.
2438
2439 2009-01-08  Miguel de Icaza  <miguel@novell.com>
2440
2441         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
2442         Robert Jordan for pointing this out.
2443
2444 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
2445
2446         * icall.c
2447         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
2448         ves_icall_System_IO_DriveInfo_GetDriveType.
2449
2450 2009-01-07  Miguel de Icaza  <miguel@novell.com>
2451
2452         * icall.c: Wrap calls to mono_strtod in CriticalSection
2453         invocations when using eglib, to work around #464316.
2454
2455 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
2456
2457         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
2458         return value of GetCurrentDirectory to never access unitialized memory.
2459
2460 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
2461
2462         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
2463         return value of GetCurrentDirectory and expand the buffer if needed.
2464
2465         Fixes #459094.
2466
2467 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
2468
2469         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
2470           Adding a call to mono_init_com_types.
2471
2472         Code is contributed under MIT/X11 license.
2473
2474 2009-01-07  Geoff Norton  <gnorton@novell.com>
2475
2476         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
2477         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
2478         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
2479         be the value of the ip buffer.
2480
2481 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
2482
2483         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
2484         interfaces_packed here.
2485
2486         Fixes part of #463294.
2487
2488 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
2489
2490         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
2491
2492         Fixes part of #463294.
2493
2494 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
2495
2496         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
2497         is a boxed complex as well.
2498
2499         Fixes part of #463294.
2500
2501 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
2502
2503         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
2504         control if a methodspec should be created for the generic method definition from external assemblies.
2505         Caching of methodspec is done using the handleref hash table.
2506
2507         Fixes #462592.
2508
2509 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
2510
2511         * loader.c (find_method): When searching the interfaces of a class
2512         check the transitive closure of implemented interfaces.
2513
2514         Fixes #463303.
2515
2516 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
2517
2518         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
2519         
2520 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
2521
2522         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
2523         interfaces calculation to fill_valuetype_array_derived_types.
2524
2525         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
2526         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
2527         for example.
2528
2529         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
2530         interfaces for valuetypes if needed.    
2531
2532         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
2533         for their basetype as well. Types are array expanded if rank is > 0.
2534
2535         Fixes #400716.
2536
2537 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
2538
2539         * socket-io.h : Changing the signature of
2540           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
2541           the blocking state.
2542
2543         * icall-def.h :  Changing the signature of
2544           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
2545
2546         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
2547           For Windows only.  Avoid blocking when calling accept by
2548           querying for a connection via select.  The loop also queries
2549           the thread state every 1000 micro seconds for the thread
2550           stop state.  This will avoid the process hanging on shutdown
2551           when using a TcpChannel that is never connected to.
2552
2553         Code is contributed under MIT/X11 license.
2554
2555 2008-12-30  Marek Safar  <marek.safar@gmail.com>
2556
2557         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
2558
2559 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
2560
2561         * class.c (get_implicit_generic_array_interfaces): Extract common
2562         code to a helper function making it a lot easier on the eyes.
2563
2564 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
2565
2566         * class.c (get_implicit_generic_array_interfaces): If the internal
2567         enumerator is an interface inflate System.Object instead of itself.
2568
2569         Fixes #461261.
2570
2571 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
2572
2573         * object.c (mono_runtime_invoke_array): Don't assert with
2574         byref nullable types.
2575
2576         * marshal.c (mono_marshal_get_runtime_invoke): To handle
2577         byref nullables we unbox the object and store it on the
2578         stack. 
2579         We can't use the boxed object since it is the T of Nullable<T>
2580         and the boxed representation of a nullable it's underlying type
2581         or null.
2582         We could cheat and create a boxed nullable and use the same
2583         machinery of other byref VTs but this feels like a hack and
2584         using the stack has the bonus of reducing heap pressure.
2585
2586         Fixes #461941.
2587
2588 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
2589
2590         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
2591         return value.
2592
2593         Fixes #461867.
2594
2595 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
2596
2597         * icall-def.h : Adding an internal call definition for 
2598           System.Environment.internalBroadcastSettingChange.
2599
2600         * icall.c : Adding a Windows only implementation to broadcast a 
2601           WM_SETTINGCHANGE when an environment variable has changed.
2602
2603         Code is contributed under MIT/X11 license.
2604
2605 2008-12-19  Mark Probst  <mark.probst@gmail.com>
2606
2607         * class.c, class-internals.h: Made
2608         mono_class_has_parent_and_ignore_generics() non-static.
2609
2610 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
2611
2612         * image.c: deal with the mmap failing when loading an image.
2613
2614 2008-12-17  Geoff Norton  <gnorton@novell.com>
2615
2616         * threadpool.c: Ensure that the io_queue_lock is initialized
2617         in all circumstances, as we always attempt to cleanup against it.
2618
2619 2008-12-17  Miguel de Icaza  <miguel@novell.com>
2620
2621         * icall.c (ves_icall_System_Environment_get_Platform): For
2622         compatibility reasons for existing client code we will keep
2623         returning 4 for a while.   
2624
2625         For how long will depend on the documentation being updated, and
2626         for us to give client code a chance to be updated.
2627
2628         This reverts the original decison on #433108 since we did not
2629         catch roughly 33 instances of the broken code in our own source
2630         code base, we did not catch failures on the buildbots, and QA did
2631         not bring this as a problem.
2632
2633         Only today I found some customer's code breaking due to our own
2634         class libraries not being fully updated and tracked it down to
2635         this change.  I am reverting it because if we could not even get
2636         our story straight in our own code base, how can we hope that our
2637         end user code be fixed?
2638
2639         As of this morning, our Wiki page that documents how to detect
2640         Unix had not been fixed.    
2641
2642 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
2643
2644         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
2645
2646         * class.c (mono_class_get_fields): Handle loading errors.
2647
2648 2008-12-12 Mark Mason <mmason@upwardaccess.com>
2649
2650         * 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.
2651         
2652 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
2653
2654         * mono-perfcounters.c: avoid warning.
2655
2656 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
2657
2658         * reflection.c (ensure_runtime_vtable): Work on generic instances and
2659         make sure all interfaces have MonoClass::interface_id set.
2660
2661         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
2662         method table is property set.
2663
2664 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
2665
2666         * class.c: New function mono_class_setup_interface_id that setup
2667         MonoClass::interface_id if needed.
2668
2669         * class-internals.h: Export new function.
2670
2671 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
2672
2673         * class.c: Add code to sanity check the vtable after setup_vtable_general
2674         has done it's work.
2675
2676 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2677
2678         * icall.c: make Assembly.GetExecutingAssembly work properly when
2679         reflection is used to invoke the method.
2680         Bug #321781 fixed.
2681
2682 2008-12-11  Mark Probst  <mark.probst@gmail.com>
2683
2684         * metadata/generic-sharing.c: Look for constraints in all type
2685         arguments, not just the first one.
2686
2687 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
2688
2689         * appdomain.c: return the correct CodeBase for an Assembly instance
2690         that was loaded from the shadow-copy directories.
2691         Bug #458190 fixed.
2692
2693 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
2694
2695         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
2696
2697         * sgen-gc.c (check_object): New debugging helper function.
2698
2699         * object.c: Fix calls to mono_value_copy_array ().
2700
2701 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
2702
2703         * class.c (mono_class_setup_fields): If working on an inflated class
2704         first check if the generic definition did init with success.
2705
2706         Fixes #445361.
2707
2708 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
2709
2710         pedump.c (main): Fix a warning.
2711
2712 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
2713
2714         * object-internals.h : Adding a definition for 
2715           MonoReflectionComVisibleAttribute.
2716
2717         * marshal.c (cominterop_com_visible) :  Method added to check the 
2718           ComVisible attribute of a class.
2719
2720         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
2721           cominterop_raise_hr_exception added to consolidate common code 
2722           to raise hr exceptions.
2723
2724         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
2725           if a managed class should support IDispatch.
2726
2727         * marshal.c 
2728           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
2729           Added additional checks for managed object when getting 
2730           an IDispatch interface.
2731
2732         Code is contributed under MIT/X11 license.
2733
2734 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
2735
2736         pedump.c (main): Handle mono_get_method () returning NULL. 
2737
2738 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
2739
2740         * marshal.h: Fix a warning.
2741
2742 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
2743
2744         * marshal.c : Adding cominterop_release_all_rcws to release all
2745           runtime callable wrappers held by the runtime.
2746
2747         * marshal.h : Adding declaration for cominterop_release_all_rcws.
2748           
2749         Code is contributed under MIT/X11 license.
2750
2751 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
2752
2753         * metadata.c (mono_image_alloc_lock): New helper function.
2754         (mono_image_alloc0_lock): Ditto.
2755
2756         * metadata.c: Use the alloc_lock () helper functions for allocating
2757         memory from the image mempool.
2758
2759 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
2760
2761         * class.c (mono_class_from_generic_parameter): Document it's
2762         locking behavior. Fix double checked locking here, we stored in
2763         param->pklass a partially initialized MonoClass and no membar was used.
2764
2765 2008-12-05  Marek Habersack  <mhabersack@novell.com>
2766
2767         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
2768         (3) functions are present in the C library use them to do the
2769         job. If they are absent, make sure that the sum of int_part and
2770         dec_part is rounded before returning. This is necessary due to the
2771         division of dec_part by the power of 10 before the final addition
2772         is performed - if the result is not rounded in some cases it will
2773         yield invalid results.
2774
2775 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
2776
2777         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
2778         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
2779         instruction instead of a pointer constant.
2780
2781 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
2782
2783         * loader.c (mono_method_get_header): Do most of the work outside the
2784         loader lock, to avoid assembly load hook deadlocks.
2785
2786         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
2787         (mono_metadata_parse_type_full): Ditto.
2788
2789 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
2790
2791         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
2792         Make the stack depth fixed. Ensure proper argument passing to the backtrace
2793         funtions. Finally, use a lock to produce well ordered output.
2794
2795         The lock looks silly, as all calls to the corlib mempool should be guarded
2796         with the loader lock, but for some reason this fact doesn't help. 
2797
2798         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
2799
2800 2008-12-02  Mark Probst  <mark.probst@gmail.com>
2801
2802         * socket-io.c: 64 bit big-endian fixes.
2803
2804 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
2805
2806         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
2807         targets that require strict compatibility between the types.
2808
2809         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
2810         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
2811         Kill the strict argument and create a new one valuetype_must_be_boxed.
2812
2813         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
2814         state that all valuetypes must be boxed.
2815
2816         Fixes #448560.
2817
2818 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
2819
2820         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
2821         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
2822
2823         Contributed under MIT/X11 license.
2824
2825 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
2826
2827         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
2828         the inflate_generic_type machinery should handle it.
2829
2830         This avoids a crash when the field's flags is zero and it's type is
2831         a primitive.
2832         What happens is that mono_metadata_parse_type_full will see that opt_attrs
2833         is zero and will return one of the cached built-in primitive types. Since
2834         those types live in read-only memory, the code that copies it crashes.  
2835
2836 2008-11-28  Mark Probst  <mark.probst@gmail.com>
2837
2838         * object.c: Don't put function descriptors into generalized IMT
2839         thunks.
2840
2841 2008-11-28  Mark Probst  <mark.probst@gmail.com>
2842
2843         * class.c: Enable generic code sharing on PPC64.
2844
2845 2008-11-27  Mark Probst  <mark.probst@gmail.com>
2846
2847         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
2848         from mini/mini.c.
2849
2850         * generic-sharing.c: Allocate the method template slists from the
2851         image mempool so it doesn't leak.
2852
2853 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
2854
2855         * class.c (generic_array_methods): Release the linked list.
2856
2857 2008-11-27  Mark Probst  <mark.probst@gmail.com>
2858
2859         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
2860         invocation to g_utf16_to_utf8().
2861
2862 2008-11-26  Mark Probst  <mark.probst@gmail.com>
2863
2864         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
2865         arguments on big endian archs.
2866
2867 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
2868
2869         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
2870         the type name (test added in corlib).
2871
2872 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
2873
2874         * pedump.c: initialize perf. counters. Fixes a segv.
2875
2876 2008-11-25  Martin Baulig  <martin@ximian.com>
2877
2878         * mono-debug-debugger.c
2879         (mono_debugger_runtime_invoke): Return the exception object if an
2880         exception was thrown.  Visual Studio displays the exception object
2881         in the locals window.
2882
2883 2008-11-24  Mark Probst  <mark.probst@gmail.com>
2884
2885         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
2886         ftnptr.
2887
2888 2008-11-24  Mark Probst  <mark.probst@gmail.com>
2889
2890         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
2891         MONO_TYPE_U are sizeof (gpointer), too.
2892
2893 2008-11-24  Mark Probst  <mark.probst@gmail.com>
2894
2895         * marshal.c (mono_type_native_stack_size): Fixed size and
2896         alignment for reference types.
2897
2898 2008-11-23  Mark Probst  <mark.probst@gmail.com>
2899
2900         * class.c (mono_class_generic_sharing_enabled): Disable generic
2901         code sharing for PPC64.
2902
2903 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
2904
2905         * icall.c (mono_method_get_equivalent_method): Make sure
2906         method->klass->methods is inited before looping over it.
2907
2908 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
2909
2910         * object.c: when calling ExecuteAssembly in a newly created domain,
2911         the configuration file and application base are already set up.
2912         Bug #446353 take 2 fixed.
2913
2914 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
2915
2916         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
2917         Fixes #444715. Fix a warning.
2918
2919 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
2920
2921         * appdomain.c: write the full path of the assembly to the .ini file
2922         created when "shadow-copying"
2923         Bug #446353 fixed.
2924
2925 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
2926
2927         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
2928         if signature==FALSE.
2929
2930 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
2931
2932         * marshal.h : Fix the cygwin build.
2933            marshal.c:12442: undefined reference to `_IID_IMarshal'
2934           
2935         Code is contributed under MIT/X11 license.
2936
2937 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
2938
2939         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
2940           free threaded marshaler when QueryInterface is called on a COM callable
2941           wrapper requesting the IMarshal interface.
2942           
2943         Code is contributed under MIT/X11 license.
2944
2945 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
2946
2947         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
2948
2949         * reflection.c (mono_type_get_object): Special case the very common
2950         void type.
2951
2952         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
2953         hold typeof(void).
2954
2955 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
2956
2957         * process.h : Adding method declaration for
2958           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
2959           
2960         * process.c : Adding implementation for
2961           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
2962           
2963         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
2964           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
2965
2966         Code is contributed under MIT/X11 license.
2967
2968 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
2969
2970         * appdomain.c (unload_thread_main): Clean up threadpool by
2971         calling mono_thread_pool_remove_domain_jobs.
2972
2973         * domain-internals.h (struct _MonoDomain): Add new fields to
2974         help coordinate the cleanup of the threadpool.
2975
2976         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
2977         that cleans up the threadpool of all jobs associated with an appdomain.
2978         It does that by cleaning up the queues and making sure all active
2979         threads are accounted.
2980
2981         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
2982         unloaded or in the process of. Take this is such way that there is
2983         no race condition between another thread starting the unload and the
2984         current thread acknowledging it.
2985
2986         * threadpool.c (async_invoke_thread): Same.
2987
2988         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
2989         firing the new thread.
2990
2991         * threadpool.c (start_tpthread): Same.
2992
2993         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
2994
2995         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
2996
2997 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
2998
2999         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
3000         Add support for DuplicateHandle.
3001         
3002         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
3003         Add support for DuplicateHandle.
3004         
3005         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
3006         Add support for DuplicateHandle.
3007
3008         Code is contributed under MIT/X11 license.
3009
3010 2008-11-06  Mark Probst  <mark.probst@gmail.com>
3011
3012         * class-internals.h: Make min_align into a whole byte.
3013
3014         * class.c: Set min_align for SIMD types to 16.
3015
3016 2008-11-05  Geoff Norton  <gnorton@novell.com>
3017
3018         * attach.c: Default the attacher to enabled for all cases including
3019         embedded.
3020
3021 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
3022
3023         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
3024         change r117650.
3025
3026 2008-11-04  Mark Probst  <mark.probst@gmail.com>
3027
3028         * monitor.c, monitor.h: New function for querying offsets of
3029         members of MonoThreadsSync.
3030
3031 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
3032
3033         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
3034         to speed up this function and to avoid the boundless memory growth caused by
3035         the signature_dup () calls.
3036
3037 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
3038
3039         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
3040         wrapper.
3041
3042         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
3043         by 1 bit.
3044
3045         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
3046
3047 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3048
3049         * appdomain.c:
3050         * domain-internals.h: made mono_set_private_bin_path_from_config()
3051         "internal".
3052         * object.c: call the above function after setting the configuration
3053         file path for the root domain.
3054         Fixes bug #314478.
3055
3056 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3057
3058         * assembly.c: when the assembly is loaded from an absolute path, end
3059         basedir with a directory separator.
3060         Bug #440781 fixed.
3061
3062 2008-10-30  Mark Probst  <mark.probst@gmail.com>
3063
3064         * monitor.c (mono_monitor_get_fast_enter_method): If
3065         CompareExchange is not available, don't create the fastpath
3066         instead of asserting.  (The method is missing in the 1.1 profile.)
3067
3068 2008-10-30  Mark Probst  <mark.probst@gmail.com>
3069
3070         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
3071
3072         * monitor.c, monitor.h: Code for generating Monitor.Enter and
3073         Monitor.Exit IL fastpaths.
3074
3075 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
3076
3077         * class.c (mono_class_create_from_typedef): Added Vector2ul.
3078
3079 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
3080
3081         * class.c (mono_class_create_from_typedef): Added Vector2l.
3082
3083 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
3084
3085         * class.c (mono_class_create_from_typedef): Added Vector2d.
3086
3087 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3088
3089         * appdomain.c: translate \ into / for cache_path.
3090         * domain-internals.h: new mono_is_shadow_copy_enabled().
3091         * icall.c: (fill_reflection_assembly_name) do the same path
3092         manipulations that get_code_base does.
3093         (get_code_base) use mono_is_shadow_copy_enabled.
3094
3095 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
3096
3097         * appdomain.c: shadow-copied assemblies go to CachePath +
3098         ApplicationName when both are set. DynamicBase has nothing to do with
3099         shadow copies.
3100         Bug #406877 fixed.
3101
3102 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
3103
3104         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
3105         STANDALONESIG table.
3106
3107         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
3108         standalone signatures.
3109
3110         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
3111         comparison code: instead of comparing the signatures using a custom
3112         equals function, transform them to a common signature and compare that. This
3113         works better with AOT.
3114
3115 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
3116
3117         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
3118
3119         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
3120         call for generic instances.
3121         (mono_class_setup_properties): Call setup_properties () before accessing
3122         gklass->properties.
3123
3124         * class.c (mono_class_get_virtual_methods): New helper function to iterate
3125         over the virtual methods of a class using metadata if possible, avoiding the
3126         creation of MonoMethod's for non-virtual methods.
3127         
3128         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
3129         get_virtual_methods () to iterate over the virtual methods of classes.
3130
3131 2008-10-25  Martin Baulig  <martin@ximian.com>
3132
3133         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
3134
3135 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
3136
3137         * class.c (mono_class_create_from_typedef): Added Vector4i.
3138
3139 2008-10-24  Mark Probst  <mark.probst@gmail.com>
3140
3141         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
3142         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
3143         special-casing applies to eliminate the call completely.
3144
3145 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
3146
3147         * class.c (mono_class_create_from_typedef): Added Vector8s.
3148
3149 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3150
3151         * class.c (mono_class_create_from_typedef): Added Vector16sb.
3152
3153 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3154
3155         * icall.c: get rid of annoying warning.
3156
3157 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3158
3159         * threadpool.c: in 1.x, if you change the background status of the
3160         threadpool thread, it's not reset.
3161         Remove unnecessary calls to SetState.
3162
3163 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3164
3165         * threadpool.c: asynchronously create a set of idle threads upon first
3166         use of the threadpool. SetMinThreads will now start the appropriate
3167         number of idle threads if they are not already running. The default is
3168         1 threadpool thread per CPU. Increased the maximum number of threads
3169         per CPU to 10.
3170
3171 2008-10-22  Martin Baulig  <martin@ximian.com>
3172
3173         Revert r116521 from Zoltan, it breaks the debugger:
3174
3175         * class.c (mono_class_get_virtual_methods): New helper function to iterate
3176         over the virtual methods of a class using metadata if possible, avoiding the
3177         creation of MonoMethod's for non-virtual methods.
3178         
3179         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
3180         get_virtual_methods () to iterate over the virtual methods of classes.
3181
3182 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3183
3184         * threads.c: when creating a threadpool thread, set its state to
3185         'background'.
3186         * threadpool.c: reset the background state of a threadpool thread
3187         after finishing each work item
3188         Bug #437888 fixed.
3189
3190 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
3191
3192         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
3193         
3194         * class.c (mono_class_setup_vtable_general): Add an optimized version for
3195         generic instances which works by inflating the methods in the container
3196         class's vtable.
3197
3198         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
3199         variant which doesn't make a copy if no inflation was done.
3200         (mono_class_setup_fields): Use it.
3201
3202         * metadata.c (mono_metadata_get_shared_type): New helper function to
3203         return a shared instance of a given MonoType.
3204
3205         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
3206         a copy of most non-generic types.
3207
3208 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
3209
3210         * threadpool.c: remove one more GetSystemInfo () call.
3211
3212 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
3213
3214         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
3215         use the code in mono-proclib.h to get processor information.
3216
3217 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3218
3219         * appdomain.c: fixed the logic that determines whether assemblies in a
3220         directory are "shadow-copied" or not. Bug #433483 fixed.
3221
3222 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
3223
3224         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
3225         warning.
3226
3227 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
3228
3229         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
3230         returning a vtype.
3231
3232         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
3233         reflection.c: Use mono_field_get_name () for accessing a field's name.
3234
3235         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
3236         class.c
3237
3238         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
3239         field.
3240
3241         * loader.c (find_method_in_class): Reenable the metadata optimization by
3242         not using it for generic instances.
3243
3244         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
3245         data/def_type fields from MonoClassField into a separate structure.
3246         (struct MonoClassField): Remove data/def_type fields.
3247         (struct _MonoClass): Add a 'field_def_values' array to store the default
3248         values/RVA for fields.
3249
3250         * class.c reflection.c: Update after the changes.
3251         
3252         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
3253         for accessing field->data.
3254
3255         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
3256
3257         * loader.c (find_method_in_class): Revert the last change for now as
3258         it breaks Mono.C5 unit tests.
3259
3260         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
3261         'field_generic_types' and 'field_objects' which contain the information
3262         previously stored in MonoInflatedField.
3263         (MonoInflatedField): Delete.
3264         (struct _MonoClassField): Delete 'generic_info' field.
3265
3266         * reflection.c: Store the information which was previously in 
3267         field->generic_info in MonoDynamicGenericClass instead.
3268
3269         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
3270         MonoClassField changes.
3271
3272 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
3273
3274         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
3275         store the value inside the data array of the MonoMethodWrapper.
3276         This saves memory, is faster and fixes the lifetime issues (methods
3277         were never removed from the hash previously). May also fix bug#436996.
3278
3279 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
3280
3281         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
3282         generic instances, compute the type from the generic definition instead of
3283         looking in field->generic_info.
3284
3285         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
3286         for inflated fields, the only user was get_fieldref_token () which no
3287         longer needs it.
3288
3289         * class.c (mono_class_init): Revert the last change as it seems to cause
3290         crashes.
3291
3292         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
3293         bytes on 64 bit platforms.
3294
3295         * object.c (mono_class_create_runtime_vtable): Fix a warning.
3296         
3297         * object.c (mono_class_create_runtime_vtable): Don't initalize
3298         field->data/field->def_type here, it is done lazily by 
3299         mono_class_get_field_default_value ().
3300
3301         * icall.c (ves_icall_get_enum_info): Call 
3302         mono_class_get_field_default_value () instead of directly accessing
3303         field->data and field->def_type.
3304
3305         * object.c (get_default_field_value): Ditto.
3306
3307         * class.c (mono_field_get_data): Ditto.
3308         
3309         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
3310         call for generic instances.
3311
3312         * loader.c (find_method_in_class): If klass != from_class, then inflate
3313         the method with the context of from_class, since the caller assumes this.
3314
3315 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
3316
3317         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
3318         for accessing method->slot.
3319
3320 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
3321
3322         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
3323
3324 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
3325
3326         * class.c (mono_method_get_vtable_index): Use
3327         mono_method_get_vtable_slot () for accessing method->slot.
3328
3329         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
3330         accessing klass->methods.
3331
3332         * class.c (mono_method_get_vtable_slot): New helper function.
3333         (mono_class_get_vtable_entry): Ditto.
3334         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
3335         accessing method->slot.
3336
3337         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
3338         method to get_inflated_method ().
3339
3340         * class.c (mono_class_get_inflated_method): New helper method to obtain
3341         a method of an inflated class without calling setup_methods ().
3342         (mono_class_get_cctor): Use get_inflated_method.
3343
3344         * generic-sharing.c (mono_class_get_method_generic): Ditto.
3345         
3346         * marshal.c image.c: Lazily create all the marshal caches.
3347
3348         * image.c (mono_image_init): Move initialization of runtime_invoke
3349         caches to marshal.c.
3350
3351         * marshal.c (get_cache): New helper function to lazily initialize a 
3352         wrapper cache.
3353         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
3354
3355         * debug-helpers.c (mono_method_full_name): Include generic arguments.
3356
3357 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
3358
3359         * loader.c: fixed check for interface type.
3360
3361 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
3362
3363         * appdomain.c: check for NULL setup before it's referenced.
3364
3365 p
3366 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
3367
3368         * class.c: remove the unused old vtable setup code.
3369
3370 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
3371
3372         * class.c: don't depend on interface order in
3373         setup_interface_offsets (bug #435777).
3374         * reflection.c: sort the InterfaceImpl table (patch from
3375         Jb Evain  <jbevain@novell.com>).
3376
3377 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
3378
3379         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
3380         the low level assemblies lock.
3381
3382 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
3383
3384         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
3385         object.c, reflection.c, socket-io.c, threads.c: introduced
3386         mono_framework_version () to return the major framewrok version,
3387         changed the code that was using more complex patterns to use it.
3388         Return the correct value for PlatformID for OSX.
3389
3390 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
3391
3392         * icall-def.h, process.h, process.c: added an icall to get info about
3393         processes using mono-proclib.
3394
3395 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
3396
3397         * mono-perfcounters.c: use the mono-proclib functions to
3398         access process information.
3399
3400 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
3401
3402         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
3403         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
3404         reflection.c: remove rawbuffer usage: mmap support is more sanely
3405         provided by utils/mono-mmap.
3406
3407 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
3408
3409         * gc.c: use posix semaphores when possible so that
3410         mono_gc_finalize_notify() is signal safe.
3411
3412 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
3413
3414         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
3415         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
3416         be #ifdef-ed out, the linker will remove the rest.
3417
3418         * marshal.c: Implement DISABLE_COM.
3419
3420         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
3421
3422 2008-10-11  Miguel de Icaza  <miguel@novell.com>
3423
3424         * locales.c (string_invariant_compare_char): Optimization: do not
3425         call g_unichar_type unless we actually need the information.
3426
3427 2008-10-10  Mark Probst  <mark.probst@gmail.com>
3428
3429         * object.c, class-internals.h: Also create remoting trampolines
3430         for generic methods.  Pass the domain to the remoting trampoline
3431         creation function, too.
3432
3433 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
3434
3435         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
3436
3437 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3438
3439         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
3440         Vector4ui.
3441
3442 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
3443
3444         * assembly.c:
3445         * locales.c: remove the use of g_strdown. Fixes bug #322313.
3446
3447 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
3448
3449         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
3450         for the least possible amount of time (extending the fix in r113458).
3451
3452 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3453
3454         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
3455
3456 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
3457
3458         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
3459         as possible simd intrinsic types.
3460         Optimized the test to check for the common prefix first.
3461
3462 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
3463
3464         * class.c: back out part of a broken optimization committed on
3465         May 23th (bug #433908).
3466
3467 2008-10-09  Mark Probst  <mark.probst@gmail.com>
3468
3469         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
3470         Win32.  Should fix #432388 for most cases until we have the new
3471         profiler on Win32.
3472
3473 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
3474
3475         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
3476         instead of using inst->id so the hash is stable for AOT.
3477
3478 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
3479
3480         * appdomain.c:
3481         * icall.c: create a .ini file for shadow-copied assemblies that
3482         contains the location of the original assembly. Use this to return the
3483         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
3484         Also fix the number of '/' for windows when returning the CodeBase.
3485         Fixes bug #430920.
3486
3487 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
3488
3489         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
3490
3491         Code is contributed under MIT/X11 license.
3492
3493 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
3494
3495         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
3496           if if the class vtable needs initialized.
3497
3498         Code is contributed under MIT/X11 license.
3499
3500 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
3501
3502         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
3503           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
3504           STRING->BSTR, and CLASS->INTERFACE.
3505
3506         Code is contributed under MIT/X11 license.
3507
3508 2008-10-07  Marek Habersack  <mhabersack@novell.com>
3509
3510         * sysmath.h: changed the declaration of the
3511         ves_icall_System_Math_Round2 icall by adding an extra
3512         away_from_zero parameter.
3513
3514         * sysmath.c (ves_icall_System_Math_Round2): added support for
3515         away from zero rounding. The icall now takes an extra boolean
3516         parameter to signal that away from zero operation is requested.
3517
3518 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
3519
3520         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
3521         the delegate klass so it can work with full-aot.
3522         (mono_marshal_get_delegate_end_invoke): Ditto.
3523         (mono_marshal_get_delegate_invoke): Ditto.
3524
3525 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
3526
3527         * gc.c, attach.h, attach.c: remove a bad pattern:
3528         add_finalizer_callback () is not implemented correctly, it can't
3529         without adding more overhead to the finalizer loop and it's not
3530         even needed, since we know exactly what we need to call, so there is
3531         no need to do so through an expensive function pointer.
3532
3533 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
3534
3535         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
3536         for the no-gc case.
3537         * attach.c (mono_attach_init): Remove the #ifdef.
3538
3539 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
3540
3541         * attach.c (mono_attach_init): Don't use
3542         mono_gc_add_finalizer_thread_callback when compiling without GC.
3543         Fixes #432306.
3544         
3545         Code is contributed under MIT/X11 license.
3546
3547 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
3548
3549         * class.c (mono_class_create_from_typedef): Remove the 
3550         #ifndef DISABLE_SIMD stuff.
3551
3552 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
3553
3554         * class-internals.h (MonoClass): Added simd_type bit field.
3555
3556         * class.c (mono_class_create_from_typedef): Check if type is a simd
3557         intrinsic.
3558
3559 2008-10-03  Mark Probst  <mark.probst@gmail.com>
3560
3561         * object.c (mono_method_add_generic_virtual_invocation): Only add
3562         instantiations to the thunk whose count is at least as large as
3563         the threshold.
3564
3565 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3566
3567         * icall.c: changed the Type of the exception thrown when trying to
3568         invoke a constructor on an abstract class. Part of the fix for bug
3569         #324185.
3570
3571 2008-10-02  Mark Probst  <mark.probst@gmail.com>
3572
3573         * class.c, class-internals.h (mono_method_get_vtable_index): New
3574         function which returns the index into the vtable and properly
3575         handles inflated virtual generic methods.
3576
3577 2008-10-01  Mark Probst  <mark.probst@gmail.com>
3578
3579         * object.c, domain.c, object-internals.h, domain-internals.h:
3580         Generalize IMT thunk machinery to also handle thunks for virtual
3581         generic method invokes.  When a virtual generic method is invoked
3582         more than a number of times we insert it into the thunk so that it
3583         can be called without lookup in unmanaged code.
3584
3585         * generic-sharing.c, class-internals.h: Fetching a
3586         MonoGenericInst* for a method from an (M)RGCTX.
3587
3588 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
3589
3590         * marshal.c (emit_marshal_string): Applied a variant of a patch by
3591         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
3592         marshalling. Fixes #431304.
3593
3594 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
3595
3596         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
3597           handle when ref is specified without In or Out.
3598
3599         Code is contributed under MIT/X11 license.
3600
3601 2008-09-30  Mark Probst  <mark.probst@gmail.com>
3602
3603         * loader.c (mono_get_method_constrained): Don't expand method with
3604         the class's context, because it's already a method of that class.
3605
3606 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
3607
3608         * attach.c : should be correct build fix.
3609
3610 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
3611
3612         * attach.c: Fix the previous change.
3613
3614 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
3615
3616         * attach.c : quick w32 build fix.
3617
3618 2008-09-27  Miguel de Icaza  <miguel@novell.com>
3619
3620         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
3621         crashes MonoDevelop: #430455.
3622
3623 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
3624
3625         * domain-internals.h (struct _MonoDomain): Move most fields used only by
3626         the JIT do MonoJitDomainInfo in ../mini/mini.h.
3627
3628         * domain.c: Remove initialization/cleanup of the removed fields.
3629
3630 2008-09-27  Mark Probst  <mark.probst@gmail.com>
3631
3632         * class.c (mono_class_generic_sharing_enabled): Enable generic
3633         code sharing for PPC.
3634
3635 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
3636
3637         * attach.c : Fixing the Windows builds.
3638
3639         Code is contributed under MIT/X11 license.
3640
3641 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
3642
3643         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
3644         the default generic sharing mode to 'all'.
3645
3646 2008-09-25  Mark Probst  <mark.probst@gmail.com>
3647
3648         * generic-sharing.c, class-internals.h: New function for checking
3649         whether a method needs a static RGCTX invoke wrapper.  A few
3650         funtions moved from mini/generic-sharing.c.
3651
3652         * icall.c: New function used.
3653
3654 2008-09-25  Mark Probst  <mark.probst@gmail.com>
3655
3656         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
3657         Static RGCTX invoke wrapping applies to value type methods, too.
3658
3659         * class.c (mono_class_setup_vtable_general): In generic-shared
3660         value types, wrap methods with a static RGCTX invoke wrapper.
3661
3662 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
3663
3664         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
3665         osx build.
3666
3667 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
3668
3669         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
3670         register a callback which is called when the finalizer thread is woken
3671         up.
3672         (finalizer_thread): Call the callback if it exists.
3673
3674         * attach.h attach.c: New files, implementing the attach mechanism.
3675
3676         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
3677         
3678         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
3679         by the previous change.
3680
3681 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
3682
3683         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
3684         loader.c, marshal.c, metadata-internals.h, metadata.c,
3685         method-builder.c, object.c, reflection.c: introduced specific functions
3686         to allocate from the domain and image mempools and cleaned up most of
3687         the code to use them (still missing a few in reflection.c).
3688         Keep the loader bytes counter updated.
3689
3690 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
3691
3692         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
3693         loader-related counters.
3694
3695 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
3696
3697         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
3698         added more MS-compatible counters.
3699
3700 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
3701
3702         * class.c (mono_class_setup_fields): Call setup_fields before accessing
3703         class->blittable. Fixes #428217.
3704
3705 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
3706
3707         * reflection.c (mono_image_get_field_on_inst_token): Call 
3708         field_encode_signature () since that handles custom modifiers too.
3709         Fixes #424663.
3710
3711 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
3712
3713         * reflection.c (add_custom_modifiers): New helper function to merge custom
3714         modifiers stored in objects to a MonoType.
3715         (fieldref_encode_signature): Encode custom modifiers.
3716         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
3717         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
3718
3719 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
3720
3721         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
3722         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
3723         64-bit IL only images because imports are not resolved for IL only images.
3724         Special thanks to Bill Holmes for finding this bug and testing the patch.
3725         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
3726
3727         Contributed under MIT/X11 license.
3728
3729 2008-09-19  Miguel de Icaza  <miguel@novell.com>
3730
3731         * mono-config.c (dllmap_start): Add support for the bits keyword
3732         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
3733
3734 2008-09-19  Mark Probst  <mark.probst@gmail.com>
3735
3736         * reflection.c (inflate_mono_method): When the class the method is
3737         to be inflated for is itself not inflated, just return the method.
3738
3739 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
3740
3741         * mono-perfcounters.c: use more user friendly process instance names.
3742
3743 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
3744
3745         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
3746           handle "[in] ref" and "[in][out] ref" cases.
3747
3748         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
3749           to mono_mb_create_method.  This was causing problems calling native to
3750           managed passing Variants by value.
3751
3752         Code is contributed under MIT/X11 license.
3753
3754 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
3755
3756         * class.c (can_access_internals): Call mono_assembly_load_friends ()
3757         before accessing the friend_assembly_names field.
3758
3759         * assembly.c (mono_assembly_load_friends): Make this callable multiple
3760         times.
3761         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
3762         called lazily when it is needed.
3763
3764         * metadata-internals.h (struct _MonoAssembly): Add 
3765         'friend_assembly_names_inited' flag.
3766
3767 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
3768
3769         * mono-perfcounters-def.h: fix the types of a few counters.
3770         * mono-perfcounters.c: implemented the instance names getter
3771         and a few bugfixes.
3772
3773 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
3774
3775         * culture-info-table.h : regenerated.
3776
3777 2008-09-17  Robert Jordan  <robertj@gmx.net>
3778
3779         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
3780         context bound objects. Fixes #415577.
3781
3782         Code is contributed under MIT/X11 license.
3783
3784 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
3785
3786         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
3787         implementation (bug #423582).
3788
3789 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
3790
3791         * object.c (mono_object_get_virtual_method): Handle the case method->slot
3792         is not set. Fixes #426309.
3793
3794 2008-09-16  Jb Evain  <jbevain@novell.com>
3795
3796         * class.c (mono_class_from_name): fix the exported type look up
3797         when the type is defined in a referenced assembly.
3798
3799 2008-09-16  Jb Evain  <jbevain@novell.com>
3800
3801         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
3802         increment the next index counter on each iteration to make that work
3803         for more than one type forwarder. Unmanaged part to fix #422929.
3804
3805 2008-09-15  Mark Probst  <mark.probst@gmail.com>
3806
3807         * object-internals.h: enum ComInterfaceType in
3808         MonoInterfaceTypeAttribute is guint32, not guint16.
3809
3810 2008-09-12  Mark Probst  <mark.probst@gmail.com>
3811
3812         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
3813         writing code.
3814
3815 2008-09-11  Mark Probst  <mark.probst@gmail.com>
3816
3817         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
3818         not gboolean.
3819
3820 2008-09-11  Mark Probst  <mark.probst@gmail.com>
3821
3822         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
3823         Endianness fixes for MonoSymbolFileOffsetTable.
3824
3825 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
3826
3827         * process.c (complete_path) : Removing quotes from the 
3828           input path.  The glib file routines do not handle file paths
3829           that have quotes around them.
3830
3831         Code is contributed under MIT/X11 license.
3832
3833 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
3834
3835         * socket-io.h : Adding a comment to provide locations where 
3836           changes to MonoSocketAsyncResult need to be synced.
3837
3838         Code is contributed under MIT/X11 license.
3839
3840 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
3841
3842         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
3843         parameters as well. Fixes #425001.
3844
3845 2008-09-08  Miguel de Icaza  <miguel@novell.com>
3846
3847         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
3848         windows build.
3849
3850 2008-09-07  Miguel de Icaza  <miguel@novell.com>
3851
3852         * console-io.c: Add support for tracking the window size if it
3853         changes.
3854
3855         The setup is very simple: the TtySetup function will now return a
3856         pointer to a location in memory that tracks the current console
3857         size.  The managed code checks its current value every time its
3858         queried against the last value set, and updates accordingly.
3859
3860         With this setup we can work with multiple consoles, and we do not
3861         require to poke into managed code from a signal handler.
3862
3863         Additionally, the environment for COLUMNS and LINES is now handled
3864         in unmanaged code.
3865
3866         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
3867
3868 2008-09-07  Mark Probst  <mark.probst@gmail.com>
3869
3870         * marshal.c (mono_type_native_stack_size): Treat
3871         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
3872
3873 2008-09-04  Jb Evain  <jbevain@novell.com>
3874
3875         * class.c (mono_class_is_assignable_from): fix assignability of nullables
3876         to nullables.
3877
3878 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
3879
3880         * verify.c (verify_type_compatibility_full): Revert change
3881         to allow converting a native int to unmanaged pointer be verifiable
3882         under non-strict mode.
3883         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
3884
3885         * verify.c: Added some TODOs.
3886
3887 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
3888
3889         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
3890           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
3891           Changed to use GlobalAlloc for the memory returned on Windows platforms.
3892
3893         Code is contributed under MIT/X11 license.
3894
3895 2008-09-02  Jb Evain  <jbevain@novell.com>
3896
3897         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
3898
3899 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
3900
3901         reflection.c (typebuilder_setup_fields): Handle classes with
3902         explicit size.
3903
3904 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
3905
3906         class.c (mono_class_setup_events): Add memory barrier due to
3907         double checked locking.
3908         
3909         class.c (mono_class_setup_properties): Same.
3910
3911 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
3912
3913         * class.c (mono_class_is_assignable_from): Fix the build.
3914         
3915         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
3916         before accessing klass->interface_bitmap. Fixes #421744.
3917
3918 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
3919
3920         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
3921         the runtime into no-exec mode, useful when running the AOT compiler.
3922
3923         * appdomain.c gc.c object.c: Avoid executing managed code when running
3924         in no-exec mode.
3925         
3926         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
3927
3928         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
3929         special case when the mono_assembly_loaded () returns NULL because the 
3930         search hook is not installed.
3931
3932 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
3933
3934         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
3935         crashes in bstr marshalling on linux.
3936
3937 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
3938
3939         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
3940         with more than one parameter.
3941
3942 2008-08-24  Miguel de Icaza  <miguel@novell.com>
3943
3944         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
3945         start/stop flow control as well when turning off ICANON (allows
3946         C-s and C-q to be read by Console.ReadKey).
3947
3948 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
3949
3950         * class.c (mono_class_init): Move the initialization of nested classes
3951         into mono_class_get_nested_types (). Fixes #418433.
3952
3953         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
3954         flag.
3955
3956         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
3957         iterating tough the nested classes of a class.
3958
3959 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
3960
3961         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
3962         on arm.
3963
3964 2008-08-22  Miguel de Icaza  <miguel@novell.com>
3965
3966         * console-io.c (sigcont_handler): Support signal chaining for
3967         SIGCONT.
3968
3969         (console_set_signal_handlers): Use best practices with sigaction,
3970         clear the structure before using it. 
3971
3972 2008-08-22  Robert Jordan  <robertj@gmx.net>
3973
3974         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
3975         Fix the Windows build.
3976
3977 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
3978
3979         * class.c (mono_class_generic_sharing_enabled): Make the default
3980         sharing mode 'corlib'.
3981
3982 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
3983
3984         * console-io.c (console_set_signal_handlers): Fix a warning.
3985
3986         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
3987         method normally, the JIT will take care of avoiding recursion.
3988
3989 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
3990
3991         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
3992
3993         Code is contributed under MIT/X11 license.
3994
3995 2008-08-20  Miguel de Icaza  <miguel@novell.com>
3996
3997         * console-io.c (sigcont_handler): We need to restore the entire
3998         termios state, not only the original settings, as things like echo
3999         can be controlled after this (Booish exposes this issue with its
4000         own ReadLine implementation).
4001
4002         Additionally, we need to set the terminal back into keypad_xmit
4003         mode.
4004         
4005         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
4006         string as a paramter as well.   Otherwise we get different
4007         keyboard sequences.
4008
4009 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
4010
4011         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
4012         delegates with byref out parameter passing. Fixes #351520.
4013
4014         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
4015         a generic context.
4016         (mono_type_get_desc): Add the type arguments for GENERICINST.
4017         (mono_method_full_name): Stringify the class name using mono_type_full_name
4018         so it picks up generic arguments.
4019
4020 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
4021
4022         * console-io.c: Removed debug output.
4023
4024 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
4025
4026         reflection.c (mono_reflection_create_runtime_class): Alloc
4027         the nested classes linked list using the dynamic image mempool.
4028         Fixes leak in corlib compilation.
4029
4030 2008-08-19  Miguel de Icaza  <miguel@novell.com>
4031
4032         * console-io.c: Fix incredibly annoying behavior on the console
4033         after resuming execution after control-z.   This affected every
4034         console application.
4035
4036 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
4037
4038         * mempool-internals.h: Header for mono private mempool functions. The first
4039         two function are for allocating glib linked lists using pools.
4040
4041         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
4042
4043         * Makefile.am: Added mempool-internals.h.
4044
4045 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
4046
4047         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
4048         (mono_domain_free): Ditto.
4049
4050         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
4051         be used by the JIT to store its domain-specific information, instead of putting
4052         it directly into MonoDomain.
4053
4054         * domain.c (mono_install_create_domain_hook): New helper function to install
4055         a hook which initializes domain->runtime_info.
4056
4057         * domain.c (mono_install_free_domain_hook): Ditto.
4058         
4059 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
4060
4061         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
4062         asserting if the ares parameter is null.
4063
4064         * mono-perfcounters.c: Fix warnings.
4065
4066         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
4067         is not needed, don't check for interruptions either.
4068         (mono_marshal_get_delegate_end_invoke): Ditto.
4069
4070 2008-08-15  Marek Habersack  <mhabersack@novell.com>
4071
4072         * mono-perfcounters.c (predef_readonly_counter): added support for
4073         reading the ASP.NET Requests Queued counter from another process.
4074
4075 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
4076
4077         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
4078         MonoImage to simplify the AOT code.
4079
4080 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
4081
4082         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
4083         marshalling. Fixes #416078.
4084
4085 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
4086         
4087         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
4088         it is set, looking up the icall address is deferred to the JIT, since 
4089         in embedded scenarios, the icall might not be registered in the runtime
4090         doing the AOT compilation. Backported from the 2.0 branch.
4091
4092 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
4093
4094         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
4095         Fixes #415621.
4096
4097 2008-08-05  Marek Habersack  <mhabersack@novell.com>
4098
4099         * Makefile.am: added support for cross-compilation.
4100
4101 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
4102
4103         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
4104
4105 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
4106
4107         * mono-perfcounters.c: jitted methods and jitted bytes counters.
4108
4109 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
4110
4111         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
4112         mono-perfcounters.c: performance counters implementation.
4113
4114 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
4115
4116         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
4117         to gpointer, letting the AOT code decide what to store in it.
4118
4119 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
4120
4121         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
4122           mono_class_setup_methods if the methods are not initialized.
4123
4124         Code is contributed under MIT/X11 license.
4125
4126 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
4127
4128         * verify.c: Remove some debug code I commited by accident.
4129
4130         * verify.c (mono_method_is_valid_in_context): Change the return value
4131         to make possible to distinguish between invalid and unverifiable.
4132
4133         * verify.c (verifier_load_method): Don't return NULL for unverifiable
4134         methods.
4135
4136 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
4137
4138         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
4139         constraints. Fixes regression in gtest-253.
4140
4141 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
4142
4143         * verify.c (mono_verifier_verify_class): Don't allow generic types
4144         with explicit layout.
4145
4146         * verify.c (mono_method_verify): Check locals and argument types.
4147
4148 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
4149
4150         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
4151         wait if the thread is in StopRequested state.
4152
4153         * class.c (mono_class_from_name): Refactor the module searching code into
4154         a separate function so it can be reused in the AOT case too.
4155
4156 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4157
4158         * verify.c (mono_type_is_valid_in_context): Improve the error message.
4159         Check both the type and it's generic type definition for loader errors.
4160         
4161         * verify.c (mono_method_is_valid_in_context): Don't generate another
4162         error when a type errors occur, this leads to the wrong exception been
4163         thrown.
4164
4165 2008-07-28  Dick Porter  <dick@ximian.com>
4166
4167         * icall-def.h
4168         * process.c
4169         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
4170         New internal calls to duplicate and close a process handle.
4171
4172 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
4173
4174         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
4175
4176 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
4177
4178         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
4179
4180 2008-07-27  Robert Jordan  <robertj@gmx.net>
4181
4182         * class.c (mono_class_init): Don't compute class.has_finalize for
4183         valuetypes. Fixes #412477.
4184
4185 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
4186
4187         * verify.c: Implement constraint equivalence checking.
4188         This is required when a generic parameter is used as
4189         argument to a constrained one.
4190
4191         Fixes #410637.
4192
4193 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
4194
4195         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4196
4197         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
4198
4199         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
4200         synch with managed object layout.
4201
4202 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
4203
4204         * verify.c (do_branch_op): Handle valuetypes and generic
4205         arguments properly.
4206
4207         * verify.c (do_cmp_op): Same.
4208
4209         Fixes #410383.
4210
4211 2008-07-24  Mark Probst  <mark.probst@gmail.com>
4212
4213         * generic-sharing.c: Fix memory leaks.
4214
4215         * class.c, class-internals.h: Make
4216         mono_class_inflate_generic_type_with_mempool() non-static.
4217
4218 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
4219
4220         * pedump.c (dump_verify_info): Dump full class name.
4221
4222 2008-07-24  Mark Probst  <mark.probst@gmail.com>
4223
4224         * generic-sharing.c: Removed some old code that didn't do anything.
4225
4226 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
4227         * profiler.c: Added runtime_initialized_event,
4228         mono_profiler_install_runtime_initialized and
4229         mono_profiler_runtime_initialized. This new hook tells the profiler
4230         when the runtime is sufficiently initialized to be able to call
4231         mono_thread_attach on the root appdomain.
4232         * profiler.h, profiler-private.h: Likewise.
4233
4234 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
4235
4236         * verify.c (do_cast): Do boxing for generic arguments as well.
4237
4238         * class.c (is_nesting_type): Drop generic instantiations before
4239         checking for nesting.
4240
4241         * class.c (can_access_instantiation): Allow access to generic
4242         arguments.
4243
4244 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
4245
4246         * verify.c (verify_class_for_overlapping_reference_fields):
4247         On some cases, the field size might be zero, guard against that.
4248         Fix the explicit layout check to work as expected.
4249
4250 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
4251
4252         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
4253         mono_thread_resume () during shutdown, since the thread we want to abort
4254         might be suspended.
4255
4256 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
4257
4258         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
4259         warning.
4260
4261         * debug-mono-symfile.c: Fix a warning.
4262
4263         * mono-perfcounters.c (get_cpu_times): Fix a warning.
4264
4265         * object.c (mono_class_vtable): Check if exception_type is set, and return
4266         NULL as defined by the function comments.
4267
4268 2008-07-22  Mark Probst  <mark.probst@gmail.com>
4269
4270         * mempool.c: Use malloc for every single mempool allocation if the
4271         configure option is set.  This makes it easier to track mempool
4272         allocations with tools like Valgrind.
4273
4274 2008-07-22  Jb Evain  <jbevain@novell.com>
4275
4276         * reflection.c (create_dynamic_mono_image): emit the same
4277         metadata version that SL2 does when creating a SL2 image.
4278
4279 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
4280
4281         * icall-def.h:
4282         * icall.c: New icall System.Enum:get_hashcode. This function
4283         avoids the overhead of boxing the enum to the underlying type.
4284
4285 2008-07-21  Mark Probst  <mark.probst@gmail.com>
4286
4287         * reflection.c (mono_method_get_object): Don't let static RGCTX
4288         invoke wrappers get into MonoReflectionMethods.
4289
4290 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
4291
4292         * object-internals.h:
4293         * object.c: New mono_runtime_class_init_full function
4294         that makes throwing the exception optinal.
4295
4296         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
4297         for the case where the exception object is supplied.
4298
4299 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
4300
4301         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
4302         old ld versions.
4303
4304         Contributed under MIT/X11 license.
4305
4306 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4307
4308         * string-icalls.c (ves_icall_System_String_InternalSplit):
4309         Optimize array allocation by caching the MonoClass of the
4310         array type.
4311
4312         * icall.c (ves_icall_Type_GetMethodsByName): Same.
4313
4314         * reflection.c (mono_param_get_objects): Same.
4315
4316 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4317
4318         * icall-def.h:
4319         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
4320         It inflates the given type using the class context.
4321
4322 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4323
4324         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
4325         the vtable if it already exists.
4326
4327         * object-internals.h: Add mono_class_try_get_vtable as part of the
4328         internal API.
4329
4330         * reflection.c (mono_type_get_object): Use the MonoObject from the
4331         vtable when possible. Reduces locking contention on reflection heavy
4332         code.
4333
4334 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
4335
4336         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
4337         g_bit_nth_msf () since that macro is not implemented in eglib.
4338
4339 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
4340
4341         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
4342         on platforms which do not support it.
4343
4344 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
4345
4346         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
4347
4348 2008-07-11  Martin Baulig  <martin@ximian.com>
4349
4350         * mono-debug-debugger.h
4351         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
4352
4353         * mono-debug-debugger.c
4354         (_mono_debugger_interruption_request): New global volatile variable.
4355         (mono_debugger_check_interruption): New public function.
4356
4357         * threads.c
4358         (mono_thread_current_check_pending_interrupt): Call
4359         mono_debugger_check_interruption().
4360         (mono_thread_interruption_checkpoint_request): Likewise.
4361
4362 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4363
4364         * verify.c: Add more type checks for loaded types. Verify the result
4365         handle from ldtoken.
4366
4367 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4368
4369         * loader.c (field_from_memberref): Don't crash if the field
4370         wasn't found.
4371
4372 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4373
4374         * verify.c: Verify if type and method instantiations
4375         don't have invalid VAR or MVAR arguments.
4376
4377 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4378
4379         * verify.c: Fix double free of function pointer list.
4380
4381 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4382
4383         * object.c (mono_string_to_utf8): Comment the new code as it
4384         breaks under eglib.
4385
4386 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
4387
4388         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
4389
4390 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
4391
4392         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
4393           is not throw too many times.
4394
4395         Code is contributed under MIT/X11 license.
4396
4397 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
4398
4399         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
4400         debugging is turned off.
4401
4402 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
4403
4404         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
4405
4406 2008-07-04  Mark Probst  <mark.probst@gmail.com>
4407
4408         * class-internals.h, class.c: Added new generic sharing option:
4409         Share only stuff in System.Collections.Generic, which is now the
4410         default.
4411
4412 2008-07-04  Mark Probst  <mark.probst@gmail.com>
4413
4414         * generic-sharing.c, class-internals.h: New function for getting a
4415         generic method in a generic class given the corresponding method
4416         for a different instantiation of the class.  Partly refactored
4417         from mini-trampolines.c.
4418
4419         * class.c: Make sure generic methods have a class_inst if they are
4420         part of a generic class.
4421
4422         * metadata.c (mono_type_stack_size_internal): Handle type
4423         variables.
4424
4425 2008-07-04  Mark Probst  <mark.probst@gmail.com>
4426
4427         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
4428         Signifies whether information on the this/vtable/mrgctx variable
4429         is available.
4430
4431 2008-07-04  Mark Probst  <mark.probst@gmail.com>
4432
4433         * object.c, object-internals.h, icall.c: New function
4434         mono_delegate_ctor_with_method(), which does the same as
4435         mono_delegate_ctor(), but takes an explicit method argument
4436         instead of taking the method from the jit info.
4437
4438         * marshal.c: When creating a delegate with an inflated method take
4439         the "this" argument as the target class for the castclass.
4440
4441 2008-07-03  Mark Probst  <mark.probst@gmail.com>
4442
4443         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
4444         mono_jit_info_table_find() to perform very badly in some cases.
4445
4446 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
4447
4448         * icall.c (type_from_typename): Handle 'string'.
4449
4450         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
4451         wrappers into the wrapper_hash, since the key is not a MonoMethod.
4452
4453 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
4454
4455         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
4456
4457         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
4458         number of available managed allocator types.
4459
4460         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
4461         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
4462
4463 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
4464
4465         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
4466         which is a low level lock protecting just the 'jit_code_hash' hash table.
4467
4468         * domain.c: Initialize+cleanup jit_code_hash_lock.
4469         
4470 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
4471
4472         * coree.c (mono_load_coree): Set coree_module_handle global variable only
4473         after initialization.
4474
4475         * coree.h: Make MonoFixupExe internal.
4476
4477         Contributed under MIT/X11 license.
4478
4479 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
4480
4481         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
4482         because that is platform independent. Check NumberOfRvaAndSizes in PE32
4483         as well.
4484         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
4485         image being loaded is a CLI image and _CorValidateImage gets called.
4486
4487         * coree.h: Add MonoLoadImage.
4488
4489         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
4490         instead of LoadLibrary.
4491
4492         Contributed under MIT/X11 license.
4493
4494 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
4495
4496         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
4497         for any primitive type.
4498
4499 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
4500
4501         * object.c (mono_array_new_specific): Optimize this and the other allocation
4502         functions a bit.
4503         
4504         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
4505         domains too if mono_dont_free_domains is set.
4506
4507         * domain-internals.h (mono_dont_free_domains): New internal option controlling
4508         whenever to free appdomain data after it has been unloaded.
4509
4510         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
4511         
4512 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
4513
4514         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
4515         (mono_method_get_equivalent_method): Fix a warning.
4516
4517         * object.c (mono_message_init): Avoid looking up array types for each call.
4518
4519 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
4520
4521         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
4522         call.
4523
4524         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
4525         even more.
4526
4527         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
4528         each iteration.
4529
4530         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
4531         fields of an enum.
4532
4533 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4534
4535         * object.c (mono_value_box): Fix boxing of nullables.
4536
4537 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
4538
4539         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
4540         mono_module_handle that is defined by the linker; no initialization required.
4541         * coree.h: Remove mono_module_handle, add __ImageBase, update
4542         mono_image_open_from_module_handle.
4543         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
4544         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
4545         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
4546         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
4547         to 4 GB away from image base address. IA64 version is not tested but was very
4548         easy to implement and should work if we ever need it.
4549         * domain.c (mono_init_internal): Avoid system error message boxes.
4550         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
4551         with has_entry_point. Handle do_mono_image_load fauilre correctly.
4552         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
4553         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
4554         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
4555
4556         Contributed under MIT/X11 license.
4557
4558 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4559
4560         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
4561         as part of the private mono API.
4562         
4563         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
4564         Do proper argument checking for methods that belong to generic classes.
4565         Do proper type resolution for GMFH/2.
4566         Fixes #377324.
4567         
4568 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4569
4570         * verify.c (do_switch): Fix a memory corruption bug with
4571         the jump index is out of bound.
4572
4573 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4574
4575         * verify.c: Disable debug code.
4576
4577 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4578
4579         * reflection.c (mono_image_get_methodbuilder_token): Use
4580         mono_image_get_methodspec_token_for_generic_method_definition
4581         instead of mono_image_get_memberref_token. We cache more memberef
4582         entries now.
4583
4584 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4585
4586         * verify.c: Inflate exception clause types.
4587         Fixes #402606.
4588         
4589 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4590
4591         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
4592         name.
4593
4594         * reflection.c (mono_image_get_ctorbuilder_token): Same.
4595
4596         * reflection.c (mono_image_create_method_token): Same.
4597
4598 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4599
4600         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
4601         It does the same as mono_image_get_methodref_token but works on
4602         MethodBuilder.
4603
4604         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
4605         and always generate a methodspec. This follows the old behavior and fixes
4606         the regressions in System.Core. 
4607
4608 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
4609
4610         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
4611         don't event mono_class_get () succeeds. Fixes #402182.
4612
4613 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
4614
4615         * metadata-internals.h: Added MonoDynamicImage::methodspec
4616         hashtable to store methodspec tokens created for MethodBuilders.
4617
4618         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
4619         MethodBuilders as open instantiations if a methodspec was requested.
4620
4621         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
4622
4623         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
4624
4625         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
4626
4627         Fixes bug #349190.
4628
4629 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
4630
4631         * loader.c (method_from_methodspec): Avoid crashing if the
4632         method lookup fails.
4633
4634 2008-06-20  Dick Porter  <dick@ximian.com>
4635
4636         * socket-io.c (get_socket_assembly): Cope with Moonlight network
4637         classes being in a different assembly.  Fixes bug 399184.
4638
4639 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
4640
4641         * loader.c (mono_loader_init): Make this callable multiple times.
4642         (mono_dllmap_insert): Call mono_loader_init () so this works even before
4643         the runtime is initialized. Fixes #401755.
4644
4645 2008-06-19  Dick Porter  <dick@ximian.com>
4646
4647         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
4648         Fixes bug 349688.
4649
4650 2008-06-19  Dick Porter  <dick@ximian.com>
4651
4652         * socket-io.c:
4653         * icall-def.h: Implement Socket generic Send() and Receive()
4654         methods.  Fixes bug 395168.
4655
4656 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
4657
4658         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
4659
4660         Contributed under MIT/X11 license.
4661
4662 2008-06-18  Martin Baulig  <martin@ximian.com>
4663
4664         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
4665         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
4666         set to 80.0.  The debugger <-> runtime interface is now frozen as
4667         well.   
4668
4669         * mono-debug.c
4670         (mono_debug_debugger_version): Bump to 4.
4671
4672 2008-06-18  Martin Baulig  <martin@ximian.com>
4673
4674         * debug-mono-symfile.c
4675         (load_symfile): Don't check the minor version.
4676
4677         * debug-mono-symfile.h: Bump the version number to 50.0.
4678
4679 2008-06-18  Martin Baulig  <martin@ximian.com>
4680
4681         * debug-mono-symfile.c
4682         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
4683         minimum required version.
4684
4685 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
4686
4687         * reflection.c (mono_custom_attrs_from_property): Fix support for
4688         retriveving cattrs of dynamic inflated generic types.
4689
4690         * reflection.c (mono_custom_attrs_from_event): Same.
4691
4692         * reflection.c (mono_custom_attrs_from_field): Same;
4693
4694         * reflection.c (typebuilder_setup_events): Same cattrs of events.
4695
4696         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
4697         Moved to metadata.c.
4698
4699         * metadata.c: New functions to retrive the equivalent field, event
4700         of property from the generic type definition.
4701
4702         * metadata-internals.h: Added new functions from metadata.c.
4703
4704 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
4705
4706         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
4707         to cached in a mempool is used.
4708
4709         * metadata.c (free_generic_class): In some situations field generic_info type
4710         is not properly dup'ed and leads to double free'ing.
4711
4712         Fixes #400643.
4713
4714 2008-06-17  Mark Probst  <mark.probst@gmail.com>
4715
4716         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
4717         this arguments (will be needed later for generic methods).
4718         Collect stats.
4719
4720 2008-06-17  Mark Probst  <mark.probst@gmail.com>
4721
4722         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
4723         Create a static RGCTX invoke wrapper for methods which require it.
4724
4725 2008-06-17  Mark Probst  <mark.probst@gmail.com>
4726
4727         * object.c, class-internals.h: New function for checking whether
4728         an individual field is special static.
4729
4730 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
4731
4732         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
4733         linear search since the table is sorted.
4734
4735         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
4736         Fixes #324180.
4737
4738 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
4739
4740         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
4741         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
4742
4743         * gc.c (mono_domain_finalize): Allow an infinite timeout.
4744
4745         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
4746         
4747         * threads.c (mono_thread_request_interruption): Get rid of locking, use
4748         InterlockedCompareExchange to query and modify 
4749         thread->interruption_requested.
4750
4751         * object-internals.h (struct _MonoThread): Change interruption_requested
4752         to a gint32 so it can be modified by atomic operations. Add 
4753         'critical_region_level' from the managed side, change small_id to a guint32,
4754         add new set of 'unused' fields.
4755
4756         * appdomain.c: Bump corlib version.
4757
4758 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
4759
4760         * class.c (mono_class_from_name): Search modules as well. Fixes
4761         #322332.
4762
4763 2008-06-13  Mark Probst  <mark.probst@gmail.com>
4764
4765         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
4766         templates.  Templates are generalized with an additional type_argc
4767         argument.  RGCTX templates have type_argc==0, MRGCTX templates
4768         have type_argc>0.
4769
4770         * domain-internals.h, domain.c: New hash table for looking up
4771         MRGCTXs.
4772
4773         * metadata.c, metadata-internals.h: Rename hash and equal
4774         functions for MonoGenericInst's and make them public.
4775
4776         * class-internals.h: New data structures for the MRGCTX.  Macros
4777         for distinguishing slots in the RGCTX and the MRGCTX.
4778
4779 2008-06-13  Mark Probst  <mark.probst@gmail.com>
4780
4781         * object.c (mono_method_get_imt_slot): Put the same methods of
4782         different instantiations of the same generic interface in the same
4783         IMT slots, to make generic sharing simpler.
4784
4785 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
4786
4787         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
4788
4789         * metadata.c (mono_metadata_field_info_with_mempool): Added.
4790         This function works just like mono_metadata_field_info, but
4791         accept a mempool as argument to be used allocating memory.
4792
4793         * marshal.c (mono_marshal_load_type_info): Use new function
4794         to load marshal data into image mempool.
4795
4796 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
4797
4798         * class.c (mono_class_inflate_generic_type_with_mempool):
4799         This function allows to inflate a generic type using
4800         a mempool.
4801
4802         * class.c (inflate_generic_type): Take a mempool as argument
4803         and use it to do type dup'ing.
4804
4805         * class.c (mono_class_setup_fields): Field type for generic
4806         generic classes are allocated from the image mempool.
4807
4808         * metadata.c (free_generic_class): Inflated field type is
4809         now allocated in the image mempool.
4810
4811 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
4812
4813         * threads.c (thread_cleanup): Free MonoThread::name.
4814
4815 2008-06-12  Marek Habersack  <mhabersack@novell.com>
4816
4817         * appdomain.c (ensure_directory_exists): avoid unnecessary
4818         mkdir(2) calls when the shadow directory already exists.
4819         (mono_make_shadow_copy): copy also satellite assemblies from the
4820         private bin directories.
4821
4822 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
4823
4824         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
4825         
4826         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
4827         a page boundary. Fixes #396219.
4828
4829 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4830
4831         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
4832         due to double-checked locking.
4833
4834 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4835
4836         * assembly.c (build_assembly_name): Release memory on failure.
4837
4838         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
4839
4840 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4841
4842         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
4843         memory on failure.
4844
4845 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4846
4847         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
4848         memory on failure.
4849
4850 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4851
4852         * loader.c (field_from_memberref): Check if field signature type is equal
4853         to the non-inflated type of the field. Fixes #398980.
4854
4855 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
4856
4857         * assembly.c (mono_assembly_load_from_full): Call 
4858         mono_assembly_load_friends () outside the assemblies lock, since it can
4859         acquire the loader lock. Fixes #323696.
4860
4861         * reflection.c (resolve_object): Inflate the inst with the context for
4862         FieldOnTypeBuilderInst. Fixes #399010.
4863
4864 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4865
4866         * reflection.c (mono_image_get_field_on_inst_token): Don't
4867         inflate the field to encode it's signature. If it's a
4868         VAR or MVAR it should stay that way in the signature.
4869         Fixes #399047.
4870
4871 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4872
4873         * reflection.c (resolve_object): Release memory of inflated types.
4874
4875 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4876
4877         * loader.c (mono_method_get_signature_full): Remove assert about
4878         loading a methodspec to a generic method. We have such methods, such as
4879         System.Threading.Interlocked::CompareExchange<T>.
4880         This assert was removed since it crashes the verifier when it checks
4881         methods calling CompareExchange<T>.
4882
4883 2008-06-10  Marek Safar  <marek.safar@gmail.com>
4884
4885         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
4886         of Type array and not MonoType.
4887
4888 2008-06-10  Marek Habersack  <mhabersack@novell.com>
4889
4890         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
4891         <lupus@ximian.com>
4892
4893 2008-06-10  Martin Baulig  <martin@ximian.com>
4894
4895         * debug-mono-symfile.h
4896         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
4897         changes to the file format, but we were generating incorrect
4898         source file indices in the line number table due to a bug, which
4899         made backtraces report an incorrect source file.
4900
4901 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4902
4903         * mono-debug.c: Moved mono_debug_free_method_jit_info from
4904         mini/debug-mini.c to here.
4905
4906         * mono-debug.c (il_offset_from_address): Free memory from find_method.
4907
4908         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
4909         use it to release structs returned by mono_debug_find_method.
4910
4911 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
4912
4913         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
4914         since it needs to set method->slot for all interface methods.
4915
4916 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4917
4918         * class-internals.h: Forgot to add.
4919
4920 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4921
4922         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
4923
4924         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
4925         Lookup the custom attributes from property_hash.
4926
4927         * reflection.c (mono_save_custom_attrs): Save the custom attributes
4928         in property_hash. Allocate all data using the image mempool.
4929
4930         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
4931         for dynamic_custom_attrs to checks if the image is dynamic.
4932
4933 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
4934
4935         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
4936         assemblies array.
4937         
4938         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
4939         runtime functions while holding the domain assemblies lock.
4940
4941 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4942
4943         * verify.c: Reapplied the last bit of the reverted changes.
4944
4945 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4946
4947         * verify.c: Reapplied more of the reverted changes.
4948
4949 2008-06-09  Martin Baulig  <martin@ximian.com>
4950
4951         * debug-mono-symfile.c (load_symfile): Check the major version
4952         first; if it's wrong, don't print the minor version in the error message.
4953
4954 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
4955
4956         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
4957         lock instead of the domain lock to avoid deadlocks, since the thread might
4958         already hold the loader lock.
4959
4960         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
4961         (mono_thread_attach): Ditto.
4962
4963         * monitor.c: Use a TLS variable for holding the current thread id instead
4964         of calling pthread_self ().
4965         (mono_monitor_init_tls): New internal function to initialize the TLS
4966         variable.
4967         (mono_monitor_try_enter_internal): Put the owner == id check after the
4968         owner == 0 check.
4969
4970         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
4971         missed optimizations when using gcc-4.3.
4972
4973 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
4974
4975         * reflection.c (mono_dynamic_image_free): Free the memory
4976         used by MonoGenericParam in MonoDynamicImage::gen_param.
4977
4978         * reflection.c (mono_reflection_setup_generic_class): Allocate
4979         container from mempool.
4980
4981         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
4982         container from mempool.
4983
4984 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
4985
4986         * threads.c (mono_set_pending_exception): New internal function to set the
4987         pending exception of the current thread.
4988         (mono_thread_get_and_clear_pending_exception): Check for 
4989         thread->pending_exception as well.
4990
4991         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
4992
4993         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
4994         it can trigger a collection.
4995
4996 2008-06-06  Martin Baulig  <martin@ximian.com>
4997
4998         Merged the `debugger-kahalo' branch.
4999
5000         * mono-debug.h
5001         (MONO_DEBUGGER_VERSION): Bumped to 72.
5002
5003         * debug-mono-symfile.h
5004         (MonoSymbolFileMethodIndexEntry): Removed.
5005         (MonoSymbolFileMethodEntry): New public typedef.
5006         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
5007         (MonoSymbolFileSourceEntry): Remove everything except `index' and
5008         `data_offset'.
5009         (MonoSymbolFileMethodEntry): Removed.
5010         (MonoSymbolFileLexicalBlockEntry): Removed.
5011         (MonoSymbolFileLineNumberEntry): Removed.
5012         (MonoDebugLexicalBlockEntry): Removed.
5013         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
5014         removed `num_il_offsets' and `il_offsets'.
5015         (MonoSymbolFile): Replace `version' with `major_version' and
5016         `minor_version'.
5017         (MONO_SYMBOL_FILE_VERSION): Replace with
5018         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
5019         `MONO_SYMBOL_FILE_MINOR_VERSION'.
5020
5021         * debug-mono-symfile.c
5022         (mono_debug_symfile_lookup_location): Add support for the new line
5023         number table format.
5024
5025 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
5026
5027         * metadata.c (free_generic_class): Release the inflated
5028         MonoClass of dynamic generic classes if it's not a generic
5029         type definition.
5030
5031 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
5032
5033         * verify.c: Reapplied more of the reverted changes.
5034
5035 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
5036
5037         * reflection.c (lookup_custom_attr): Clean the cached flag or
5038         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
5039         for SRE types.
5040
5041 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
5042
5043         * verify.c: Reapplied a small part of the reverted changes.
5044
5045 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
5046
5047         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5048
5049         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
5050         previously in managed code.
5051         (mono_monitor_exit): Ditto.
5052         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
5053
5054         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
5055         the managed definition.
5056
5057 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
5058
5059         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
5060
5061 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
5062
5063         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
5064         
5065         * monitor.c: Add some micro optimizations.
5066
5067         * icall.c (type_from_typename): Handle 'bool'.
5068
5069 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
5070
5071         * verify.c: Implement constructor verification per P III 1.8.1.4.
5072         Fixes #396716.
5073
5074 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
5075
5076         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
5077         holding the assemblies lock here too.
5078
5079 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5080
5081         * verify.c: Kill stack_top function.
5082
5083 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5084
5085         * verify.c: Kill stack_get function.
5086
5087 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5088
5089         * verify.c (mono_method_verify): Last change broke the build. Fixed.
5090
5091 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5092
5093         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
5094         more reliable.
5095
5096         * verify.c (mono_method_verify): Inflate params and locals to avoid
5097         mismatch when checking for compatibility.
5098
5099 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
5100
5101         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
5102         Length prefix should be size in bytes. Fix bug #339530.
5103         
5104         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
5105         Length prefix should be size in bytes. Fix bug #339530.
5106
5107         Code is contributed under MIT/X11 license.
5108
5109 2008-06-05  Bill Holmes <billholmes54@gmail.com>
5110
5111         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
5112
5113         Contributed under MIT/X11 license.
5114
5115 2008-06-05  Martin Baulig  <martin@ximian.com>
5116
5117         * mono-debug-debugger.c
5118         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
5119
5120 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
5121
5122         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
5123         while holding the assemblies lock to prevent deadlocks. Handle the case
5124         where the search hook returns NULL but the assembly was still loaded.
5125         Fixes #323696.
5126
5127         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
5128         modify domain state.
5129
5130 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
5131
5132         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
5133         * Makefile.am (pedump_LDADD): Post-process object files and
5134         add dtrace-generated object file, if necessary.
5135
5136         Code is contributed under MIT/X11 license.
5137
5138 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5139
5140         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
5141
5142 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5143
5144         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
5145
5146 2008-06-04  Mark Probst  <mark.probst@gmail.com>
5147
5148         * threads.c: Try to free everything from the delayed free table
5149         when shutting down threads, and set the variable to NULL after the
5150         table is freed so that calling
5151         mono_thread_hazardous_try_free_all() when shutting down the root
5152         domain doesn't crash.
5153
5154 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5155
5156         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
5157         the caller if resulting type was inflated.
5158
5159         * class.c (mono_class_create_from_typespec): Free the MonoType if it
5160         was inflated.
5161
5162         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
5163
5164
5165 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
5166
5167         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
5168         class library tests.
5169
5170         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
5171         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
5172         #396989.
5173
5174 2008-06-04  Mark Probst  <mark.probst@gmail.com>
5175
5176         * domain.c, domain-internals.h: The JIT infos are now freed by the
5177         JIT info table code.  They are freed immediately if there only a
5178         single JIT info table in circulation.  If there is more, the free
5179         is delayed via a queue.
5180
5181         * threads.c, threads-types.h: New hazard pointer function for
5182         freeing all freeable delayed items in one sitting.
5183
5184 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5185
5186         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
5187
5188         * reflection.c (typebuilder_setup_properties): Same.
5189
5190         * reflection.c (typebuilder_setup_events): Same.
5191
5192 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5193
5194         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
5195         and use it for allocating memory.
5196
5197         * reflection.c (mono_marshal_spec_from_builder): Same.
5198
5199         * reflection.c: Change code to use new signatures.
5200
5201         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
5202
5203 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
5204
5205         * decimal.c (rescale128): Put back one line which was accidently commented
5206         out.
5207         
5208         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
5209         to cause crashes.
5210
5211 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5212
5213         * reflection.c (mono_reflection_generic_class_initialize): Name must
5214         be always malloc'ed so we can free it later on. Do this for field, property
5215         and event.
5216
5217         * metadata.c (free_generic_class): Free field, property and event names.
5218
5219 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5220
5221         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
5222         instead of g_memdup.
5223
5224         * reflection.c (typebuilder_setup_fields): Same.
5225
5226 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
5227
5228         * decimal.c (rescale128): Optimize this function a bit more.
5229
5230 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5231
5232         * metadata.c (free_generic_class): Release some memory from
5233         SRE generic classes.
5234
5235 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5236
5237         * reflection.c (mono_image_get_generic_field_token): No reference
5238         to name is kept, free it.
5239
5240         * reflection.c (mono_reflection_generic_class_initialize): Free
5241         more memory of the inflated field.
5242
5243 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
5244
5245         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
5246         code.
5247
5248 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
5249
5250         * reflection.c (mono_dynamic_image_free): Release memory used by
5251         MonoDynamicImage::array_methods elements.
5252
5253         * reflection.c (assembly_add_win32_resources): Release memory after
5254         encoding.
5255
5256 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
5257
5258         * decimal.c (log2_32): Use an optimized version for this function too.
5259         
5260         * decimal.c (log2_64): Fix this on 32 bit machines.
5261
5262 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
5263
5264         * class.c (mono_dup_array_type): Implement allocation using a mempool.
5265
5266         * class.c (mono_metadata_signature_deep_dup): Same.
5267
5268         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
5269         a mempool.
5270
5271         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
5272
5273         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
5274
5275         * metadata-internals.h: Added mono_metadata_signature_dup_full.
5276
5277         * class-internals.h: Update signatures to take a MonoMemPool.
5278
5279 2008-06-02  Dick Porter  <dick@ximian.com>
5280
5281         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
5282         * icall-def.h: Add
5283         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
5284         FormatMessage API to get the error text.  Fixes bug 321827.
5285
5286 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
5287
5288         * decimal.c: Add some micro optimizations to make decimal operations faster.
5289
5290 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5291
5292         * reflection.c (method_encode_clauses): Take a mempool
5293         as parameter and use it to allocate the clause array.
5294
5295         * reflection.c (mono_image_get_field_on_inst_token): Free
5296         the inflated type after encoding it.
5297
5298         * reflection.c (mono_dynamic_image_free): Free each element
5299         of MonoDynamicImage::gen_params.
5300
5301         * reflection.c (reflection_methodbuilder_to_mono_method):
5302         Allocate the generic param array from the mempool.
5303         Allocate signature params from the mempool.
5304
5305         * reflection.c (mono_reflection_generic_class_initialize):
5306         Free inflated fields after been used.
5307
5308 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
5309
5310         * icall.c: Reapply the memory leak fixes as they no
5311         longer make mono crash.
5312
5313 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
5314
5315         * reflection.c (mono_type_get_object): Don't store the suplied
5316         MonoType with type_hash. A caller which pass a type that
5317         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
5318         might end with a pointer to freed memory.
5319         The solution is to use byval_arg or this_arg from the associated
5320         MonoClass of the supplied type.
5321
5322 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
5323
5324         * icall.c: Revert the rest of the last change as it breaks the build too.
5325
5326 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5327
5328         * icall.c: Revert a leak fix as it's breaking the build.
5329
5330 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5331
5332         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
5333
5334 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5335
5336         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
5337
5338 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5339
5340         * icall.c: Fix some memory leaks.
5341
5342 2008-05-29  Dick Porter  <dick@ximian.com>
5343
5344         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
5345         async socket operations from the pending list when a socket
5346         closes.  Leaving it until the threadpool services the event
5347         exposes a race condition when a socket descriptor is reused.
5348         Fixes bug 377589.
5349
5350 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5351
5352         * object.c: Fix negative index check for array alocation.
5353
5354 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5355
5356         * icall.c, marshal.c: Delegate wrappers should skip visibility.
5357         This check is performed by the verifier for IL created delegates
5358         and by Delegate::CreateDelegate for programatically created ones.
5359         Fixes #372406.
5360
5361 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5362
5363         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
5364         Fix code to use mono_array_size_t instead of int.
5365
5366         Based on patch by Luis F. Ortiz.
5367         Contributed under X11 license.
5368         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5369
5370 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5371
5372         * icall.c: Added ves_icall_System_Array_GetLongLength and
5373         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
5374         arrays.
5375
5376         * icall.h: Export both new functions.
5377
5378         Based on patch by Luis F. Ortiz.
5379         Contributed under X11 license.
5380         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5381
5382 2008-05-28  Martin Baulig  <martin@ximian.com>
5383
5384         The debugger now requires exactly r103463.
5385
5386         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
5387         This version is not supported by the debugger, wait for 72.
5388
5389 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5390
5391         * object.h: Changed array related functions to use
5392         mono_array_size_t instead of guint32. Forgot to commit this file.
5393
5394         Patch by Luis F. Ortiz.
5395         Contributed under X11 license.
5396         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5397
5398
5399 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5400
5401         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
5402         don't define it. Use the number literal instead.
5403
5404 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5405
5406         * icall.c: Changed array related functions to use
5407         mono_array_size_t instead of guint32.
5408
5409         * icall.c (ves_icall_System_Array_GetLength): Check for length
5410         overflow under MONO_BIG_ARRAYS.
5411
5412         Based on patch by Luis F. Ortiz.
5413         Contributed under X11 license.
5414         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5415
5416 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5417
5418         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
5419
5420         Based on patch by Luis F. Ortiz.
5421         Contributed under X11 license.
5422         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5423
5424 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5425
5426         * object.c, object.h: Changed array related functions to use
5427         mono_array_size_t instead of guint32.
5428
5429         Patch by Luis F. Ortiz.
5430         Contributed under X11 license.
5431         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5432
5433 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5434
5435         * object.h: Introduced mono_array_size_t typedef. This must be used
5436         in all places an array length is expected. This is 64bits wide if
5437         MONO_BIG_ARRAYS is enabled.
5438
5439         Patch by Luis F. Ortiz.
5440         Contributed under X11 license.
5441         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5442
5443 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
5444
5445         * security-manager.c class.c: Set the class exception info by calling
5446         mono_class_set_failure ().
5447
5448         * class.c (mono_class_get_exception_data): New accessor function.
5449         (mono_class_set_failure): Store exception_data in the property hash.
5450
5451         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
5452         the struct as a property.
5453
5454         * loader.c (mono_get_method_full): Store the lookup result for method
5455         tokens in method_cache, the others in methodref_cache to decrease the memory
5456         usage of hash tables.
5457
5458         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
5459         (mono_image_init): method_cache is lazy inited now.
5460
5461         * metadata-internals.h (struct _MonoImage): Change method_cache to
5462         a MonoValueHashTable, add a separate methodref_cache.
5463
5464 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
5465
5466         * number-formatter.h: Fix tables to avoid arithemtic overflow in
5467           Double.ToString as exposed by Bug #383531.
5468
5469 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
5470
5471         * number-formatter.h: Make some tables static.
5472
5473         * class.c (mono_method_set_generic_container): New accessor function.
5474         (mono_method_get_generic_container): Ditto.
5475
5476         * class-internals.h (struct _MonoMethod): Remove rarely used 
5477         'generic_container' field, store it in the property hash instead. Add 
5478         'is_generic' boolean field instead.
5479
5480         * image.c (mono_image_init): Initialize property_hash.
5481         (mono_image_close): Destroy property_hash.
5482
5483         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
5484         hold rarely used fields of runtime structures belonging to this image.
5485
5486         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
5487         to get/set method->generic_container.
5488
5489         * loader.c (mono_get_method_from_token): Avoid loading the method header for
5490         generic methods.
5491
5492 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
5493
5494         * class.c (mono_class_inflate_generic_method_full): Don't increase
5495         mono_stats.inflated_method_count for methods found in the cache.
5496
5497         * threads.c (mono_thread_request_interruption): Add a comment about 
5498         QueueUserAPC ().
5499
5500 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
5501
5502         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
5503         interface_offsets_packed table.
5504         
5505         * class.c (mono_class_init): Remove some dead code.
5506
5507         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
5508         mono_class_setup_vtable () when CAS is active to detect security problems.
5509
5510 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
5511
5512         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
5513
5514         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
5515         parameters as it's irrelevant for delegate checking.
5516
5517 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
5518
5519         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
5520
5521         * class.c (mono_class_init): Control the creation of a generic vtable using
5522         a global which is true by default, but set to false by the runtime startup code.
5523         
5524         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
5525         Disabled for now since it breaks the embedding API.
5526         Move the setup of class->methods for arrays to mono_class_setup_methods ().
5527         (mono_class_setup_methods): Add a memory barrier.
5528
5529         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
5530         when mono_class_init () doesn't compute the generic vtable.
5531         
5532 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
5533         * profiler.c: Added mono_profiler_install_statistical_call_chain,
5534         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
5535         to support call chains (backtrace) in the stat profiler.
5536         * profiler.c, profiler-private.h: Likewise.
5537
5538 2008-05-22  Mark Probst  <mark.probst@gmail.com>
5539
5540         * generic-sharing.c: Init generic class when a method of it is
5541         requested via a runtime generic context.
5542
5543 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
5544
5545         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
5546
5547         * reflection.c (mono_type_get_object): Add a FIXME.
5548
5549         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
5550
5551         * class.c (mono_class_get_method_by_index): New helper function, returning an
5552         entry in the class->methods array.
5553
5554 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
5555
5556         * class.c (mono_class_init): Only do the array optimization for szarrays. 
5557         Avoid creating a generic vtable for generic instances as well.
5558         (mono_class_get_method_from_name_flags): Don't search in the metadata for
5559         generic instances.
5560
5561 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
5562
5563         * loader.c (mono_get_method_constrained): Inflate the signature
5564         with class context. Fix #325283.
5565
5566 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
5567
5568         * object.c (mono_class_create_runtime_vtable): Add a comment.
5569
5570         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
5571         where needed.
5572         (setup_interface_offsets): Handle the case when this is called twice for arrays.
5573         (mono_class_setup_vtable_general): Add an assert.
5574         (mono_class_init): Avoid creating a generic vtable for arrays.
5575
5576         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
5577         here, let mono_class_init () do that.
5578
5579         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
5580         interfaces in mscorlib.
5581
5582         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
5583         interfaces. Add some comments.
5584         (mono_class_init): Call mono_class_setup_methods () here since it is no
5585         longer called by mono_class_setup_vtable ().
5586
5587         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
5588         not set in class->vtable.
5589         (mono_class_create_runtime_vtable): Reenable the disabled code.
5590
5591         * object.c (mono_class_create_runtime_vtable): Disable the last change for
5592         now as it causes some test failures.
5593
5594         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
5595         if using the vtable trampoline. Also remove some strange code which put the
5596         generic methods themselves into the vtable slots. Remove the AOT init_vtable
5597         stuff as it is no longer needed.
5598
5599 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5600
5601         * pedump.c: Give make --verify all option check code as well.
5602         Using --verify code won't check for metadata now.
5603
5604 2008-05-19  Martin Baulig  <martin@ximian.com>
5605
5606         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
5607
5608         * mono-debug.c
5609         (_mono_debug_using_mono_debugger): New global variable; it's set
5610         directly by the debugger, so mono_debug_using_mono_debugger() also
5611         works after attaching.
5612
5613 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5614
5615         * object.c (mono_class_create_runtime_vtable): Use memory barriers
5616         as we do double checked locking on MonoClass::runtime_info and
5617         MonoClassRuntimeInfo::domain_vtables.
5618
5619 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
5620
5621         * debug-helpers.c (print_field_value): Fix a warning.
5622
5623 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
5624
5625         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
5626         set in the AOT case.
5627
5628 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
5629
5630         * class.c (mono_class_setup_vtable_general): Use memory barriers
5631         as we do double checked locking on MonoClass::vtable.
5632
5633 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
5634
5635         * reflection.c (resolve_object): Inflate only if the generic context
5636         is not null. Fixes #389886.
5637
5638 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
5639
5640         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
5641         instead of g_free.
5642
5643         Code is contributed under MIT/X11 license.
5644
5645 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
5646
5647         * class.c: Revert unrelated change.
5648
5649 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
5650
5651         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
5652         a generic instantiation, use mono_class_from_mono_type instead of playing
5653         with MonoType directly.
5654
5655 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
5656
5657         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
5658         checks must ignore generic instantiations, so mono_class_has_parent is not
5659         suitable. Fixes #390128.
5660
5661 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
5662
5663         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
5664         it to avoid registering tokens during metadata generation. Fixes #390023.
5665
5666 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
5667
5668         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
5669         consistent.
5670
5671         Contributed under MIT/X11 license.
5672
5673 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
5674
5675         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
5676         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
5677         to fixup the EXE image.
5678         (mono_cleanup): Use mono_close_exe_image.
5679         (mono_close_exe_image): New function.
5680         * image.c: Include "marshal.h".
5681         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
5682         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
5683         counting when the image is loaded outside of mono_image_open_full. Set status
5684         based on GetLastError.
5685         * coree.c: Include required headers. Add init_from_coree.
5686         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
5687         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
5688         (_CorExeMain): Set init_from_coree.
5689         (CorExitProcess): Only call ExitProcess for now.
5690         (CorBindToRuntimeEx): New stub implementation.
5691         (CorBindToRuntime): New function.
5692         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
5693         (MonoFixupExe): ILONLY executables require no fixups.
5694         (mono_set_act_ctx): New function to set activation context.
5695         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
5696         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
5697         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
5698         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
5699         as MONO_INTERNAL.
5700         * domain-internals.h: Add mono_close_exe_image.
5701
5702         Contributed under MIT/X11 license.
5703
5704 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5705
5706         * metadata.c (mono_metadata_compute_size): Correctly calculate field
5707         size for generic param and event tables. Fixes #388977.
5708
5709 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
5710
5711         * loader.c (mono_method_signature): Use memory barriers because of the double
5712         checked locking pattern.
5713
5714         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
5715         aborting or aborted as well. Fixes #376391.
5716         
5717         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
5718         existing runtime state in the Suspend handler during shutdown.
5719
5720 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
5721
5722         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
5723
5724         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
5725         which are starting up or shutting down.
5726
5727         * threads.c (mono_threads_set_shutting_down): Don't return a value since
5728         this function never returns if the runtime is already shutting down.
5729
5730         * icall.c (ves_icall_System_Environment_Exit): Update after 
5731         mono_threads_set_shutting_down () signature change.
5732         
5733 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
5734
5735         * class.c: Added can_access_instantiation to verify if the instantiation
5736         is visible. Fix access check for nested types as they returned TRUE
5737         before doing type and generic instantiation visibility checks.
5738
5739 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
5740
5741         * reflection.c (mono_reflection_create_generic_class): The created type
5742         must have a different container from its TypeBuilder. Otherwise they
5743         will end sharing generic arguments, which is wrong.
5744
5745         Due to the sharing, making a generic instance of the created type using
5746         the TypeBuider generic arguments resulted in the generic type definition
5747         been returned, which is wrong as well.
5748
5749         As a bonus the code was leaking the type_params array. This memory should
5750         be allocated from the image mempool.
5751
5752         This fixes bug #354047.
5753
5754 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
5755
5756         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
5757         to here         as they are now used in assembly.c new code.
5758         Added a skipverification flag to MonoAssembly.
5759         New internal function mono_assembly_has_skip_verification.
5760
5761         * assembly.c: New function mono_assembly_has_skip_verification. It checks
5762         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
5763         part of #387274.
5764
5765 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
5766
5767         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
5768         needed. Fixes #387034.
5769
5770         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
5771
5772 2008-05-06  Miguel de Icaza  <miguel@novell.com>
5773
5774         * assembly.c (mono_assembly_load_reference): Prevent crash while
5775         disassembling Silverlight 2.0 executables while we still do not
5776         have GACed libraries.
5777
5778 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
5779
5780         * reflection.c: Special case generic type definitions as well. Fixes #383444.
5781
5782 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
5783
5784         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
5785         of the dynamic case. Fixes #387404.
5786
5787 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5788
5789         *verify.c (mono_verifier_is_class_full_trust): If under
5790         verify_all and the verifier mode was not set, only
5791         gac and corlib types are fulltrust. This makes --verify-all
5792         usable to detect unverifiable code, which is the expected
5793         use case.
5794
5795 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5796
5797         * verify.h: Ops, commited the header with debug
5798         enabled.
5799
5800 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5801
5802         * verify.c (merge_stack): Use the new value on unverifiable
5803         stack merges.
5804
5805         * verify.c (verify_type_compatibility_full): Comparison
5806         of nullable types can't use mono_class_is_assignable_from.
5807
5808         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
5809         that makes all verification errors be reported.
5810
5811         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
5812         mono_method_verify.
5813
5814 2008-05-05  Robert Jordan  <robertj@gmx.net>
5815
5816         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
5817         support for value types. See #386415.
5818
5819         * object.c: comments.
5820
5821         Code is contributed under MIT/X11 license.
5822
5823 2008-05-05  Martin Baulig  <martin@ximian.com>
5824
5825         * debug-mono-symfile.h
5826         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
5827         for old pre-terrania symbol files.
5828
5829 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
5830
5831         * mono-config.c: Add ppc64 architecture.
5832
5833         Code is contributed under MIT/X11 license.
5834
5835 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
5836
5837         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
5838           PPC64 uses function descriptors as well.
5839
5840         Code is contributed under MIT/X11 license.
5841
5842 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
5843
5844         * object.c (compute_class_bitmap): Ignore literal static fields.
5845
5846         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
5847         var has an invalid format.
5848         (describe_ptr): Add some sanity checks for the vtable.
5849         (add_nursery_frag): Clear unused nursery fragments.
5850         (major_collection): Clear all remaining nursery fragments.
5851
5852 2008-05-03  Robert Jordan  <robertj@gmx.net>
5853
5854         * image.c, metadata-internals.h: add thunk_invoke_cache.
5855
5856         * marshal.c, marshal.h: implement
5857         mono_marshal_get_thunk_invoke_wrapper ().
5858
5859         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
5860
5861         Code is contributed under MIT/X11 license.
5862
5863 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
5864
5865         * verify.c (do_leave): Empty the stack.
5866
5867 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
5868
5869         * class.c (mono_class_is_assignable_from): Variance
5870         doesn't work between reference and value types. For example,
5871         given type C<T+>, C<int32> is not assignable to C<object>.
5872         Break the argument checking loop on first error. 
5873
5874 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
5875
5876         * icall.c : base64_to_byte_array() needs some more strict
5877           check for sequence of '=' characters. Patch by Santa
5878           Marta (http://deee.g.hatena.ne.jp/santamarta).
5879
5880           Contributed under MIT/X11 license.
5881           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
5882
5883 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
5884
5885         * domain.c: Disable LoadLibrary support to fix Win32 build.
5886
5887         Code is contributed under MIT/X11 license.
5888
5889 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
5890
5891         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
5892         to help with cache behaviour.
5893
5894 2008-05-01  Miguel de Icaza  <miguel@novell.com>
5895
5896         * appdomain.c (mono_domain_from_appdomain): Add new accessor
5897         method. 
5898
5899 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
5900
5901         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
5902
5903 2008-05-01  Dick Porter  <dick@ximian.com>
5904
5905         * process.c (process_get_fileversion): Only pass 16 bits of
5906         language ID to VerLanguageName.  Fixes bug 381204.
5907
5908 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5909
5910         * verify.c (mono_method_verify): Fix the comparison
5911         operator for code bounds check.
5912
5913 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5914
5915         * verify.c (mono_method_verify): Check the bounds of
5916         all access of the code array.
5917
5918 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
5919
5920         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
5921
5922 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
5923
5924         * image.c (mono_image_strong_name_position): Fix return value when the rva is
5925         not valid.
5926
5927 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
5928
5929         * loader.c (mono_get_method_from_token, mono_method_signature): Add
5930         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
5931         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
5932         fixup main EXE images when using mono.exe for mixed-mode assembly support.
5933         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
5934         mono_runtime_load.
5935         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
5936         runtime initialization from metadata.
5937         * assembly.c: Remove obsolete ceGetModuleFileNameA.
5938         (mono_set_rootdir): Use mono_get_module_file_name.
5939         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
5940         handles.
5941         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
5942         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
5943         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
5944         MonoCLIImageInfo. Add support for module handles.
5945         (load_cli_header): Update mono_cli_rva_image_map signature.
5946         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
5947         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
5948         (mono_image_rva_map): Add support for module handles.
5949         (mono_image_ensure_section_idx): Add support for module handles.
5950         (mono_image_close): Add support for module handles.
5951         (do_load_header): Add support for module handles.
5952         (mono_image_open_from_module_handle): New function for internal use.
5953         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
5954         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
5955         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
5956         handles.
5957         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
5958         * image.h: Add mono_image_fixup_vtable.
5959         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
5960         support.
5961         * coree.h: New file.
5962         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
5963         unsupported native code.
5964         (mono_marshal_set_callconv_from_modopt): New function splitted from
5965         mono_marshal_get_managed_wrapper.
5966         (mono_marshal_get_managed_wrapper): Use
5967         mono_marshal_set_callconv_from_modopt.
5968         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
5969         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
5970         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
5971         that results in a deadlock when the runtime is loaded in _CorDllMain.
5972         * Makefile.am: Add coree.c and coree.h.
5973
5974         Contributed under MIT/X11 license.
5975
5976 2008-04-28  Mark Probst  <mark.probst@gmail.com>
5977
5978         * generic-sharing.c: Search for type arguments in array element
5979         types as well.
5980
5981 2008-04-28  Mark Probst  <mark.probst@gmail.com>
5982
5983         * class-internals.h, generic-sharing.c: New, small runtime generic context.
5984
5985         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
5986
5987         * object.c: Don't setup the RGCTX when the vtable is created,
5988         because we're setting it up lazily now.
5989
5990 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
5991
5992         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
5993         64 bit support.
5994
5995 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5996
5997         * verify.c (verify_class_for_overlapping_reference_fields): 
5998         If class is under fulltrust allow reference types to overllap
5999         if they have the same RVA.
6000
6001 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6002
6003         * pedump.c: Added new flag valid-only, that makes the verifier
6004         behaves just like --security=validil. It won't fail type load
6005         due to unverifiable restrictions.
6006
6007 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6008
6009         * class-internals.h (struct MonoMethod): Added a verification_success
6010         field to cache verifier executions. Reduced MonoMethod:slot size by
6011         one bit.
6012
6013 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
6014
6015         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
6016         instead of a 'vt' argument to save an indirection and to allow these to be used
6017         for valuetypes.
6018         (scan_vtype): New helper function to scan an area using a gc descriptor.
6019         (mono_gc_wbarrier_value_copy): Implement this.
6020         (handle_remset): Add support for REMSET_VTYPE.
6021         (find_in_remset_loc): Ditto.
6022         (mono_gc_base_init): Allow some debugging options to be controlled through the
6023         use of the MONO_GC_DEBUG env variable.
6024         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
6025         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
6026
6027 2008-04-23  Martin Baulig  <martin@ximian.com>
6028
6029         * domain.c (mono_domain_create): Move the call to
6030         mono_debug_domain_create() down, after allocating the domain id.
6031
6032 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6033
6034         verify.c (verify_class_for_overlapping_reference_fields): Skip
6035         static fields while verifying for overlapping fields as they
6036         don't matter at all.
6037
6038 2008-04-23  Marek Habersack  <mhabersack@novell.com>
6039
6040         * domain-internals.h: added a declaration of
6041         mono_make_shadow_copy.
6042
6043         * assembly.c (mono_assembly_open_full): shadow copying of
6044         assemblies moved to here, so that all the assemblies within the
6045         application domain's private binary directories can be
6046         processed. Fixes bug #380546
6047
6048         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
6049         mono_make_shadow_copy and made non-static. The decision whether
6050         to shadow-copy an assembly is made based on its location - it's
6051         copied if it's in one of the private application domain binary
6052         directories and its different to the target file in the shadow
6053         directory. Fixes bug #380546
6054
6055 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
6056
6057         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
6058
6059         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
6060         types.
6061
6062         * reflection.c (mono_image_create_token): Handle 
6063         Method/ConstructorOnTypeBuilderInst.
6064         (resolve_object): Ditto.
6065         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
6066         so it can be called from resolve_object. Also handle the case when the inflated
6067         class already has its methods setup.
6068
6069 2008-04-21  Martin Baulig  <martin@ximian.com>
6070
6071         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
6072
6073 2008-04-20  Geoff Norton  <gnorton@novell.com>
6074
6075         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
6076         pointer dereference.
6077
6078 2008-04-15  Marek Habersack  <mhabersack@novell.com>
6079
6080         * appdomain.c (try_load_from): if IOMAP is in effect, call the
6081         portability API to look up the assembly file. Fixes behavior in
6082         situations when the application has a bin/ directory, but the
6083         assembly search patch refers to Bin/ (and thus the requested file
6084         name is Bin/SomeLibrary.dll). Fixes bug #379888
6085
6086 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6087
6088         verify.c (mono_type_is_generic_argument): Extracted this check
6089         from a dozen places to here.
6090
6091         verify.c: Fixed all issues related to boxing generic arguments
6092         and their constraints.
6093
6094 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6095
6096         verify.c (mono_class_interface_implements_interface): Fix win32 build.
6097
6098 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
6099
6100         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
6101         isn't finished yet. Fixes #363447.
6102
6103 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
6104
6105         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
6106         Fixes #346419.
6107
6108 2008-04-13  Jb Evain  <jbevain@novell.com>
6109
6110         * domain.c: update the 2.1 profile versions.
6111         Merged from the Moonlight 2 branch.
6112
6113 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
6114
6115         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
6116         mscorlibs for the non-refonly case as well.
6117
6118         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
6119         in mono_assembly_load_from_full (). Fixes #378924.
6120
6121 2008-04-11  Geoff Norton  <gnorton@novell.com>
6122
6123         * icall.c: The global extern environ doesn't exist on Mac.  We
6124         need to call NSGetEnviron instead.
6125
6126 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6127
6128         verify.c: Add generic method constraint verification.
6129
6130 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6131
6132         class.c (mono_class_inflate_generic_method_full): Add a long
6133         explanation to the is_mb_open hack. Remove the FIXME.
6134
6135 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6136
6137         * verify.c (mono_method_verify): Mark all unknown opcodes
6138         as invalid. Mark jmp as unverifiable.
6139
6140 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6141
6142         * verify.c: Add code to do type constraint verification on class instances.
6143
6144         * verify.c (mono_verifier_verify_class): Use the type constraint 
6145         verification code.
6146
6147 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6148
6149         * class.c (mono_class_get_field_default_value): Don't pass cindex
6150         as hint to mono_metadata_get_constant_index. The local is not initialized
6151         and should contain garbage most of the time. This could only work
6152         with a lot of luck.
6153
6154 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6155
6156         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
6157
6158 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6159
6160         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
6161
6162         * class.c (mono_class_from_generic_parameter): Save the token of the
6163         generic param in MonoClass::sizes.generic_param_token.
6164
6165         * reflection.c (mono_custom_attrs_from_class): If the class type is
6166         VAR or MVAR retrieve the attributes of the generic param.
6167
6168 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6169
6170         * class.c (mono_class_init): Do class verification if the verifier
6171         is enabled.
6172
6173 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6174
6175         * verify-internal.h: Added mono_verifier_verify_class.
6176
6177         * verify.c: Added mono_verifier_verify_class. It checks for
6178         classes with explicit layout that have overlapping reference fields.
6179
6180         * pedump.c: Init the verifier state prior to verification. Fixed
6181         command line arguments.
6182
6183 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6184
6185         * Makefile.am: Added verify-internals.h, hopefully fix the build.
6186
6187 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
6188
6189         * verify-internals.h: Fix a warning.
6190
6191 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6192
6193         * verify-internals.h: New header with the verifier configuration
6194         extracted from mini.c.
6195
6196         * verify.c: Implemented the new functions exported by verify-internals.h.
6197
6198 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6199
6200         * verify.c: Add proper verification of ckfinite.
6201
6202 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
6203
6204         * verify.c (do_conversion): Improved error message to something
6205         more meanfull.
6206
6207         * verify.c (check_is_valid_type_for_field_ops): Fix to work
6208         with primitive types.
6209
6210 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
6211
6212         * verify.c: Added tail prefix checking. Marked icall
6213         as unverifible.
6214
6215 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
6216
6217         * verify.c: Fix the detection of branches to the middle
6218         of an instruction.
6219
6220 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6221
6222         * verify.c: Implemented verification of volatile. and
6223         unaligned. prefix. Check if a type is valid after retrieving it.
6224
6225 2008-04-01  Dick Porter  <dick@ximian.com>
6226
6227         * process.c (process_get_fileversion): If there's no string block,
6228         set the file language to en_US.  Fixes the other new part of bug
6229         374600.
6230
6231 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
6232
6233         * class.c: New functions mono_method_can_access_field_full and
6234         mono_method_can_access_method_full. They perform type visibility
6235         and type site check.
6236
6237         * class-internal.h: Added exported functions.
6238
6239         * verify.c: Use new functions to implement proper visibility checks.
6240
6241 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
6242
6243         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
6244
6245 2008-03-28  Dick Porter  <dick@ximian.com>
6246
6247         * process.c (process_get_fileversion): Use the first language ID
6248         we see, rather than insisting on an invariant language.  Fixes bug
6249         374600.
6250
6251 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
6252
6253         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
6254         the streams to fix reading of invalid memory later.
6255
6256         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
6257         to ease debugging.
6258
6259 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
6260
6261         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
6262         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
6263
6264 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
6265         * threads.h: Added MonoThreadManageCallback type and
6266         mono_thread_set_manage_callback prototype
6267         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
6268         (used to store the mono_thread_manage callback).
6269         * threads.c: Added mono_thread_set_manage_callback, and handle
6270         "MonoThread->manage_callback" in build_wait_tids.
6271
6272 2008-03-26  Dick Porter  <dick@ximian.com>
6273
6274         * process.c (process_get_fileversion): Set FileVersionInfo strings
6275         to Empty when the resource doesn't have the particular info.
6276         Fixes bug 355717.
6277
6278 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
6279
6280         * verify.c (mono_method_verify): Proper prefix validation.
6281
6282 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
6283
6284         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
6285         itself in a separate argument instead of throwing them. Fixes #373448.
6286
6287         * appdomain.c: Bump corlib version.
6288
6289 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6290
6291         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
6292
6293 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
6294
6295         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
6296         version macros.
6297
6298 2008-03-20  Mark Probst  <mark.probst@gmail.com>
6299
6300         * generic-sharing.c, class-internals.h: Code for putting
6301         reflection types into the runtime generic context.
6302
6303 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6304
6305         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
6306         Fixes #340662. 
6307
6308
6309 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
6310
6311         * verify.c (VerifyContext): Added instruction prefix data to the struct.
6312
6313         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
6314
6315         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
6316
6317         * verify.c (do_cast): Let the result value keep the boxed status.
6318
6319         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
6320
6321 2008-03-17  Jb Evain  <jbevain@novell.com>
6322
6323         * reflection.c: when running on a 2.0 runtime, emit
6324         unconditionally the #~ header version as 2.0, and the
6325         CLI header version as 2.5, for symmetry's sake with csc.
6326
6327 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
6328
6329         * class.c: Remove the unused cache_interface_offsets stuff.
6330
6331         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
6332         profiler.c: Fix warnings.
6333
6334 2008-03-16  Mark Probst  <mark.probst@gmail.com>
6335
6336         * generic-sharing.c, class-internals.h: Support for putting
6337         methods into the runtime generic context.
6338
6339 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
6340
6341         * class.c (mono_class_setup_fields): Ignore calls made to this function for
6342         classes which are generic instances of not-yet finished typebuilders. Fixes
6343         #351172.
6344
6345         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
6346
6347 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
6348
6349         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
6350
6351         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
6352         field, replace it with a hash table in MonoDynamicImage.
6353
6354         * reflection.c (inflate_mono_method): Access the generic definition object from
6355         image->generic_def_objects instead of imethod->reflection_info.
6356
6357         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
6358
6359         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
6360         
6361         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
6362         function in reflection.c so it is easier to keep in sync with the dynamic image
6363         creation code.
6364
6365         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
6366         mono_image_close ().
6367
6368 2008-03-15  Mark Probst  <mark.probst@gmail.com>
6369
6370         * class.c (mono_class_generic_sharing_enabled): Disable generic
6371         sharing for all architectures except AMD64 and x86 to fix build.
6372
6373 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
6374
6375         * verify.c: Use the generic definition MonoGenericContext when available.
6376         Remove code for checking generics instance compatibility in favor of
6377         mono_class_is_assignable_from.
6378
6379 2008-03-14  Mark Probst  <mark.probst@gmail.com>
6380
6381         * marshal.c, marshal.h, metadata-internals.h, image.c,
6382         wrapper-types.h: New wrapper for invoking a shared static method
6383         without having to pass the runtime generic context argument.
6384
6385 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
6386
6387         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
6388
6389 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
6390
6391         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
6392         
6393         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
6394         create a token from a FieldOnTypeBuilderInst.
6395         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
6396         (resolve_object): Ditto.
6397
6398         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
6399         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
6400
6401 2008-03-14  Martin Baulig  <martin@ximian.com>
6402
6403         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
6404
6405         * debug-mono-symfile.h
6406         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
6407         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
6408
6409 2008-03-10  Martin Baulig  <martin@ximian.com>
6410
6411         * debug-mono-symfile.h
6412         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
6413         `lexical_block_table_offset'.
6414         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
6415         `lexical_blocks'.
6416         (MonoSymbolFile): Added `version'.
6417
6418         * mono-debug.h
6419         (MonoDebugLexicalBlockEntry): Removed.
6420         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
6421         `lexical_blocks'.
6422
6423         * mono-debug.c (mono_debug_add_method): Don't compute lexical
6424         blocks here; the debugger now does this internally.
6425
6426 2008-02-27  Martin Baulig  <martin@ximian.com>
6427
6428         * object.c (mono_runtime_exec_main): Call
6429         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
6430         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
6431
6432 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6433
6434         * verify.c (verify_type_compatibility_full): Allow native int to be converted
6435         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
6436
6437 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6438
6439         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
6440         ldftn with a virtual method.
6441
6442 2008-03-13  Geoff Norton  <gnorton@novell.com>
6443
6444         * decimal.c:  Only include memory.h if the platform has it.
6445
6446 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
6447
6448         * assembly.c, class.c, metadata-internals.h: make sure public key
6449         tokesns are compared in a case-insensitive way. Also, all
6450         the lookups in the GAC use a lowercase public key token
6451         (gaacutil already does the lowercasing on install). Fixes
6452         bug #369541.
6453
6454 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
6455
6456         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
6457         and return value.
6458
6459 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
6460
6461         * image.c: when someone loads a mscorlib from a file, return the
6462         currently loaded mscorlib (fixes bug #369253).
6463
6464 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
6465
6466         * class.c: handle types with no parents by forcing them to have
6467         System.Object as a parent and marking them as broken (this currently
6468         allows the first part of bug #369173 to work as well, likely because
6469         we don't check for typeload exceptions everywhere yet).
6470
6471 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
6472
6473         * class.c: more complete check that types belong to corlib
6474         (fixes second part of bug #369173).
6475
6476 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
6477
6478         * generic-sharing.c:  Including glib.h for the MSVC builds to define
6479           "inline" to "__inline" before including mono-membar.h.
6480           
6481         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
6482           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
6483           MSVC builds.
6484
6485         Contributed under MIT/X11 license.
6486
6487 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
6488
6489         * verify.c (do_invoke_method): Remove return type validation.
6490
6491         * verify.c (do_ret): Do return type validation at return site instead of
6492         call site.
6493
6494 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
6495
6496         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
6497
6498         * verify.c: Some todos cleaned and improved a few error messages.
6499
6500 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
6501
6502         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
6503
6504 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
6505
6506         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
6507         system types correctly.
6508
6509         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
6510         function.
6511
6512 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
6513
6514         * assembly.c (build_assembly_name): Fix a warning.
6515
6516 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
6517
6518         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
6519         the called function takes an object type argument. Fixes storing or
6520         valuetypes across remoting as well as reducing memory usage.
6521         * image.c, metadata-internals.h: remove now unused ldfld_remote and
6522         stfld_remote wrapper caches.
6523
6524 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
6525
6526         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
6527         is not found.
6528
6529         * reflection.c (mono_image_register_token): New helper function to save
6530         a token->object mapping.        
6531
6532         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
6533         managed code.
6534
6535         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
6536         one dimension arrays. Fixes #367670.
6537         (mono_reflection_get_type_internal): Ditto.
6538
6539 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
6540
6541         * marshal.c: mono_load_remote_field_new() always returns object.
6542         so use the proper signature (fixes bug #366445).
6543
6544 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
6545         
6546         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
6547         add an 'inline_failure' flag instead.
6548
6549 2008-03-04  Mark Probst  <mark.probst@gmail.com>
6550
6551         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
6552         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
6553         contains the location of "this", used for exception handling.
6554
6555 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
6556
6557         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
6558         their size on all platforms for perf reasons.
6559
6560 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6561
6562         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
6563         object-internal.h
6564
6565         * object-internal.h: Same.
6566
6567 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6568
6569         * reflection.h: Fix the build I just broke.
6570
6571 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6572
6573         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
6574         Test if a token is valid, this remove explicit usage of 
6575         MonoDynamicImage::tokens from the verifier code.
6576
6577         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
6578
6579         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
6580         instead of direct access to MonoDynamicImage::tokens.
6581
6582 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6583
6584         * verify.c (token_bounds_check): Fix the build I just broke.
6585
6586 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6587
6588         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
6589
6590         * verify.c (verifier_load_method): Fixed the errors message.
6591
6592         * verify.c (mono_method_verify): Fixed a debug message.
6593
6594 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
6595
6596         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
6597         mono-perfcounters.h, class-internals.h: support for predefined
6598         writable counters, query of categories and counters, bugfixes.
6599
6600 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
6601
6602         * verify.c (do_refanytype): Verify the refanytype opcode.
6603
6604         * verify.c (mono_method_verify): Use do_refanytype.
6605
6606 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
6607
6608         * verify.c (do_mkrefany): Verify the mkrefany opcode.
6609
6610         * verify.c (mono_method_verify): Use do_mkrefany.
6611
6612 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
6613
6614         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
6615         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
6616         implementation.
6617
6618 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
6619
6620         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
6621         the type load exception.
6622
6623 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
6624
6625         * verify.c: Added a few FIXME for method signatures
6626
6627         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
6628         of mono_method_get_signature and get vararg call working. Removed unused
6629         checks for return value.
6630
6631         * verify.c (do_refanyval): Verify the refanyval opcode.
6632
6633         * verify.c (mono_method_verify): Implemented verification of arglist and
6634         use do_refanyval.
6635
6636 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
6637
6638         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
6639         vtypes to marshal.c.
6640
6641         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
6642         it works for AOT as well.
6643
6644 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
6645
6646         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
6647         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
6648         the system time is adjusted.
6649
6650 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
6651
6652         * icall.c, icall-def.h: use the new time functions (fixes the
6653         non-monotonic behaviour of TickCount).
6654
6655 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
6656
6657         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
6658         it breaks the build.
6659         
6660         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
6661         cattr is not finished yet.
6662
6663 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
6664
6665         * verify.c: Proper token validation for field, method and type.
6666
6667 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
6668
6669         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
6670
6671         * loader.c (method_from_memberref): Generate type load error instead of method missing
6672         if the type is not found.
6673
6674 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
6675
6676         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
6677         some of the conversions caused the generation of a marshal directive exception.
6678
6679 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
6680
6681         verify.c: Report which exception should be thrown by the JIT.
6682         Added a lot of FIXME notes.
6683
6684 2008-02-22  Mark Probst  <mark.probst@gmail.com>
6685
6686         * generic-sharing.c: Runtime generic context slots are not
6687         instantiated on init anymore.  Instead, provide function to do the
6688         instantiating on demand.
6689
6690         * class-internals.h: Added vtable to runtime generic context.
6691         Macros for encoding direct and indirect slot offsets in one
6692         guint32.
6693
6694 2008-02-21  Mark Probst  <mark.probst@gmail.com>
6695
6696         * object.c, generic-sharing.c: Moved some generic sharing code
6697         from object.c to generic-sharing.c.
6698
6699         * generic-sharing.c: Added support for extensible runtime generic
6700         context.
6701
6702         * metadata-internals.h: Two new hash tables in MonoImage for
6703         extensible runtime generic context support.
6704
6705         * domain.c: Unregister generic vtables upon domain unloading.
6706
6707         * image.c: Destroy new hash tables upon image unloading.
6708
6709         * metadata.c: Unregister generic subclasses upon image unloading.
6710
6711         * class-internals.h: New data structure for runtime generic
6712         context template.  New fields in the runtime generic context for
6713         extensible part.
6714
6715         * Makefile.am: Added generic-sharing.c.
6716
6717 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
6718
6719         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
6720         there is a pending loader exception, raise it.
6721
6722         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
6723         same.
6724
6725         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
6726         same.
6727
6728         Fixes #363450.
6729
6730 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
6731
6732         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
6733
6734         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
6735         
6736         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
6737         ref-only requests for compatibility with MS.
6738
6739 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
6740
6741         * reflection.c (mono_custom_attrs_from_method): Don't silently
6742         return an empty list for generic method instances.
6743         (mono_custom_attrs_from_param): Likewise.
6744
6745 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
6746             Raja R Harinath  <harinath@hurrynot.org>
6747
6748         Fix #354757
6749         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
6750         * class.c (mono_class_inflate_generic_method_full): Initialize it
6751         when a fully-open method is instantiated.
6752         * metadata.c (inflated_method_equal, inflated_method_hash): Update
6753         to new field.
6754         * reflection.c (inflate_mono_method): Don't create a temporary context.
6755
6756 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
6757
6758         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
6759         Compute correct value, to prepare for imethod->reflection_info going away.
6760
6761 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
6762
6763         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
6764
6765 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
6766
6767         * verify.c: Implement skip visibility flag.
6768
6769 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
6770
6771         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
6772         which contains an extra field to tell the kind of exception that should be thrown.
6773
6774         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
6775
6776 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
6777
6778         * loader.c (mono_method_get_param_names): Initialize 'klass' after
6779         'method' is updated.
6780
6781 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
6782
6783         * class.c (mono_class_layout_fields): Set class->min_align for classes using
6784         explicit layout as well. Fixes #360375.
6785
6786 2008-02-11  Geoff Norton  <gnorton@novell.com>
6787
6788         * loader.c: Guard and dereference against inflated generic methods
6789
6790 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
6791
6792         * class.c: Include Retargetable spec in assembly name.
6793         * assembly.c: Always include PublicKeyToken spec in assembly name
6794         (with value "null" if assembly is not signed), and include
6795         Retargetable spec.
6796         * icall-def.h: Added icall for Assembly.get_fullname.
6797         * icall.c: Added icall returning the fullname of an assembly.
6798
6799 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
6800
6801         * class.c (mono_class_setup_vtable_general): Add a missing call to
6802         mono_class_setup_methods () which is needed in the AOT case.
6803
6804 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
6805
6806         * verify.c (mono_type_get_stack_name): Added. Return the name for the
6807         stack type of the given MonoType.
6808
6809         * verify.c (verify_type_compatibility_full): Handle the void type.
6810
6811         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
6812         way stack merging works.
6813
6814         * verify.c (store_local): Improved verification message.
6815
6816         * verify.c (do_branch_op): If the merging is invalid, the method
6817         is unverifiable and not invalid. Improved error message.
6818
6819         * verify.c (merge_stacks): Properly merge a boxed valuetype and
6820         a reference type diferent than System.Object. Improved error
6821         message.
6822
6823 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
6824
6825         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
6826
6827         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
6828         type of an enum even if the argument is byref.
6829
6830         * verify.c: Replace all explicit uses of enumtype and enum_basetype
6831         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
6832
6833         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
6834
6835         *verify.c (verify_type_compatibility_full): Make enum types
6836         compatible with their base types.
6837
6838         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
6839         types are compatible for the special case of a boxed valuetype and
6840         System.Object.
6841
6842         * verify.c (verify_stack_type_compatibility): The function
6843         is_compatible_boxed_valuetype was extracted from here.
6844
6845         * verify.c (push_arg): Only set ctx->has_this_store if the method
6846         is not static.
6847
6848         * verify.c (do_ldelem): Fixed a typo in an error message and added
6849         strict check for mixing int32 and native int as the array type
6850         and ldelem type.
6851
6852         * verify.c (merge_stacks): Consider boxed valuetypes in the
6853         compatibility checks.
6854
6855 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
6856         * profiler.h: (MonoGCEvent): Added start-stop the world events.
6857
6858 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
6859         *class.c: use_new_interface_vtable_code: renamed the env var to have
6860         a "MONO_" prefix, and fix the logic to enable it by default.
6861
6862 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
6863         *class.c:
6864         mono_class_setup_vtable_general: rewrote the way in which interface
6865         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
6866         makes the code more maintainable.
6867         For now the old code is still there, and can be activated setting
6868         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
6869
6870 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
6871
6872         * verify.c: guarded some debug functions around and #ifdef.
6873
6874         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
6875
6876 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
6877
6878         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
6879         changes for now since they seem to break too many things.
6880
6881 2008-02-05  Mark Probst  <mark.probst@gmail.com>
6882
6883         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
6884         mono_marshal_find_nonzero_bit_offset): Added macro and function
6885         for finding the byte- and bit-offset of a bitfield within a
6886         struct.
6887
6888 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
6889
6890         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
6891         (mono_marshal_get_struct_to_ptr): Ditto.
6892
6893         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
6894         cctor_signature.
6895
6896 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
6897
6898         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
6899         between methods for non-corlib types.
6900
6901 2008-02-02  Geoff Norton  <gnorton@novell.com>
6902
6903         * loader.c (mono_method_get_param_names): Populate the parameter name for 
6904         generic parameters as well. (Fixes #342536)
6905
6906 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
6907
6908         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
6909
6910         * verify.c (do_invoke_method): Fix for calling with byref structs.
6911
6912         * verify.c (do_cast): push a boxed value type based on the type token and not
6913         the type of stack.
6914
6915 2008-01-31  William Holmes  <billholmes54@gmail.com>
6916
6917         * process.c (process_module_string_read): Check the size returned form 
6918           VerQueryValue to avoid out of memory exception. 
6919
6920 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
6921
6922         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
6923         Handle properly modules which are not in the moduleref table. Fixes
6924         #356938.
6925
6926 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
6927
6928         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
6929         the dynamic case which is now in managed code.
6930         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
6931
6932         * marshal.c (mono_string_to_bstr): Fix a warning.
6933         (init_com_provider_ms): Ditto.
6934
6935         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
6936
6937         * exception.c (mono_get_exception_out_of_memory): New helper function.
6938
6939 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
6940
6941         * marshal.c: Add support for BSTR marshalling
6942         using other COM systems.
6943
6944         Code is contributed under MIT/X11 license.
6945
6946 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
6947
6948         * object.c (mono_runtime_invoke_array): reverted previous
6949         commit as it breaks the build.
6950
6951 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
6952
6953         * object.c (mono_runtime_invoke_array): Verify arguments for
6954         invalid types. Fixes #348522.
6955
6956 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
6957
6958         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
6959         non-final virtual calls using call. 
6960
6961         * verify.c (do_invoke): fixed some TODOs.
6962
6963         * verify.c (push_arg): set has_this_store for "ldarga 0".
6964
6965 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
6966
6967         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
6968         which belong to an inflated class. Fixes #356531.
6969
6970 2008-01-26  Robert Jordan  <robertj@gmx.net>
6971
6972         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
6973         which resort to FindFirstFile when a certain error condition
6974         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
6975         Code is contributed under MIT/X11 license.
6976
6977 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
6978
6979         * marshal.c (emit_marshal_string): Fix out string marshalling
6980         to use specified encoding. Fixes #323900.
6981
6982         Code is contributed under MIT/X11 license.
6983
6984 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
6985
6986         * class.c (mono_class_inflate_generic_method_full): Don't modify
6987         iresult->context after cache check.
6988
6989 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
6990
6991         * class.c (mono_class_inflate_generic_method_full): Change the
6992         struct assignments to memcpy for better visibility and add some comments.
6993
6994 2008-01-23  Dick Porter  <dick@ximian.com>
6995
6996         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
6997         procedure, and make it work on windows.
6998
6999 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
7000
7001         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
7002         a MonoReflectionTypeBuilder since it is always of that type.
7003
7004         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
7005
7006         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
7007
7008         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
7009         
7010         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
7011
7012         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
7013
7014         * reflection.c (mono_reflection_create_runtime_class): Remove already created
7015         instantiations from the type cache.
7016
7017 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7018
7019         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
7020
7021         * verify.c (do_unbox_value): push a controled mutability managed pointer.
7022
7023 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7024
7025         * verify.c (do_ldstr): added, verifies if the #US token is valid.
7026
7027         * verify.c (mono_method_verify): removed old TODO
7028
7029 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7030
7031         * verify.c (do_newobj): add visibility check.
7032
7033 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7034
7035         * verify.c (do_load_function_ptr): add visibility check.
7036
7037 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
7038         *class.c:
7039         mono_generic_class_get_class: hook profiler events.
7040         mono_field_get_offset: added to support heap-shot in the new profiler.
7041         *class.h: exported mono_field_get_offset.
7042         * reflection.c:
7043         mono_reflection_setup_internal_class: hook profiler events.
7044
7045 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
7046
7047         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
7048         argument here too and use it to avoid checking for pending exceptions if 
7049         possible.
7050
7051 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
7052
7053         * assembly.c (build_assembly_name): add arg for passing the assembly
7054         flags. Do not consider a PublicKey with value "null" valid.
7055         (mono_assembly_name_parse_full): added boolean argument that will be
7056         set if the assembly name contains a PublicKeyToken spec. Added support
7057         for the Retargetable spec for which only Yes or No are allowed as valid
7058         value. Consider assembly name invalid if Retargetable spec is set, but
7059         either version, culture or public key (token) are not specified.
7060         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
7061         with implementation in assembly.c.
7062         * icall.c (fill_reflection_assembly_name): also copy assembly flags
7063         from MonoAssemblyName.
7064         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
7065         introduced argument for mono_assembly_name_parse_full to know if the
7066         assembly name has a PublicKeyToken spec, and if it has instruct
7067         fill_reflection_assembly_name to use default value for keyToken (if
7068         PublicKeyToken is null).
7069
7070 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
7071
7072         * verify.c (mono_method_verify): fixed ovf ops with
7073         float values. They are unverifiable now.
7074
7075 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
7076
7077         * class.c (set_failure_from_loader_error): add BadImageException to the
7078         list of exceptions that can cause a type to fail to load.
7079
7080         * class.c (mono_class_get_exception_for_failure): same.
7081
7082 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
7083
7084         * verify.c (in_any_exception_block): added, check if offset
7085         is part of any exception handling clause.
7086
7087         * verify.c (get_stack_type): added VAR and MVAR types.
7088
7089         * verify.c (do_stobj): better error messages.
7090
7091         * verify.c (do_cpobj): added, check cpobj.
7092
7093         * verify.c (do_initobj): added, check initobj.
7094
7095         * verify.c (do_sizeof): added, check sizeof.
7096
7097         * verify.c (do_localloc): added, check localloc.
7098
7099         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
7100
7101 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
7102
7103         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
7104         save_lmf/restore_lmf opcodes.
7105
7106         * threads.c (mono_threads_install_notify_pending_exc): New function to
7107         install a callback notifying the JIT there is a pending exception on a thread.
7108         (mono_thread_request_interruption): Call the new callback.
7109         (mono_thread_get_and_clear_pending_exception): New function to return the
7110         exception pending on a thread.
7111
7112         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
7113         to turn off checking for pending exceptions.
7114         (mono_marshal_get_native_wrapper): Ditto.
7115
7116 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
7117
7118         * threads-types.h: Get rid of the unnecessary extern declarations.
7119
7120 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
7121
7122         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
7123         return field from parent class if not private.
7124         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
7125         returns fields from parent class if they are not private.
7126         (method_nonpublic): added function to determine if a given method
7127         should be considered non-public. Returns false for private methods
7128         on parent class, and internal methods from parent on the 1.0 profile.
7129         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
7130         use method_nonpublic function to determine whether method should be
7131         returned.
7132         (property_accessor_public): use newly introduced method_nonpublic
7133         function to determine whether accessor is non-public. 
7134         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
7135         event from parent class if not private. Only return static event if
7136         Static flag is set, and only return static event from parent class if
7137         FlattenHierarchy flag is set.
7138         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
7139         include non-private events from parent class.
7140
7141 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
7142
7143         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
7144         warning.
7145
7146 2008-01-16  Wade Berrier <wberrier@novell.com>
7147
7148         * security.c: Add assembly.h header to appease some warnings
7149
7150 2008-01-16  Dick Porter  <dick@ximian.com>
7151
7152         * process.c (process_module_string_read): Remove trailing null
7153         when saving string.
7154
7155 2008-01-16  Mark Probst  <mark.probst@gmail.com>
7156
7157         * class-internals.h: A new data structure describing the layout of
7158         a runtime generic context (MonoRuntimeGenericContextTemplate).
7159
7160         * metadata-internals.h: Added a hash table to MonoDomain that maps
7161         from open generic classes to their runtime generic context
7162         templates.
7163
7164         * object.c: Building of the runtime generic context, including
7165         proper handling of generic type arguments of superclasses.
7166         Building of the runtime generic context according to the template.
7167
7168 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
7169
7170         * class.c (mono_class_setup_fields): Set field.count for generic instances.
7171         Fixes #350856.
7172
7173         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
7174         mono_portability_find_file (). Fixes #325466.
7175         (mono_image_get_public_key): Fix a warning.
7176
7177 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
7178
7179         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
7180         Fixes #353550.
7181         (mono_class_from_name_case): Ditto.
7182
7183 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
7184
7185         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
7186           common storage for the tables used in the System/NumberFormatter class.
7187
7188 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
7189
7190         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
7191
7192 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
7193
7194         * verify.c (get_boxable_mono_type): check if the token is valid.
7195
7196         * verify.c (set_stack_value): changed to add an error if an
7197         invalid type is set on stack. Changed all callers due to signature change.
7198
7199         * verify.c (do_stobj): implement stobj validation.
7200
7201 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
7202
7203         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
7204         set container->is_method, it was set earlier.
7205
7206         * metadata.c (type_in_image): Handle MVARs which belong to not finished
7207         generic methods.
7208
7209         * reflection.c (mono_reflection_initialize_generic_parameter): Set
7210         is_method of the generic container to TRUE for methods.
7211
7212 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
7213
7214         * metadata.c (type_in_image): Handle type parameters properly.
7215
7216         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
7217         memory ownership of this structure.
7218
7219 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
7220
7221         * verify.c (get_boxable_mono_type): make typedref types been just
7222         unverifiable. check for void type.
7223
7224         * verify.c (do_unbox_any): added, verify opcode unbox.any.
7225
7226         * verify.c (do_load_function_ptr): accept method spec tokens.
7227
7228 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
7229
7230         * marshal.c (mono_class_native_size): Always set *align even if this is called
7231         recursively.
7232
7233 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
7234
7235         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
7236         out-of-date.
7237
7238 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
7239
7240         * verify.c: removed some old unused tables. A huge bunch of small fixes
7241         to things found while testing the verifier with mono basic.
7242
7243         * verify.c (dump_stack_value): dump null literal flag to.
7244
7245         * verify.c (verify_type_compatibility_full): fix comparison
7246         for types that have a generic super type.
7247
7248         * verify.c (verify_stack_type_compatibility): fix compatibility
7249         between null literals and reference types. fix compatibility between
7250         boxed valuetypes and object. fix corner case test for enums.
7251
7252         * verify.c (do_cmp_op): proper verification of cgt.un in case
7253         of reference types.
7254
7255         * verify.c (do_invoke_method): fix error message.
7256
7257         * verify.c (do_store_indirect
7258
7259         * verify.c (check_is_valid_type_for_field_ops): proper verification
7260         of managed pointers to valuetypes and boxed valuetypes. proper verification
7261         of null literals.
7262
7263         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
7264         allow token to be a reference type.
7265
7266         * verify.c (do_cast): proper handling of boxes valuetypes.
7267
7268         * verify.c (do_stelem): proper handling of storing a boxed valuetype
7269         in object[].
7270
7271         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
7272         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
7273         fixed the decoding of unbox_any
7274
7275 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
7276
7277         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
7278
7279 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
7280
7281         * verify.c (do_newobj): do delegate verification.
7282
7283         * verify.c (verify_delegate_compatibility): perform delegate
7284         verification.
7285
7286         * verify.c (verify_ldftn_delegate): perform tests related to
7287         ldftn delegates.
7288
7289         * verify.c (mono_delegate_signature_equal): perform the
7290         slightly diferent signature comparison required by delegates.
7291
7292         * metadata.c (mono_metadata_type_equal_full): added and exported
7293         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
7294         allows signature only comparison.
7295
7296         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
7297         as MONO_INTERNAL.
7298
7299 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
7300
7301         * verify.c: added a bunch of stack_slot_* functions to
7302         make access to stack slot type easier. This is required to
7303         allow optional flags, like null literal, boxed value and
7304         this pointer.
7305         All access paths to IlStackDesc::stype have been changed 
7306         to use these new funcions.
7307         Removed a bunch of unused functions and cleared all warnings.
7308         This patch introduces the usage of the this pointer and 
7309         boxed value flags.
7310
7311 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
7312
7313         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
7314
7315 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
7316
7317         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
7318         match managed version.
7319
7320         * appdomain.c: Bump corlib version.
7321         
7322         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
7323         argument.
7324
7325 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
7326
7327         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
7328         Set public key token to zero-length byte array if assembly is not
7329         strongnamed.
7330
7331 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
7332
7333         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
7334         writing a vtype array elem.
7335
7336 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
7337
7338         * assembly.c (build_assembly_name): return FALSE if length of token is
7339         not 16 (if not "null").
7340         (mono_assembly_name_parse_full): return FALSE if value of version,
7341         culture, token or key is 0.
7342         * icall.c (fill_reflection_assembly_name): add boolean arguments to
7343         specify whether public key and public key token must be set to default
7344         value (zero-length byte array) if not available. Set versioncompat to
7345         SameMachine. If public key is available or the default is set, then
7346         set PublicKey flag.
7347         (ves_icall_System_Reflection_Assembly_FillName): if no public key
7348         is available, use empty byte array as default value. On the 2.0
7349         profile, use default value for public key token if not set.
7350         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
7351         profile, use default value for public key if not set. On the 2.0
7352         profile, use default value for public key token if not set.
7353         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
7354         default values for public key and public key token.
7355
7356 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
7357
7358         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
7359         field to keep it in synch with the managed object.
7360
7361         * marshal.c (emit_marshal_object): Add support for byref marshalling of
7362         delegates. Fixes #351520.
7363
7364         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
7365         contains defined memory.
7366         
7367         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
7368
7369         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
7370         
7371         * sgen-gc.c (check_consistency): New helper function to do a consistency check
7372         of the GC data structures.
7373
7374         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
7375
7376         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
7377         
7378         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
7379         barrier.
7380         (mono_array_clone_in_domain): Ditto.
7381         (mono_array_clone_in_domain): Ditto.
7382
7383         * threads.c (start_wrapper): Register the thread start argument as a GC root.
7384         (cache_culture): Use a write barrier.
7385
7386         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
7387         (ves_icall_get_property_info): Ditto.
7388
7389         * object.h (MONO_STRUCT_SETREF): New macro.
7390
7391         * class-internals.h (MonoStats): Add some GC statistics.
7392
7393         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
7394
7395 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
7396
7397         * exception.c (mono_exception_from_name_two_strings):
7398         Break from loop after method is found.
7399
7400 2008-01-04  Dick Porter  <dick@ximian.com>
7401
7402         * process.c (process_module_string_read): Rename variable to
7403         reflect correct usage, after fixing bug 345972.
7404
7405 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
7406
7407         * verify.c (mono_type_create_fnptr_from_mono_method): 
7408         created a MonoType function pointer instance to be used during
7409         verification. The verifier releases this memory at end.
7410
7411         * verify.c (mono_method_is_constructor): extracted repeated
7412         checks for constructor into a single class.
7413
7414         * verify.c (do_push_field): use new extracted method
7415         for constructor check.
7416
7417         * verify.c (do_newobj): same.
7418
7419         * verify.c (do_ldftn): renamed to do_load_function_ptr
7420         and make it verify ldvirtftn too.
7421
7422         * verify.c (mono_method_verify: proper verification
7423         of ldvirtftn. release created MonoMethod instances.
7424
7425 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
7426
7427         * verify.c (token_bounds_check): added.
7428
7429         * verify.c (do_ldftn): added.
7430
7431         * verify.c (mono_method_verify): proper verificartion of ldftn.
7432
7433 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
7434
7435         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
7436         than the table row count. It's the resposibility of the caller to
7437         make the bounds check and raise the correct error.
7438
7439         * metadata.c (mono_metadata_decode_row_col): Same.
7440
7441         * loader.c (mono_get_method_from_token): perform bounds check
7442         on token for methoddef table.
7443
7444 2007-12-29  Miguel de Icaza  <miguel@novell.com>
7445
7446         * icall.c
7447         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
7448         assert into a negative result, the managed code already coped with
7449         that.
7450
7451         Some folks on Windows reported this error. 
7452
7453 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
7454
7455         * appdomain.c: Bump corlib version.
7456         * icall.c:
7457         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
7458         CultureInfo.CreateCulture to create CultureInfo for name.
7459         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
7460         create CultureInfo for name. Fixes bug #347174.
7461
7462 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
7463
7464         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
7465         flags.
7466
7467         * verify.c (is_valid_branch_instruction): allow branching to the
7468         first instruction of the protected block.
7469
7470         * verify.c (is_valid_cmp_branch_instruction): same.
7471
7472         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
7473         avoid double initialization.
7474
7475         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
7476         detect which cases the eval stack should just be copied.
7477
7478         * verify.c (mono_method_verify): check if the eval stack
7479         is empty when entering a protected block.
7480
7481 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
7482
7483         * verify.c: added is_clause_in_range, is_clause_inside_range,
7484         is_clause_nested and verify_clause_relationship. They perform
7485         the verifications stated in P1 12.4.2.7.
7486
7487         * verify.c (mono_method_verify): remove some unused variables,
7488         add the new exception clause checks, add instruction border
7489         checks for protected block start/end, improved some error 
7490         messages and fixed a bug in the way invalid instruction access
7491         is detected.
7492
7493 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
7494
7495         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
7496         from GC 7.0 if available.
7497
7498         * object.c: Remove an unused define.
7499         
7500         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
7501
7502         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
7503
7504         * null-gc.c (mono_gc_make_descr_for_array): Implement.
7505
7506         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
7507
7508         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
7509         to take the same arguments as the other make_descr functions.
7510
7511         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
7512
7513         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
7514         directly.
7515
7516         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
7517         mini.c.
7518
7519         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
7520         call to boehm-gc.c.
7521
7522         * boehm-gc.c (mono_gc_register_root): Fix a warning.
7523
7524         * null-gc.c (mono_gc_register_root): Fix a warning.
7525
7526         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
7527
7528         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
7529         (mono_gc_base_init): Call GC_init ().
7530
7531         * null-gc.c: Define mono_gc_register_root () as a no-op.
7532
7533         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
7534
7535 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
7536
7537         * verify.c: add prototype for merge_stacks at top
7538
7539         * verify.c (do_switch): added.
7540
7541         * verify.c (merge_stacks): on some cases the stack merging
7542         was not happening properly. Unequal stack sizes at merge
7543         points should be invalid.
7544
7545         * verify.c (mono_method_verify): added more debug info on stack state.
7546         verify switch properly.
7547
7548 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
7549
7550         * method-builder.h: New file, moved the mono_mb_ declarations here from 
7551         marshal.h.
7552
7553         * boehm-gc.c marshal.c: Include method-builder.h.
7554
7555         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
7556
7557         * marshal.c: Remove some code which is now in method-builder.c.
7558
7559 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
7560
7561         * method-builder.c: New file, extraction of the method builder functionality 
7562         from marshal.c.
7563
7564         * marshal.c: Move the mb functions into method-builder.c.
7565
7566         * marshal.h marshal.c: Export some mono_mb_... functions.
7567
7568         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
7569
7570         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
7571         the caller.
7572
7573         * class.c (mono_class_get_full): Check the token type in the dynamic case.
7574
7575         * loader.c (mono_field_from_token): Ditto.      
7576
7577         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
7578         type as well.
7579         
7580         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
7581         Fixes #342565.
7582
7583         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
7584         a helper function for setting it.
7585
7586         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
7587
7588         
7589         * assembly.c: Significally simplify code now that referenced assemblies are 
7590         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
7591
7592         * threads.h: Don't include  the internal threads-types.h header file. Fixes
7593         #349952.
7594
7595 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
7596
7597         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
7598         instructions that were target of branches or are at protected block boundaries.
7599
7600         * verify.c (in_same_block): handle filter clauses.
7601
7602         * verify.c (is_valid_branch_instruction): added. checks the target of
7603         instructions br or brtrue/false.
7604
7605         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
7606         binary branch instructions such as beq and bge.
7607
7608         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
7609         and made it pin the instruction as been part of the exception block.
7610
7611         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
7612         of in_same_block.
7613
7614         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
7615         of in_same_block.
7616
7617         * verify.c (do_ret): ret from a protected block is unverifiable and
7618         not invalid.
7619
7620         * verify.c (do_static_branch): verify br and br.s instructions.
7621
7622         * verify.c (merge_stacks): add extra param to support detection
7623         of branches in the middle of instructions.
7624         
7625         * verify.c (mono_method_verify): verify branches and exception blocks
7626         that target the middle of instructions. Proper verification of br and br.s.
7627
7628 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
7629
7630         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
7631         skip_visibility field.
7632         (reflection_methodbuilder_from_dynamic_method): Ditto.
7633
7634         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
7635         registrations. Fixes #348193.
7636
7637         * threads.h: Move the internal mono_thread_get_pending_exception () to
7638         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
7639
7640 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
7641
7642         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
7643         icall registration. Fixes #348193.
7644
7645         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
7646         for corlib classes into object. Fixes #349621.
7647
7648 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
7649
7650         * icall.c (property_accessor_nonpublic): new function to determine
7651         whether an accessor allows a property to be considered non-public.
7652         Returns false for private accessor(s) from parent class, and internal
7653         accessor(s) from parent on 2.0 profile (and higher).
7654         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
7655         to determine whether property should be included if NonPublic flag
7656         is set. Fixes bug #349078.
7657
7658 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
7659
7660         * verify.c (init_stack_with_value): added.
7661
7662         * verify.c (mono_method_verify): extracted common
7663         code for exception initialization into init_stack_with_value.
7664
7665         * verify.c (mono_method_verify): initialize the exception
7666         for handler clauses as well.
7667
7668         * verify.c (mono_method_verify): fix the exception clause
7669         ordering rules, it should use handler end offset and not
7670         start offset.
7671
7672 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
7673
7674         * rawbuffer.c: remove useless warning.
7675
7676 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
7677
7678         * threads.h, threads-types.h: move functions to the correct header
7679         (fixes bug#349952).
7680
7681 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
7682
7683         * verify.c (mono_method_verify): proper verification
7684         of exception handling clauses ranges and fallthru in
7685         and out of protected blocks.
7686
7687 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
7688
7689         * verify.c (mono_method_verify): fixed compilation issue.
7690
7691 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
7692
7693         * verify.c (mono_method_verify): a printf slipped in, changed
7694         to use verifier debug macro.
7695
7696 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
7697
7698         * verify.c (is_correct_leave): check for filter clauses.
7699
7700         * verify.c (do_filter): added.
7701
7702         * verify.c (mono_method_verify): property verification of leave.
7703
7704
7705 2007-12-18  Mark Probst  <mark.probst@gmail.com>
7706
7707         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
7708         Win32 build, until we figure out how to do the proper thing on
7709         Win32.
7710
7711 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
7712
7713         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
7714         by the previous patch.
7715         
7716         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
7717         the assembly resolve handler for refonly assemblies.
7718
7719 2007-12-17  Mark Probst  <mark.probst@gmail.com>
7720
7721         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
7722         Make sure only one thread is allowed to commence shutdown, and
7723         don't allow new threads to be started once shutdown is in
7724         progress.
7725
7726 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
7727
7728         * verify.c (is_correct_endfilter): added.
7729
7730         * verify.c (is_unverifiable_endfilter): added.
7731
7732         * verify.c (do_endfilter): added.
7733
7734         * verify.c (mono_method_verify): property verification of endfilter
7735         and fixed a corner case or endfinally.
7736
7737 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
7738
7739         * verify.h: new flags to support fail fast of unverifiable code and
7740         do non-strict verification. Non-strict verification is required to
7741         have MS runtime compatibility. There are a huge amount of unverifiable
7742         code that it accepts as verifiable. The strict mode verifies the code
7743         as the specs says.
7744         Non-strict mode will be required in cases where code needs to be
7745         accepted as verifiable but fails under strict mode.
7746
7747         * pedump.c: added support to fail fast and non-strict verification.
7748
7749         * verify.c: added support for both fail fast and non-strict verification.
7750
7751 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
7752
7753         * verify.c (is_correct_endfinally): added.
7754
7755         * verify.c (mono_method_verify): property verification of endfinally.
7756
7757 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
7758
7759         * verify.c (in_any_block): check for filter clauses.
7760
7761         * verify.c (is_correct_rethrow): added.
7762
7763         * verify.c (mono_method_verify): property verification of rethrow.
7764
7765         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
7766
7767 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
7768
7769         * verify.c (do_throw): added.
7770
7771         * verify.c (mono_method_verify): property verification of throw
7772
7773 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
7774
7775         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
7776         assemblies. Fixes #346425.
7777
7778 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
7779
7780         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
7781         FieldBuilders.
7782
7783         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
7784
7785         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
7786         prevent asserts when this is called with a token which might not be valid.
7787
7788         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
7789         lookup_dynamic_token_class with valid_token == FALSE.
7790
7791         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
7792
7793         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
7794
7795         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
7796         
7797 2007-12-10  Mark Probst  <mark.probst@gmail.com>
7798
7799         * gc.c: Don't delay threadpool thread finalization unless Mono is
7800         shutting down.
7801
7802 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
7803
7804         * threads.c: turn an assert into a non-fatal warning.
7805
7806 2007-12-09  Robert Jordan  <robertj@gmx.net>
7807
7808         * icall.c (GetVirtualMethod): Add missing argument validation.
7809
7810 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
7811
7812         * verify.c (do_cast): added.
7813
7814         * verify.c (mono_method_verify): property verification of castclass and isinst.
7815
7816
7817 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
7818
7819         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
7820
7821         * verify.c (do_stelem): added.
7822
7823         * verify.c (mono_method_verify): property verification of stelem.X.
7824
7825 2007-12-07  Mark Probst  <mark.probst@gmail.com>
7826
7827         * class.c, class-internals.h: Introduce an environment variable
7828         (MONO_GENERIC_SHARING) through which the extent of generic code
7829         sharing can be controlled (share all classes, share only corlib
7830         classes, or share nothing).
7831
7832         * object.c: Only create runtime generic context for classes for
7833         which sharing is enabled.
7834
7835 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
7836
7837         * verify.c (do_ldelem): refactor it to work with ldelem.any.
7838
7839         * verify.c (mono_method_verify): property verification of ldelem.any.
7840
7841 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
7842
7843         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
7844         added ldelem.X opcodes.
7845
7846         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
7847
7848         * verify.c: proper verification of ldelem.X 
7849
7850 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
7851
7852         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
7853
7854 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
7855
7856         * verify.c (mono_method_verify): null literal requires special handling,
7857         the value pushed on stack need to be flagged as so.
7858
7859         * verify.c (do_ldelema): Verify ldelema properly.
7860
7861 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
7862
7863         * verify.c: Verify ldlen properly.
7864
7865 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
7866
7867         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
7868         to the target object's type. Fixes #346160.
7869
7870 2007-12-05  Dick Porter  <dick@ximian.com>
7871
7872         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
7873         Solaris needs the same workaround as BSD-derived systems.  Fixes
7874         bug 323524, patch by Burkhard Linke
7875         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
7876
7877 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
7878
7879         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
7880         handle to use when error dialog is shown; otherwise, update mask
7881         to show no error dialog when an error occurs.
7882
7883 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
7884
7885         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
7886
7887         * class.c (mono_class_get_field_default_value): New helper function to initialize
7888         field->def_type and field->data.
7889
7890 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
7891
7892         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
7893         the general one.
7894
7895         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
7896
7897         * marshal.c: Avoid depending on delegate->method_info being set.
7898
7899         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
7900         
7901         * object.c (mono_delegate_ctor): Set delegate->method.
7902
7903         * object-internals.h (struct _MonoDelegate): Add 'method' field.
7904
7905         * appdomain.c: Bump corlib version.
7906
7907 2007-11-27  Raja R Harinath  <harinath@gmail.com>
7908
7909         * metadata.c (mono_generic_inst_equal_full): Short-circuit
7910         equality check if we're comparing canonicalized MonoGenericInsts.
7911
7912 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
7913
7914         * class.c (generic_array_methods): Call mono_class_setup_methods () before
7915         accessing class->methods.
7916
7917 2007-11-22  Dick Porter  <dick@ximian.com>
7918
7919         * threads.c: Ensure that the synch_cs is set before trying to use
7920         it.
7921
7922 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
7923
7924         * profiler.c: r89126 broke the statistial profiler, unbreak.
7925
7926 2007-11-22  Martin Baulig  <martin@ximian.com>
7927
7928         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
7929
7930         * mono-debug.c
7931         (mono_debug_debugger_version): Bump to 3.
7932         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
7933         -> mono_debugger_class_initialized().
7934
7935         * mono-debug-debugger.c
7936         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
7937
7938         * class.c
7939         (mono_debugger_start_class_init_func): Removed.
7940         (mono_debugger_class_loaded_methods_func): Added.
7941         (mono_class_setup_methods): Call it here.
7942
7943 2007-11-22  Martin Baulig  <martin@ximian.com>
7944
7945         * mono-debug.c
7946         (mono_debug_add_delegate_trampoline): New public method.
7947         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
7948
7949         * mono-debug.h
7950         (MonoSymbolTable): Added `global_data_table'.
7951         (MonoDebuggerTypeKind): Removed.
7952
7953 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
7954
7955         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
7956         these methods.
7957
7958         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7959         
7960 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
7961
7962         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
7963
7964 2007-11-20  Martin Baulig  <martin@ximian.com>
7965
7966         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
7967
7968         * mono-debug-debugger.c
7969         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
7970         (mono_debugger_remove_breakpoint): Likewise.
7971         (mono_debugger_check_breakpoints): Likewise.
7972         (mono_debugger_register_class_init_callback): New public method.
7973         (mono_debugger_remove_class_init_callback): Likewise.
7974         (mono_debugger_add_type): Likewise.
7975
7976         * mono-debug-debugger.h
7977         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
7978
7979 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
7980
7981         * class.c: more interface implementations needed for the
7982         array enumerator (fixes bug #341112).
7983
7984 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
7985
7986         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
7987         fix ParamName of ArgumentNullExceptions.
7988
7989 2007-11-17  Miguel de Icaza  <miguel@novell.com>
7990
7991         * reflection.c (mono_reflection_encode_sighelper): Generate the
7992         modopts and modreqs.   I have a useless test that crashes monodis,
7993         but that shows the code working.
7994
7995 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
7996
7997         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
7998         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
7999
8000 2007-11-15  Dick Porter  <dick@ximian.com>
8001
8002         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
8003         When joining a thread, it's the thread that's calling Join that
8004         gets WaitSleepJoin state not the target.  Fixes the standalone
8005         test case in bug 334740, and hopefully the whole bug too.
8006
8007 2007-11-15  Dick Porter  <dick@ximian.com>
8008
8009         * process.c: Read file version info from the files pointed at by
8010         process modules, not the current process.  Fixes bug 315969.
8011
8012         Use windows typedef names in some places to fix warnings on the
8013         windows build.
8014
8015 2007-11-15  Mark Probst  <mark.probst@gmail.com>
8016
8017         * image.c, metadata-internals.h: Added a generic_class_cache hash
8018         to MonoImage for looking up generic classes when sharing generics.
8019
8020 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8021
8022         * sgen-gc.c: warning cleanups.
8023
8024 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
8025
8026         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
8027         inherited properties.
8028
8029 2007-11-14  Mark Probst  <mark.probst@gmail.com>
8030
8031         * object.c, class-internals.h: Added more information to the
8032         runtime generic context.
8033
8034 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
8035
8036         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
8037         instead of just the target method. Generalize the abstract method handling to
8038         handle any non-static method.
8039
8040         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
8041         mono_marshal_get_delegate_invoke () signature change.
8042
8043 2007-11-13  Mark Probst  <mark.probst@gmail.com>
8044
8045         * class.c, class-internals.h: Made
8046         mono_type_get_basic_type_from_generic () public.  Fixed member
8047         access check for shared generics.
8048
8049         * loader.c: Don't insert field into field cache if it's part of a
8050         non-inflated generic class.
8051
8052         * domain.c, domain-internals.h: The generic sharing context is now
8053         part of the jit info data structure.  Added two accessor
8054         functions.
8055
8056 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
8057
8058         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
8059         the array Get/Set/Address methods, since the JIT inlines them.
8060
8061         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
8062
8063         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
8064         (mono_image_init): Initialize runtime_invoke_direct_cache.      
8065
8066         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
8067         mono_marshal_get_delegate_invoke signature change.
8068
8069         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
8070         an additional argument. Add support for invoking abstract methods.
8071
8072         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
8073
8074         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
8075
8076 2007-11-09  Mark Probst  <mark.probst@gmail.com>
8077
8078         * class.c: Do field layout for open generic classes as well.
8079
8080 2007-11-09  Mark Probst  <mark.probst@gmail.com>
8081
8082         * gc.c, gc-internal.h: Don't finalize threadpool threads with
8083         other objects, because the threadpool is still around.  Put them
8084         in a list instead and after finalizing all other objects in the
8085         root domain shut down the thread pool and then finalize the
8086         threads.  Fixes bug #337383.
8087
8088         * threads.c, thread-types.h: New mono_thread_create_internal()
8089         function for marking a thread with the threadpool flag before it
8090         started.  Set synch_cs to NULL after freeing it.
8091
8092         * threadpool.c: Mark threadpool threads before they start.
8093
8094 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
8095
8096         * reflection.h, reflection.c: don't export random functions
8097         and lazy load dbnull and missing objects.
8098
8099 2007-11-07  Jonathan Chambers <joncham@gmail.com>
8100
8101         * class.c: Initialize COM types if COM interfaces
8102         are present (not just COM classes).
8103         
8104         Code is contributed under MIT/X11 license.
8105
8106 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
8107         * reflection.c:
8108         create_dynamic_mono_image: hook module profiler events (dynamic case).
8109         mono_image_basic_init: hook assembly profiler events (dynamic case).
8110
8111 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
8112         * profiler.c:
8113         simple_appdomain_unload: completely terminate the profiler
8114         instead of only processing the statistical samples.
8115         simple_shutdown: make sure this is really called exactly once,
8116         even in multithreaded applications, and always listen to
8117         appdomain events.
8118         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
8119         here, the "[un]load" functions will do it.
8120         Fixes bugs #333791 and #325261.
8121
8122 2007-11-07  Geoff Norton  <gnorton@novell.com>
8123
8124         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
8125         rather than depend on __APPLE__.
8126
8127 2007-11-07  Mark Probst  <mark.probst@gmail.com>
8128
8129         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
8130
8131 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
8132
8133         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
8134         UTF16 MonoString. Fix the crash from bug #335488
8135
8136 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
8137
8138         * marshal.c: Correct (for non-Win32 OS) length != size in 
8139         mono_string_from_bstr. Fix #339530.
8140
8141 2007-11-06  Geoff Norton  <gnorton@novell.com>
8142
8143         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
8144         to succeed
8145
8146 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
8147
8148         * process.c: Added run-time GetProcessId API detection for Windows.
8149
8150 2007-11-04  Miguel de Icaza  <miguel@novell.com>
8151
8152         * reflection.c  (mono_param_get_objects): If a parameter has the
8153         attribute [System.Runtime.InteropServices.Optional] we should
8154         set the DefaultValue of the ParameterInfo to be
8155         System.Reflection.Missing instead of DBNull.
8156
8157         See bug #339013.
8158
8159         (mono_get_reflection_missing_object): New method,
8160         returns the System.Reflection.Missing.Value singleton instance.
8161
8162 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
8163
8164         * culture-info-table.h : regenerated.
8165
8166 2007-11-02  Jonathan Chambers <joncham@gmail.com>
8167
8168         * icall.c: Use GetEnvironmentStrings on windows
8169         so we are using the same environment block as 
8170         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
8171         #333740.
8172         
8173         Code is contributed under MIT/X11 license.
8174
8175 2007-10-31  Martin Baulig  <martin@ximian.com>
8176
8177         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
8178
8179         * mono-debug-debugger.h
8180         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
8181
8182 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
8183
8184         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
8185         classes.
8186
8187 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
8188
8189         * culture-info-table.h : regenerated.
8190
8191 2007-10-30  Robert Jordan  <robertj@gmx.net>
8192
8193         * icall-def.h, icall.c:
8194         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
8195
8196         Code is contributed under MIT/X11 license.
8197
8198 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
8199
8200         * class.c (mono_class_setup_vtable): Find the inflated methods in the
8201         inflated class instead of inflating them again.
8202         
8203         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
8204         dynamic case.
8205
8206         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
8207         Call setup_supertypes () after klass->parent is set.
8208         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
8209
8210         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
8211         for inflated instances of not yet created dynamic generic classes.
8212         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
8213         times from inflated_method.
8214         (methodbuilder_to_mono_method): Ditto.
8215
8216 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
8217
8218         * gc.c: code cleanup and removed old untested option of not creating the
8219         finalizer thread.
8220
8221 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
8222
8223         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
8224         creating a jump trampoline for dynamic methods.
8225
8226 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
8227
8228         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
8229         generic TypeBuilders when called from another method of the same type (bug #335131).
8230
8231
8232 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
8233
8234         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
8235         doesn't seem to work perfectly.
8236         
8237         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
8238         called multiple times.
8239         (methodbuilder_to_mono_method): Ditto.
8240         (resolve_object): Inflate FieldBuilder's.
8241
8242 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
8243
8244         * string-icalls.c, string-icalls.h, appdomain.c: patch from
8245         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
8246         RemoveEmptyEntries in the string.Split implementation (bug #322375).
8247
8248 2007-10-26  Dick Porter  <dick@ximian.com>
8249
8250         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
8251         Thread initialisation changes
8252
8253 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
8254
8255         * verify.c: fix compatibility check between arrays and System.Array
8256
8257 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
8258
8259         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
8260         too. Fixes #336999.
8261
8262 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
8263
8264         * object.c (mono_value_box): Use typed allocation here.
8265
8266 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
8267
8268         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
8269         trampoline instead of compiling the method right away.
8270
8271         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
8272
8273 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
8274
8275         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
8276         related fields for dynamic classes. Fixes #334493.
8277
8278 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
8279
8280         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
8281         
8282         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
8283
8284         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
8285         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
8286
8287         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
8288
8289         * reflection.c (create_generic_typespec): Initialize klass->generic_container
8290         if needed.
8291         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
8292
8293 2007-10-18  Jonathan Chambers <joncham@gmail.com>
8294
8295         * marshal.c: Use correct key when removing item
8296         from ccw_hash.
8297         
8298         Code is contributed under MIT/X11 license.
8299
8300 2007-10-17  William Holmes  <billholmes54@gmail.com>
8301
8302         *marshal.c: Adding a case to marshal booleans to U1
8303
8304         Code is contributed under MIT/X11 license.
8305
8306 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
8307
8308         * class.c (mono_class_from_name): Search the modules compromising dynamic
8309         assemblies. Fixes #331601.
8310
8311 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
8312
8313         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
8314         exception if the type name contains an assembly component. Fixes #334203.
8315
8316         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
8317         modules inside dynamic assemblies. Fixes #334200.
8318         
8319         * reflection.c: Set image->public_key and image->public_key_length;
8320
8321         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
8322         fields.
8323
8324         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
8325         
8326 2007-10-16  Mark Probst  <mark.probst@gmail.com>
8327
8328         * metadata.c: Implemented correct comparing of generic classes.
8329         An inflated generic class can be equal to a non-inflated one if it
8330         is inflated with generic type variables as type arguments.  Fixes
8331         bug #333798.
8332
8333 2007-10-15  Dick Porter  <dick@ximian.com>
8334
8335         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
8336         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
8337         81646.
8338
8339         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
8340         instead of a monitor lock.  This means that monitor_try_enter and
8341         co can set the thread state safely.
8342         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
8343         thread_interrupt_requested, so interrupt actually works.
8344
8345         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
8346         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
8347         state accessor function
8348
8349 2007-10-15  Martin Baulig  <martin@ximian.com>
8350
8351         * mono-debug.h
8352         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
8353         the debugger with the current runtime.
8354
8355 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
8356
8357         * object.c, object-internals.h: added the ability to set a single
8358         trampoline for all the slots in a vtable.
8359
8360 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
8361
8362         * marshal.c: deal with a possible race condition during multicast
8363         delegate invocation.
8364
8365 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
8366
8367         * class.c: ensure value type methods don't have the synchronized
8368         flag set.
8369
8370 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
8371
8372         * string-icalls.c, string-icalls.h: reverted unapproved patch that
8373         breaks the build.
8374
8375 2007-10-11  Joel Reed  <joelwreed@comcast.com>
8376
8377         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
8378         to take an options parameter so that empty entries can be removed during
8379         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
8380
8381 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
8382
8383         * marshal.c: make sure we don't store the signature from a dynamic
8384         method into the runtime invoke cache (bug #327189).
8385
8386 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
8387
8388         * marshal.c: make sure the wrapper methods are properly initialized.
8389
8390 2007-10-11  Mark Probst  <mark.probst@gmail.com>
8391
8392         * metadata.c, metadata-internals.h: Generalized
8393         mono_type_stack_size() to mono_type_stack_size_internal() which
8394         takes an additional argument specifying whether it allows open
8395         types.
8396
8397 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8398
8399         * verify.c (do_invoke_method): handle typedbyref params
8400         correctly and check for unverifiable return values.
8401
8402         * verify.c (do_newobj): fix a warning.
8403
8404 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
8405
8406         * verify.c: don't tread typedbyref as allways unverifable,
8407         so uses, like (ld/st)loc.0 are valid. verify for the cases
8408         that it matters, like boxing related operations.
8409
8410 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
8411
8412         * verify.c: add verification of the newobj opcode. verification
8413         of delegate instantation still missing due ldftn and virldftn not
8414         pushing the function type on stack
8415
8416 2007-10-08  Mark Probst  <mark.probst@gmail.com>
8417
8418         * class-internals.h: Runtime generic context data structure
8419         definition.
8420
8421         * object.c: Initialization of runtime generic context at runtime
8422         vtable creation time.
8423
8424 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
8425         * class.c (mono_class_create_from_typedef,
8426         mono_class_from_generic_parameter, mono_ptr_class_get,
8427         mono_fnptr_class_get, mono_bounded_array_class_get)
8428         * domain.c (mono_domain_create, mono_domain_free)
8429         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
8430         * image.c (do_mono_image_load, mono_image_close):
8431         Hooked up load-unload profiler events.
8432
8433 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
8434
8435         * domain.c: track statistics about the actual amount of native code
8436         allocated.
8437
8438 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
8439
8440         * class.c: the valuetype enumerators don't have the additional
8441         supertypes interfaces.
8442
8443 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
8444
8445         * class.c: need more interfaces setup for the IEnumerator<T>
8446         object created for arrays (tests/ienumerator-interfaces.2.cs).
8447
8448 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
8449
8450         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
8451
8452 2007-10-05  Alp Toker  <alp@atoker.com>
8453
8454         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
8455         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
8456         #315863.
8457
8458 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
8459
8460         * verify.c (verify_type_compatibility_full): verification of
8461         compatibility improved, validates correctly non-strict checks between
8462         native int and I4 types different than (unsigned)int32.
8463
8464         * verify.c (do_store_indirect): added, do all verification of
8465         ldind.X opcodes. 
8466
8467         * verify.c (get_load_indirect_mono_type): renamed to
8468         get_indirect_op_mono_type, as it now returns the MonoType for 
8469         ldind.X and stind.X opcodes.
8470
8471 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
8472
8473         * reflection.c: Fix the encoding of generic type definition for
8474         TypeBuilders.
8475
8476         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
8477         mono_image_typedef_or_ref but allows to specify if typespec lookups should
8478         be made. Typespec check is done prior to typeref cache lookup.
8479
8480         * reflection.c (mono_image_typedef_or_ref): now just delegate to
8481         mono_image_typedef_or_ref_full.
8482
8483         * reflection.c (encode_generic_class): encode the generic class
8484         directly instead of calling encode_type.
8485
8486         * reflection.c (encode_type): encode the generic type definition
8487         MonoClass as a generic instantiation.
8488
8489         * reflection.c (create_typespec): cache typespec tokens in
8490         the assembly->typespec cache. Don't create typespec for a generic
8491         instance MonoClass. Create typespec for the generic type defintion.
8492
8493         * reflection.c (create_generic_typespec): encode the generic
8494         class directly instead of calling encode_type.
8495
8496         * reflection.c (mono_image_create_token): encode the generic
8497         type definition not using a typespec for MonoType instances.
8498
8499
8500 2007-10-04  Raja R Harinath  <rharinath@novell.com>
8501
8502         Fix #328812
8503         * class.c (mono_image_init_name_cache): Don't return nested
8504         'protected internal' classes.
8505         (mono_class_from_name_case): Likewise.
8506
8507 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
8508
8509         * icall-def.h, icall.c : get_bundled_machine_config() is now the
8510           common function used by both DefaultConfig in System.dll and
8511           InternalConfigurationHost in System.Configuration.dll.
8512
8513 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
8514
8515         * class.c: automatically add to vectors only a few essential explicit
8516         generic interfaces. The rest of the interfaces that arrays should
8517         provide are currently implicitly added (but still not lazily, see the
8518         design in the discussion of bug#325495 for the details of what is
8519         needed for that). Additionally, implicit interfaces are assigned the
8520         same vtable slot as the explicit interfaces (as they are compatible):
8521         this enables huge memory savings since we don't need to instantiate
8522         as many memthods and as large vtables anymore. Also, Since
8523         GetEnumerator<T> returns an instance of a type that is required to
8524         support a similarly large set of interfaces as arrays, we add
8525         implicit interfaces and interface offset sharing support to those
8526         types, too. This change adds all the required interfaces so that
8527         the anonarray.cs test case in the bug report works (we don't add
8528         all the interfaces to arrays of arrays 3-level deep and more because
8529         of the memory requirements explained in the bug and since they are much
8530         less common: the lazy-loading support will enabled them to work, too).
8531
8532 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
8533
8534         * verify.c (merge_stacks): major clean up, all type compatibility
8535         checks are done by verify_type_compatibility. This fix my earlier lack
8536         of understanding of the CLR type system and merge_stacks no longer looks
8537         scary.
8538
8539         * verify.c: fixed some bad spelling.
8540
8541 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
8542
8543         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
8544         a given stack slock.
8545         
8546         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
8547         verify_type_compatibility_full. This removed a near indentical function and fixed
8548         handling of Int32 and IntPtr across all opcodes.
8549
8550 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
8551
8552         * class.c: only vectors have the additional generic interfaces.
8553
8554 2007-10-01  Jonathan Chambers <joncham@gmail.com>
8555
8556         * mono-config.c: Use g_strcasecmp instead of
8557         strcasecmp like everywhere else to fix
8558         compilation with MSVC.
8559         
8560         Code is contributed under MIT/X11 license.
8561
8562 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
8563
8564         * object.c, object-internals.h: refactored the IMT code to enable
8565         building a single slot at a time and lazily creating the IMT trampolines
8566         and thunks.
8567
8568 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
8569
8570         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
8571
8572         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
8573         Fixes #328501.
8574         
8575 2007-09-29  Raja R Harinath  <harinath@gmail.com>
8576
8577         * loader.c (method_from_methodspec): Rearrange to avoid
8578         un-necessary exposition.  Don't assert out if the method's
8579         declaring type is a generic type definition.
8580
8581 2007-09-28  Martin Baulig  <martin@ximian.com>
8582
8583         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
8584
8585 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
8586
8587         * class-internals.h: optimize field layout of MonoClass to
8588         requires less cachelines at runtime and save a few bytes on 64 bit
8589         systems.
8590
8591 2007-09-28  Jb Evain  <jbevain@novell.com>
8592
8593         * reflection.c: when encoding type names in custom attributes,
8594         if the type is a closed generic type, its generic arguments
8595         have to be serialized as AssemblyQualifiedName, so that when
8596         they are deserialized, it's possible to re-create them properly.
8597         Fixes #329450.
8598
8599
8600 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
8601
8602         * object.c, class-internals.h: added delegate-creation counter.
8603
8604 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
8605
8606         * class.c: cleanup of the code that synthetizes interfaces for
8607         arrays in 2.0: saves quit a bit of corlib mempool memory.
8608         Code to fix bug #325495 ifdeffed out for now until the issues
8609         with memory usage and O(n^2) behaviour are fixed.
8610
8611 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
8612
8613         * marshal.c: when possible, do not duplicate the name of the methods
8614         in the method builder and in the generated MonoMethod.
8615
8616 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
8617         * verify.c: added support for type checking ldind_* opcodes.
8618
8619 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
8620
8621         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
8622         which is used to distinguish the fully open instantiation of a TypeBuilder
8623         with the rest. This temporary hack is required to restore the property that
8624         the fully open instantiation is the same type of the generic type definition.
8625
8626         * class-internals.h (mono_generic_class_is_generic_type_definition):
8627         new function as part of the internal API.
8628
8629         * class.c (inflate_generic_type): return NULL when the generic inst is
8630         fully open. The fully open generic type is now the same as the generic type
8631         definition for non TypeBuilder types.
8632
8633         * class.c (mono_generic_class_get_class): removed assert since it is
8634         no longer valid, gklass->cached_class can point to the generic type definition.
8635
8636         * class.c (mono_generic_class_is_generic_type_definition): new.
8637
8638         * metadata.c (mono_generic_class_hash): added is_tb_open field
8639         to the hash calculation.
8640
8641         * metadata.c (free_generic_class): if the generic class is associated
8642         with the generic type definition, its field will come from the mempool and
8643         must not be freed.
8644
8645         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
8646         new, this function identifies the corner case of a TypeBuilder fully open
8647         instantiation.
8648
8649         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
8650         for lookup. Set gclass->cached_class to be the container class in case of
8651         the fully open instantiation of non TypeBuilder types.
8652
8653         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
8654         to compare generic classes.
8655
8656         * reflection.c (method_encode_methodspec): remove assert that
8657         no longer is valid.
8658
8659         * reflection.c (mono_reflection_generic_class_initialize): add
8660         an aditional assert to ensure the proper type is used.
8661
8662 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
8663
8664         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
8665         to enjoy it.
8666
8667 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
8668
8669         * verify.c (push_arg): Fixed support for ldarga
8670         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
8671         MonoType used as first arg in case of instance calls.
8672
8673 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
8674
8675         * verify.c: Support for verifying VAR and MVAR types, 
8676
8677 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
8678
8679         * icall.c (ves_icall_get_property_info): Set the reflected type of the
8680         accessors correctly.
8681
8682 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
8683
8684         * threads.c: support OSX and other systems in
8685         mono_thread_get_stack_bounds (bug #328026).
8686
8687 2007-09-25  Martin Baulig  <martin@ximian.com>
8688
8689         * mono-debug.h
8690         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
8691
8692 2007-09-24  Martin Baulig  <martin@ximian.com>
8693
8694         * mono-debug.h
8695         (MonoDebugClassEntry): Moved the definition of this struct into
8696         mono-debug.c to make it private.
8697
8698         * mono-debug.c
8699         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
8700         type table per symbol file, we don't need to store the symfile id
8701         any longer.
8702
8703 2007-09-24  Martin Baulig  <martin@ximian.com>
8704
8705         Create one type table per symbol file, since a `MonoClass *' gets
8706         invalid when its image is unloaded.
8707
8708         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
8709         (MonoDebugHandle): Added `type_table'.
8710
8711 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
8712
8713         * mempool.c, mempool.h: added mono_mempool_new_size () API
8714         to be able to specify a smaller initial size for the pool.
8715         Adjusted the code to slowly increase pool size before using
8716         the previous default size.
8717         * image.c: use a small initial size for image mempools.
8718
8719 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
8720
8721         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
8722         Fixes ##320990.
8723
8724         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
8725         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
8726
8727 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
8728
8729         * metadata.c (mono_type_create_from_typespec): Remove an invalid
8730         free. Fixes #327438.
8731
8732 2007-09-21  Raja R Harinath  <harinath@gmail.com>
8733
8734         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
8735         generic instantiations, etc.
8736         <MONO_TYPE_ARRAY>: Likewise.
8737
8738 2007-09-21  Martin Baulig  <martin@ximian.com>
8739
8740         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
8741         these structs were never defined.
8742         (MonoDebugHandle): Removed the `_priv' field, it was never used.
8743
8744 2007-09-21  Martin Baulig  <martin@ximian.com>
8745
8746         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
8747
8748 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
8749
8750         * image.c: removed the guid hash tables: we can get the same info
8751         without the additional memory usage hit (partially fixes also bug #327052).
8752
8753 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
8754
8755         * profiler.h, profiler-private.h, profiler.c: add a new profiler
8756         event to handle unloading methods. After the event is called, the
8757         corresponding MonoMethod* must be considered invalid.
8758         * loader.c (mono_free_method): call the new mono_profiler_method_free
8759         event.
8760
8761 2007-09-20  Mark Probst  <mark.probst@gmail.com>
8762
8763         * domain-internals.h: New flag in MonoJitInfo which marks shared
8764         generic methods.  New hash table (shared_generics_hash) in
8765         MonoDomain to keep track of shared generic methods.  Prototypes
8766         for functions to register and lookup shared generic methods.
8767
8768         * domain.c: Support for registering and looking up shared generic
8769         methods via a hash table (shared_generics_hash) in MonoDomain.
8770
8771         * class-internals.h: New exception to signal failure of shared
8772         compilation of a generic method.  New counters for generics
8773         sharing in MonoStats.
8774
8775 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
8776
8777         * image.c, metadata-internals.h: don't keep a file descriptor open
8778         for loaded assemblies (bug#325988).
8779
8780 2007-09-19  Raja R Harinath  <rharinath@novell.com>
8781
8782         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
8783         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
8784         use the corresponding datatypes.
8785         (type_in_image): Update to changes.
8786         (CleanForImageUserData): Simplify.
8787         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
8788         Avoid quadratic behaviour in handling the "stolen" list by
8789         separating the filter predicate out, and by prepending the stolen
8790         items rather than appending them.
8791         (steal_ginst_in_image): Likewise.
8792         (mono_metadata_clean_for_image): Update to changes.
8793
8794 2007-09-19  Martin Baulig  <martin@ximian.com>
8795
8796         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
8797
8798 2007-09-19  Martin Baulig  <martin@ximian.com>
8799
8800         * mono-debug.c (mono_debug_cleanup): Don't call
8801         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
8802
8803 2007-09-19  Raja R Harinath  <harinath@gmail.com>
8804
8805         Fix crash on 'make run-test' in mcs/errors
8806         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
8807         Avoid more potential allocations in mono_class_from_mono_type.
8808         (ginst_in_image): Update to changes.
8809         (gclass_in_image): Rearrange slightly.
8810
8811 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
8812
8813         * class.c (mono_class_init): Move the code that sets up class->methods to 
8814         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
8815
8816         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
8817         canonical instance of an inflated generic signature.
8818         (mono_type_create_from_typespec): Remove an invalid free.
8819
8820         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
8821
8822 2007-09-18  Marek Habersack  <mhabersack@novell.com>
8823
8824         * domain-internals.h: added a declaration of the
8825         mono_assembly_load_full_nosearch internal function.
8826
8827         * assembly.c (mono_assembly_load_with_partial_name): use
8828         mono_try_assembly_resolve return value properly.
8829         (mono_assembly_load_full_nosearch): copied the function body from
8830         mono_assembly_load_full, without the code to invoke assembly
8831         search hooks.
8832         (mono_assembly_load_full): calls the above new function and if the
8833         assembly is not resolved, invokes the search hooks.
8834
8835         * appdomain.c (mono_runtime_init): restore the global postload
8836         assembly search handlers.
8837
8838 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
8839
8840         * class.c (mono_class_init): Make sure class->methods and class->properties
8841         are never NULL in the generics case.
8842
8843         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
8844
8845 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
8846
8847         * metadata.c (free_generic_class): Disable some code to fix the build.
8848
8849         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
8850
8851         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
8852         from the image mempool.
8853
8854         * metadata.c (free_generic_class): Free more data from the inflated class.
8855
8856         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
8857
8858         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
8859         mempool.
8860         (mono_type_create_from_typespec): Ditto.
8861
8862         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
8863         MonoImage to the caller.
8864         (mono_init_internal): Save the opened image in a global variable.
8865         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
8866
8867         * reflection.c (resolve_object): Fix a leak.
8868
8869         * metadata.c: Fix the freeing of data in the generics caches.
8870         
8871         * metadata.c (free_generic_inst): Comment this out to fix the build.
8872         (free_generic_class): Ditto.
8873
8874         * metadata.c: Free cached generic methods, instantinations and classes when
8875         they are removed from the caches.
8876         (mono_metadata_free_type): Free the type itself.
8877
8878         * class.c: Free the result of mono_class_inflate_generic_type () in a few
8879         places.
8880
8881 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
8882
8883         * boehm-gc.c: restrict managed allocs to __thread supporting
8884         architectures.
8885
8886 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
8887
8888         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
8889         (mono_generic_class_get_class): Fix a leak.
8890
8891         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
8892         mono_metadata_free_type ().
8893         (mono_metadata_inflate_generic_inst): Fix a leak.
8894
8895 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
8896
8897         * mono-debug.c (free_header_data): Fix a leak missed earlier.
8898
8899         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
8900         mempool.
8901
8902         * mono-debug.c (mono_debug_close_image): Fix call to 
8903         g_hash_table_remove ().
8904
8905 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
8906
8907         * icall-def.h: redirect all the string ctor to the managed
8908         CreateString () methods.
8909         * string-icalls.c, string-icalls.h: removed dead code for string
8910         ctors and icalls.
8911
8912 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
8913
8914         * mono-debug.c: Fix memory leaks.
8915
8916 2007-09-14  Jonathan Chambers <joncham@gmail.com>
8917
8918         * threads-types.h: Implement mono_hazard_pointer_set and 
8919         mono_hazard_pointer_clear macros using do/while(0) to fix
8920         compilation with MSVC.
8921         
8922         Code is contributed under MIT/X11 license.
8923
8924 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
8925
8926         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
8927         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
8928
8929 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
8930
8931         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
8932         icalls.
8933
8934 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
8935
8936         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
8937         managed-code allocated as well.
8938
8939 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
8940
8941         * class.c (mono_class_is_assignable_from): Add support for generic variance.
8942
8943 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
8944
8945         * boehm-gc.c: fixed the build after the AOT changes.
8946
8947 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
8948
8949         * wrapper-types.h: Add an ALLOC wrapper type.
8950
8951         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
8952         reference managed allocator methods.
8953
8954 2007-09-12  Marek Safar  <marek.safar@gmail.com>
8955
8956         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
8957         of Type array and not MonoType, a fix suggested by Hari.
8958         
8959 2007-09-12  Jonathan Chambers <joncham@gmail.com>
8960
8961         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
8962         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
8963         
8964         Code is contributed under MIT/X11 license.
8965
8966 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
8967
8968         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
8969
8970 2007-09-12  Marek Habersack  <mhabersack@novell.com>
8971
8972         * image.c (do_mono_image_open): if assembly file fails to open and
8973         MONO_IOMAP is in effect, try to find the path in a
8974         case-insensitive way.
8975
8976         * appdomain.c (mono_runtime_init): do not install postload hooks -
8977         tests show that MS.NET doesn't use anything of that sort to
8978         trigger the AppDomain.AssemblyResolve event.
8979         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
8980         made non-static.
8981         (mono_runtime_init): init portability helpers here.
8982
8983         * assembly.c (mono_assembly_load_with_partial_name): if other   
8984         attempts fail, trigger the AppDomain.AssemblyResolve event handler
8985         to resolve the assembly.
8986
8987         * domain-internals.h: added mono_try_assembly_resolve and marked
8988         it as internal.
8989
8990 2007-09-11  Jb Evain  <jbevain@novell.com>
8991
8992         * object-internals.h (MonoReflectionDynamicMethod): add
8993         a `MonoReflectionType *owner` field. The owner is used
8994         * reflection.c:
8995         (mono_reflection_create_dynamic_method): use the owner of the dynamic
8996         method as the class declaring the dynamic method.
8997         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
8998         dynamic method to the declaring type of the methodbuilder.
8999
9000 2007-09-11  Mark Probst  <mark.probst@gmail.com>
9001
9002         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
9003         rules for calling methods via reflection.
9004
9005 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
9006
9007         * reflection.c (resolve_object): Add support for MonoGenericClass. 
9008         Inflate MonoType's.
9009
9010 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
9011
9012         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
9013         provide a managed method that does fast allocations without needing
9014         a managed->unmanaged transition. Boehm GC implementation currently
9015         enabled for ptrfree objects on sane architectures.
9016
9017 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
9018
9019         * marshal.c, marshal.h: exported a couple of useful functions and
9020         added mono_mb_get_label () to easily handle backward branches.
9021
9022 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
9023
9024         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
9025
9026 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
9027
9028         * loader.c (find_method): Fixed the regression introduced while
9029         fixing bug #81466.
9030
9031 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
9032
9033         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
9034         well.
9035         
9036         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
9037         icall.c reflection.c: Pass a MonoGenericContext argument to 
9038         mono_lookup_dynamic_token ().
9039
9040         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
9041         #82744.
9042         
9043 2007-09-09  Robert Jordan  <robertj@gmx.net>
9044
9045         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
9046         for generic methods.
9047
9048         * object.c (mono_object_get_virtual_method): Handle generic methods.
9049         Fixes bug #78882.
9050
9051         Code is contributed under MIT/X11 license.
9052
9053 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
9054
9055         * image.c: fix locking in mono_image_load_file_for_image ().
9056
9057 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
9058
9059         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
9060         used only as a cache: added an icall to fill it.
9061
9062 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
9063
9064         * reflection.h: exposed mono_reflection_free_type_info
9065         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
9066         since mono_reflection_bind_generic_parameters makes a copy of it.
9067         * reflection.c (free_type_info): subinfos should be freed.
9068         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
9069         made non static.
9070         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
9071         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
9072         this fixes #82695 and #81726.
9073    
9074
9075 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
9076
9077         * process.h, process.c:  added support for user profile/info in
9078           ProcessStartInfo. For now only Windows works.
9079
9080 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
9081
9082         * metadata.c: consider the generic arguments when comparing
9083         signatures (bug #82614).
9084
9085 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
9086
9087         * cil-coff.h, image.c: updated assembly loader to cope with the
9088         PE32+ 64 bit file format.
9089
9090 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
9091
9092         * assembly.c, class.c, domain.c, loader.c: remove useless
9093         inclusion of cil-coff.h.
9094
9095 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
9096
9097         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
9098         if interface is marked with CoClassAttribute. 
9099    
9100         Code is contributed under MIT/X11 license.
9101
9102 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
9103
9104         * sgen-gc.c: ensure no object from the to space is copied again or finalized
9105         if it's seen twice in major collections.
9106
9107 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
9108
9109         * sgen-gc.c: big objects are not copied to the gray area, but they
9110         need to be considered for scanning, too, if they are brought alive
9111         by an object ready for finalizations or a survived one.
9112
9113 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
9114
9115         * sgen-gc.c: properly account the number of disappearing links when
9116         they are nullified.
9117
9118 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
9119
9120         * sgen-gc.c: share the code to scan the registered roots between the
9121         different types of collections.
9122
9123 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
9124
9125         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
9126
9127 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
9128
9129         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
9130         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
9131
9132 2007-08-28  Mark Probst  <mark.probst@gmail.com>
9133
9134         * security-manager.c (mono_security_manager_get_methods):
9135         LinkDemandSecurityException now has 2 arguments instead of 3.
9136
9137 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
9138
9139         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
9140         platforms which need it.
9141
9142 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
9143
9144         * sgen-gc.c: unregister thread data structures with a pthread_key_t
9145         dtor.
9146
9147 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
9148
9149         * threads.c: free the thread static data on thread exit.
9150
9151 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
9152
9153         * class.c: walk the hierarchy to find the generic definition for
9154         a class (fixes runtime part of bug #82498).
9155
9156 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
9157
9158         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
9159         ...
9160
9161         * image.c (mono_image_close): Here. Hopefully fixes #82510.
9162
9163 2007-08-24  Mark Probst  <mark.probst@gmail.com>
9164
9165         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
9166
9167 2007-08-24  Robert Jordan  <robertj@gmx.net>
9168
9169         * appdomain.c: don't perform the ':'->';' substitution on Win32.
9170
9171 2007-08-24  Jb Evain  <jbevain@novell.com>
9172
9173         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
9174         for byref types.
9175
9176 2007-08-24  Mark Probst  <mark.probst@gmail.com>
9177
9178         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
9179         #82286.
9180
9181 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
9182
9183         * assembly.c: Fix a warning.
9184         
9185 2007-08-23  Marek Habersack  <mhabersack@novell.com>
9186
9187         * appdomain.c: parse the <runtime> section looking for the probing
9188         element with the 'privatePath' attribute, which sets additional
9189         directories in which the runtime should look for assemblies.
9190
9191 2007-08-23  Robert Jordan  <robertj@gmx.net>
9192
9193         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
9194         Fixes #82499.
9195
9196 2007-08-23  Martin Baulig  <martin@ximian.com>
9197
9198         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
9199         _mono_debug_init_corlib() and remove it from the header file.
9200
9201 2007-08-23  Martin Baulig  <martin@ximian.com>
9202
9203         * mono-debug-debugger.c
9204         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
9205         don't notify the debugger about it.
9206
9207         * mono-debug-debugger.h
9208         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
9209
9210 2007-08-23  Robert Jordan  <robertj@gmx.net>
9211
9212         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
9213         Code is contributed under MIT/X11 license.
9214
9215 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
9216
9217         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
9218
9219 2007-08-22  Martin Baulig  <martin@ximian.com>
9220
9221         * mono-debug.c: Store debugging info on a per-domain basis and
9222         free it on domain unload.  Add support for unloading symbol files.
9223
9224         * mono-debug.h
9225         (MonoDebugList): New typedef.
9226         (MonoSymbolTable):
9227         - add `data_tables and `type_table'.
9228         - replace 'symbol_files' and `num_symbol_files' with a
9229           `MonoDebugList *'.
9230         (mono_debug_data_table): Removed.
9231         (mono_debug_list_add): New public function.
9232         (mono_debug_list_remove): New public function.
9233         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
9234         (mono_debug_init_2_memory): Renamed into
9235         mono_debug_open_image_from_memory().
9236         (mono_debug_close_image): New public function.
9237         (mono_debug_domain_create): Likewise.
9238         (mono_debug_domain_unload): Likewise.
9239         (MONO_DEBUGGER_VERSION): Bump to 60.
9240
9241         * mono-debug-debugger.h
9242         (MonoDebuggerEvent):
9243         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
9244         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
9245         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
9246         - rename `THREAD_CREATED' and `THREAD_EXITED' into
9247           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
9248         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
9249           meaning.
9250         (mono_debugger_add_symbol_file): Removed.
9251         (mono_debugger_add_type): Removed.
9252         (mono_debugger_lookup_type): Removed.
9253         (mono_debugger_lookup_assembly): Removed.
9254
9255         * domain.c
9256         (mono_domain_create): Call mono_debug_domain_create().
9257         (mono_init_internal): Call mono_debug_init_corlib().
9258
9259         * assembly.c
9260         (mono_assembly_close): Call mono_debug_close_image().
9261
9262 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
9263
9264         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
9265         mmap call.
9266
9267 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
9268
9269         * sgen-gc.c: ensure section->pin_queue_end is initialized
9270         correctly when non pinning objects in the section have been found.
9271
9272 2007-08-22  Marek Habersack  <mhabersack@novell.com>
9273
9274         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
9275         containing a list of directories separated by ':'. MSDN docs say
9276         the directories should be separated with ';'. Part of a bugfix for
9277         bug #81446
9278
9279 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
9280
9281         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
9282         it should MonoType and not MonoClass.
9283
9284 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
9285
9286         * culture-info-table.h : regenerated.
9287
9288 2007-08-20  William Holmes  <billholmes54@gmail.com>
9289
9290         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
9291          to call ReplaceFile Kernel32 on windows or in io-layer.
9292         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
9293         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
9294          as an internal call.
9295
9296         Code is contributed under MIT/X11 license.
9297
9298 2007-08-20  Jb Evain  <jbevain@novell.com>
9299
9300         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
9301         and MONO_EXCEPTION_FIELD_ACCESS.
9302
9303         * debug-helpers.[c|h]: new mono_field_full_name function.
9304
9305 2007-08-20  Mark Probst  <mark.probst@gmail.com>
9306
9307         * class.c: Removed class_security_level() and moved it to
9308         security-core-clr.c.
9309
9310         * security-core-clr.c, security-core-clr.h: class_security_level()
9311         is now public and renamed to mono_security_core_clr_class_level().
9312         It also looks for security attributes in the classes a class is
9313         nested in.
9314
9315 2007-08-20  Mark Probst  <mark.probst@gmail.com>
9316
9317         * security-core-clr.c, security-core-clr.h: CoreCLR security
9318         utility functions.
9319
9320         * Makefile.am: Added security-core-clr.[ch].
9321
9322         * security-manager.c, security-manager.h: Functions and enum for
9323         setting and getting the security mode.
9324
9325         * class.c: CoreCLR security checks.
9326
9327 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
9328
9329         * icall-def.h, process.c, process.h: implemented icall to get
9330         user/system processor times.
9331
9332 2007-08-17  Mark Probst  <mark.probst@gmail.com>
9333
9334         * domain.c, threads.c, class-internals.h, domain-internals.h: New
9335         reader-lock-free jit_info_table.
9336
9337 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
9338
9339         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
9340
9341         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
9342
9343         * object-internals.h (MonoException): Add missing _data member.
9344
9345 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
9346
9347         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
9348         checking that only methods with matching qname or fqname are picked
9349         from implemented interfaces.
9350
9351 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
9352
9353         * verify.c (do_newarr):added, do type verification of
9354         newarr ops, push the right value on the eval stack.
9355         * verify.c (mono_method_verify): use do_newarr
9356
9357
9358 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
9359
9360         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
9361         factored the common code into get_boxable_mono_type, which
9362         is now using mono_type_get_full, this fixed byref related tests.
9363
9364 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
9365
9366         * class.c: added mono_type_get_full, this function has the same
9367         behavior of mono_class_get_full but the returned MonoType has
9368         all metadata of the associated token in case of a typespec token.
9369         * class.c: added mono_type_retrieve_from_typespec, used by 
9370         mono_type_get_full to retrieve the token type.
9371         * class.c (mono_class_create_from_typespec): changed to use
9372         mono_type_retrieve_from_typespec.
9373         * class.c (mono_ldtoken): changed to use mono_type_get_full
9374         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
9375         * class-internals.h: exported mono_type_get_full for internal use.
9376
9377 2007-08-16  Jb Evain  <jbevain@novell.com>
9378
9379         * domain.c (supported_runtimes): add entry for
9380         the 'moonlight' runtime version.
9381
9382 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
9383
9384         * verify.c (mono_method_verify): small typo sliped in.  
9385
9386 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
9387
9388         * verify.c (do_unbox_value): added, do type verification of
9389         unboxing ops
9390         * verify.c (mono_method_verify): use do_unbox_value
9391
9392
9393 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
9394
9395         * verify.c (dump_stack_value): fixed typo, was printing string
9396         instead of object on stack.
9397         * verify.c (do_box_value): moved the byref check up as it leads
9398         to invalid code and should be done earlier.
9399         * verify.c: improved error messages for and ldobj
9400
9401 2007-08-15  William Holmes  <billholmes54@gmail.com>
9402
9403         * marshal.c (emit_marshal_custom): Omit the call to 
9404           marshal_native_to_managed when calling native to managed 
9405           and the argument is specified as an out argument.
9406
9407         Code is contributed under MIT/X11 license.
9408
9409 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
9410
9411         * verify.c: fixed the type checks for generics, function pointers and vectors.
9412         Added type verification for ldobj and ldtoken. The verifier
9413         would segfault if header or signature of a method contained references
9414         to non-existant types.
9415
9416 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
9417
9418         * marshal.c (cominterop_get_ccw): Patch from
9419         Bill Holmes to no walk up interface hierarchy. 
9420         All parent methods should be present in the interface for COM.
9421    
9422         Code is contributed under MIT/X11 license.
9423
9424 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
9425
9426         * marshal.c (emit_marshal_com_interface): Patch from
9427         Bill Holmes to handle COM Interfaces as return values
9428         for native->managed calls.
9429    
9430         Code is contributed under MIT/X11 license.
9431
9432 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
9433
9434         * marshal.c (cominterop_get_idispatch_for_object): Implement
9435         for runtime callable wrappers.
9436    
9437         Code is contributed under MIT/X11 license.
9438
9439 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
9440
9441         * pedump.c (main): changed from mono_init to mono_init_from_assembly
9442         so 2.0 types are accessible
9443
9444
9445 2007-08-13  Miguel de Icaza  <miguel@novell.com>
9446
9447         * domain.c (mono_init_internal): Call mono_assembly_load_friends
9448         once we load mscorlib.   Due to the order in which we initialize,
9449         the mono_assembly_load_full routine that loads mscorlib did not
9450         load friends.   We now load it once we load the
9451         mono_defaults.internals_visible_class class. 
9452
9453         * assembly.c: Expose the mono_load_friend_assemblies method.
9454
9455 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
9456
9457         * verify.c: improved the handling of boxing, better
9458         type checking for unary ops and conversion. Fix bug
9459         regarding managed pointer compatibility checking
9460
9461 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
9462
9463         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
9464
9465         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
9466
9467 2007-08-09  Raja R Harinath  <rharinath@novell.com>
9468
9469         * reflection.c (dup_type): Remove.
9470         * class.c (dup_type): Remove.
9471         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
9472         instead of the dodgy 'dup_type'.
9473         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
9474         handle the case where 'dup_type' needed the second argument.
9475
9476 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
9477
9478         * domain.c: Fix a warning.
9479
9480 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
9481
9482         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
9483         checking that methods with the same fqname are not overridden
9484         with a method from an ancestor.
9485
9486 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
9487
9488         * threads.c (free_thread_static_data_helper): Avoid a crash if
9489         thread->static_data is not yet set.
9490
9491 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
9492
9493         * marshal.c: Use correct image when emitting
9494         native wrapper for COM calls.
9495    
9496         Code is contributed under MIT/X11 license.
9497
9498 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
9499
9500         * icall-def.h, security.c, security.h :
9501           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
9502
9503 2007-08-07  Martin Baulig  <martin@ximian.com>
9504
9505         * mono-debug-debugger.h
9506         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
9507
9508         * domain.c (mono_domain_free): Call
9509         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
9510
9511 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
9512
9513         * verify.c (check_underflow, check_overflow): error message now returns IL offset
9514         * verify.c (in_same_block): code should test if either offset is inside the clauses
9515         * verify.c (mono_method_verify): push the exception into the eval stack of exception
9516         and filter blocks
9517
9518 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
9519
9520         * image.c (mono_image_close): Fix a leak.
9521
9522         * object.c (mono_runtime_invoke_array): Avoid using alloca.
9523
9524         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
9525
9526 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
9527
9528         * domain.c, threads.c, threads-types.h: fix memory retention issue
9529         with thread static variables not being cleared on domain unload.
9530         Reuse thread static slots after domain unload.
9531
9532 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
9533
9534         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
9535         nullable type.
9536
9537         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
9538         now done in mono_runtime_invoke_array.
9539
9540         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
9541         receiver is a nullable type.
9542
9543         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
9544         generic parameter.
9545
9546 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
9547
9548         * marshal.c: Implement COM Objects as return type for 
9549         managed->unmanaged calls. Added Release calls for COM Object
9550         out/return values in managed->unmanaged calls.
9551
9552         Code is contributed under MIT/X11 license.
9553
9554 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
9555
9556         * threads.h, threads-type.h: move the hazard pointer declarations
9557         to the private header.
9558
9559 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
9560
9561         * file-io.c, appdomain.c: memory leak fixes.
9562
9563 2007-08-02  Dick Porter  <dick@ximian.com>
9564
9565         * socket-io.c
9566         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
9567         SO_REUSEADDR setting into io-layer/sockets.c.
9568
9569 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
9570
9571         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
9572         from Object when called on a generic parameter. Fixes #82211.
9573
9574 2007-08-01  Dick Porter  <dick@ximian.com>
9575
9576         * file-io.c (convert_share): Test FileShare values bit-by-bit.
9577         Fixes bug 79250 yet again.
9578
9579 2007-07-30  Martin Baulig  <martin@ximian.com>
9580
9581         Merged the `debugger-dublin' branch.
9582
9583         * mono-debug.h
9584         (MonoDebugDataTable): New typedef.
9585         (MonoDebugMethodAddressList): New typedef.
9586         (MonoDebugWrapperData): Removed.
9587         (MonoDebugSymbolTable): Removed `current_data_table',
9588         `current_data_table_size', `current_data_table_offset'.
9589         (MonoDebugDataItemType): Moved into mono-debug.c.
9590         (MonoDebugMethodJitInfo): Remove `address'.
9591         (mono_debug_data_table): New global variable.
9592         (mono_debug_lookup_method_addresses): New public function.
9593         (mono_debug_find_method): Take a `MonoMethod *', not a
9594         `MonoDebugMethodInfo *'.
9595
9596         * mono-debug.c: Drop support for the old symbol tables.
9597
9598 2007-06-28  Martin Baulig  <martin@ximian.com>
9599
9600         * mono-debug.c (mono_debug_debugger_version): New public variable.
9601
9602 2007-07-31  William Holmes  <billholmes54@gmail.com>
9603
9604         * metadata.c Changed mono_type_create_from_typespec to not insert
9605           the type into the hash map until after
9606           do_mono_metadata_parse_type has completed.
9607         Fixes Bug #82194
9608         Code is contributed under MIT/X11 license.
9609
9610 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
9611
9612         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
9613         generic parameter. Fixes #82211.
9614
9615 2007-07-27  Jb Evain  <jbevain@novell.com>
9616
9617         * pedump.c (dump_metadata, dump_metadata_header): dump
9618         versions contained in the metadata header.
9619
9620 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
9621
9622         * threads.c: register small_id_table with the GC.
9623
9624 2007-07-27  Mark Probst  <mark.probst@gmail.com>
9625
9626         * threads.c, threads.h, class-internals.h, object-internals.h:
9627         Hazard pointers, to be used by lock-free parallel algorithms.
9628
9629 2007-07-26  Dick Porter  <dick@ximian.com>
9630
9631         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
9632         routine on non-windows platforms, as I've not managed to think of
9633         a non-kludgy way of doing this.  Finishes off bug 78739.
9634
9635 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
9636
9637         * object.c: properly setup interface_bitmap in proxy vtables.
9638
9639 2007-07-25  Marek Habersack  <mhabersack@novell.com>
9640
9641         * appdomain.c (get_shadow_assembly_location): do not use TickCount
9642         to create unique shadow copy target directories, use the domain's
9643         serial number instead. Each domain gets a unique target directory
9644         that way.
9645
9646         * domain.c (mono_domain_create): added code to increment domain
9647         shadow copy serial number and cache the value in the current
9648         domain structure.
9649
9650         * domain-internals.h (struct _MonoDomain): added a new field -
9651         shadow_serial to hold the serial number used in generation of
9652         shadow-copy directories. This is to make sure that the directory
9653         name is unique for each and every domain created. We avoid a race
9654         condition with overriding assemblies already in use by other app
9655         domains.
9656
9657 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
9658
9659         * class.c (mono_bounded_array_class_get): fixed memory leak when 
9660         binding generic parameters.
9661
9662 2007-07-24  Raja R Harinath  <rharinath@novell.com>
9663
9664         * metadata.c (do_mono_metadata_parse_generic_class): Use
9665         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
9666         error.
9667
9668 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
9669
9670         * loader.c, class-internals.h, reflection.c: removed the per-method
9671         generics hashtable: we use the global one through the call of
9672         mono_class_inflate_generic_method ().
9673
9674 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
9675
9676         * class.c, metadata.c, class-internals.h: introduce yet another
9677         generics global cache for inflated methods (fixes 98% of the perf
9678         issue in bug #81806).
9679
9680 2007-07-23  Raja R Harinath  <rharinath@novell.com>
9681
9682         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
9683         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
9684         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
9685         return a MonoGenericInst containing (a copy) of those types.
9686         (mono_metadata_inflate_generic_inst): Update to changes.
9687         (mono_metadata_parse_generic_inst): Likewise.
9688         (mono_get_shared_generic_inst): Likewise.
9689         * reflection.c (mono_class_bind_generic_parameters): Likewise.
9690         (mono_reflection_bind_generic_method_parameters): Likewise.
9691         * metadata-internals.h: Likewise.
9692         * icall.c (free_generic_context): Kill.
9693         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
9694
9695         * reflection.c (reflection_methodbuilder_to_mono_method): Use
9696         mono_metadata_type_dup.
9697         * marshal.c (mono_mb_create_method): Likewise.
9698
9699         * metadata.c (mono_metadata_type_dup): Rename from
9700         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
9701         MonoImage.  Handle a few more cases, esp. when no mempool is given.
9702         * marshal.c, metadata-internals.h: Update to changes.
9703
9704 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
9705
9706         * class.c: fixed a small leak for array classes and removed warning.
9707
9708 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
9709
9710         * loader.c (mono_method_get_param_token): Make this work on generic methods.
9711         Return 0x8000000 for return parameters. Fixes #82161.
9712
9713 2007-07-21  Marek Habersack  <grendello@gmail.com>
9714
9715         * appdomain.c (get_shadow_assembly_location): append the current
9716         ticks value to the path. Avoids overwriting the same assemblies by
9717         several threads at the same time.
9718
9719 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
9720         and Raja R Harinath  <rharinath@novell.com>
9721
9722         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
9723         Simplify slightly.
9724         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
9725         property for testing if a method is a generic method definition.
9726
9727 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
9728
9729         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
9730
9731 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
9732
9733         * verify.c: used function from private branch, reverted to the one in class.h 
9734
9735 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
9736
9737         * verify.c: a typo slipped in and the code wont compile
9738
9739 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
9740
9741         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
9742         disabled box instruction as it is doing the wrong thing
9743         improved stack dump messages, now it is easier to debug type related issues
9744
9745
9746 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
9747
9748         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
9749
9750 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
9751
9752         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
9753         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
9754         grouped with class and valuetype. This change will simply 
9755         the code as it should be handled just like unmanaged pointers.
9756
9757 2007-07-19  Mark Probst  <mark.probst@gmail.com>
9758
9759         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
9760
9761 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
9762
9763         * verify.c: several stack merge issues fixed, reference comparisons now
9764         check the type size. strict type check now works correctly.
9765         added more uses of IS_MANAGED_POINTER macro.
9766         fixed issues pointed by running the test suite against .net.
9767         
9768
9769 2007-07-19  Mark Probst  <mark.probst@gmail.com>
9770
9771         * class.c, loader.c, class-internals.h: Removed the
9772         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
9773         defines.
9774
9775         * icall.c: Better error checking in some internal reflection
9776         methods.
9777
9778 2007-07-18  William Holmes  <billholmes54@gmail.com>
9779
9780         * filewatcher.c : removed unused variable 'filename' in 
9781           ves_icall_System_IO_FSW_SupportsFSW
9782
9783 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
9784
9785         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
9786         obsolete, removed.
9787
9788 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
9789
9790         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
9791         
9792         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
9793
9794 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
9795
9796         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
9797         Implement generics support.
9798         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
9799
9800         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
9801         type_args and method_args arguments.
9802         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
9803         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
9804         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
9805
9806 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
9807
9808         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
9809           It adds a rootimage parameter to mono_reflection_get_type_internal,
9810           adds new function mono_reflection_get_type_with_rootimage and use
9811           the rootimage to resolve the types instead of the current image
9812
9813 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9814
9815         * culture-info-table.h: Forgot to update after r78304.
9816
9817 2007-07-13  Raja R Harinath  <rharinath@novell.com>
9818
9819         * class.c (mono_class_is_open_constructed_type)
9820         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
9821
9822 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
9823
9824         * class.c (mono_bounded_array_class_get):  method fails if used with
9825         an incomplete TypeBuilder enum (no basetype field), fixed it by 
9826         avoiding calculating the size for such array as it cannot be instantiated.
9827         Fix bug #82015
9828
9829 2007-07-12  Raja R Harinath  <rharinath@novell.com>
9830
9831         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
9832         field.
9833         * metadata.c, reflection.c: Update to changes.
9834
9835 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
9836
9837         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
9838         mono_class_is_valid_enum, they are used to valide a enum when loading.
9839         * reflection.c: used new functions to throw TypeLoadException when and
9840         invalid enum is build with TypeBuilder. Fixes #82018
9841   
9842 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
9843
9844         * object.c: forgot commit of mono_class_setup_methods () to access
9845         iface->methods.
9846         * object-internals.h: added a few more handy fields to
9847         MonoIMTCheckItem.
9848
9849 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
9850
9851         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
9852         iface->methods.
9853
9854 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
9855
9856         * class-internals.h, object-internals.h, object.c: IMT-based
9857         interface invocation core from Massimiliano Mantione
9858         (massi@ximian.com) with a reworked arch-specific interface,
9859         bsearch implementation and a few bugfixes and memory savings by me.
9860
9861 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
9862
9863         * class.c (mono_class_create_from_typedef): mono would segfault if 
9864         an enum did not have a __value field. It now throws a TypeLoadException
9865         for such cases. Fix bug #82022
9866
9867 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
9868
9869         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
9870
9871 2007-07-09  Mark Probst  <mark.probst@gmail.com>
9872
9873         * class.c (mono_class_init): If a class is already inited but has
9874         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
9875
9876 2007-07-09  Mark Probst  <mark.probst@gmail.com>
9877
9878         * class.c: Properly handle the case of an unimplemented interface
9879         method.  Fixes: 81673.
9880
9881 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
9882
9883         * class-internals.h, object.c: cleanup patch from massi: use
9884         MonoVTable->interface_bitmap since the vtable interfaces offset array
9885         is going away.
9886
9887 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
9888
9889         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
9890         GetMDStreamVersion icall instead.
9891
9892 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
9893
9894         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
9895         not use mono_dl_build_path() with a full library name: makes
9896         fallbacks to libgaim and libfam work.
9897
9898 2007-07-06  William Holmes  <billholmes54@gmail.com>
9899
9900         * assembly.c: Added a continue statement in probe_for_partial_name when
9901          parse_assembly_directory_name fails.  Fixes : 82002
9902
9903 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
9904
9905         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
9906         and added a verification  for TYPEDBYREF.
9907         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
9908         make native int interchangeable with int32 and some small cleanup and formating.
9909         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
9910         handle byref of byref.
9911         * verify.c (push_local): handle byref of byref.
9912         * verify.c (do_binop): invalid mix of values is unverifiable
9913         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
9914         added visibility checks
9915         * verify.c (field related method): added visibility checks
9916         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
9917
9918 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
9919
9920         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
9921         string.
9922
9923 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
9924
9925         * profiler.c (mono_profiler_load): Fix an off-by-one error.
9926
9927         * marshal.c (emit_marshal_string): When returning a string from managed code,
9928         allways make a copy even for unicode strings. Fixes #81990.
9929
9930 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
9931
9932         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
9933         of byref generic inst types (bug #81997).
9934
9935 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
9936
9937         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
9938         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
9939
9940 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
9941
9942         * marshal.c (emit_marshal_string): Add support for unicode strings in
9943         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
9944
9945 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
9946
9947         * verify.c: field load/store are now verified, missing only access checks now
9948
9949 2007-06-28  Martin Baulig  <martin@ximian.com>
9950
9951         * mono-debug.c (mono_debug_debugger_version): New public variable.
9952
9953 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
9954
9955         * locales.c: When constructing DateTimeFormat or NumberFormat for
9956         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
9957         MonoCultureInfo contructed from the current locale is always
9958         read-only and has UseUserOverride set to true. All MonoCultureInfo
9959         instances returned for GetCultures have both IsReadOnly and
9960         UseUserOverride set to true. Fixes part of bug #81930.
9961
9962 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
9963
9964        * icall-def.h: Update System.__ComObject icalls
9965        * marshal.c: Avoid managed transition (and object creation)
9966        when looking up COM interface in RCW.
9967        * marshal.h: Ditto.
9968        
9969        Code is contributed under MIT/X11 license.
9970
9971 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
9972
9973         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
9974         to avoid crashes during assembly unloading.
9975
9976 2007-06-22  Raja R Harinath  <rharinath@novell.com>
9977
9978         Fix MethodInfo.IsGenericMethodDefinition
9979         * reflection.c (mono_reflection_bind_generic_method_parameters):
9980         Rearrange code to ensure we always uses a generic method definition.
9981         * class.c (mono_class_inflate_generic_method_full): Set
9982         'generic_container' field only for generic method definitions.
9983         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
9984         Use presense of 'generic_container' field as indication of being a
9985         generic method definition.
9986
9987 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
9988
9989         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9990
9991         * object-internals.h: Reflect changes in the layout of the managed Delegate
9992         class.
9993         
9994         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
9995         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
9996         runtime memory used by the dynamic method. Fixes #77146.
9997
9998 2007-06-21  Dick Porter  <dick@ximian.com>
9999
10000         * file-io.h: 
10001         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
10002         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
10003         81767.
10004
10005 2007-06-21  Raja R Harinath  <rharinath@novell.com>
10006
10007         * reflection.c (method_encode_methodspec): Add a tripwire.
10008         * class.c (inflate_generic_type): The fully open generic type is
10009         not the same as the generic type definition.
10010
10011 2007-06-21  Martin Baulig  <martin@ximian.com>
10012
10013         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
10014
10015         * mono-debug-debugger.h
10016         (MonoDebuggerBreakpointInfo): Removed.
10017         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
10018         (mono_debugger_remove_breakpoint): Likewise.
10019         (mono_debugger_breakpoint_callback): Likewise.
10020         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
10021
10022 2007-06-21  Raja R Harinath  <rharinath@novell.com>
10023
10024         * metadata.c (mono_metadata_lookup_generic_class): The fully open
10025         generic type is not the same as the generic type definition.
10026         * class.c (mono_generic_class_get_class): Likewise.
10027
10028 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
10029
10030         * icall.c: The second argument to 
10031         System.Reflection.MethodBase.GetMethodFromHandleInternalType
10032         is a MonoType not a MonoClass.
10033
10034 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
10035
10036         * verify.c: support for function pointers in the verifier
10037
10038 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
10039
10040         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
10041
10042 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
10043
10044         * assembly.c: removed Mono.Data.SqliteClient from the list of
10045         forward-compatible assemblies as it breaks the ABI (bug #81899).
10046
10047 2007-06-19  Raja R Harinath  <rharinath@novell.com>
10048
10049         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
10050         lookup/update with the loader lock.
10051         * reflection.c (mono_class_bind_generic_parameters): No need to
10052         protect mono_metadata_lookup_* with the loader lock.
10053         * class.c (inflate_generic_type): Likewise.
10054         
10055         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
10056         on a generic instantiated type.
10057
10058 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
10059
10060         *verify.c: produce meanfull error messages on verification error
10061         *verify.c: fixed some cases of verification errors reported as validation errors
10062         *pedump.c: fixed the error name array, now it shows validation errors properly
10063         *verify.h: fixed the contant that should be used for verification errors
10064
10065 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
10066
10067         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
10068         for bug #77596, 81858 and 80743 (generics data structures on domain
10069         unload).
10070
10071 2007-06-15  Raja R Harinath  <rharinath@novell.com>
10072
10073         Avoid allocating 'MonoGenericContext' on the heap.
10074         * class-internals (_MonoMethodInflated::context): Make field
10075         inline, not a pointer.
10076         * loader.c (method_from_methodspec): Allocate 'new_context' on the
10077         stack.  Use the context embedded within the inflated method as the
10078         hash key, rather than 'new_context'.
10079         * class.c (inflate_generic_context): Simplify.  Return a struct
10080         rather than allocating on the heap.
10081         (mono_class_inflate_generic_method_full): Update to changes.  Now,
10082         doesn't salt away a copy of the context -- simplifying the
10083         lifetime rules of a 'MonoGenericContext *'.
10084         (mono_method_get_context): Return pointer to embedded context.
10085         (setup_generic_array_ifaces): Allocate temporary context on stack.
10086         * reflection.c (inflate_mono_method): Likewise.
10087         (mono_reflection_bind_generic_method_parameters): Likewise.
10088         Use the context embedded within the inflated method as the hash key.
10089
10090         Avoid a source of allocation of 'MonoGenericContext'.
10091         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
10092         and 'cached_context' fields into embedded 'MonoGenericContext' field.
10093         * class.c: Update to changes.
10094         (mono_generic_class_get_context): Simplify drastically.  Now just
10095         returns a pointer to the field.
10096         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
10097         argument as a const pointer.
10098         (mono_metadata_generic_context_equal): Likewise.
10099         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
10100         Update to changes.
10101
10102 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
10103
10104         * verify.c improved the handling of brtrue/brfalse, factored out common code
10105
10106 2007-06-14  Raja R Harinath  <rharinath@novell.com>
10107
10108         Kill MonoGenericMethod.
10109         * class-internals.h (MonoGenericContext::method_inst): Rename from
10110         'gmethod' and convert to a MonoGenericInst.
10111         (MonoGenericMethod): Remove.
10112         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
10113         * loader.c (method_from_methodspec): Update to changes.  Use a
10114         MonoGenericContext as the key to the hashtable.
10115         * metadata.c (mono_metadata_generic_context_equal): Rename from 
10116         'mono_metadata_generic_method_equal' and take MonoGenericContext.
10117         (mono_metadata_generic_context_hash): Likewise from
10118         'mono_metadata_generic_method_hash'.  Change hash function.
10119         (mono_metadata_load_generic_params): Update to changes.
10120         (mono_get_shared_generic_method): Remove.
10121         * metadata-internals.h (mono_get_shared_generic_method): Remove.
10122         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
10123         (inflate_generic_context): Likewise.
10124         (mono_class_inflate_generic_method_full): Likewise.
10125         (setup_generic_array_ifaces): Likewise.
10126         (mono_class_create_from_typespec): Likewise.
10127         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
10128         (method_encode_methodspec): Update callsite.
10129         (reflection_methodbuilder_to_mono_method): Update to changes.
10130         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
10131         MonoGenericContext as the key to the hashtable.
10132         (inflate_mono_method): Update to changes.
10133
10134         * class-internals.h (MonoGenericMethod::container): Remove.
10135         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
10136
10137 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
10138
10139         * profiler-private.h, profiler.c, profiler.h: added API to profile
10140         exception events.
10141
10142 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
10143
10144         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
10145
10146 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
10147
10148         * verify.c: method invocation is now validated, now we verify parameter types on stack.
10149         Fixed overflow and underflow not aborting the verification process.
10150
10151 2007-06-13  Mark Probst  <mark.probst@gmail.com>
10152
10153         * class-internals.h (MonoStats): Added stats entries for dynamic
10154         code allocations.
10155
10156 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
10157
10158         * loader.c (mono_free_method): Free header->locals and header->clauses.
10159
10160         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
10161         dynamic case.
10162
10163         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
10164
10165         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
10166
10167 2007-06-12  Raja R Harinath  <rharinath@novell.com>
10168
10169         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
10170         the tables.
10171
10172 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
10173
10174         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
10175
10176 2007-06-11  Raja R Harinath  <harinath@gmail.com>
10177
10178         MonoGenericMethod on a diet
10179         * class-internals.h (_MonoMethodInflated::reflection_info): Move
10180         here ...
10181         (_MonoGenericMethod::reflection_info): ... from here.
10182         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
10183         Update to changes.
10184         * reflection.c (inflate_mono_method): Likewise.
10185         (mono_reflection_bind_generic_method_parameters): Likewise.
10186
10187 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
10188
10189         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
10190         *verify.c: factored long ldarg forms to share code with short forms
10191
10192 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
10193
10194         *verify.c: fixed code formating factored some duplicate code
10195         into a new function
10196
10197         *verify.h: fixed binary incompatibility introduced earlier
10198
10199         *pedump.c: fixed formating
10200
10201 2007-06-11  Raja R Harinath  <harinath@gmail.com>
10202
10203         Fix assertion when disassembling Mono.C5.dll
10204         * loader.c (method_from_methodspec): Avoid inflating a method
10205         twice with the same context.  If the methodref is inflated, use
10206         the declaring method instead.
10207
10208         * class.c (mono_class_from_generic_parameter): Fix case similar to
10209         bug #81830 handled below, but for method containers.
10210
10211 2007-06-10  Raja R Harinath  <harinath@gmail.com>
10212
10213         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
10214         get_shared_generic_class.  Directly inflate the instance.
10215         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
10216         (inflate_generic_class): Delete.
10217         (get_shared_generic_class): Delete.  Move setting of
10218         'cached_class' and 'cached_context' ...
10219         * metadata.c (mono_metadata_lookup_generic_class): ... here.
10220
10221         * metadata.c (mono_metadata_lookup_generic_class): Change
10222         signature to take the components of a MonoGenericClass rather than
10223         an allocated MonoGenericClass.  Change semantics to be intern-like.
10224         * reflection.c (mono_class_bind_generic_parameters): Update to
10225         changes.  Make locking region tighter.
10226         * class.c (inflate_generic_class): Update to changes.
10227         (get_shared_generic_class): Likewise.
10228         * metadata-internals.h: Likewise.
10229
10230         * reflection.c (mono_class_bind_generic_parameters): Take and
10231         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
10232         (mono_reflection_bind_generic_parameters): Use
10233         'mono_class_bind_generic_parameters' rather than duplicate the code.
10234         * class.c (mono_bounded_array_class_get): Update to changes.
10235         * object-internals.h: Likewise.
10236
10237         * reflection.c (mono_class_bind_generic_parameters): Only support
10238         parameterizing generic type definitions.  Remove support for other
10239         open types.
10240
10241 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
10242
10243         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
10244
10245         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
10246         in the dynamic case.
10247
10248 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
10249
10250         * threads.c: When cleaning up thread, reset the Background bit.
10251         Fixes bug #81720.
10252
10253 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
10254
10255        * metadata.c: Move variable declarations to top of scope.
10256        * verify.c: Move variable declarations to top of scope.
10257
10258        Code is contributed under MIT/X11 license.
10259
10260 2007-06-08  Raja R Harinath  <rharinath@novell.com>
10261
10262         * reflection.c (mono_class_bind_generic_parameters): Replace
10263         open-coded loop with mono_metadata_inflate_generic_inst.
10264
10265         * class.c (get_shared_generic_class): Don't call
10266         mono_get_shared_generic_inst.  Use the container's own
10267         'class_inst'.
10268
10269         * metadata.c (mono_metadata_load_generic_params): Move
10270         initialization of 'context' field here from ...
10271         * class.c (mono_class_create_from_typedef): ... here, and ...
10272         * loader.c (mono_get_method_from_token): ... here.
10273
10274         * class.c (get_shared_generic_class): Rename from
10275         mono_get_shared_generic_class and make static.
10276         (mono_get_shared_generic_inst): Move to metadata.c.
10277         * loader.c (mono_get_shared_generic_method): Likewise.
10278         * class-internals.h, metadata-internals.h: Update to changes.
10279
10280         Fix #81830
10281         * class.c (mono_class_from_generic_parameter): Don't assume a
10282         generic container owner exists.  Generic containers from monodis
10283         don't have any.
10284
10285 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
10286
10287         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
10288         * verify.h: new typedefs to returns the non-verifiable status
10289         * verify.c: initial implementation of generics, stack merging and object compatibility check
10290
10291 2007-06-06  Mark Probst  <mark.probst@gmail.com>
10292
10293         * class.c, image.c, class-internals.h (MonoImage): class_cache is
10294         a MonoInternalHashTable again (fixed bug in internal hash table
10295         code).
10296
10297 2007-06-06  Mark Probst  <mark.probst@gmail.com>
10298
10299         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
10300         MonoInternalHashTable again (fixed bug in internal hash table
10301         code).
10302
10303 2007-06-06  Mark Probst  <mark.probst@gmail.com>
10304
10305         * class.c, image.c, class-internals.h, domain.c,
10306         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
10307         changes.  Have to figure out what makes them break the SWF
10308         regression.
10309
10310 2007-06-04  Mark Probst  <mark.probst@gmail.com>
10311
10312         * class.c, image.c, class-internals.h (MonoImage): class_cache is
10313         a MonoInternalHashTable now.
10314
10315 2007-06-04  Mark Probst  <mark.probst@gmail.com>
10316
10317         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
10318         MonoInternalHashTable now.
10319
10320 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
10321
10322         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
10323         invoke_impl code.
10324
10325         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
10326
10327         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
10328         dependent trampoline.
10329
10330         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10331
10332         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
10333
10334 2007-05-29  Robert Jordan  <robertj@gmx.net>
10335
10336         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
10337
10338 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
10339
10340         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
10341
10342 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
10343
10344        * marshal.c: Fix interface lookup loops for
10345        cominterop_get_com_slot_for_method and 
10346        cominterop_get_method_interface. Only need to lookup
10347        if type is a class, else use interface type method is on.
10348
10349        Code is contributed under MIT/X11 license.
10350
10351 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
10352
10353         * reflection.c: HasSecurity can be present even if no specially 
10354         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
10355         SecurityAttribute). Fix CAS regression tests on buildbot.
10356
10357 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
10358
10359        * appdomain.c: Add configure checks for header files.
10360        * image.c: Add configure checks for header files.
10361        * file-io.c: Add configure checks for header files.
10362        * debug-mono-symfile.c: Add configure checks for header files.
10363        * threadpool.c: Add configure checks for header files.
10364        * console-io.c: Add configure checks for header files.
10365        * profiler.c: Add configure checks for header files.
10366        * rawbuffer.c: Add configure checks for header files.
10367        * icall.c: Add configure checks for header files.
10368        * rand.c: Add configure checks for header files.
10369        * socket-io.c: Add configure checks for header files.
10370
10371        Code is contributed under MIT/X11 license.
10372
10373 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
10374
10375         * reflection.c (mono_custom_attrs_from_builders): Remove the 
10376         assertion as it breaks the build.
10377         
10378         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
10379
10380         * reflection.c (lookup_custom_attr): Make a copy here too.
10381
10382         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
10383         dynamic images.
10384
10385         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
10386         images.
10387
10388         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
10389         info.
10390
10391 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
10392
10393         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
10394         (load_cattr_value): Ditto.
10395
10396 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
10397
10398         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
10399
10400 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
10401
10402         * threads.c: In "start_wrapper", set apartment_state to MTA if
10403         apartment_state is Unknown and we're running on 2.0 profile or
10404         higher.
10405         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
10406         to main method, then set apartment_state to Unknown on 1.0 profile,
10407         and MTA on 2.0 profile.
10408
10409 2007-05-16  Jb Evain  <jb@nurv.fr>
10410
10411         * class-internals.h (MonoDefaults): Add an attribute_class and
10412           customattribute_data_class.
10413         * domain.c (mono_init_internal): Populate them.
10414         * reflection.c: Use them to remove duplicates. Make a vew
10415         MonoClass variables `static'.
10416
10417 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
10418
10419         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
10420         step in implementing IMT, so that all isinst checks now can go
10421         through the bitmap.
10422         This was needed because vtables for TransparentProxy need to look
10423         like the vtable of the "target" class, so they need to point to
10424         its interface bitmap directly.
10425
10426         * object.c: inside "mono_class_create_runtime_vtable" and
10427         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
10428
10429 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
10430
10431         * object-internals.h
10432           culture-info.h : added territory field in MonoCulture and
10433           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
10434         * locales.c : fill territory field above too.
10435         * culture-info-table.h : regenerated.
10436
10437 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
10438
10439         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
10440         Fixes #81599.
10441
10442 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
10443
10444         * object.c: Always initialize apartment, even if 
10445         there is no custom attributes on entry point.
10446         
10447         Code is contributed under MIT/X11 license.
10448
10449 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
10450
10451         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
10452         * metadata.c: If no encoding is set, check for unicode
10453         on class.
10454         
10455         Code is contributed under MIT/X11 license.
10456
10457 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
10458
10459         * threads.c: Handle if mono_thread_current returns NULL 
10460         
10461         Code is contributed under MIT/X11 license.
10462
10463 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
10464
10465         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
10466         in start_wrapper. Added mono_thread_init_apartment_state and
10467         mono_thread_cleanup_apartment_state.
10468         * object.c: Initialize thread apartment state on main thread
10469         by checking for STAThreadAttribute on entry point.
10470         * object-internals.h: Add apartment_state field to MonoThread.
10471         * threads-types.h: Add unmanaged definition of 
10472         System.Threading.ApartmentState, MonoThreadApartmentState.
10473         
10474         Code is contributed under MIT/X11 license.
10475         
10476 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
10477
10478         * class.c: Fix windows build.
10479         * class-internals.h: Fix windows build.
10480         
10481         Code is contributed under MIT/X11 license.
10482
10483 2007-05-08  Robert Jordan  <robertj@gmx.net>
10484
10485         * process.c (CreateProcess_internal):
10486         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
10487         .CreateNoWindow was specified. Fixes #81496.
10488
10489 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
10490
10491         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
10492         step in implementing IMT, replaced it with two compact arrays
10493         (interfaces_packed and interface_offsets_packed) and a bitmap that
10494         is used for isinst checks (interface_bitmap).
10495
10496         * class.c: (compare_interface_ids): compare function to pass to
10497         bsearch when looking for an interface with a given id.
10498         (mono_class_interface_offset): reimplemented using bsearch on
10499         interfaces_packed, getting the offset from interface_offsets_packed.
10500         (print_implemented_interfaces): utility debugging function.
10501         (setup_interface_offsets): reworked to initialize interfaces_packed,
10502         interface_offsets_packed and interface_bitmap.
10503
10504         * object.c: replaced all accesses to "MonoClass.interface_offsets"
10505         with uses of interfaces_packed and interface_offsets_packed.
10506
10507 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
10508
10509         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
10510         mono_class_interface_offset prototype to wrap all accesses to
10511         "MonoClass.interface_offsets".
10512
10513         * class.c: Implemented mono_class_interface_offset, and wrapped all
10514         accesses to "MonoClass.interface_offsets".
10515
10516         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
10517         "MonoClass.interface_offsets".
10518
10519 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
10520
10521         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
10522         GetMethodFromHandle overloads (bug #78637).
10523
10524 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
10525
10526         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
10527         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
10528
10529 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
10530
10531         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
10532         #81498.
10533
10534         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
10535         gracefully.
10536         (mono_custom_attrs_from_index): Ditto.
10537
10538         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
10539         Fixes #81501.
10540
10541 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
10542
10543         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
10544         is now allocated from a mempool.
10545
10546 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
10547
10548         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
10549         caller holds threads_lock, leading to deadlocks. Fixes #81476.
10550
10551 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
10552
10553         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
10554         mono_loader_clear_error () too late. Fixes #81463.
10555
10556 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
10557
10558         * culture-info-table.h : regenerated.
10559
10560 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
10561
10562         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
10563         is missing.
10564
10565 2007-04-25  Dick Porter  <dick@ximian.com>
10566
10567         * Makefile.am: Put the mingw enforced-optimisation back into the
10568         PLATFORM_WIN32 section.
10569
10570 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
10571
10572         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
10573         patch.
10574
10575         * image.c (mono_image_load_module): New API function to load a module reference.
10576
10577         * image.c (load_modules): Load modules lazily. Fixes #80812.
10578
10579         * class.c (mono_class_from_typeref): Use mono_image_load_module.
10580         
10581         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
10582
10583         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
10584         to mono_image_load_module_dynamic.
10585
10586 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
10587
10588         * marshal.c: Fix calling convention for CCW on non-windows
10589         platforms. STDCALL on windows, CDECL everywhere else to work 
10590         with XPCOM and MainWin COM.
10591         
10592         Code is contributed under MIT/X11 license.
10593
10594 2007-04-23  Martin Baulig  <martin@ximian.com>
10595
10596         Fix #80969.
10597
10598         * loader.c
10599         (method_from_memberref): Added `gboolean *used_context' argument.
10600         (mono_get_method_from_token): Likewise.
10601         (mono_get_method_full): Don't insert the method in the cache when
10602         `used_context' is true.
10603
10604 2007-04-23  Raja R Harinath  <rharinath@novell.com>
10605
10606         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
10607
10608         * reflection.c (mono_reflection_bind_generic_parameters): Don't
10609         create new MonoTypes for returned types.
10610         * class.c (mono_generic_class_get_class): Export mono-internal.
10611         * class-internals.h: Update to changes.
10612
10613 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
10614
10615         * threadpool.c, threadpool.h, icall-def.h: patch from
10616         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
10617
10618 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
10619
10620         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
10621         
10622         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
10623
10624         * threads.c (mono_thread_get_stack_bounds): New helper function.
10625
10626         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
10627         Correctly compute stack bounds when attaching. Fixes #81394.
10628
10629 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
10630
10631         * reflection.c: fix handling of doubles in custom attributes
10632         for the arm-fpa format (bug #81368).
10633
10634 2007-04-18  Raja R Harinath  <rharinath@novell.com>
10635
10636         * reflection.c (assembly_add_win32_resources): Mildly relax an
10637         bounds check to let the end pointer point just past the end of the
10638         allocated buffer.  (may fix #81384)
10639
10640 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
10641
10642         * culture-info-table.h : regenerated.
10643
10644 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
10645
10646         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
10647         the thread is aborted early.
10648
10649 2007-04-05  Dick Porter  <dick@ximian.com>
10650
10651         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
10652         FindFirstFile()/FindNextFile() to find entries.  This lets the
10653         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
10654         81038.
10655
10656         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
10657         the parameters of
10658         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
10659
10660 2007-04-04  Martin Baulig  <martin@ximian.com>
10661
10662         * debug-helpers.c
10663         (mono_method_desc_full_match): Add support for nested classes.
10664
10665 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
10666
10667         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
10668
10669 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
10670
10671         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
10672         waiting for too many threads.
10673
10674 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
10675
10676         * environment.c: Fix return value check on uname so we can get the 
10677         executing version on Solaris operating systems.
10678
10679 2007-03-28  Jb Evain  <jbevain@gmail.com>
10680
10681         * class.c (mono_type_get_name_recurse): Complete the
10682         fix for the creation of assembly qualified names for
10683         pointer types. Fixes #81208.
10684
10685 2007-03-27  Dick Porter  <dick@ximian.com>
10686
10687         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
10688         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
10689         changed.
10690
10691         * threads.c
10692         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
10693         the value of ReleaseMutex().
10694
10695 2007-03-27  Dick Porter  <dick@ximian.com>
10696
10697         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
10698         in little-endian order, not network endian, so must be converted
10699         to host endian here.  Fixes bug 80593.
10700
10701 2007-03-22  Jb Evain  <jbevain@gmail.com>
10702
10703         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
10704         qualified names for pointer types. Fixes #81208.
10705
10706 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
10707
10708         * marshal.c: Add support for PreserveSigAttribute. 
10709         
10710         Code is contributed under MIT/X11 license.
10711
10712 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
10713
10714         * process.c: Fix endianness issues. Fixes #81126.
10715
10716         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
10717         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
10718
10719         * image.c (mono_image_lookup_resource): Make this work on big-endian
10720         machines.Change API contract so the caller needs to free the return value.
10721         
10722         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
10723         API change.
10724         
10725 2007-03-14  Martin Baulig  <martin@ximian.com>
10726
10727         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
10728         mono_type_get_desc() as well.
10729
10730 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
10731
10732         * icall.c:  Fix environ access in VS.  
10733         
10734 2007-03-13  Alp Toker  <alp@atoker.com>
10735
10736         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
10737         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
10738         #63841.
10739
10740 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
10741
10742         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
10743         circular references among dynamic methods. Fixes #81091.
10744
10745         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
10746
10747 2007-03-09  Martin Baulig  <martin@ximian.com>
10748
10749         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
10750
10751 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
10752
10753         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
10754         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
10755         
10756         Code is contributed under MIT/X11 license.
10757         
10758 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
10759
10760         * loader.c: Reapply patch for bug #79424.
10761
10762 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
10763
10764         * metadata.c (mono_type_to_unmanaged): Only convert object to
10765         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
10766
10767 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
10768
10769         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
10770         (and incorrectly set) is_reference field from MonoGenericInst.
10771
10772 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
10773
10774         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
10775         a little earlier.
10776
10777         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
10778
10779         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
10780
10781 2007-03-05  Miguel de Icaza  <miguel@novell.com>
10782
10783         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
10784         FileOptions.1 value to mean "temporary", map that to
10785         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
10786
10787         Fixes 80688
10788
10789 2007-03-03  Marek Habersack  <mhabersack@novell.com>
10790
10791         * appdomain.c: implement MS .Net style shadow copying. Copies of
10792         the assemblies are made in a subdirectory of the dynamic base
10793         directory, the assembly names are preserved.
10794         Copy .mdb and .config files along with the assemblies being shadowed.
10795
10796 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
10797
10798         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
10799         (emit_marshal_handleref): Ditto.
10800
10801         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
10802         on Visual C++. Fixes #80671.
10803
10804 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
10805
10806         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
10807         for clone operations.
10808
10809 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
10810
10811         * marshal.c: Fix warnings.
10812
10813 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
10814
10815         * loader.c: allow case-insensitive matching of the dll name
10816         in dllmap handling when prefixed with "i:".
10817
10818 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
10819
10820         * threads.c: Fix #ifdef for dummy_apc function for VS.
10821
10822 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
10823
10824         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
10825
10826 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
10827         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
10828         giving precedence to the methods with a fully qualified name
10829         (InterfaceName.MethodName) when building the interface sections
10830         of the vtable.
10831
10832 2007-02-16  Dick Porter  <dick@ximian.com>
10833
10834         * threadpool.c (append_job): Fix fast-path array handling, so it's
10835         less likely the array will grow exponentially when the load is
10836         heavy.
10837
10838 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
10839
10840         * metadata-internals.h, loader.c: fix dllmap lookup order
10841         for non-function maps, too, and prepare for fallback code.
10842
10843 2007-02-12  Robert Jordan  <robertj@gmx.net>
10844
10845         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
10846         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
10847         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
10848         GlobalFree. Fixes a part of bug #77075.
10849
10850 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
10851
10852         * loader.c: implemented typedef parent in field memberref.
10853
10854 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
10855
10856         * marshal.c: Fix warnings and remember to call Release on
10857         IUnknown of RCW.
10858         
10859         Code is contributed under MIT/X11 license.
10860
10861 2007-02-10  Miguel de Icaza  <miguel@novell.com>
10862
10863         * class-internals.h: Add MonoHandleRef definition, and
10864         handleref_class to mono_defaults. 
10865
10866         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
10867         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
10868
10869         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
10870         (do nothing on this stage)
10871         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
10872         (emit_marshal_handleref): New method, used for argument handling
10873         of HandleRefs. 
10874
10875 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
10876
10877         * class.c (mono_class_setup_parent): Lazily init com types.
10878         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
10879         init com types.
10880         * object.c (mono_remote_class_vtable): Lazily init com types.
10881         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
10882         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
10883         * domain-internals.h: Expose mono_init_com_types.
10884         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
10885         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
10886         Add support for COM Callable Wrapper marshalling.
10887         * marshal.h: Add icall definitions.
10888         * gc.c: Handle freeing of CCWs in finalizer code.
10889         
10890         Code is contributed under MIT/X11 license.
10891
10892 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
10893
10894         * reflection.c: changed all the signature encoding code to use
10895         a variable-sized buffer.
10896
10897 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
10898
10899         * marshal.c: locking fixes: never take the loader lock
10900         or other runtime locks when holding the marshal lock
10901         (fixes bug#80664).
10902
10903 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
10904
10905         * marshal.c: make the delegate function pointer mapping
10906         work for the moving GC.
10907
10908 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
10909
10910         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
10911         for bug #80618.
10912
10913 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
10914
10915         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
10916         gmodule.
10917
10918 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
10919
10920         * threadpool.c: made the code moving-GC safe.
10921
10922 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
10923
10924         * assembly.c, boehm-gc.c, class-internals.h, class.c,
10925         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
10926         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
10927         warning cleanup.
10928         * reflection.c: warning cleanup, some threading and moving GC fixes.
10929
10930 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
10931
10932         * class.c, loader.c: create the needed Set/Get/Address array methods
10933         as well as the .ctors in mono_class_init (), fixes bug #80567.
10934
10935 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
10936
10937         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
10938         we doesn't decrease its alignment. Should fix the sparc build.
10939
10940 2007-01-24  Dick Porter  <dick@ximian.com>
10941
10942         * socket-io.c
10943         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
10944         Create the returned object if we need to ignore an unsupported
10945         socket option.  Fixes a segfault reported by Atsushi.
10946
10947 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
10948
10949         * class.c, object.c: restrict GC-tracked fields to
10950         UIntPtr fields used inside corlib, so we provide better
10951         type info to the GC and also allow broken packing as in
10952         bug #80580.
10953
10954 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
10955
10956         * sgen-gc.c: removed duplicated function.
10957
10958 2007-01-19  Miguel de Icaza  <miguel@novell.com>
10959
10960         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
10961         value that means that the value is not supported, but that we
10962         should not return a failure, but instead report this as a
10963         successful operation.
10964
10965 2007-01-19  Raja R Harinath  <rharinath@novell.com>
10966
10967         Fix tests/bug79956.2.il
10968         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
10969         (mono_generic_class_get_class): If the generic definition in an
10970         enum, copy over other fields related to it.
10971
10972 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
10973
10974         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
10975         genericinst enums (bug #79215).
10976
10977 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
10978         * class.c: Fix bug 80307.
10979
10980 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
10981
10982         * image.c: if the file table is not present, try to load
10983         all the modules, since we don't have info about them
10984         having or not metadata (bug #80517).
10985         * assembly.c: allow mono_assembly_load_references () to
10986         work for netmodules.
10987
10988 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
10989
10990         * image.c, metadata-internals.h, object.c: execute module
10991         cctors when running on the 2 runtime if present (bug #80487).
10992
10993 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
10994
10995         * icall.c: optimized InitializeArray() on bigendian.
10996
10997 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
10998
10999         * icall.c: fix for the broken ARM FPA double format.
11000
11001 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
11002
11003         * icall.c: handle endian issues for r4 and r8 types, too, in
11004         the InitializeArray() icall.
11005
11006 2007-01-15  Miguel de Icaza  <miguel@novell.com>
11007
11008         * loader.c (mono_loader_error_prepare_exception): Clear the error
11009         once we have extracted the information from it, do this before we
11010         call into the JIT's class loading mechanisms.
11011
11012         * object.c (mono_class_create_runtime_vtable): Do not clear the
11013         loader error before calling mono_class_get_exception_for_failure
11014         as the loader error is needed inside
11015         mono_class_get_exception_for_failure to throw the error (thinko).
11016
11017         Fixes #80521
11018         
11019 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
11020
11021         * reflection.c: align fields rva data so it's faster to load at
11022         runtime.
11023
11024 2007-01-12  Raja R Harinath  <rharinath@novell.com>
11025
11026         Prepare to simplify GenericMethod handling.
11027         * class-internals.h (mono_method_get_context): New accessor function.
11028         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
11029         rather than directly accessing '->context' field.
11030
11031         * class-internals.h (_MonoGenericParam.method): Move ...
11032         (_MonoGenericContainer): ... here.  Add into union with klass field.
11033         * class.c, icall.c, loader.c, metadata.c, reflection.c:
11034         Update to changes.
11035
11036 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
11037
11038         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
11039         the wrapper type enum and reduce relocations.
11040
11041 2007-01-12  Raja R Harinath  <rharinath@novell.com>
11042
11043         * reflection.c (inflate_mono_method): Reuse method instantiation
11044         from the generic method, if available.
11045
11046 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
11047
11048         * marshal.c (emit_marshal_variant): Fix conv_arg
11049         type in last commit, based on whether parameter is byref.
11050         
11051 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
11052
11053         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
11054         marshalling.
11055         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
11056         MONO_TYPE_OBJECT back for VARIANT support.
11057
11058 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
11059
11060         * marshal.c, marshal.h, icall-def.h: Implement 
11061         Marshal.ReAllocCoTaskMem.
11062
11063 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
11064
11065         * marshal.c: memory retention fixes: use the proper
11066         image cache for runtime_invoke method lookups.
11067
11068 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
11069
11070         * mempool.c: added code to help debug mempool allocations.
11071
11072 2007-01-11  Dick Porter  <dick@ximian.com>
11073
11074         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
11075         support (experimenting with faking it with IP_MTU_DISCOVER for
11076         systems that don't have IP_DONTFRAGMENT.)
11077         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
11078         icall.
11079
11080         * icall-def.h: new System.Net.Sockets.Disconnect icall.
11081
11082         * socket-io.h: Add new fields to MonoSocketAsyncResult
11083         corresponding to the new ones in Socket.cs.
11084
11085 2007-01-11  Raja R Harinath  <rharinath@novell.com>
11086
11087         Fix IronPython regression mentioned in #80249
11088         * metadata.c (do_mono_metadata_parse_generic_class): Clear
11089         'cached_context' field, since it may have been initialized as a
11090         side-effect of metadata parsing.
11091
11092         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
11093         (_MonoGenericClass.cached_class): Move here and rename from lone
11094         remaining field of ...
11095         (_MonoInflatedGenericClass): ... this.  Remove.
11096         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
11097         to changes.
11098
11099         Fix mcs/tests/test-128.cs regression.
11100         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
11101         2007-01-10 change below.
11102         [MONO_TYPE_OBJECT]: Recurse into array case.
11103
11104 2007-01-11  Raja R Harinath  <harinath@gmail.com>
11105
11106         * class-internals.h (mono_get_inflated_generic_class): Remove.
11107         * class.c (mono_get_inflated_generic_class): Remove.
11108         (mono_generic_class_get_class): Rename from
11109         mono_class_create_generic.
11110         (mono_class_from_mono_type) [GENERICINST]: Use it.
11111         * reflection.c, metadata.c: Update to changes.  Use
11112         'mono_class_from_mono_type'.
11113
11114 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
11115
11116         * reflection.c: use passed type when encoding an array element
11117         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
11118
11119 2007-01-09  Robert Jordan  <robertj@gmx.net>
11120
11121         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
11122         result arguments (someDelegate.EndInvoke (unrelatedAres)).
11123         Fixes bug #80392.
11124
11125 2007-01-09  Raja R Harinath  <rharinath@novell.com>
11126
11127         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
11128
11129         * object.c (set_value): Avoid aliasing between type->data.klass
11130         and type->data.generic_class.
11131
11132         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
11133
11134 2007-01-08  Raja R Harinath  <rharinath@novell.com>
11135
11136         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
11137         between type->data.klass and type->data.generic_class.
11138
11139 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
11140
11141         * marshal.c: In MS.NET, StringBuilder objects are not copied by
11142         value in out parameters.
11143
11144 2007-01-08  Raja R Harinath  <rharinath@novell.com>
11145
11146         Simplify invariant for MonoGenericClass::klass field.
11147         * class.c (mono_class_create_generic): Verify 'klass' is null.
11148         * metadata.c (do_mono_metadata_parse_generic_class): Don't
11149         initialize 'klass' field.
11150
11151 2007-01-05  Raja R Harinath  <rharinath@novell.com>
11152
11153         Ongoing work to avoid redundant data and simplify invariants.
11154         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
11155         'generic_class', and change type to a GenericInst.
11156         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
11157         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
11158
11159 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
11160
11161         * class.c : skip io-layer under PLATFORM_WIN32.
11162
11163 2007-01-03  Tor Lillqvist  <tml@novell.com>
11164
11165         Fix #80305: In a bundled executable, look in the bundled exe
11166         assembly to determine the runtime version. Add the possibility to
11167         bundle also the machine.config file.
11168         
11169         * assembly.c (mono_assembly_open_from_bundle): Make
11170         non-static. Allow being called even if we have no bundled
11171         assemblies, and return NULL right away in that case.
11172
11173         * domain-internals.h: Declare mono_assembly_open_from_bundle()
11174         here.
11175
11176         * domain.c (app_config_parse): Take an assembly exe file name as
11177         parameter instead of a config file name. Check for a bundled
11178         config file for that assembly by calling
11179         mono_config_string_for_assembly_file() (see below) before looking
11180         for one in the file system.
11181         (get_runtimes_from_exe): Corrsponding change to call of
11182         app_config_parse().
11183         (get_runtimes_from_exe): Check for bundled assembly exe file first
11184         by calling mono_assembly_open_from_bundle(). If no bundled
11185         assembly exe file is found, call mono_image_open() as before to
11186         look it up in the file system.
11187
11188         * mono-config.c: Add variable bundled_machinec_onfig.
11189         (mono_config_string_for_assembly_file): New function.
11190         (mono_config_for_assembly): Move code snippet that looks for a
11191         bundled assembly .config file into the above new function. Call
11192         it.
11193         (mono_register_machine_config, mono_get_machine_config): New
11194         functions to set and retrieve
11195
11196         * assembly.h: Declare mono_register_machine_config().
11197
11198         * mono-config.h: Declare mono_get_machine_config() and
11199         mono_config_string_for_assembly_file().
11200
11201         * icall.c: No declaration of environ necessary on Win32. It is
11202         declared (as a macro expanding to a function call) in stdlib.h.
11203         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
11204         New internal mono function. Returns the value of
11205         mono_get_machine_config() as a Mono string.
11206
11207         * icall-def.h: Add get_bundled_machine_config().
11208
11209 2007-01-04  Raja R Harinath  <rharinath@novell.com>
11210
11211         Remove redundant field
11212         * class-internals.h (_MonoGenericContext.container): Remove field.
11213         * loader.c (mono_method_get_signature_full): Don't parse a
11214         "container" for a signature parse when the signature is inflated
11215         immediately.
11216         (method_from_methodspec): Likewise, for a generic_inst.
11217         * class.c, metadata.c, reflection.c: Update to changes.
11218
11219 2006-01-04  Raja R Harinath  <rharinath@novell.com>
11220
11221         * class-internals.h (_MonoGenericClass): Rename 'context' field to
11222         'cached_context', and change semantics -- it starts off NULL, and
11223         is initialized on demand.
11224         * class.c (mono_generic_class_get_context): New accessor to
11225         replace 'context' field accesses.
11226         (mono_class_get_context): New helper.
11227         (*): Update to changes.
11228         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
11229
11230 2007-01-03  Miguel de Icaza  <miguel@novell.com>
11231
11232         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
11233         before the memcpy.   Fixes Marshal2 regression.
11234
11235 2007-01-02  Jb Evain  <jbevain@gmail.com>
11236
11237         * blob.h: add a MONO_TYPE_ENUM definition
11238         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
11239         fix the encoding of arrays of enums in custom attributes.
11240
11241         Fixes #79666.
11242
11243 2007-01-01  Miguel de Icaza  <miguel@novell.com>
11244
11245         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
11246         string is null terminated, but only cut the string short if it
11247         overflows the buffer.   
11248         
11249         (mono_string_to_byvalstr): Also fix this routine.   The code here
11250         was not properly terminating a string (it was only terminated
11251         because of the previous catch-all memset). 
11252
11253         I left the memset, because I do not know if applications expect
11254         the runtime to clear this region. 
11255
11256         Fixes #79944.
11257
11258         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
11259         Clear the error before returning to unmanaged code to prevent the
11260         runtime from being confused later on (fixes  80420).
11261         (ves_icall_type_from_name): Always call mono_loader_clear_error
11262         after parsing a type that could have failed.
11263         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
11264
11265         * loader.c (mono_loader_clear_error): Fix indentation.
11266
11267 2006-12-28  Martin Baulig  <martin@ximian.com>
11268
11269         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
11270
11271 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
11272
11273         * reflection.c: patch from Rolf Bjarne Kvinge to fix
11274         getting a token for an EnumBuilder.
11275
11276 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
11277
11278         * reflection.c: be more careful in case resource generation
11279         fails to create the data array.
11280
11281 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
11282
11283         * sgen-gc.c: write barrier for clone and fix unregister handles.
11284
11285 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
11286
11287         * reflection.c: some fixes needed in the generics code for the moving GC.
11288
11289 2006-12-22  Robert Jordan  <robertj@gmx.net>
11290
11291         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
11292         account. Fixes bug #80299.
11293
11294 2006-12-21  Raja R Harinath  <rharinath@novell.com>
11295
11296         Fix WaitHandle usage in delegates.
11297         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
11298         * object.c (mono_wait_handle_new): Use the property set method to
11299         initialize the handle.
11300         (mono_wait_handle_get_handle): New.
11301         * threadpool.c (mono_async_invoke): Use it.
11302         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
11303         Likewise.
11304         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
11305
11306 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
11307
11308         * marshal.c (emit_marshal): Call emit_marshal_variant and
11309         emit_marshal_com_interface when applicable.
11310         (emit_marshal_variant, emit_marshal_com_interface): Add
11311         methods for this case and remove if's from emit_marshal_object.
11312         
11313 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
11314
11315         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
11316
11317 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
11318
11319         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
11320         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
11321         and GlobalFree on Windows. Remove FIXME.
11322
11323 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
11324
11325         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
11326         implementation for managed objects.
11327
11328 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
11329
11330         * object.c: implemented code to be used for checking
11331         that no reference field overlaps with non-references.
11332
11333 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
11334
11335         * threadpool.c: fix queue code to be compatible with the
11336         moving GC.
11337
11338 2006-12-18  Miguel de Icaza  <miguel@novell.com>
11339
11340         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
11341         in structures by throwing ArgumentNullException.
11342
11343         (emit_marshal_safehandle): Also when they are null parameters.
11344
11345         (emit_marshal_safehandle): Add support for ref
11346         SafeHandles parameters
11347
11348 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11349
11350         * profiler.c: updated to use the mono-dl API instead of
11351         gmodule.
11352
11353 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
11354
11355         * profiler.c: updated to use the mono-dl dynamic loading
11356         API instead of gmodule.
11357
11358 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
11359
11360         * profiler.c: use readlink, older versions of glib don't have
11361         g_file_read_link ().
11362
11363 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11364
11365         * profiler.c: try to detect the path to mono if libc fails to provide
11366         a useful name (bug #80286).
11367
11368 2006-12-16  Raja R Harinath  <rharinath@novell.com>
11369
11370         Fix #80242
11371         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
11372         instance, use the generic type definition instead.
11373         (ves_icall_Type_GetNestedTypes): Likewise.
11374         * class.c (mono_class_create_generic): Always set the
11375         nested_classes of a generic instance to NULL, even if the generic
11376         type definition has nested types.
11377
11378 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
11379
11380         * marshal.c (mono_string_from_bstr): Revert previous Windows change
11381         and fix on Linux.
11382         
11383 2006-12-15  Miguel de Icaza  <miguel@novell.com>
11384
11385         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
11386         my arguments were in the wrong order.   I also fixed the Windows
11387         version which seems to have had the same issue.
11388
11389         (mono_free_bstr): On Unix, this is g_free.
11390         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
11391         conversions (for the tests in corlib to pass).
11392
11393 2006-12-14  Miguel de Icaza  <miguel@novell.com>
11394
11395         * marshal.c (emit_ptr_to_object_conv): For now, ignore
11396         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
11397         exception if a ref SafeHandle in a struct has changed).
11398         
11399         (emit_struct_conv): Do not perform layout checks for classes
11400         derived from SafeHandle, as those are specially handled. 
11401
11402         (emit_object_to_ptr_conv): Add support for
11403         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
11404
11405         (emit_marshal_safehandle): Implement conversion of return values
11406         of safehandles (MARSHAL_ACTION_CONV_RESULT).
11407         
11408         * threads.c: WaitHandle now is compiled with two different handles
11409         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
11410         for 2.0.
11411         
11412         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
11413         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
11414         these routines to cope with both kinds of fields.
11415
11416 2006-12-12  Miguel de Icaza  <miguel@novell.com>
11417
11418         * metadata.c (mono_type_to_unmanaged): Handle the case where
11419         type->data.klass is a SafeHandle, and in that case, return the
11420         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
11421         MONO_MARSHAL_CONV_SAFEHANDLE. 
11422
11423 2006-12-11  Miguel de Icaza  <miguel@novell.com>
11424
11425         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
11426         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
11427         calling emit_marshal_object.
11428
11429         (emit_marshal_safehandle): Implement marshalling of
11430         SafeHandle parameters (no ref support yet).
11431
11432         (MarshalAction): Document the defines as I implement
11433         them for SafeHandle.
11434
11435         (emit_marshal_object): indentation police.
11436
11437         * class-internals.h: Define MonoSafeHandle.
11438         Add safehandle_class to MonoDefaults type.
11439
11440         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
11441         list of classes to check for fields. 
11442
11443         * domain.c (mono_init_internal): Add SafeHandle to the list of
11444         mono_defaults loaded.
11445
11446 2006-12-15  Raja R Harinath  <rharinath@novell.com>
11447
11448         Fix #80253
11449         * reflection.c (mono_reflection_bind_generic_parameters): If the
11450         generic type definition is a type builder, ensure that it is fully
11451         initialized before instantiating it.  Kill some dead code.
11452
11453 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
11454
11455         * object.c: clear the loader_error () before loading
11456         more metadata stuff (bug #80258).
11457
11458 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
11459
11460         * icall.c, icall-defs.h: type modifiers icalls for
11461         parameters and properties.
11462
11463 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
11464
11465         * object.c, icall.c: fixed warnings.
11466
11467 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
11468
11469         * marshal.c: fixed a couple of leaks and coding style in a few places.
11470
11471 2006-12-08  Dick Porter  <dick@ximian.com>
11472
11473         * process.c: Cope with NULL ProcessStartInfo arguments on windows
11474         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
11475         80173.
11476
11477 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
11478
11479         * process.c: ProcessStartInfo may have only filename set and
11480         arguments can be NULL.
11481
11482 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11483
11484         * icall.c: fix leak found by Robert Jordan.
11485
11486 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
11487
11488         * marshal.c, marshal.h: generate managed method to access an element
11489         of a multi-dimensional array.
11490
11491 2006-11-30  Paolo Molaro (lupus@ximian.com)
11492
11493         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
11494
11495 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
11496
11497         * icall.c: back out GetFields () fix until the serialization code is
11498         fixed to not depend on the incorrect behaviour.
11499
11500 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
11501
11502         * profiler.c: provide defaults if none are set.
11503
11504 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
11505
11506         * Makefile.am, attrdefs.h: new public header file with
11507         constants for attributes for use by embedders.
11508
11509 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
11510
11511         * icall.c: GetFields () fix for bug #80064.
11512
11513 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
11514
11515         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
11516         removed long unused icalls.
11517
11518 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
11519   
11520         * marshal.c: 
11521                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
11522                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
11523                 can be generated without a delegate class.
11524                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
11525         
11526         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
11527
11528 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11529
11530         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
11531         #80069.
11532
11533 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11534
11535         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
11536         icall-def.h: added icalls needed by System.GC.
11537
11538 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
11539
11540         * loader.c: ensure the class in catch clauses is handled
11541         correctly for generics methods (fixes bug#79980).
11542
11543 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
11544
11545         * monitor.h, monitor.c: added mono_locks_dump () function
11546         to help debug deadlocks involving managed locks.
11547
11548 2006-11-13  Dick Porter  <dick@ximian.com>
11549
11550         * file-io.c (get_file_attributes): If the file is a symlink try
11551         and get the stat data for the target, but also add the
11552         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
11553         the specs for the windows symlink support, but will probably have
11554         to be reworked when I have test data from a vista machine.  Fixes
11555         bug 79887.
11556
11557 2006-11-13  Dick Porter  <dick@ximian.com>
11558
11559         * gc.c (mono_domain_finalize): 
11560         * marshal.c (mono_delegate_begin_invoke): 
11561         * threadpool.c (socket_io_init, mono_thread_pool_init)
11562         (mono_thread_pool_finish): 
11563         * monitor.c (mono_monitor_try_enter_internal): 
11564         * threads.c (mono_thread_resume, mono_thread_init)
11565         (mono_thread_suspend_all_other_threads)
11566         (mono_thread_execute_interruption): 
11567         * appdomain.c (mono_domain_unload): Check for NULL error returns
11568         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
11569         75733.
11570
11571 2006-11-11  Miguel de Icaza  <miguel@novell.com>
11572
11573         * process.c
11574         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
11575         Only close the handle if the value of the handle is not
11576         INVALID_HANDLE_VALUE.  This just makes the process a bit more
11577         robust.
11578
11579         Improvement for #75733, so that we do not run into this problem. 
11580
11581         
11582         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
11583         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
11584         internal variables.  Fixes #79462 
11585         
11586
11587 2006-11-09  Dick Porter  <dick@ximian.com>
11588
11589         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
11590         Use poll() not select().  Fixes bug 79397.
11591
11592 2006-11-09  Raja R Harinath  <rharinath@novell.com>
11593
11594         Fix #79872
11595         * assembly.c (mono_assembly_load_from_full): Check that the given
11596         image has an assembly manifest.
11597
11598 2006-11-09  Ankit Jain  <jankit@novell.com>
11599
11600         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
11601         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
11602         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
11603
11604 2006-11-07  Dick Porter  <dick@ximian.com>
11605
11606         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
11607         Put the old resolver behaviour back for pre-2.0 profiles.
11608
11609 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
11610
11611         * threadpool.c: precise GC and locking fixes.
11612
11613 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
11614
11615         * class.c: don't load types that have an explicit unaligned
11616         managed reference. Provide better info in the TypeLoad exception.
11617         Part of the fix for bug #79744.
11618         * object.c: use the correct check for class type load issues.
11619
11620 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
11621
11622         * class.c: enforce alignment of fields with managed references
11623         even when Pack=1 is forced by the user (bug #77788).
11624
11625 2006-11-03  Dick Porter  <dick@ximian.com>
11626
11627         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
11628         If the address reverse lookup fails, return it as the hostname
11629         anyway.  Fixes bug 79721.
11630
11631 2006-11-03  Dick Porter  <dick@ximian.com>
11632
11633         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
11634         Fix build on Windows.
11635
11636 2006-11-02  Dick Porter  <dick@ximian.com>
11637
11638         * icall-def.h: 
11639         * object-internals.h: 
11640         * exception.c (mono_get_exception_thread_interrupted): 
11641         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
11642         Fixes bug 74525.
11643
11644         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
11645         Check for pending Thread.Interrupt.
11646
11647 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
11648         * loader.c: Fixed bug 79684.
11649
11650 2006-10-27  Dick Porter  <dick@ximian.com>
11651
11652         * file-io.c (get_file_attributes): Force symlinks to directories
11653         to be returned as a regular file.  Fixes bug 79733.
11654 2006-10-26  Dick Porter  <dick@ximian.com>
11655
11656         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
11657         CreateFile to open a directory then we need to set the
11658         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
11659
11660 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
11661
11662         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
11663         friends.
11664
11665 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
11666
11667         * sgengc.c: small cleanup of timer code.
11668
11669 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
11670
11671         * sgen-gc.c: fix some warnings and start adding support for
11672         complete object removal on domain unload.
11673
11674 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
11675
11676         * assembly.c: build_assembly_name should not consider a version
11677         number without build or revision number invalid. Fixes bug #79715.
11678
11679 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
11680
11681         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
11682         call kernel32 function OutputDebugString directly.
11683         
11684         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
11685         
11686 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
11687
11688         * reflection.c: small cleanup, using a function to insert a MonoString
11689         in the string heap.
11690
11691 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
11692
11693         * reflection.c: moving GC fixes.
11694
11695 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
11696
11697         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
11698         all the objects with finalizers belonging to an unloading appdomain.
11699
11700 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
11701
11702         * sgen-gc.c: added ability to allocate even when the nursery is fully
11703         pinned and fixed a couple of bugs.
11704
11705 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
11706
11707         * threads.h: Revert the last change for now.
11708
11709         * threads.h (mono_thread_get_pending_exception): Rename this to
11710         mono_thread_get_undeniable_exception ().
11711
11712 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
11713
11714         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
11715         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
11716         when fname does not refer to valid assembly. This result in a more
11717         meaningful error message.
11718         * exception.c: added mono_get_exception_bad_image_format2 which 
11719         constructs a BadImageFormatException using the ctor taking a custom
11720         message and the file name. Passing in a NULL msg results in a default
11721         message.
11722         * exception.h: define mono_get_exception_bad_image_format2 function.
11723         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
11724         when file name pointed to an invalid IL image. Use 
11725         mono_get_exception_file_not_found2 to construct FileNotFoundException,
11726         as this results in a more meaningful error message.
11727
11728 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
11729
11730         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
11731         #79465.
11732
11733 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
11734
11735         * metadata.c (mono_type_size): Change the align parameter to guint32 for
11736         consistency with the other _size functions.
11737         (mono_type_stack_size): Ditto.
11738
11739         * class.c object.c icall.c: Fix warnings caused by the above change.
11740
11741         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
11742
11743         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
11744
11745         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
11746
11747 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
11748
11749         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
11750         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
11751         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
11752         threadpool.h, threads-types.h: mark more internal functions.
11753
11754 2006-10-11  Dick Porter  <dick@ximian.com>
11755
11756         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
11757         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
11758         reproduce the bug even before applying the fix.)
11759
11760 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
11761
11762         * reflection.c: allow retrieving attributes for arguments in generic
11763         methods (bug #79241).
11764
11765 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
11766
11767         * debug-mono-symfile.c: properly check fopen () result (found by
11768         coverity).
11769
11770 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
11771
11772         * reflection.c: make error message clearer and fixed two
11773         issuelets found by Coverity.
11774
11775 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
11776
11777         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
11778
11779 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
11780
11781         * object-internals.h, gc-internal.h, profiler-private.h:
11782         mark internal functions.
11783
11784 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
11785
11786         * reflection.c: put data in the text section.
11787         * icall.c: recognize more types in type_from_typename ().
11788         * process.c, marshal.c: added some GC FIXMEs.
11789
11790 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
11791
11792         * loader.c: check for NULL before initializing.
11793
11794 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
11795
11796         * gc.c (finalizer_thread): Use a non-alertable wait here.
11797
11798         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
11799         until the correct solution is found.
11800
11801 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
11802
11803         * reflection.c (mono_module_get_object): Avoid an assert when operating on
11804         modules with no metadata. Fixes #79596.
11805
11806         * image.c (load_metadata_ptrs): Put back the error message when
11807         the #- heap is encountered since the support is not complete yet.
11808
11809 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
11810
11811         * gc.c: do not allow the user to SuppressFinalize () a
11812         delegate because it would leak the trampoline if present.
11813
11814 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
11815
11816         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
11817         PropertyPtr table.
11818
11819 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
11820
11821         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
11822
11823         * metadata.c (mono_metadata_get_param_attrs): Ditto.
11824
11825         * row-indexes.h: Add definitions for *Ptr tables.
11826
11827         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
11828
11829         * metadata.c (mono_metadata_translate_token_index): New helper function to
11830         translate table indexes used in uncompressed metadata.
11831         (mono_metadata_decode_table_row): Ditto.
11832         (mono_metadata_decode_table_row_col): Ditto.
11833
11834         * metadata.c: Add table schema for *Ptr tables.
11835
11836         * class.c loader.c: Use the new helper function to access the affected metadata
11837         tables.
11838         
11839         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
11840         #38532.
11841         
11842 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
11843
11844         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
11845         sequences which can be unbounded in size. Fixes #79583.
11846
11847 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
11848
11849         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
11850         static initialization.
11851
11852         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
11853
11854         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
11855
11856         * domain.c (mono_domain_free): Free up type_init_exception_hash.
11857
11858         * object.c (mono_runtime_class_init): Implement correct semantics when a static
11859         ctor fails, i.e. throw the same exception on subsequent accesses.
11860         
11861 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
11862
11863         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
11864         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
11865         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
11866         Handle marshalling of interfaces and VARIANTs contained in structs.
11867         
11868         Code is contributed under MIT/X11 license.
11869         
11870 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
11871
11872         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
11873         
11874         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
11875         mempool.
11876
11877 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11878
11879         * console-io.c: ignore previous SIGINT handler.
11880
11881 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
11882
11883         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
11884         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
11885         #79460, #79461, #79485.
11886
11887         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
11888
11889         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
11890         #79217.
11891
11892 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
11893
11894         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
11895         could be generated from it.
11896
11897 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
11898
11899         * rand.c: fix read loop to correctly handle EINTR.
11900
11901 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
11902
11903         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
11904         internal calls are defined to keep methods closer to the declaring
11905         type and allow a significant reduction in runtime relocations and
11906         memory usage.
11907
11908 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
11909
11910         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
11911         exception message to have FileNotFoundException use the default
11912         assembly load error message. Fixes bug #79426.
11913         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
11914
11915 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11916
11917         * threadpool.c: (start_thread_or_queue) use the root domain when
11918         creating the thread instead of the async object one.
11919
11920 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
11921
11922         * class.c, object.c, class-internals.h, reflection.c:
11923         for arrays, store element_size inside MonoClass (speedup
11924         for array object creation).
11925
11926 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
11927
11928         * icall.c: fixed CodeBase to use the file name and not the module
11929         name (bug #79365).
11930
11931 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
11932
11933         * mono-debug.c, mono-debug.h: export find_method as
11934         mono_debug_find_method ().
11935
11936 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
11937
11938         * debug-helpers.c, class-internals.h: added a few functions useful
11939         when debugging under gdb.
11940
11941 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11942
11943         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
11944         characters that need special handling.
11945
11946 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
11947
11948         * mono-config.c: make the os/cpu specification more flexible,
11949         allowing lists and negation.
11950
11951 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
11952
11953         * marshal.c: COM Interop fixes. Handle case where method->klass.
11954         is interface. Handle BSTR/MonoString when null. Use CDECL as 
11955         calling convention on non-windows platforms. This is for
11956         compatibility with XPCOM and MainWin COM.
11957         
11958         Code is contributed under MIT/X11 license.
11959         
11960
11961 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
11962
11963         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
11964         correctly. Fixes #79217.
11965
11966         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
11967
11968 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
11969
11970         * mono-config.c: allow both an os and cpu attribute for dllmap
11971         and dllentry elemnets to enable a single config file to be used
11972         for multiple architectures.
11973
11974 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
11975
11976         * loader.c: MonoLoaderError was cleared too soon on load failure.
11977         Fixes bug #79424.
11978
11979 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
11980
11981         * icall.c: use the defining class vtable when accessing a
11982         static field, not a pobblibly derived class.
11983
11984 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
11985
11986         * icall.c string-icalls.c: Remove references to unicode.h.
11987
11988         * unicode.h unicode.c Makefile.am: Remove these unused source files.
11989
11990         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
11991
11992         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
11993         indicating the image where custom marshaller types should be looked up.
11994         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
11995         custom marshallers, instead of corlib. Fixes #79425.
11996
11997 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
11998
11999         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
12000
12001 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
12002
12003         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
12004         Implement Environment.ProcessorCount.
12005         
12006         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
12007         Implement Environment.ProcessorCount.
12008         
12009         * icall.c: 
12010         Add Environment.ProcessorCount icall.
12011         
12012         Patch by Jason McFall.
12013
12014 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12015
12016         * assembly.c: don't append .exe/.dll when the filename already contains
12017         one of those extensions.
12018
12019 2006-09-12  Martin Baulig  <martin@ximian.com>
12020
12021         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
12022         to array interfaces.
12023
12024 2006-09-11  Martin Baulig  <martin@ximian.com>
12025
12026         * reflection.c (mono_image_build_metadata): Create the
12027         MethodImpl's after emitting all types and methods, so we don't
12028         need another fixup pass for them.
12029
12030 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
12031
12032         * class.c (mono_class_from_name_case): Fix regression introduced by the last
12033         change.
12034
12035 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
12036
12037         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
12038         unload.
12039
12040 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
12041
12042         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
12043         args is not set. Fixes #78926.
12044
12045 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
12046
12047         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
12048
12049         * image.c (load_class_names): Move this to class.c, and rename it to 
12050         'mono_image_init_name_cache'.
12051         (load_modules): Fix a warning.
12052
12053         * class.c icall.c image.c: Initialize image->name_cache lazily.
12054
12055         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
12056         on its name using information in the AOT file.
12057
12058         * class.c (mono_class_from_name): Use the new hook function.
12059
12060 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
12061
12062         * reflection.c (mono_param_get_objects): Handle enum default parameter values
12063         correctly.
12064
12065         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
12066         Fixes #79289.
12067         
12068 2006-09-06  Martin Baulig  <martin@ximian.com>
12069
12070         * icall.c (mono_lookup_internal_call): Small fix.
12071
12072 2006-09-05  Raja R Harinath  <rharinath@novell.com>
12073
12074         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
12075         double g_free.
12076
12077 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
12078
12079         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
12080         when --debug is specified.
12081
12082 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
12083
12084         * class.c (setup_generic_array_ifaces): Fix a warning.
12085
12086 2006-09-04  Miguel de Icaza  <miguel@novell.com>
12087
12088         * Temporarily remove the patch to assemly.c that checks the
12089         assembly versions as it breaks our gacutil.
12090
12091 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
12092
12093         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
12094
12095         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
12096         a net 1.0 runtime.
12097
12098         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
12099         created using the default ctor. Fixes #79152.
12100         (mono_string_builder_to_utf16): Ditto.
12101
12102 2006-09-01  Martin Baulig  <martin@ximian.com>
12103
12104         Fix handling of the generic array interfaces.
12105
12106         * class-internals.h
12107         (MonoDefaults): Removed `generic_array_class' and added
12108         `generic_ilist' class.
12109
12110         * class.c
12111         (mono_bounded_array_class_get): Add the new generic array interfaces.
12112         (setup_generic_array_ifaces): New static method; create vtable
12113         entries for each method in the generic array interfaces.
12114
12115         * metadata.c
12116         (select_container): Allow "parent-less" generic methods.
12117
12118         * marshal.c
12119         (mono_marshal_get_generic_array_helper): New public method.
12120
12121         * icall.c
12122         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
12123         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
12124         moved the interncall into System.Array.
12125
12126 2006-09-01  Raja R Harinath  <rharinath@novell.com>
12127
12128         A few more cases of avoiding work on types with ->byref set.
12129         Has the real fix for #79238
12130         * icall.c (is_generic_parameter): New helper.
12131         (ves_icall_Type_GetGenericParameterPosition): Use it.
12132         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
12133         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
12134         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
12135         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
12136         reference types.
12137         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
12138         reference types.
12139         (ves_icall_Type_get_IsGenericInstance): Likewise.
12140         (ves_icall_Type_get_IsGenericType): Likewise.
12141
12142 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
12143
12144         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
12145         class if possible.
12146
12147         * mempool.h (mono_mempool_get_allocated): New helper function.
12148
12149         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
12150         change.
12151
12152         * mempool.c: Fix warnings and the calculation of stats.
12153
12154         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
12155
12156         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
12157
12158         * loader.c (mono_get_method_from_token): Update method_count stat.
12159
12160         * class-internals.h (MonoStats): Add some stats.
12161
12162 2006-08-31 Robert Jordan  <robertj@gmx.net>
12163
12164         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
12165         with managed variants.
12166         All code is contributed under the MIT/X11 license.
12167         
12168 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
12169
12170         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
12171         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
12172
12173         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
12174
12175         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
12176         with cycles in classes.
12177
12178         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
12179
12180         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
12181         missing a [MarshalAs] directive. Fixes #79203.
12182
12183         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
12184         klass->marshal_info. Fixes #79217.
12185
12186 2006-08-30  Martin Baulig  <martin@ximian.com>
12187
12188         Committing a patch from Joachim Ante <joe@otee.dk>:
12189         Add support for binary data symbol stores.
12190
12191         * debug-mono-symfile.c
12192         (mono_debug_open_mono_symbol_file): Renamed into
12193         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
12194         arguments.
12195
12196         * mono-debug.c
12197         (mono_debug_open_image): Added `raw_contents' and `size' args.
12198         (mono_debug_init_2_memory): New public function.
12199
12200 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
12201
12202         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
12203
12204 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12205
12206         * appdomain.c: implement support for ShadowCopyFiles.
12207
12208 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
12209
12210         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
12211         when value is NULL (and should remove CID #51).
12212
12213 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12214
12215         * image.c: moved 2 functions to ../utils.
12216
12217 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
12218
12219         * gc.c: cope with the target object of a GC handle being NULL
12220         (bug #78877).
12221
12222 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
12223
12224         * class.c: recursively check parent's explicit implementations
12225         of interface methods (fixes bug #79125).
12226
12227 2006-08-19  Miguel de Icaza  <miguel@novell.com>
12228
12229         * filewatcher.c: Avoid warnings when building, do not redefine
12230         constants that are defined.
12231
12232         Remove warnings.
12233
12234 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12235
12236         * image.c: don't fail when the link points to an absolute path.
12237
12238 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
12239
12240         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
12241         Fix CID #3.
12242
12243 2006-08-17  Miguel de Icaza  <miguel@novell.com>
12244
12245         * image.c (full_path): A new method used to obtain the actual path
12246         of an assembly even in the presence of symbolic links.  
12247
12248         This is necessary for the case where we are running a binary that
12249         has been GACed, but we are using the "published" path name
12250         ($prefix/mono/1.0/blah.exe) which happens to point to the real
12251         file in the GAC.
12252
12253         This was the source of the failure for the `xsp' command with the
12254         recent AppDomain changes, as far as the runtime was concerned,
12255         there were two different assemblies: $prefix/mono/1.0/blah.exe and
12256         $prefix/mono/gac/blah/version/blah.exe.
12257
12258         (do_mono_image_open): use full path
12259
12260 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
12261
12262         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
12263
12264 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
12265
12266         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
12267         domain_id is supplied. Fix CID #241 and corlib's unit tests.
12268
12269 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
12270
12271         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
12272         small structures. Fixes #78990.
12273
12274 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
12275
12276         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
12277
12278         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
12279
12280 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12281
12282         * appdomain.c:
12283         * marshal.c: don't load all the assemblies from a domain into newly
12284         created ones. The new domains might have different rules and load
12285         assemblies from different locations. Fixes bug #76757.
12286
12287         Patch by Lluis. Conflicts resolved by Brian Crowell.
12288
12289 2006-08-16  Alp Toker  <alp@atoker.com>
12290
12291         * socket-io.c: First half of the fix for #79084.
12292         Set sa_size to the length of the content, not that of the struct.
12293         Don't add NULL suffix to the content, this should be done in
12294         managed code if needed.
12295
12296 2006-08-14  Raja R Harinath  <rharinath@novell.com>
12297
12298         Fix part of #79012
12299         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
12300         mono_metadata_parse_type returns NULL.
12301
12302 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
12303
12304         * normalization-tables.h : new file for string normalization data.
12305         * locales.c, locales.h, icall.c :
12306           added load_normalization_resource() for string normalization,
12307           and icall as well.
12308         * Makefile.am : added normalization-tables.h to the sources.
12309
12310 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
12311
12312         * marshal.c: Add more helper functions to reduce code duplication and use them
12313         everywhere.
12314
12315 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
12316
12317         * marshal.c: Fix non-x86 stdcall warnings.
12318         
12319         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
12320         them everywhere.
12321
12322 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
12323
12324         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
12325         type check on multi-dimensional arrays. Fixes #79000.
12326
12327 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
12328
12329         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
12330         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
12331         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
12332         * class-internals.h: add is_com_object to class structure.
12333         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
12334         null checks to COM object marshalling. Fix .ctor call on RCW.
12335         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
12336         
12337         All code is contributed under the MIT/X11 license.
12338
12339 2006-08-09  Dick Porter  <dick@ximian.com>
12340
12341         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
12342         racing mono_monitor_allocator_lock() somewhere, so don't delete
12343         the critical section for now.  Found by running and exiting
12344         monodevelop.
12345
12346 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
12347
12348         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
12349         (ves_icall_System_ComObject_FindInterface): Ditto.
12350         (ves_icall_System_ComObject_CacheInterface): Ditto.
12351
12352         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
12353         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
12354
12355 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12356
12357         * threadpool.c: treat pipes from process asynchronous reads as sockets
12358         when reading from them, so we get select/poll or epoll to wait for
12359         data.
12360
12361 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
12362
12363         * loader.c: Fix a typo (CID #233) in the null check.
12364
12365 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
12366
12367         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
12368         Hopefully fixes #78949.
12369         
12370         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
12371         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
12372         bytes. Fixes #78972.
12373
12374 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12375
12376         * filewatcher.c: we need to set errno here.
12377
12378 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12379
12380         * filewatcher.c: let Win32Exception get the error value.
12381
12382 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12383
12384         * filewatcher.c: translate errno into win32 errors for Win32Exception
12385         to know what happened.
12386
12387 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
12388
12389         * threadpool.c: Fix more warnings.
12390
12391         * assembly.c (search_loaded): Fix warnings.
12392
12393         * threadpool.c (mono_thread_pool_finish): Fix warnings.
12394         (mono_async_invoke): Ditto.
12395
12396 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
12397
12398         * object.c (mono_remote_class_vtable): Need to create proxy vtable
12399         entries for __ComObject type in addition to ComImport types.
12400         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
12401         about hash table.
12402         
12403         All code is contributed under the MIT/X11 license.
12404
12405 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
12406
12407         * image.c: avoid tentative loading of modulerefs that contain
12408         no metadata (P/Invoke library names).
12409
12410 2006-07-28  Dick Porter  <dick@ximian.com>
12411
12412         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
12413         mono_loader_lock() somewhere, so don't delete the critical section
12414         for now.  Found by running and exiting monodevelop.
12415
12416 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12417
12418         * filewatcher.c: define the inotify syscalls when we're building on
12419         linux and have sys/syscall.h. The build system might not have support
12420         for inotify but the target system might have it.
12421
12422 2006-07-26  Miguel de Icaza  <miguel@novell.com>
12423
12424         * domain.c: Documentation updates.
12425
12426         * loader.c (mono_free_method): Do not release the method
12427         information if we are being profiled, as profilers will use this
12428         information at shut down to present some data to the user.
12429
12430         This is needed so that the profiler does not crash, as the
12431         profiler tends to keep MonoMethods around, and they might become
12432         invalid if we free these.
12433
12434         (mono_get_method_constrained): Return the original CIL stream
12435         method as well, so verification can be performed against it.
12436
12437 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12438
12439         * filewatcher.[ch]: support for inotify file system watcher.
12440         * icall.c: add new internal calls for the inotify file system watcher.
12441
12442 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12443
12444         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
12445         #78888.
12446
12447 2006-07-20  Dick Porter  <dick@ximian.com>
12448
12449         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
12450         warning.
12451
12452 2006-07-20  Dick Porter  <dick@ximian.com>
12453
12454         * threads.c (start_wrapper): Do the thread cleanup while we still
12455         hold a reference to its object.  Fixes bug 78123.
12456
12457 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
12458
12459         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
12460         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
12461           "managed-to-managed".
12462         * icall.c: Redirect string constructors that take sbyte* to
12463           ves_icall_System_String_ctor_RedirectToCreateString.
12464         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
12465           to CreateString () methods with matching signature.
12466         * reflection.c: Use original security informations for
12467           MONO_WRAPPER_MANAGED_TO_MANAGED.
12468         * security-manager.c: Use original security informations for
12469           MONO_WRAPPER_MANAGED_TO_MANAGED.
12470         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
12471           that is a placeholder and only its address should be used.
12472         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
12473           that is a placeholder and only its address should be used.
12474
12475 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
12476
12477         Begin implementing COM Interop.
12478         * appdomain.c: Increment corlib version.
12479         * class.c: Set ComImport classes' parent to __ComObject.
12480         * loader.c: Mark cominterop methods as such.
12481         * domain.c: Add __ComObject class to MonoDefaults structure.
12482         * image.c: Add 2 hashtables to the image for COM Interop related methods
12483         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
12484         using the mempool allocator
12485         
12486         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
12487         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
12488         declaration for mono_metadata_type_dup_mp.
12489         
12490         * debug-helpers.c: Added strings for two additional wrapper types
12491         * object.c: Create proxy objects for ComImport classes
12492         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
12493         and added __ComObject class to MonoDefaults structure.
12494         
12495         * object-internals.h: Finish MonoRealProxy definition, and add definition of
12496         MonoComInteropProxy and MonoComObject.
12497         
12498         * marshal.c: Added support for COM Interop
12499         (signature_cominterop): Converts managed signature to corresponding
12500         unmanaged COM signature.
12501         (cominterop_get_function_pointer): gets unmanaged function pointer via
12502         COM object vtable
12503         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
12504         (cominterop_get_method_interface): returns interface type that method is defined on
12505         (mono_mb_emit_cominterop_call): emits native call to function pointer
12506         gotten from vtable
12507         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
12508         that matches signature of unmanaged function.
12509         (cominterop_get_native_wrapper): wrapper around adjusted method call.
12510         (cominterop_get_invoke): forwards call from proxy to __ComObject
12511         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
12512         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
12513         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
12514         
12515         * marshal.h: Added Marshal icall declarations.
12516         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
12517         so we can access them in finalizer
12518         
12519 2006-07-14  Dick Porter  <dick@ximian.com>
12520
12521         * object.c (mono_type_initialization_cleanup): Fix a race
12522         condition by temporarily commenting out the critical section
12523         deletion.
12524
12525 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
12526
12527         * reflection.c (create_custom_attr): Fix some warnings.
12528         (create_custom_attr_data): Ditto.
12529         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
12530         types. Fixes #78855.
12531
12532 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
12533
12534         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
12535
12536         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
12537
12538 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
12539
12540         * reflection.c (resolve_object): Add support for DynamicMethod.
12541
12542         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
12543         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
12544
12545 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
12546
12547         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
12548         don't leak GPtrArray's pdata has we have no use (nor free) for it.
12549
12550 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
12551
12552         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
12553         Fixes #77888.
12554
12555 2006-06-30  Raja R Harinath  <rharinath@novell.com>
12556
12557         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
12558         slightly: remove a shadow local variable.
12559
12560 2006-06-29  Raja R Harinath  <rharinath@novell.com>
12561
12562         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
12563         definition that introduces the virtual function slot.
12564         Also fix Coverity #105.
12565
12566 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
12567
12568         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
12569         for dynamic assemblies. Fixes #78724.
12570
12571 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
12572
12573         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
12574         Fixes #78722.
12575
12576 2006-06-21  Martin Baulig  <martin@ximian.com>
12577
12578         * reflection.c
12579         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
12580         fixes #76484.
12581
12582 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
12583
12584         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
12585
12586 2006-06-20  Raja R Harinath  <rharinath@novell.com>
12587
12588         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
12589         nor TYPEREFs.
12590         * class.c (mono_class_create_from_typespec): Add 'context' argument.
12591         Inflate result if necessary.
12592         (mono_class_get_full): Remove old version.  Rename from
12593         'mono_class_get' and add 'context' argument.  Pass it to
12594         ..._create_from_typespec.
12595         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
12596         (mono_ldtoken): Revert change below.
12597
12598 2006-06-20  Martin Baulig  <martin@ximian.com>
12599
12600         * class.c (mono_ldtoken): Don't pass the generic context to
12601         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
12602
12603 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
12604
12605         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
12606         and later freeing it. Fixes #78638.
12607
12608 2006-06-15  Miguel de Icaza  <miguel@novell.com>
12609
12610         * icall.c (mono_class_get_throw): Revert over-zealous error
12611         throwing, the caller for mono_class_get_throw will cope with
12612         errors when classes are not properly initialized already.
12613
12614         The code still copes with loader exceptions though.
12615
12616         Fixes the regression in reftype1 and reftype3 from the CAS tests.
12617         
12618 2006-06-14  Miguel de Icaza  <miguel@novell.com>
12619
12620         Fixes the `make run1' version of RuntimeAbort (to be commited,
12621         source is in Bugzilla).
12622         
12623         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
12624         FALSE on class loading failure instead of returning true.
12625
12626         * class.c (mono_class_create_from_typedef): It is possible for
12627         mono_metadata_interfaces_from_typedef_full to fail if a class is
12628         not found, cope with this.
12629         
12630
12631 2006-06-14  Dick Porter  <dick@ximian.com>
12632
12633         * socket-io.c: 
12634         * process.c: Fix a bunch of signed/unsigned warnings from gcc
12635         4.1.1
12636
12637 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
12638
12639         * culture-info-table.h : oops, forgot to make it nsync with r61548.
12640
12641 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12642
12643         * icall.c: Another fix for building mono in Visual Studio.
12644
12645 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12646
12647         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
12648         
12649 2006-06-09  Martin Baulig  <martin@ximian.com>
12650
12651         * debug-mono-symfile.c: Put this back and really fix it this
12652         time. Sorry for all the trouble.
12653
12654 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
12655
12656         * icall.c (mono_class_get_throw): Fix a warning.
12657         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
12658         ReflectionTypeLoadException if needed. Fixes #78606.
12659
12660         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
12661         (mono_class_init): Ditto.
12662
12663         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
12664         ref_only exceptions.
12665         (mono_loader_clear_error): Make this work even if there is no error.
12666
12667 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
12668
12669         * object-internals.h marshal.c marshal.h icall.c: Implement method 
12670         Marshal.GetComSlotForMethodInfo using internal call.
12671
12672 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
12673
12674         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
12675         a function for signalling it.
12676
12677         * class.c (mono_class_from_typeref): Use the new kind of loader error when
12678         a referenced assembly is not found.
12679
12680         * loader.c (mono_loader_error_prepare_exception): Add support for 
12681         LOADER_ERROR_ASSEMBLY. Fix formatting.
12682
12683 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
12684
12685         * domain.c appdomain.c class-internals.h marshal.c: Add support 
12686         for VARIANT marshalling on windows and increment corlib version
12687         since Variant struct was added.
12688
12689 2006-06-03  Miguel de Icaza  <miguel@novell.com>
12690
12691         * debug-mono-symfile.c: Revert Martin's previous patch which broke
12692         stack trace line information:
12693
12694         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
12695         (Martin) when looking up B which is between A and C, return A not C.
12696
12697         Bug is #78573.
12698
12699         Thanks to Alexander Olk for tracking this down.
12700
12701 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
12702
12703         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
12704         
12705         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
12706         avoid clobbering its value.
12707         (mono_string_to_lpstr): Fix a warning on windows.
12708
12709 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
12710
12711         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
12712
12713         * reflection.c loader.c: Removed references to 'dummy' flag.
12714
12715         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
12716
12717         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
12718         it gets GC tracking.
12719
12720         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
12721         GC tracking.
12722         
12723         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
12724
12725         * marshal.c threadpool.c: Update callers of mono_async_result_new.
12726
12727         * appdomain.c: Bump corlib version.
12728
12729 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
12730
12731         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
12732         CEE_STIND_REF when working with object references.
12733
12734 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
12735
12736         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
12737         Fixes #78539.
12738
12739 2006-05-30  Miguel de Icaza  <miguel@novell.com>
12740
12741         * loader.c (method_from_memberref): Fix argument value for
12742         mono_loader_set_error_method_load (I was passing the MonoClass
12743         instead of the class name char *).
12744
12745 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
12746
12747         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
12748         CEE_STIND_REF when working with object references.
12749
12750 2006-05-30  Martin Baulig  <martin@ximian.com>
12751
12752         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
12753         mono_method_full_name() change and replace the ':' with a '.'
12754         here.
12755
12756 2006-05-30  Martin Baulig  <martin@ximian.com>
12757
12758         * debug-mono-symfile.c
12759         (mono_debug_symfile_lookup_location): Fix the algorithm:
12760         when looking up B which is between A and C, return A not C.
12761
12762 2006-05-29  Martin Baulig  <martin@ximian.com>
12763
12764         * mono-debug.h
12765         (MonoDebugMethodInfo): Make the typedef public.
12766         (MonoDebugSourceLocation): New public struct.
12767
12768         * mono-debug.c
12769         (mono_debug_source_location_from_address): Removed.
12770         (mono_debug_source_location_from_il_offset): Removed.
12771         (mono_debug_il_offset_from_address): Removed.
12772         (mono_debug_address_from_il_offset): Removed.
12773         (mono_debug_lookup_method): New public function.
12774         (mono_debug_lookup_source_location): New public function; replaces
12775         the old mono_debug_source_location_from_*() functions; see the
12776         inline documentation.
12777         (mono_debug_free_source_location): New public function.
12778         (mono_debug_print_stack_frame): New public function; see the
12779         inline documentation.
12780
12781         * debug-mono-symfile.c
12782         (mono_debug_find_source_location): Renamed into
12783         mono_debug_symfile_lookup_location(); only take a
12784         `MonoDebugMethodInfo *' and an `offset' argument; added inline
12785         documentation.
12786         (mono_debug_find_method): Renamed into
12787         mono_debug_symfile_lookup_method().
12788
12789 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
12790
12791         * assembly.c (mono_assembly_open_full): Dont overwrite the status
12792         returned by mono_image_open_full ().
12793
12794         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
12795         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
12796         #78517.
12797
12798         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
12799         #78518.
12800
12801 2006-05-27  Miguel de Icaza  <miguel@novell.com>
12802
12803         * class.c (mono_class_from_typeref): handle missing images
12804         earlier, deals with bug #78418.   Refactor code; 
12805
12806         Fix a warning introduced in my previous commit (some stale code
12807         from before I revisited my patch).
12808
12809         * class.c (mono_class_create_from_typedef): On failure, remove the
12810         class from the MonoImage->class_cache as the class is not
12811         initialized;   Fixes the leak pointed out by Paolo.
12812
12813 2006-05-25  Dick Porter  <dick@ximian.com>
12814
12815         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
12816         DeleteCriticalSections until I figure out which one may still be
12817         sometimes locked when mono_thread_cleanup is called.
12818
12819 2006-05-24  Dick Porter  <dick@ximian.com>
12820
12821         * threads.c (mono_thread_cleanup): Move the threading cleanup out
12822         of mono_thread_manage and back into its own function, so it can be
12823         called after the finalizer thread has finished.
12824
12825         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
12826
12827 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
12828
12829         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
12830         Fixes #78495.
12831
12832         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
12833         with non-blittable elements.
12834         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
12835
12836 2006-05-24  Martin Baulig  <martin@ximian.com>
12837
12838         * mono-debug-debugger.h (MonoDebuggerEvent): Added
12839         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
12840
12841         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
12842         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
12843         `mono_debugger_event_handler' to NULL.
12844
12845 2006-05-24  Martin Baulig  <martin@ximian.com>
12846
12847         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
12848
12849 2006-05-24  Martin Baulig  <martin@ximian.com>
12850
12851         * mono-debug-debugger.h
12852         (mono_debugger_create_notification_function): Added
12853         `MonoCodeManager *' argument.
12854
12855 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
12856
12857         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
12858
12859 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
12860
12861         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
12862         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
12863         implementation.
12864
12865 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
12866
12867         * icall.c: precise GC support: objects can't be stored in unmanaged
12868         memory anymore, even if they are kept alive by other references: since
12869         they can move the GC needs to be able to always find them.
12870
12871 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
12872
12873         * object.c: precise GC support for static fields. Support
12874         for moving GCs: write barriers and pinned allocation for interned
12875         strings.
12876
12877 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
12878
12879         * domain.c, domain-internals.h: precise GC support for the MonoDomain
12880         structure.
12881
12882 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
12883
12884         * class.c, gc.c: sgen and precise GC updates.
12885
12886 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
12887
12888         * marshal.h, marshal.c: added write barrier wrapper and precise type
12889         fixes.
12890
12891 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
12892
12893         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
12894         support.
12895
12896 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
12897
12898         * reflection.c: precise and sgen GC updates.
12899
12900 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
12901
12902         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
12903
12904 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
12905
12906         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
12907
12908 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
12909
12910         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
12911         MONO_TYPE_OBJECT. Fixes #78462.
12912
12913 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
12914
12915         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
12916         and blittable types.
12917
12918 2006-05-17  Miguel de Icaza  <miguel@novell.com>
12919
12920         * class.c (mono_class_get_exception_for_failure): Implement parts
12921         of a TODO: if the loader error is set (instead of the class
12922         error), we return a Loader exception that can be properly thrown
12923         elsewhere.
12924
12925         This was exposed by some Winforms 2.0 code that I tried to run
12926         (Atsushi pointed me to it).
12927
12928 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
12929
12930         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
12931         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
12932         
12933         * marshal.c (emit_marshal_vtype): Add limited support for 
12934         UnmanagedType.LPStruct. Fixes #78427.
12935
12936         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
12937         Applied a patch from kangaroo to fix #77523.
12938
12939 2006-05-17  Martin Baulig  <martin@ximian.com>
12940
12941         * threads.c
12942         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
12943         (debugger_thread_created): Removed.
12944         (debugger_thread_exited): Removed.
12945
12946 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
12947
12948         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12949
12950         * object-internals.h (MonoReflectionResource): Sync with managed version.
12951
12952 2006-05-12  Wade Berrier <wberrier@novell.com>
12953
12954         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
12955
12956 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
12957
12958         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
12959         functions try to allocate from the image mempool.
12960
12961 2006-05-12  Dick Porter  <dick@ximian.com>
12962
12963         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
12964
12965 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
12966
12967         * object.c: The FieldGetter and FieldSetter methods require the full
12968         name of the class, not only the name. Fixes bug #78277.
12969
12970 2006-05-11  Miguel de Icaza  <miguel@novell.com>
12971
12972         * loader.c (method_from_memberref): Do not pass the NULL klass to
12973         mono_loader_set_error_() methods.  Pass the non-NULL value
12974         (class). 
12975
12976 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
12977
12978         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
12979         (mono_assembly_close): Null out assembly->image->references after freeing it.
12980
12981         * image.c (mono_image_close): Free image->references.
12982         
12983         * reflection.c (mono_image_basic_init): Fix a small memory leak.
12984
12985 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
12986
12987         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
12988         before checking if it's NULL (g_assert).
12989
12990 2006-05-10  Martin Baulig  <martin@ximian.com>
12991
12992         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
12993         I thought I already killed that two months ago, but now it somehow reappeared.
12994
12995 2006-05-10  Martin Baulig  <martin@ximian.com>
12996
12997         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
12998
12999 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
13000
13001         * reflection.c: Allocate memory for dynamically created methods in the image
13002         mempools.
13003
13004 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
13005
13006         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
13007         don't use the ad pointer before checking if it's NULL (g_assert).
13008
13009 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
13010
13011         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
13012         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
13013
13014         * marshal.c: Allocate all signatures from mempools.
13015
13016         * marshal.c: Allocate some more signatures from mempools.
13017
13018 2006-05-09  Miguel de Icaza  <miguel@novell.com>
13019
13020         * object.c (mono_load_remote_field): The code used to provide a
13021         temporary variable for returning results if the user did not
13022         provide a result pointer.  But our temporary variable was allocted
13023         on the satck.
13024
13025         Fix calling code to always pass a result area.   Coverity ID 103.
13026
13027 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
13028
13029         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
13030         value, not the old. Fixes #78312.
13031         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
13032
13033         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
13034         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
13035         per-image cache.
13036
13037         * assembly.c (mono_assembly_close): Free image->references.
13038
13039         * assembly.c (mono_assembly_names_equal): Fix a warning.
13040         (mono_assemblies_cleanup): Cleanup more global data.
13041
13042         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
13043
13044         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
13045         ptr_cache and image->modules.
13046
13047         * image.c (mono_image_init): Allocate array_cache lazily.
13048         
13049 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13050
13051         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
13052         behavior was changed recently and has bad side effects.
13053
13054 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
13055
13056         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
13057         
13058         * assembly.c (mono_assembly_close): Remove a debug printf.
13059
13060         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
13061
13062         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
13063         to also allow for temporary references between mono_image_open ()/close ().
13064
13065         * domain.c (get_runtimes_from_exe): Add a FIXME.        
13066
13067 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
13068
13069         * marshal.c: Fix support for dynamic methods.
13070
13071         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
13072
13073         * marshal.c (mono_marshal_cleanup): New cleanup function.
13074
13075         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
13076         image mempools.
13077
13078         * class.c (mono_class_init): Fix leaking class->nested_classes.
13079
13080         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
13081
13082         * image.c (mono_image_init): Initialize the new cashes.
13083
13084         * image.c (mono_image_close): Destroy the new cashes.
13085
13086         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
13087
13088         * mempool.c (mono_mempool_strdup): New helper function.
13089
13090         * class-internals.h: Add prototype for mono_loader_unlock ().
13091
13092         * domain.c (mono_jit_info_table_find): Fix a warning.
13093         (mono_debugger_check_runtime_version): Ditto.
13094
13095         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
13096         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
13097         functions to these modules.
13098
13099         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
13100         metadata modules.
13101         
13102         * marshal.c (mono_free_bstr): Fix a warning.
13103
13104         * assembly.c (mono_assembly_open_full): Fix another small leak.
13105
13106         * object.c: Fix some unload leaks in the remoting code.
13107
13108         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
13109         function.
13110
13111         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
13112
13113         * reflection.c: Fix some unload leaks in dynamic assemblies.
13114
13115 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
13116
13117         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
13118         * marshal.h: Add BSTR support on Win32
13119         * icall.c: Add BSTR icalls
13120         * metadata.h: Add BSTR enums
13121
13122 2006-04-28  Miguel de Icaza  <miguel@novell.com>
13123
13124         Work to catch the crash from #76795 and turn it into an
13125         exception.   As I stubbed out pieces of the VisualBasic support,
13126         I found a number of places where the code was failing and I added
13127         checks to those places. 
13128         
13129         * metadata.c (do_mono_metadata_parse_generic_class): Make this
13130         function return a status code.  If we fail to parse the signature
13131         from mono_metadata_parse_generic_inst, return FALSE.
13132
13133         * loader.c (mono_get_method_from_token): If we fail to load the
13134         method (mono_class_get) return NULL.   
13135
13136         * (method_from_memberref): Return NULL if we are unable to parse
13137         the method signature
13138
13139         (mono_loader_error_prepare_exception): Since we now use the
13140         loader_error flag internally to stop processing, and obtaining
13141         exceptions that might be thrown will walk this code path the
13142         proper way of going from a MonoLoaderError into a
13143         MonoException was convoluted.   This new routine encapsulates the
13144         process of turning the error into an exception and *clearing* the
13145         error afterwards.
13146         
13147 2006-04-27  Miguel de Icaza  <miguel@novell.com>
13148
13149         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
13150         with missing assemblies), and to cope with:
13151
13152                 * Missing fieldref from a non-existing assembly.
13153                 * Missing methodref from a non-existing assembly.
13154
13155         The first batch of work to address *some* of the issues from 76661.
13156         
13157         * object.c (mono_class_create_runtime_vtable): If we fail to
13158         initialize the class raise the exception here. 
13159
13160         * metadata.c (mono_class_get_overrides_full): If any methods fail
13161         to load return the failure to the caller.
13162
13163         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
13164         flagging assemblies that failed to load.   
13165
13166         Do not crash if we are unable to load the assembly.
13167
13168         (mono_assembly_close): Do nothing with REFERENCE_MISSING
13169         assemblies. 
13170
13171         * loader.c (mono_loader_set_error_type_load): Change the
13172         convention to always pass unallocated strings, so we make our own
13173         copies (I know our own code had duplicated strings before, but
13174         this keeps the normal conventions).
13175         (method_from_memberref): Call mono_loader_set_error_method_load
13176         for all possible failures of loading the class. 
13177         Remove assert, turn into a loader error.
13178
13179         (mono_loader_error_to_exception): Move this routine from mini
13180         (mini_loader_error_to_exception) there was no need to have that in
13181         mini. 
13182
13183         * class.c (mono_class_from_typeref): If we were not able to load
13184         the assembly with mono_assembly_load_reference, call the
13185         mono_loader_set_error_type_load to register the problem.
13186
13187         (mono_class_setup_fields): If we fail to load the type from
13188         mono_metadata_parse_type_full, call mono_class_set_failure and
13189         break from the loop.
13190
13191         If class->exception_type is set, we do not layout the fields as
13192         that might crash the runtime, and instead return (from breaking
13193         from the previous loop).
13194
13195         (mono_class_setup_vtable): This now returns a boolean indicating
13196         whether the table was properly setup.   The decision is driven by
13197         mono_class_get_overrides_full which might run into non-existing
13198         methods. 
13199         
13200         (mono_class_init): Returns TRUE on success or FALSE if there was a
13201         problem in loading the type (incorrect assemblies, missing
13202         assemblies, methods, etc).
13203
13204         When we call mono_class_setup_fields we also check for a potential
13205         error inside this call (either a class exception or a general
13206         loader exception).
13207
13208         (mono_class_create_from_typedef): If the parent fails to load
13209         (calling mono_class_get_full) return NULL.
13210         
13211         ** Important **
13212
13213         calls to mono_metadata_parse_type_full should be checked
13214         everywhere and set the mono_class_set_failure
13215         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
13216
13217         The current patch checks the places where my manually constructed
13218         tests show the errors are showing up, but we should do it
13219         everywhere. 
13220
13221         ** Important2 **
13222
13223         mono_class_init return values should be tested everywhere, like
13224         the previous case this is something that we should audit
13225         everywhere and not only on the cases exposed by the tests I
13226         created. 
13227
13228 2006-04-26  Miguel de Icaza  <miguel@novell.com>
13229
13230         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
13231         boolean parameter and instead pass the information on `options'
13232         parameter (FileOptions).
13233
13234         * icall.c: Register the new signature for MonoIO.Open.
13235
13236         * debug-helpers.c (dis_one): Trying to understand how coverity
13237         works.  Fix Run 5, item 78.
13238
13239 2006-04-26  Dick Porter  <dick@ximian.com>
13240
13241         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
13242         dereference.
13243
13244 2006-04-25  Martin Baulig  <martin@ximian.com>
13245
13246         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
13247
13248         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
13249         debugger_thread_created().
13250         (debugger_gc_push_all_stacks): Don't handle the main thread in any
13251         special way.
13252         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
13253         (mono_debugger_finalize_threads): New function; undo the effects
13254         of mono_debugger_init_threads().
13255         (mono_debugger_create_all_threads): Removed.
13256
13257 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
13258
13259         * image.c (mono_image_close): Tidy up trace messages.
13260
13261         * assembly.c (mono_assembly_close): Ditto.
13262
13263         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
13264         no longer references an already freed assembly. Fixes #78168.
13265
13266 2006-04-21  Dick Porter  <dick@ximian.com>
13267
13268         * threads.c (mono_thread_detach): Fix reference counting when
13269         detaching threads.
13270
13271 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
13272
13273         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
13274         #78155.
13275
13276 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
13277
13278         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
13279         (mono_type_to_stind): Ditto.
13280
13281         * marshal.c: Use the new helper functions to simplify code.
13282
13283         * image.c (mono_image_close): Add some code for help debug assembly unloading
13284         problems.
13285
13286         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
13287         image mempool.
13288
13289         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
13290         assembly was already loaded in another appdomain. Fixes #78083.
13291
13292 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
13293
13294         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
13295         referenced assemblies.
13296         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
13297
13298         * domain.c (mono_domain_free): Add a trace message.
13299
13300         * appdomain.c (add_assemblies_to_domain): Ditto.        
13301
13302         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
13303         field.  
13304
13305 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
13306
13307         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
13308
13309 2006-04-12  Martin Baulig  <martin@ximian.com>
13310
13311         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
13312         `USE_INCLUDED_LIBGC'.   
13313
13314 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
13315
13316         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
13317         the patch contains ../ and a small directory name later. Hopefully fixes
13318         #78035.
13319
13320 2006-04-10  Martin Baulig  <martin@ximian.com>
13321
13322         Clean up the debugger's thread-handling code.
13323
13324         The debugger's thread-handling code has been moved from
13325         ../mini/debug-debugger.c to threads.c.  We now iterate directly
13326         over the `threads' hash, keep track of exiting threads and also
13327         use proper locking.
13328
13329         We can now debug XSP and XSP based applications with the debugger.
13330
13331         * object-internals.h (MonoThread): Added `gpointer end_stack'.
13332
13333         * threads.h
13334         (MonoThreadCallbacks): Removed; this was only used by the debugger.
13335         (mono_install_thread_callbacks): Likewise.      
13336
13337         * threads.c (mono_thread_callbacks): Removed.
13338         (debugger_thread_created, debugger_thread_exited): New static functions.
13339         (start_wrapper): Call debugger_thread_created().
13340         (thread_cleanup): Call debugger_thread_exited().
13341         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
13342         (mono_debugger_init_threads): New public function.
13343         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
13344         iterate directly over the `threads' hash and also use proper locking.
13345
13346         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
13347
13348         * mono-debug-debugger.h
13349         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
13350
13351 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
13352
13353         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
13354         argument type=array. Fixes #78057.
13355
13356 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
13357
13358         * culture-info-table.h : regenerated. Fixed bug #69652.
13359
13360 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
13361
13362         * loader.c metadata.c: Reapply a variant r59116.
13363         
13364         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
13365
13366         * class.c (mono_class_setup_interface_offsets): New internal function.
13367
13368         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
13369         interfaces too. Fixes #77398.
13370
13371         * reflection.c (encode_cattr_value): Add support for 
13372         parameter type=object, argument type=array.
13373         (load_cattr_value): Ditto. Fixes #77916.
13374
13375         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
13376         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
13377
13378         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
13379         a byval char array and CharSet is Ansi.
13380
13381         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
13382
13383 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
13384
13385         * metadata.c: Add some locking comments.
13386         
13387         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
13388         mempool.
13389         (mono_metadata_free_method_signature): Don't free the signature itself.
13390
13391         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
13392
13393         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
13394         reference the same MonoImage.
13395         (mono_assembly_load_from_full): Add an assert.
13396
13397 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
13398
13399         * image.c (mono_image_close): Don't put the image we are about to free into the
13400         loaded_images_guid_hash.
13401
13402         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
13403         to reduce code duplication.
13404
13405         * marshal.c: Register the native functions called by this module as icalls, to
13406         somewhat centralize the creation of MonoMethodSignature's.
13407
13408         * loader.c (mono_method_signature): Add a cache for method signatures.
13409
13410         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
13411         the parameter attributes of a method.
13412         (mono_metadata_parse_method_signature_full): Refactored the computation of
13413         parameter attributes into a separate function. Also avoid one allocation in
13414         most cases.
13415
13416         * assembly.c (mono_assembly_close): Ditto.
13417
13418         * image.c (mono_image_close): Log trace messages with INFO level.
13419
13420         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
13421
13422         * image.c reflection.c: Correct reference counting of image modules.
13423         
13424         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
13425         of this function from the image mempool.
13426         
13427         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
13428         to allow more cached types to be used.
13429
13430         * mono-debug.c (mono_debug_add_method): Appled patch from
13431         David S. Miller  <davem@sunset.davemloft.net>: Access 
13432         minfo->lexical_blocks[] entry elements using read32().
13433
13434 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
13435
13436         * loader.c (mono_free_method): No longer free the method header for non-dynamic
13437         methods as it is allocated from the mempool.
13438
13439         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
13440         image mempool.
13441
13442         * metadata-internals.h: Add comments describing the reference counting scheme
13443         used for MonoImage and MonoAssembly.
13444
13445         * image.c assembly.c reflection.c: Rework reference counting of images and 
13446         assemblies so they are freed when the runtime is shut down. Free some 
13447         additional memory structures when an image is unloaded.
13448         
13449 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
13450
13451         * class.c loader.c reflection.c: Allocate more data structures in
13452         the image mempool.
13453
13454 2006-03-31  Miguel de Icaza  <miguel@novell.com>
13455
13456         * icall.c
13457         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
13458         build on pre glib 2.4 systems.
13459
13460 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
13461
13462         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
13463
13464         * icall.c: Fix some warnings.
13465
13466 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
13467
13468         * culture-info-table.h : regenerated.
13469
13470 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
13471
13472         * threads.c, object-internals.h, verify.c: changed the culture caching
13473         code to use a normal MonoArray for storage so the GC can keep track of
13474         them easily. Fixed bits of the cache logic, too and simplified the
13475         code.
13476
13477 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
13478
13479         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
13480         thread for non-Boehm GCs.
13481
13482 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
13483
13484         * domain.c, object.c, domain-internals.h: reduce the amount of memory
13485         needed to keep track of the data for static fields.
13486
13487 2006-03-29  Raja R Harinath  <rharinath@novell.com>
13488
13489         Fix #75172
13490         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
13491         for interface classes.  Use 'num_methods' instead.
13492         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
13493         before using '->vtable_size' field.
13494
13495 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
13496
13497         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
13498         doesn't contain managed pointers, so use a normal hashtable.
13499
13500 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
13501
13502         * reflection.c, class-internals.h, domain.c: fixed handling of types
13503         used as values for objects in custom attributes (bug #77915):
13504
13505 2006-03-24  Martin Baulig  <martin@ximian.com>
13506
13507         * class.c (mono_class_setup_fields): Added support for generic
13508         instances; fixes #77580.
13509
13510 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13511
13512         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
13513
13514 2006-03-24  Dick Porter  <dick@ximian.com>
13515
13516         * file-io.c (get_file_attributes): More stat macro breakage.
13517         Fixes bug 77759.
13518
13519 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
13520
13521         * profiler.c: added the file=filename option in the default profiler
13522         to output the profile data to filename.
13523
13524 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13525
13526         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
13527         bug #77877.
13528
13529 2006-03-22  Martin Baulig  <martin@ximian.com>
13530
13531         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
13532         allocated `MonoClassField *' in `fb->handle'.
13533
13534 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
13535
13536         * class.c, image.c, metadata-internals.h: implemented new mechanism to
13537         allocate interface ID to save memory and allow better ID reuse on
13538         appdomain unload. setup_generic_vtable () removal from Martin.
13539
13540 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
13541
13542         * object.h, appdomain.c, domain.c, exception.c, icall.c,
13543         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
13544         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
13545         write barriers for reference stores with managed objects accessed with
13546         C structures in the runtime and in embedding programs.
13547
13548 2006-03-20  Raja R Harinath  <rharinath@novell.com>
13549
13550         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
13551         'interface_id' and 'max_interface_id' fields of MonoClasses
13552         representing open generic types.
13553
13554 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
13555
13556         * object.h, object.c, icall.c: added functions to deal with
13557         storing valuetypes that contain references in managed objects.
13558         * reflection.c, string-icalls.c, threads.c, marshal.c: small
13559         fixes and comments around uses of mono_array_addr ().
13560
13561 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
13562
13563         * object.h, icall.c, monitor.c: object.GetHashCode ()
13564         implementation that supports the moving garbage collector.
13565
13566 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
13567
13568         * icall.c, threads-types.h, threads.c: implemented finalizer for
13569         LocalDataStoreSlot.
13570
13571 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
13572
13573         * metadata.c (mono_type_size): Add a fixme.
13574         (mono_type_stack_size): Ditto.
13575
13576         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
13577         'type_forwarders' field.
13578
13579         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
13580         attribute from net 2.0.
13581
13582         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
13583         from class.c.
13584
13585         * class.c (mono_class_setup_fields): Fix a warning.
13586         
13587         * class.c (mono_class_from_name): Add support for assemblyref entries
13588         in the EXPORTEDTYPE table.
13589
13590         * reflection.c: Add support for handling type forwarders under net 2.0.
13591
13592         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
13593         
13594 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
13595
13596         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
13597         overwriting entries in ModuleBuild->types, also clean up the code
13598         a little. Fixes #77774.
13599
13600 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
13601
13602         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
13603         load friend assembly info when present.
13604
13605 2006-03-14  Raja R Harinath  <rharinath@novell.com>
13606
13607         Fix crasher on gtest-158.cs.
13608         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
13609         the return value if the MonoClass we want is yet in an
13610         inconsistent state.
13611         * class.c (mono_class_create_from_typedef): Add an comment
13612         explaining an order dependency between mono_class_setup_parent and
13613         mono_class_setup_mono_type.
13614
13615 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
13616
13617         * class.c: documentation updates and events bug fix.
13618
13619 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
13620
13621         * class.c: some cleanup, locking fixes.
13622
13623 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
13624
13625         * class.c: fix the generics code to setup nested
13626         type info to the instantiated type (bug #77770).
13627
13628 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
13629
13630         * marshal.c: fixed a few type correctness issues.
13631
13632 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
13633
13634         * loader.c: the Set/Get/Addrtess array methods should be public.
13635
13636 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
13637
13638         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
13639         
13640         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
13641         info->wrapper.
13642
13643 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
13644
13645         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
13646
13647         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
13648
13649         * mempool.c (mono_mempool_alloc): Speed this up a bit.
13650         (mono_mempool_alloc0): Ditto.
13651
13652 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13653
13654         * socket-io.c:
13655         (create_object_from_sockaddr): it was allocating 4 extra bytes
13656         for the AF_UNIX data. Fixes bug #77747.
13657
13658 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
13659
13660         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
13661
13662 2006-03-09  Dick Porter  <dick@ximian.com>
13663
13664         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
13665         Fixes bug 76966 again.
13666
13667 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
13668
13669         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
13670         names from r57532
13671         * appdomain.c: Bumped corlib version to 48 (due to r57532)
13672
13673 2006-03-07  Martin Baulig  <martin@ximian.com>
13674
13675         * object.c
13676         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
13677
13678 2006-03-07  Martin Baulig  <martin@ximian.com>
13679
13680         * class.c
13681         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
13682         regression introduced in r56970; see gtest-252.cs.
13683
13684         * loader.c (mono_get_method_constrained): Correctly handle generic
13685         methods; see gtest-253.cs.
13686
13687 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
13688
13689         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
13690
13691 2006-03-04  Martin Baulig  <martin@ximian.com>
13692
13693         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
13694         compute the parent type at runtime, just like we're already doing
13695         it for interfaces.
13696
13697         * reflection.c
13698         (mono_reflection_bind_generic_parameters): Don't compute the
13699         parent type anymore.
13700
13701         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
13702
13703 2006-03-04  Martin Baulig  <martin@ximian.com>
13704
13705         * mono-debug-debugger.h
13706         (mono_debugger_create_notification_function): Allocate memory at
13707         runtime and return a pointer to it.
13708
13709 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
13710
13711         * assembly.c: Fix windows build.
13712         
13713         * assembly.c: Fix build.
13714
13715         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
13716
13717         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
13718         
13719 2006-03-03  Dick Porter  <dick@ximian.com>
13720
13721         * process.c
13722         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
13723         Check parameters before dereferencing them.  Fixes Aaron's part of
13724         bug 77393.
13725
13726 2006-03-03  Raja R Harinath  <rharinath@novell.com>
13727
13728         Fix performance regression.
13729         * loader.c (find_method_in_class): Add 'from_class' argument.
13730         Rename 'klass' argument to 'in_class'.  The signature is compared
13731         against the method in 'in_class', and the corresponding method is
13732         returned from 'from_class'.
13733         (find_method): Walk both 'in_class' and 'from_class' in parallel.
13734         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
13735         type definition and generic instantiation in parallel.
13736         (mono_get_method_constrained): Update to changes.
13737
13738 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
13739
13740         * threads.c: make sure the domain is correct, too when doing
13741         mono_thread_attach ().
13742
13743 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
13744
13745         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
13746         windows. Fixes #77683.
13747
13748 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
13749
13750         * object.h, *: introduced specific way to set elements of an array
13751         of references to be used as write barrier. Still need to audit the
13752         uses of mono_array_addr.
13753
13754 2006-03-01  Miguel de Icaza  <miguel@novell.com>
13755
13756         * object-internals.h: New field to cache the assmebly name, patch
13757         from Tambet Ingo (tambet@ximian.com)
13758
13759 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
13760
13761         * decimal.h, class-internals.h, metadata-internals.h,
13762         file-io.h: mark a few function declarations as internal, to
13763         reduce the number of PLT entries.
13764
13765 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13766
13767         * file-io.c: fix typo in warning message.
13768
13769 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
13770
13771         * loader.c: on unix, lookup the "*A" version of a function
13772         if charset is auto as a second option before failing.
13773
13774 2006-02-28  Raja R Harinath  <rharinath@novell.com>
13775
13776         * class.h (mono_class_inflate_generic_method): Revert to two
13777         argument version.
13778         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
13779         (mono_class_inflate_generic_method_full): Add.
13780         * class.c (mono_class_inflate_generic_method_full): Rename from
13781         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
13782         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
13783         * loader.c, reflection.c: Update to changes.
13784
13785 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
13786
13787         * icall.c: const fixes and small improvements.
13788
13789 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13790
13791         * threadpool.c: for asynchronous connect(), enable the same workaround
13792         for BSD 6 as for the Mac. Fixes bug #77637.
13793
13794 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
13795
13796         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
13797         formatted classes. Fixes #77524.
13798
13799 2006-02-24  Raja R Harinath  <rharinath@novell.com>
13800
13801         * class.c (inflate_generic_type): Add a couple more
13802         micro-optimizations.
13803         (inflate_generic_context): Don't use the 'gmethod' from
13804         'inflate_with'.
13805         (mono_class_inflate_generic_method): If the method has generic
13806         parameters, but the passed-in context doesn't have a 'gmethod',
13807         create one.  Use the possibly simplified generic instantiation
13808         from the declaring class instead of the one passed in.
13809
13810 2006-02-24  Raja R Harinath  <harinath@gmail.com>
13811
13812         Make generic method signature and method header handling lazy.
13813         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
13814         (inflate_generic_header): Likewise.
13815         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
13816         parameter to avoid inflating types.
13817         (mono_get_inflated_method): Empty out.
13818         * class.h (mono_class_inflate_generic_method): Update to changes.
13819         * loader.c (mono_get_method_from_token): Don't parse signature for
13820         generic methods, nor methods of generic classes.
13821         (mono_method_signature): Rename from 'mono_method_signature'.
13822         Inflate signature on demand.
13823         (mono_method_get_header): Inflate method header on demand.
13824         * reflection.c: Update to changes.
13825
13826 2006-02-23  Raja R Harinath  <rharinath@novell.com>
13827
13828         * metadata.c (mono_metadata_inflate_generic_inst): If the
13829         instantiation is closed, don't bother expanding it in the new
13830         context.
13831         * class.c (inflate_generic_class): If the generic instantiation
13832         doesn't change after inflation, return the argument itself.
13833         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
13834         Add bounds checks.
13835         (inflate_generic_context): If neither the generic class nor the
13836         generic method instantiations change, return the original context.
13837         * reflection.c (mono_method_get_object): Do
13838         'mono_get_inflated_method' before accessing the ->klass field.
13839         (inflate_mono_method): Don't create a MonoGenericMethod unless
13840         necessary.
13841         (inflate_method): Don't pass a constructed type as the declaring
13842         type of a methodbuilder.
13843
13844 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
13845
13846         * object.c: fix memory overwrite.
13847
13848 2006-02-22  Dick Porter  <dick@ximian.com>
13849
13850         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
13851         it doesn't work any more.
13852         (mono_threads_request_thread_dump): Fix unused variable warnings.
13853
13854 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
13855
13856         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
13857         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
13858         the public header file.
13859
13860 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
13861
13862         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
13863
13864 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
13865
13866         * class-internals.h, object.c: reduce the size of MonoVTable
13867         and store the interface_offsets array at negative offsets.
13868
13869 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
13870
13871         * metadata.c: tweak table descriptors data structures to reduce
13872         size and runtime relocations.
13873
13874 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
13875
13876         * marshal.c: fix some types and opcodes to be type-safe
13877         in marshaling wrappers.
13878
13879 2006-02-21  Ankit Jain  <jankit@novell.com>
13880
13881         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
13882
13883 2006-02-21  Raja R Harinath  <rharinath@novell.com>
13884
13885         * metadata.c (get_constraints): Relax debugging checks for monodis.
13886
13887 2006-02-21  Ankit Jain  <jankit@novell.com>
13888
13889         * metadata.c (mono_metadata_load_generic_params): Move the code
13890         checking for ambiguous generic params from here to mono/dis/get.c
13891         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
13892
13893 2006-02-21  Raja R Harinath  <harinath@gmail.com>
13894
13895         Fix assertion triggered when compiling nemerle.
13896         * class.c (mono_get_shared_generic_inst): Rename from
13897         get_shared_inst and make non-static.
13898         * loader.c (mono_get_shared_generic_method): New.  Used to create
13899         the MonoGenericContext-equivalent of a MonoGenericContainer.
13900         (mono_get_method_from_token): Initialize the 'context' field of
13901         the created MonoGenericContainer.
13902         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
13903         * metadata.c (get_constraints): Add sanity check.
13904         * class-internals.h: Add new internal methods.
13905
13906         * reflection.c (verify_safe_for_managed_space): New sanity check.
13907         Currently checks that owner-less generic parameters aren't allowed
13908         in managed space.
13909         (mono_type_get_object): Use it.
13910         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
13911         that are now in mono_type_get_object.
13912         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
13913
13914 2006-02-19  Raja R Harinath  <harinath@gmail.com>
13915
13916         * metadata.c (mono_type_create_from_typespec): Rename from
13917         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
13918         argument and caching of types in the generic container.
13919         (unwrap_arrays, find_generic_param): Remove.
13920         * metadata-internals.h: Update.
13921         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
13922
13923 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
13924
13925         * class.c (mono_class_get_exception_for_failure): Fix a warning.
13926
13927         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
13928         return values. Fixes #77581.
13929
13930         * class.c (mono_fnptr_class_get): Switch name and name_space.
13931
13932         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
13933         classes and add support for [In, Out] attributes.
13934         (mono_marshal_free_asany): Ditto. Fixes #77524.
13935
13936 2006-02-18  Raja R Harinath  <harinath@gmail.com>
13937
13938         * class.c (mono_class_from_generic_parameter): Make more robust to
13939         incomplete MonoGenericContainers from monodis.
13940
13941 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
13942
13943         * class-internals.h: added some more exception types.
13944         * class.c, metadata.c: added a few checks to handle missing
13945         types.
13946
13947 2006-02-17  Raja R Harinath  <rharinath@novell.com>
13948
13949         Use owner-less generic-params some more.
13950         * class.c (my_mono_class_from_generic_parameter): Remove.
13951         (mono_class_from_generic_parameter): Handle null image,
13952         param->name and param->owner.
13953         (mono_class_from_mono_type): Update.
13954         (mono_class_create_from_typespec): Remove 'container' parameter.
13955         If that parameter is non-null, the result is always inflated by
13956         'mono_class_get_full' anyway.
13957         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
13958         parameter.
13959         (mono_class_get_full): Update.
13960
13961         * class.c (inflate_generic_type) [GENERICINST]: If the generic
13962         instance is not open, don't bother inflating.
13963         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
13964         parse metadata for inflated classes.
13965         (_mono_class_get): Change GenericContext* parameter to
13966         GenericContainer*.
13967         (mono_class_create_from_typespec): Likewise.  Simplify, and
13968         implement trivially.  All the cases are handled in
13969         mono_class_from_mono_type.  Don't inflate returned class.
13970         (mono_class_get_full): Delegate GENERICINST optimization to
13971         inflate_generic_type.
13972         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
13973
13974 2006-02-16  Dick Porter  <dick@ximian.com>
13975
13976         * socket-io.c (create_object_from_sockaddr): Fix typo.
13977         (create_sockaddr_from_object): Check array lengths before
13978         potentially accessing items off the end.
13979         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
13980         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
13981         (ves_icall_System_Net_Sockets_Socket_Send_internal)
13982         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
13983         length checks to avoid wraparound overflows.
13984         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
13985         contents of the array of sockets
13986         (hostent_to_IPHostEntry2)
13987         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
13988         Check return value of inet_ntop ().
13989         (addrinfo_to_IPHostEntry): Fix typo
13990
13991 2006-02-16  Raja R Harinath  <rharinath@novell.com>
13992
13993         Type metadata parsing doesn't use generic-instantiation information.
13994         * metadata.c (mono_metadata_parse_array_full): Change
13995         MonoGenericContext* parameter to MonoGenericContainer*.
13996         (mono_metadata_parse_type_full): Likewise.
13997         (mono_type_create_from_typespec_full): Likewise.
13998         (mono_metadata_parse_mh_full): Likewise.
13999         (mono_metadata_parse_generic_inst): Likewise.
14000         (do_mono_metadata_parse_generic_class): Likewise.
14001         (do_mono_metadata_parse_type): Likewise.
14002         * metadata-internals.h: Update to changes.
14003         * class.c (mono_class_find_enum_basetype): Likewise.
14004         (mono_class_setup_fields): Likewise.
14005         (mono_class_create_from_typespec): Likewise.
14006         * loader.c (method_from_methodspec): Likewise.
14007         (mono_get_method_from_token): Likewise.
14008         (mono_method_get_header): Likewise.
14009
14010 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
14011
14012         * marshal.c: handle additional GENERICINST case (patch from
14013         Thong Nguyen <tum@veridicus.com>).
14014         Fix a few cases where LDIND_I/STIND_I was used for references.
14015
14016 2006-02-16  Raja R Harinath  <rharinath@novell.com>
14017
14018         * reflection.c (mono_reflection_get_token): Remove unused variable.
14019
14020 2006-02-16  Martin Baulig  <martin@ximian.com>
14021
14022         * reflection.c (mono_reflection_get_token): Add support for fields
14023         in instantiated generic types.
14024
14025         * icall.c
14026         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
14027
14028 2006-02-15  Martin Baulig  <martin@ximian.com>
14029
14030         * icall.c
14031         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
14032         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
14033         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
14034         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
14035
14036 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
14037
14038         * class.c, metadata.c, metadata.h, object.c, icall.c,
14039         marshal.c: changed mono_type_get_underlying_type () to do
14040         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
14041         Fixed handling of instantiated generic valuetypes (bug #75479).
14042
14043 2006-02-15  Raja R Harinath  <rharinath@novell.com>
14044
14045         * metadata.c (mono_metadata_decode_signed_value): Simplify.
14046         Delegate to mono_metadata_decode_value, and work on the returned value.
14047
14048         * icall.c (ves_icall_MonoType_GetGenericArguments):
14049         Add consistency check here too.
14050         
14051 2006-02-15  Ankit Jain  <jankit@novell.com>
14052
14053         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
14054         char/short etc.
14055
14056 2006-02-15  Ankit Jain  <jankit@novell.com>
14057
14058         * metadata.c (mono_metadata_decode_signed_value): New function to decode
14059         signed values, used only for representing lower bounds of arrays.
14060         (mono_metadata_parse_array_full): Use new
14061         mono_metadata_decode_signed_value to decode lower bounds.
14062
14063 2006-02-14  Martin Baulig  <martin@ximian.com>
14064
14065         * reflection.c
14066         (mono_reflection_get_token): Support "MonoGenericMethod" and
14067         "MonoGenericCMethod" and allow generic instances / methods.
14068
14069 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
14070
14071         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
14072         to obtain the terminal size using an ioctl.
14073
14074         * object.c (mono_nullable_init): Revert this as nullable reference
14075         types are not valid.
14076         (mono_nullable_box): Ditto.
14077
14078 2006-02-09  Dick Porter  <dick@ximian.com>
14079
14080         * threads.c (mono_thread_detach): Drop a reference to the thread
14081         we're detaching.
14082
14083 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
14084
14085         * object.c (mono_nullable_init): Handle nullable reference types.
14086         (mono_nullable_box): Ditto. Fixes #77446.
14087
14088 2006-02-07  Martin Baulig  <martin@ximian.com>
14089
14090         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
14091
14092 2006-02-07  Ankit Jain  <jankit@novell.com>
14093
14094         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
14095         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
14096         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
14097         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
14098         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
14099         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
14100
14101 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
14102
14103         * class.c (mono_class_create_generic): Set type_token as well.
14104
14105         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
14106         compatible with MS.
14107
14108 2006-02-02  Martin Baulig  <martin@ximian.com>
14109
14110         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
14111         has never been used so far.
14112
14113 2006-02-02  Martin Baulig  <martin@ximian.com>
14114
14115         * mono-debug-debugger.h: Changed comment at the top of this file;
14116         the header is not installed, but it's safe to #include it from
14117         within the JIT.
14118
14119         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
14120         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
14121
14122 2006-02-02  Martin Baulig  <martin@ximian.com>
14123
14124         * mono-debug.h
14125         (MonoSymbolTable): Removed the `metadata_info' field.
14126
14127         * mono-debug.c
14128         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
14129
14130         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
14131         (mono_debugger_add_builtin_types): Removed.
14132         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
14133         (mono_debugger_create_notification_function): We now operate on a
14134         pre-allocated area; take a `gpointer' and return `void'.
14135
14136         * mono-debug-debugger.c
14137         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
14138         (mono_debugger_add_builtin_types): Removed.
14139
14140 2006-02-02  Martin Baulig  <martin@ximian.com>
14141
14142         * threads.c (mono_debugger_create_all_threads): New public method.
14143
14144 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
14145
14146         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
14147         breaks on several platforms.
14148
14149 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
14150
14151         * assembly.c: the VS.NET build doesn't supply default values for
14152         MONO_ASSEMBLIES and MONO_CFG_DIR.
14153
14154 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
14155
14156         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
14157         helper function.
14158
14159         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
14160
14161         * loader.c (method_from_memberref): Fix a warning.
14162
14163         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
14164
14165         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
14166         with explicit layout. Fixes #77433.
14167
14168 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
14169
14170         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
14171         max_interface_id is initialized before using it. Fixes #77398.
14172         (ves_icall_Type_GetInterfaces): Ditto.
14173
14174 2006-01-30  Raja R Harinath  <rharinath@novell.com>
14175
14176         * metadata.c (mono_metadata_parse_method_signature_full): Don't
14177         allocate memory for parameter attributes when parsing memberref
14178         signatures.
14179         * loader.c (mono_loader_set_error_method_load): Don't warn.
14180         (method_from_memberref): Ensure MissingMethodException gets thrown
14181         if method is not found.  Make warning more informative.
14182
14183 2006-01-29  Raja R Harinath  <harinath@gmail.com>
14184
14185         Fix #77397
14186         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
14187         return true if is byref.
14188         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
14189         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
14190         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
14191
14192 2006-01-27  Raja R Harinath  <rharinath@novell.com>
14193
14194         Fix tests/find-method.2.il
14195         * loader.c (find_method, find_method_in_class): Remove is_inflated
14196         argument.  Revert 2006-01-18 change.
14197         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
14198         is generic, search for method in its generic definition.
14199         * class.c (mono_class_setup_vtable_general): Print generic
14200         arguments of generic types in debugging printf.
14201
14202 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
14203
14204         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
14205
14206         * threads.c (mono_threads_request_thread_dump): New helper function.
14207
14208 2006-01-25  Raja R Harinath  <rharinath@novell.com>
14209
14210         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
14211
14212 2006-01-25  Ankit Jain  <jankit@novell.com>
14213
14214         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
14215         move definition to ..
14216         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
14217         
14218 2006-01-25  Ankit Jain  <jankit@novell.com>
14219             Raja R Harinath  <rharinath@novell.com>
14220
14221         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
14222         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
14223         as necessary.
14224
14225 2006-01-25  Martin Baulig  <martin@ximian.com>
14226
14227         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
14228         `MonoDebuggerThread' into debug-debugger.c.
14229
14230 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
14231
14232         * profiler.c: fix printing of data.
14233
14234 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
14235
14236         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
14237           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
14238
14239 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
14240
14241         * object.c: fix deadlock related to string interning.
14242
14243 2006-01-23  Martin Baulig  <martin@ximian.com>
14244
14245         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
14246
14247         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
14248
14249 2006-01-23  Martin Baulig  <martin@ximian.com>
14250
14251         * mono-debug.h: Moved the prototypes of some functions which are
14252         used by the JIT here from mono-debug-debugger.h.
14253
14254 2006-01-21  Martin Baulig  <martin@ximian.com>
14255
14256         * Makefile.am: Don't install mono-debug-debugger.h.
14257
14258 2006-01-21  Martin Baulig  <martin@ximian.com>
14259
14260         * mono-debug-debugger.h: Enforce the private status of this header
14261         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
14262         Moved some stuff from mono-debugger-jit-wrapper.h here.
14263
14264 2006-01-20  Raja R Harinath  <rharinath@novell.com>
14265
14266         * class.c (mono_class_from_typeref): Add a sanity test to help
14267         catch lack of assembly load/search hooks.
14268
14269 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
14270
14271         * marshal.c (emit_struct_conv): Relax the fields with same offset
14272         check even more. Fixes #77230.
14273
14274 2006-01-18  Martin Baulig  <martin@ximian.com>
14275
14276         * loader.c (find_method_in_class): Added `gboolean is_inflated'
14277         argument; if false, we compare the uninstantiated signatures.
14278         (method_from_memberref): Compare the uninstantiated signatures;
14279         fixes #76417.
14280
14281 2006-01-18  Robert Jordan  <robertj@gmx.net>
14282
14283         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
14284         Clear the weak link. Fixes bug #77170.
14285
14286         * gc.c (mono_gchandle_free):
14287         Reflect *-gc.c changes (tiny optimization).
14288
14289 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
14290
14291         * metadata.c (mono_metadata_signature_dup): Applied patch from
14292         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
14293         Fixes #77288.
14294
14295 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
14296
14297         * marshal.c (emit_struct_conv): Allow fields with the same offset when
14298         marshalling from native to managed code. Fixes #77230.
14299
14300 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14301
14302         * threadpool.c: fix problem (Mac only) when more than one asynchronous
14303         connect. Fixes bug #77020.
14304
14305 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
14306
14307         * class.c: fixed id assignement for nested interfaces (bug #77275).
14308         Added also better info for --print-vtable debugging.
14309
14310 2006-01-12  Martin Baulig  <martin@ximian.com>
14311
14312         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
14313         interfaces on-the-fly; fixes #76625.
14314
14315         * class-internals.h
14316         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
14317         don't need that anymore.
14318
14319 2006-01-12  Miguel de Icaza  <miguel@novell.com>
14320
14321         * socket-io.c
14322         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
14323         To avoid initing the nested_classes when not needed I turned the
14324         PeerCredData as a toplevel internal class, as it has to be shared
14325         anyways. 
14326
14327         Fixes the CASA issue.
14328
14329 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
14330
14331         * domain.c: Accessors for MonoJitInfo
14332
14333         * profiler-private.h: Add jitinfo to the end jit hook
14334
14335         * profiler.[ch]: Define new hooks, called after jitting which give
14336         the MonoJitInfo that was compiled
14337
14338 2006-01-10  Martin Baulig  <martin@ximian.com>
14339
14340         * class.c (mono_class_setup_events): Add support for generic
14341         classes; fixes #76440.
14342
14343 2006-01-06  Raja R Harinath  <rharinath@novell.com>
14344
14345         Fix #77160.
14346         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
14347         on passed-in method.
14348
14349 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
14350
14351         * object.c (mono_runtime_invoke_array): Add Nullable support.
14352
14353         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
14354
14355 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
14356
14357         * file-io.c: Don't consider sockets as directory and avoid an endless
14358         loop. Fix bug #76966.
14359
14360 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
14361
14362         * object.c (mono_nullable_init): New helper function.
14363         (mono_nullable_box): Ditto.
14364
14365         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
14366
14367         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
14368
14369         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
14370         
14371 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
14372
14373         * class.c (mono_class_is_assignable_from): Make T assignable to 
14374         Nullable<T>.
14375
14376 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
14377
14378         * appdomain.c: Bump corlib version to 46.
14379         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
14380         serialization purpose) and changed ves_icall_System_Reflection_
14381         Assembly_get_code_base signature to accept a boolean (to escape, or 
14382         not, the assembly code base).
14383
14384 2005-12-23  Dick Porter  <dick@ximian.com>
14385
14386         * icall.c: 
14387         * threads-types.h: 
14388         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
14389         CreateEvent icall now returns "created" boolean parameter.
14390
14391 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
14392
14393         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
14394         #76967.
14395
14396         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
14397         when attr_klass is an interface. Fixes #77045.
14398
14399 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
14400
14401         * marshal.c (emit_struct_conv): Fix previous patch.
14402         
14403         * marshal.c (emit_struct_conv): Add a check for fields with the same
14404         offset.
14405
14406 2005-12-20  Raja R Harinath  <rharinath@novell.com>
14407
14408         Fix regression in Mono.C5.
14409         * class.c (mono_class_create_generic): If 'klass' is an interface
14410         set up the interface offsets.
14411         (mono_class_is_assignable_from): Don't throw away generic arguments.
14412
14413 2005-12-19  Raja R Harinath  <rharinath@novell.com>
14414
14415         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
14416         type parameters.
14417
14418 2005-12-15  Raja R Harinath  <rharinath@novell.com>
14419
14420         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
14421         dead store.
14422         (do_mono_metadata_parse_generic_class): Don't pass the current
14423         generic context when parsing the type being instantiated: it
14424         cannot use it, anyway.
14425
14426         * loader.c (method_from_memberref): Don't inflate a signature if
14427         it doesn't contain any type parameters.
14428
14429 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
14430
14431         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
14432
14433 2005-12-14  Martin Baulig  <martin@ximian.com>
14434
14435         * class.c
14436         (mono_type_get_name_recurse): Don't return null for type
14437         parameters and open generic classes.
14438         (mono_class_setup_methods): Don't exclude generic instances.
14439         (mono_get_unique_iid): Use different IDs for different
14440         instantiations of the same generic type.
14441         (mono_class_setup_vtable): Only use setup_generic_vtable() for
14442         open generic instances; create a normal vtable for closed generic
14443         instances.
14444         (mono_class_setup_vtable_general): We're now also called for
14445         closed generic instances.
14446
14447         * reflection.c
14448         (mono_reflection_bind_generic_parameters): Correctly use
14449         mono_metadata_lookup_generic_inst() everywhere.
14450
14451 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
14452
14453         * object.c (mono_class_create_runtime_vtable): Call 
14454         mono_class_setup_vtable ().
14455
14456         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
14457         function.
14458         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
14459         #76959.
14460
14461         * loader.c (mono_loader_set_error_type_load): Print the type load
14462         warnings to the console so they are more visible to the user.
14463         (mono_loader_set_error_method_load): Ditto.
14464
14465         * reflection.c (ensure_runtime_vtable): Revert the last change as it
14466         is still broken.
14467         
14468         * reflection.c (ensure_runtime_vtable): Fix build.
14469
14470         * reflection.c (ensure_runtime_vtable): Disable an optimization which
14471         doesn't work in all cases.
14472
14473 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
14474
14475         * object.c (mono_array_new_full): Treat a single dimensional array
14476         with 0 lower bounds as an szarray. Fixes #76973.
14477
14478         * reflection.c (custom_attr_visible): Really fix this.
14479
14480 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
14481
14482         * reflection.c (custom_attr_visible): Allow nested public attributes
14483         as well.
14484
14485         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
14486         interface check.
14487
14488 2005-12-12  Raja R Harinath  <harinath@gmail.com>
14489
14490         * class.c (set_generic_param_owner): Delete.
14491         (mono_class_create_from_typedef): Don't set ->owner field of
14492         generic parameters to "param containers" of enclosing classes.
14493         * reflection.c (mono_reflection_initialize_generic_parameter):
14494         Likewise.
14495
14496 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
14497
14498         * reflection.c (custom_attr_visible): Fix build.
14499
14500 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
14501
14502         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
14503         private attributes.
14504         
14505         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
14506         handling of null parameter defaults.
14507
14508 2005-12-09  Raja R Harinath  <rharinath@novell.com>
14509
14510         * class.c (mono_class_from_generic_parameter): Don't set
14511         klass->generic_container.
14512         (my_mono_class_from_generic_parameter): Likewise.
14513
14514 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
14515
14516         * reflection.c (load_public_key): Fix a warning.
14517         (method_encode_code): Fix unaligned accesses.
14518
14519 2005-12-07  Martin Baulig  <martin@ximian.com>
14520
14521         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
14522
14523         * reflection.c
14524         (write_generic_param_entry): Encode our custom attrs.
14525
14526         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
14527
14528 2005-12-07  Martin Baulig  <martin@ximian.com>
14529
14530         * reflection.c (encode_new_constraint): Removed; we don't use the
14531         `NewConstraintAttribute' anymore.
14532
14533 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
14534
14535         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
14536         not fire a TypeResolve event when Assembly.GetType () is called.
14537
14538 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
14539
14540         Beginning of support for nullable types in the runtime. Parts of
14541         this patch are from Martin.
14542
14543         * appdomain.c (MONO_CORLIB_VERSION): Bump
14544
14545         * domain.c (mono_init_internal): get the nullable type
14546
14547         * class.c (mono_class_is_nullable): New method
14548         (mono_class_get_nullable_param): New mehod
14549         (mono_class_create_generic): In types T? set cast_class to T
14550
14551         * class-internals.h (MonoDefaults): new nullable default class
14552         (mono_class_get_nullable_param, mono_class_get_nullable_param):
14553         new methods.
14554
14555 2005-12-05  Raja R Harinath  <rharinath@novell.com>
14556
14557         * metadata.c (select_container): New.  Refactor code to select the
14558         appropriate GenericContainer given the type of generic parameter
14559         we are looking for.
14560         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
14561         not a MonoGenericContext.  Use select_container.  Update parameters.
14562         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
14563         and MONO_TYPE_MVAR.
14564         (unwrap_arrays): Remove duplicate tests.
14565         (find_generic_param): Rename from 'has_same_context'.  Now walks a
14566         generic instantiated class to find any arguments that are generic
14567         parameters.
14568         (mono_type_create_from_typespec_full): Use find_generic_param to
14569         avoid evicting some generic instantiations from the typespec
14570         cache.
14571
14572 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
14573
14574         * reflection.c: fixed writing of doubles on ARM FPA.
14575
14576 2005-12-02  Robert Jordan  <robertj@gmx.net>
14577
14578         * icall.c: Fixed EventInfo.ReflectedType (#76829).
14579
14580 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14581
14582         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
14583         least on SUSE 10 they are not the same (on debian, they are just the
14584         same thing).
14585
14586 2005-12-01  Raja R Harinath  <rharinath@novell.com>
14587
14588         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
14589         DeclaringType for VARs and MVARs.
14590         * class.c (set_generic_param_owner): Fix initialization of owner
14591         fields.
14592
14593 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
14594
14595         * icall.c: fixed Enum.ToObject() to correctly convert the values.
14596
14597 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14598
14599         * threadpool.c: workaround for a bug that shows up on the Mac:
14600         select()+connect() on a blocking socket is not like it should
14601         be, so we proceed to connect() in that case, wasting the I/O
14602         threadpool thread until connect succeedes. Fixes bug #75436.
14603
14604 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14605
14606         * threadpool.c: fix typo when setting file descriptor states.
14607
14608 2005-11-28  Raja R Harinath  <rharinath@novell.com>
14609
14610         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
14611         * metadata.c (mono_metadata_parse_method_signature_full): Don't
14612         create a temporary signature container.
14613         (mono_metadata_parse_generic_param): Update to changes.
14614         (mono_type_create_from_typespec_full): Update to changes.
14615         * loader.c (method_from_memberref): Don't use a
14616         MonoGenericContainer while parsing a memberref signature.
14617         (method_from_methodspec): Remove dead-store of the 'container'
14618         variable.  It's overwritten before use.
14619
14620         * metadata.c (mono_type_create_from_typespec_full): Make debugging
14621         checks tighter.
14622         (mono_metadata_parse_generic_param): Likewise.
14623         * loader.c (find_method_in_class): Does not need a
14624         MonoGenericContainer.  Use 'mono_method_signature' rather than
14625         'mono_method_signature_full'.
14626         (find_method, mono_get_method_constrained, method_from_memberref):
14627         Update to changes.
14628
14629         * metadata.c (mono_type_create_from_typespec_full): Ensure that
14630         owner-less generic-parameters are never evicted from the typespec
14631         cache.
14632
14633         * loader.c (method_from_memberref): Don't use the current context
14634         when parsing signatures.
14635         (method_from_methodspec, mono_get_method_from_token): Update to changes.
14636
14637         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
14638         side-effects in g_assert.
14639         * loader.c (mono_get_method_from_token): Resolve klass earlier so
14640         that we don't potentially lose information.
14641
14642 2005-11-26  Dick Porter  <dick@ximian.com>
14643
14644         * icall.c:
14645         * threads.c: icalls to implement basic (ie, not named)
14646         System.Threading.Semaphore.
14647
14648 2005-11-24  Dick Porter  <dick@ximian.com>
14649
14650         * process.c
14651         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
14652         Use GetProcessId() if it's available.
14653
14654 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
14655
14656         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
14657
14658 2005-11-23  Raja R Harinath  <rharinath@novell.com>
14659             Ankit Jain  <jankit@novell.com>
14660
14661         * loader.c (mono_get_method_from_token): Initialize 'method' field
14662         of all generic parameters before parsing the signature.  Remove
14663         code that "fixed"-up MVAR references.
14664
14665 2005-11-23  Ankit Jain  <jankit@novell.com>
14666
14667         * metadata.c (mono_metadata_has_generic_params):
14668         (mono_metadata_load_generic_param_constraints):
14669         (mono_metadata_load_generic_params): Move duplicate code ...
14670         (mono_metadata_get_generic_param_row): ... here. Returns the
14671         first row-id in GenericParam table for a given owner (token).
14672         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
14673         prototype.
14674
14675 2005-11-23  Raja R Harinath  <rharinath@novell.com>
14676             Ankit Jain  <jankit@novell.com>
14677
14678         * metadata.c (mono_metadata_class_equal): Pass signature_only when
14679         comparing VARs too.
14680         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
14681         type->data.generic_param only if the type is an MVAR.
14682         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
14683         leak owner-less VARs and MVARs into managed space.
14684
14685 2005-11-21  Martin Baulig  <martin@ximian.com>
14686
14687         * class-internals.h
14688         (MonoMethod): Moved the `generic_container' here from
14689         `MonoMethodNormal' since we now also need it for
14690         `MonoMethodPInvoke';
14691         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
14692         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
14693         an union containing both `MonoMethodNormal' and
14694         `MonoMethodPInvoke'.
14695
14696         * loader.c
14697         (mono_get_method_from_token): Allow implementing generic methods
14698         as interncalls.
14699
14700         * threads.c
14701         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
14702         icall.
14703
14704 2005-11-17  Dick Porter  <dick@ximian.com>
14705
14706         * icall.c: 
14707         * process.h: 
14708         * process.c: Split the Process Start_internal icall into
14709         ShellExecuteEx_internal and CreateProcess_internal, which are
14710         called depending on whether UseShellExecute is true.  Fixes bug
14711         76670.
14712
14713         * appdomain.c (MONO_CORLIB_VERSION): Incremented
14714
14715 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
14716
14717         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
14718         'msize' parameters, use the information in 'mspec' instead.
14719         (emit_object_to_ptr_conv): Ditto.
14720
14721         * marshal.c (emit_struct_conv): Handle explicit layout structs with
14722         fields out of order. Fixes #76733.
14723
14724 2005-11-17  Ankit Jain  <jankit@novell.com>
14725
14726         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
14727
14728 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
14729
14730         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
14731           bug #76575.
14732
14733 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
14734
14735         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
14736         for types with non-auto layout. Fixes #76717.
14737
14738 2005-11-16  Ankit Jain  <jankit@novell.com>
14739
14740         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
14741         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
14742         if generic_context is null.
14743           (mono_metadata_generic_param_equal): param->owner can be null.
14744           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
14745         null.
14746
14747 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
14748
14749         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
14750         the correct value.
14751
14752 2005-11-15  Martin Baulig  <martin@ximian.com>
14753
14754         * object.c (set_value): Use mono_class_from_mono_type() instead of
14755         the hack for generic instances; fixes #76136.
14756
14757 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
14758
14759         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
14760         fields.
14761
14762         * image.c (load_metadata_ptrs): Initialize the new fields.
14763
14764         * reflection.c (create_dynamic_mono_image): Ditto.
14765
14766         * reflection.c (build_compressed_metadata): Use the new fields.
14767
14768         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
14769         icall.
14770
14771         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
14772         icall.
14773         
14774 2005-11-15  Ankit Jain  <jankit@novell.com>
14775             Raja R Harinath  <harinath@gmail.com>
14776
14777         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
14778         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
14779         new per-generic_container cache if the cached MonoType's context matches
14780         the current context.
14781           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
14782         to the expected context.
14783           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
14784
14785 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14786
14787         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
14788         we changed the signature of an icall.
14789         * icall.c: Modify to mono_double_ParseImpl return true/false 
14790         depending on the success, instead of throwing the exception. This will
14791         help us in Double.TryParse methods.
14792         
14793 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
14794
14795         * marshal.c (emit_marshal_object): Throw an exception when
14796         marshalling 'object' instead of crashing. Fixes #76696.
14797
14798 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
14799
14800         * class-internals.h: Add prototype for mono_type_get_full_name ().
14801
14802 2005-11-11  Dick Porter  <dick@ximian.com>
14803
14804         * threads.c (mono_thread_manage): Make sure the main thread has
14805         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
14806
14807 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
14808
14809         * loader.c (mono_loader_set_error_type_load): Log a warning to the
14810         console about the missing type.
14811         (mono_loader_set_error_method_load): Ditto.
14812
14813 2005-11-09  Miguel de Icaza  <miguel@novell.com>
14814
14815         * mono-config.c (mono_get_config_dir): Set the system defaults if
14816         none is specified.
14817
14818         * assembly.c (mono_set_dirs): New API entry point to set the
14819         assembly and the config directory in one call
14820
14821 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
14822
14823         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
14824         the ftnptr was created from a delegate in a domain other than the
14825         current domain. Fixes #75377.
14826
14827         * exception.h exception.c: Add mono_get_exception_not_supported ().
14828
14829 2005-11-08  Martin Baulig  <martin@ximian.com>
14830
14831         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
14832
14833 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
14834
14835         * security-manager.h: Added definitions to deal with strongname key 
14836         pairs bigger (and smaller) than 1024 bits.
14837         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
14838         adjust wrt the public key length being used.
14839
14840 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
14841
14842         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
14843           Windows build (r51396-51397).
14844
14845 2005-11-03  Martin Baulig  <martin@ximian.com>
14846
14847         * class.c (mono_class_setup_vtable_general): Also add generic
14848         methods to the vtable; fixes #76581.
14849
14850 2005-11-01  Miguel de Icaza  <miguel@novell.com>
14851
14852         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
14853         sure that we lookup GetString method from the System.Text.Encoding
14854         class, not the derived class or we get an empty method.
14855
14856         Fixed class #76612.
14857
14858 2005-10-25  Miguel de Icaza  <miguel@novell.com>
14859
14860         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
14861         if it has been previously set (embedders). 
14862
14863         Make mono_set_rootdir available also on Unix.
14864
14865 005-10-24  Robert Jordan  <robertj@gmx.net>
14866
14867         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
14868
14869 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
14870
14871         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
14872         only calls which are made to native code use this flag.
14873
14874         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
14875
14876 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
14877
14878         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
14879         Add support for FieldBuilders.
14880
14881 2005-10-29  Martin Baulig  <martin@ximian.com>
14882
14883         * mono-debug.c
14884         (mono_debug_using_mono_debugger): New public method; returns
14885         whether we're running inside the debugger.
14886
14887 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
14888
14889         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
14890         for Method/Constructor/FieldBuilders.
14891
14892 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
14893
14894         * reflection.c (module_add_cattrs): Save custom attributes for global methods
14895         and fields as well.
14896
14897 2005-10-26  Martin Baulig  <martin@ximian.com>
14898
14899         * mono-debug-debugger.c
14900         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
14901
14902 2005-10-24  Raja R Harinath  <harinath@gmail.com>
14903
14904         * icall.c (base64_to_byte_array): Don't pass an out-of-range
14905         integer to isspace.
14906
14907 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
14908
14909         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
14910         when passing valuetypes byref. Fixes #76502.
14911
14912 2005-10-19  Jackson Harper  <jackson@ximian.com>
14913
14914         * profiler.c: Don't put a . in front of types that are not in a
14915         namespace.
14916
14917 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
14918
14919         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
14920
14921 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
14922
14923         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
14924         #76436.
14925         (mono_marshal_get_ldflda_wrapper): Fix a warning.
14926
14927 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14928
14929         * assembly.c metadata-internals.h icall.c: Define an additional
14930         parameter for mono_assembly_name_parse_full, so we can avoid creating
14931         S.R.AssemblyName.Version when no version info wasn't passed.
14932         
14933 2005-10-09  Miguel de Icaza  <miguel@novell.com>
14934
14935         * class.c (mono_type_get_full_name): Reimplement method that was
14936         removed. 
14937
14938         * image.c: Some docs
14939
14940 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
14941
14942         * profiler.c (output_newobj_profile): Fix printing of Total memory
14943         on x86.
14944
14945 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
14946
14947         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
14948
14949 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
14950
14951         * threads.c: remove debug output.
14952
14953 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
14954
14955         * threads.c (mono_thread_manage): Fix crashes if more than 64
14956         threads need to be aborted. Hopefully fixes #75899.
14957
14958         * assembly.c (mono_stringify_assembly_name): New helper function.
14959
14960         * class.c: Use mono_stringify_assembly_name instead of the similar
14961         static function.
14962
14963         * assembly.h assembly.c: Add support for calling a postload search 
14964         hook if an assembly cannot be loaded.
14965
14966         * appdomain.c: Register new search hooks which call the AssemblyResolve
14967         events in AppDomain. Fixes #75231
14968
14969 2005-10-07  Martin Baulig  <martin@ximian.com>
14970
14971         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
14972         methods without debug info.
14973
14974 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
14975
14976         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
14977         wrappers.
14978
14979 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14980
14981         * file-io.c: now that we return symlinks, use lstat and, when the file
14982         is a symbolic link, stat, to get the file attributes. Also avoid the
14983         conversion to/from utf16/external.
14984
14985 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
14986
14987         * class.c (mono_class_layout_fields): Compute klass->has_references
14988         correctly if an embedded valuetype is not yet initialized. Fixes
14989         #76331.
14990
14991 2005-10-04  Martin Baulig  <martin@ximian.com>
14992
14993         * metadata.c
14994         (mono_metadata_load_generic_param_constraints): New public
14995         function; splitted the constraints loading out from
14996         mono_metadata_load_generic_params().
14997
14998         * class.c (mono_class_create_from_typedef): Call
14999         mono_metadata_load_generic_param_constraints() after setting up
15000         the type and creating our parent; fixes #75329.
15001
15002 2005-10-04  Martin Baulig  <martin@ximian.com>
15003
15004         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
15005         non-dynamic parent classes.
15006
15007 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
15008
15009         * file-io.c : win32 build fix (ETXTBSY seems not found).
15010
15011 2005-10-04  Martin Baulig  <martin@ximian.com>
15012
15013         * reflection.c
15014         (mono_image_get_methodspec_token): Make the cache actually work;
15015         fixes #75974.
15016
15017 2005-10-04  Martin Baulig  <martin@ximian.com>
15018
15019         * class.c (mono_class_name_from_token): Removed the unneccessary
15020         `MonoGenericContext *' argument.
15021
15022 2005-10-04  Martin Baulig  <martin@ximian.com>
15023
15024         * loader.c
15025         (method_from_methodspec): Make the caching work again; fixes the
15026         performance regression from #76262.
15027
15028 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15029
15030         * file-io.c:
15031         * file-io.h:
15032         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
15033         GetFileSystemEntries that performs the same work but without going
15034         into io-layer, locking, etc.
15035
15036 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
15037
15038         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
15039         ThreadState_Stopped as well. Fixes #76047.
15040
15041 2005-09-29  Martin Baulig  <martin@ximian.com>
15042
15043         * class.c
15044         (inflate_generic_context): If the new context has a `gmethod', set
15045         its `container' that that gmethod's `container'.
15046
15047         * metadata.c
15048         (mono_metadata_parse_generic_param): Simplify things;
15049         `generic_container = generic_context->container;' is just fine.
15050
15051         * loader.c (method_from_methodspec): Code cleanups.
15052
15053 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
15054
15055         * decimal.c: fix warning (and let gcc generate correct
15056         code on ARM with optimizations).
15057
15058 2005-09-28  Martin Baulig  <martin@ximian.com>
15059
15060         * loader.c
15061         (method_from_memberref): Added `MonoGenericContext *class_context'
15062         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
15063         (method_from_methodspec): If we're a memberref, use the enclosing
15064         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
15065
15066 2005-09-28  Martin Baulig  <martin@ximian.com>
15067
15068         * object.c (mono_runtime_invoke_array): Added support for
15069         MONO_TYPE_GENERICINST; fixes #75917.
15070
15071 2005-09-27  Martin Baulig  <martin@ximian.com>
15072
15073         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
15074         `k->byval_arg.type' to determine the actual type.
15075
15076         * loader.c (method_from_methodspec): Removed some hacks.
15077
15078 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
15079
15080         * class-internals.h (mono_field_is_deleted): Do the test for
15081         rtspecialname before we check the actual name of the field. This
15082         prevents us from dereferencing a pointer into the string table,
15083         saving us from accessing a few pages
15084
15085         * *.c: Replace the use of {Enter,Leave}CriticalSection with
15086         macros. This will allow a deadlock debugger to easily be plugged
15087         in.
15088
15089 2005-09-27  Martin Baulig  <martin@ximian.com>
15090
15091         * loader.c (method_from_methodspec): Create a "signature"
15092         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
15093
15094 2005-09-27  Martin Baulig  <martin@ximian.com>
15095
15096         * class.c
15097         (inflate_generic_class): Correctly set the new context's
15098         container.
15099
15100         * loader.c
15101         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
15102         instead of a `MonoGenericContext *'.
15103         (mono_method_signature_full): Take a `MonoGenericContainer *'
15104         instead of a `MonoGenericContext *'.
15105
15106         * metadata.c
15107         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
15108         instead of a `MonoGenericContext *'.
15109         (mono_metadata_parse_method_signature_full): Likewise.
15110
15111 2005-09-26  Martin Baulig  <martin@ximian.com>
15112
15113         * class.c
15114         (mono_class_from_generic_parameter): Set `klass->generic_container'
15115         (mono_class_from_generic_parameter): Likewise.
15116         (mono_bounded_array_class_get): We inherit the generic container
15117         from the element class.
15118
15119         * loader.c
15120         (find_method, find_method_in_class): Take a `MonoGenericContext *'
15121         argument rather than computing it here.
15122         (method_from_memberref): Correctly set the generic context before
15123         parsing the signature.  Fixes #75681.
15124
15125 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
15126
15127         * object.c (mono_class_has_special_static_fields): Fix warnings.
15128
15129 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15130
15131         * assembly.c: Add parse_public_key function, to
15132         par the public keys. Also added mono_assembly_name_parse_full,
15133         to define it the parsed key should be freed or not.
15134         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
15135         to parse a long format assembly name.
15136         * metadata-internals.h: Keep mono_assembly_name_parse_full as
15137         private, since calling it to preserve the key requires
15138         freeing it manually.
15139         
15140 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
15141
15142         * locales.c : removed HAVE_ICU part.
15143
15144 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
15145
15146         * object.c (mono_class_create_runtime_vtable): Avoid calling 
15147         field_is_special_static if the klass has no special static fields.
15148
15149         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
15150         (MonoCachedClassInfo): Likewise.
15151
15152         * object.c (mono_class_has_special_static_fields): New helper function.
15153
15154 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
15155
15156         * class.c (mono_class_create_from_typedef): Don't call 
15157         interfaces_from_typedef_full for enums.
15158         (mono_class_create_from_typedef): Compute the base types of enums directly
15159         without calling mono_class_setup_fields ().
15160         (mono_class_find_enum_basetype): New helper function.
15161
15162         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
15163         one place inside the string heap.
15164         
15165 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
15166
15167         * class.c: locking fixes, code cleanups, some docs added.
15168         Allocate some data structures in the image mempool.
15169
15170 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
15171
15172         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
15173         the example code.
15174         
15175 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
15176
15177         * class-internals.h, class.c, reflection.c: reduce memory taken by
15178         MonoClass.
15179
15180 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
15181
15182         * metadata.c, metadata.h, loader.h: documentation updates, code and
15183         API cleanups.
15184
15185 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
15186
15187         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
15188         the example code.
15189
15190         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
15191         page faults caused by the runtime while reading metadata.
15192
15193 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15194
15195         * socket-io.c: the field names were changed 3 months ago and no one
15196         realized until bug #76077 got filed!
15197
15198 2005-09-20  Martin Baulig  <martin@ximian.com>
15199
15200         * icall.c (assembly_icalls): Removed some unused debugger icalls.
15201
15202 2005-09-20  Martin Baulig  <martin@ximian.com>
15203
15204         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
15205         write the rank into the class entry.
15206
15207 2005-09-20  Martin Baulig  <martin@ximian.com>
15208
15209         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
15210
15211 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
15212
15213         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15214
15215         * icall.c (custom_attrs_defined_internal): New icall.
15216
15217         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
15218         function.
15219         (mono_custom_attrs_construct_by_type): New helper function.
15220
15221 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
15222
15223         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
15224         terminate the resulting string. Fixes #76123.
15225
15226 2005-09-16  Martin Baulig  <martin@ximian.com>
15227
15228         * mono-debug.c
15229         (mono_debug_add_method): Ignore inflated methods for the moment.
15230
15231 2005-09-14  Martin Baulig  <martin@ximian.com>
15232
15233         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
15234
15235 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
15236
15237         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
15238         return a success/failure indication.
15239         (mono_metadata_interfaces_from_typedef_full): Ditto.
15240         (get_constraints): Ditto.
15241
15242 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
15243
15244         * marshal.c (emit_marshal_array): Fix handling of null arrays.
15245         
15246         * marshal.c (emit_marshal_array): Add support for returning string
15247         arrays from delegates. Fixes #76063.
15248
15249         * marshal.c: Use the emit_ldloc/stloc macros where possible.
15250
15251 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
15252
15253         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
15254         icall.
15255
15256 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
15257
15258         * reflection.c icall.c: Fix after mono_get_exception_type_load
15259         signature change.
15260
15261         * assembly.c (mono_assembly_get_assemblyref): New helper function.
15262         (mono_assembly_load_reference): Use the new helper.
15263
15264         * class-internals.h (MonoLoaderError): New structure containing 
15265         information about type loading errors.
15266
15267         * class-internals.h loader.c: Add APIs to store per-thread loader
15268         error information.
15269
15270         * loader.c class.c: Set the loader error if needed.
15271
15272         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
15273
15274 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
15275
15276         * decimal.c: fixed to handle the broken ARM fp format.
15277
15278 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
15279
15280         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
15281         broken.
15282
15283 2005-09-06  Martin Baulig  <martin@ximian.com>
15284
15285         * domain.c (supported_runtimes): Added v2.0.50727.
15286
15287 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
15288
15289         * culture-info.h: reduce the size of some structures.
15290
15291 2005-09-05  Martin Baulig  <martin@ximian.com>
15292
15293         Reflect latest API changes in the August CTP.
15294
15295         * icall.c
15296         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
15297         ("MonoType.HasGenericArguments"): Removed.
15298         ("MonoMethod.BindGenericParameters"): Renamed to
15299         "MakeGenericMethod".
15300         ("MethodBuilder.BindGenericParameters"): Renamed to
15301         "MakeGenericMethod".    
15302
15303 2005-09-05  Martin Baulig  <martin@ximian.com>
15304
15305         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
15306
15307 2005-09-05  Martin Baulig  <martin@ximian.com>
15308
15309         Applying a patch from Michal Moskal <malekith@nemerle.org>.
15310
15311         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
15312         generic_container is non-NULL.
15313
15314 2005-09-05  Martin Baulig  <martin@ximian.com>
15315
15316         Applying a patch from Michal Moskal <malekith@nemerle.org>.
15317
15318         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
15319
15320 2005-08-29  Michal Moskal  <malekith@nemerle.org>
15321
15322         * reflection.c (encode_locals,
15323         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
15324         for large generic types.
15325
15326 2005-09-05  Martin Baulig  <martin@ximian.com>
15327
15328         Applying a patch from Michal Moskal <malekith@nemerle.org>.
15329
15330         * class.c (mono_dup_array_type): New public method.
15331         (mono_metadata_signature_deep_dup): New public method.
15332         (dup_type): Correctly duplicate array and function types.
15333
15334 2005-09-05  Martin Baulig  <martin@ximian.com>
15335
15336         Applying a patch from Michal Moskal <malekith@nemerle.org>.
15337
15338         * reflection.c (get_default_param_value_blobs): Handle generic types
15339         and generic methods.
15340
15341 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
15342
15343         * class.c: Fixed error reporting (method/class were inversed) for 
15344         inheritance demands.
15345         * security-manager.c|h: Added the AppDomain when calling the managed
15346         System.Security.SecurityManager.InheritanceDemand method.
15347
15348 2005-09-01  Raja R Harinath  <rharinath@novell.com>
15349
15350         * reflection.c (encode_marshal_blob): 'marshaltype' and
15351         'marshaltyperef' are alternate sources for the custom marshaler
15352         name.
15353
15354 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
15355
15356         * class.c: fix creation of array classes with rank == 1
15357         (patch by Ankit Jain <jankit@novell.com>).
15358
15359 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
15360
15361         * object.c: fix check for creating the bound data for arrays vs
15362         szarrays.
15363
15364 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15365
15366         * object.c: configuration file name is now based on the executable name,
15367         not the image name. Fixes bug #75931.
15368
15369 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
15370
15371         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
15372         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
15373
15374 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
15375
15376         * rand.c: Use wincrypt.h instead of WinCrypt.h.
15377
15378 2005-08-24  Ankit Jain  <jankit@novell.com>
15379             Raja R Harinath  <rharinath@novell.com>
15380
15381         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
15382           called by it recursively.
15383           (mono_class_init): Remove special case in pending_init handling, since it's
15384           superseded by the fix to mono_class_from_typeref.
15385
15386 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
15387
15388         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
15389         BROKEN_THREAD_START stuff.
15390
15391 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
15392
15393         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
15394         trampoline.
15395
15396         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
15397         
15398         * object.c (mono_delegate_ctor): Replace the original function address with
15399         a delegate trampoline.
15400
15401 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
15402
15403         * icall.c: add boolean argument to base64_to_byte_array and 
15404         InternalFromBase64String to control whether a whitespace-only string
15405         is allowed (or should casue a FormatException to be thrown). We need
15406         this as the behavior has changed between MS.NET 1.x and 2.0, and we
15407         to match the MS behaviour in both profiles.
15408         * appdomain.c: Bump corlib version.
15409
15410 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15411
15412         This patch implements a big portion of publisher policy
15413         support, used to bind assembly versions and redirect
15414         one assembly from version A to version B.
15415
15416         * assembly.c:
15417         New GSList loaded_assembly_bindings, for storing the cached
15418         assembly bindings.
15419         (assembly_binding_maps_name): New static function for checking if a 
15420         assembly binding information maps an assembly name.
15421         (mono_assembly_binding_info_free): New function for freeing
15422         assembly binding information resources.
15423         (get_publisher_policy_info): New static function for retrieving 
15424         assembly binding information from a MonoImage.
15425         (compare_versions): New static function for comparing an assembly
15426         binding information data and the version of an assembly name.
15427         (check_policy_versions): New static function for checking if an
15428         assembly binding info mapping an assembly name is valid for it.
15429         (mono_assembly_load_publisher_policy): New static function for
15430         loading the 'policy.major.minor.MyAssembly' image for an assembly
15431         with an assembly name 'aname'.
15432         (mono_assembly_bind_version): New static function for updating
15433         assembly redirection.
15434         (mono_assembly_apply_binding): New static function for applying
15435         assembly binding.
15436         (search_binding_loaded): New static function for searching 
15437         loaded assembly binding infos in the cache domain.
15438         (mono_assembly_load_full): Don't apply assembly binding for
15439         reflection only assemblies.
15440
15441         * metadata-internals.h: Add MonoAssemblyBindingInfo,
15442         which contains information about assembly binding. Also
15443         declare signature for mono_config_parse_publisher_policy ()
15444         function, used to retrieve pub policy info.
15445         
15446         * mono-config.c:
15447         (publisher_policy_start): New static function used to parse publisher 
15448         policy config files.
15449         (publisher_policy_parser): New static MonoParseHandler containing 
15450         the functions used when parsing config files.
15451         (mono_config_parse_publisher_policy): New function for parsing
15452         publisher policy files.
15453         
15454 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
15455
15456         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
15457
15458         * marshal.c (mono_delegate_free_ftnptr): Ditto.
15459
15460         * object.c (mono_get_addr_from_ftnptr): New helper function.
15461
15462         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
15463
15464         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15465
15466 2005-08-19  Dick Porter  <dick@ximian.com>
15467
15468         * threads.c, threads.h, appdomain.c, appdomain.h,
15469         profiler-private.h, monitor.c, object.c, object-internals.h,
15470         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
15471         store the thread ID, so it can hold a 64 bit value if needed.
15472
15473 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
15474
15475         * reflection.c (mono_reflection_create_dynamic_method): Store the
15476         handle class into the method references as well so ldtoken works in
15477         dynamic methods.
15478
15479         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
15480         types.
15481
15482 2005-08-19  Ankit Jain <jankit@novell.com>
15483
15484         Fix #75847.
15485         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
15486           here rather than using the method signature of a arbitrary function
15487           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
15488           two arguments.
15489           Hack done with Harinath.
15490
15491 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15492
15493         * threadpool.c: disable printing stack traces when we get a exception
15494         in a threadpool thread. I need to do more testing to figure out which
15495         cases actually print this. Fixes bug #75828.
15496
15497 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15498
15499         * icall.c: there might be ignored whitespace after the last '='. This
15500         fixes length computation and bug #75840.
15501
15502 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
15503
15504         * assembly.c (mono_assembly_load_full): Consider .exe extension as
15505         well. Fixes #75809.
15506
15507         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
15508         #75784.
15509         
15510         * reflection.c (create_custom_attr_data): Ditto.
15511
15512 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
15513
15514         * locales.c, culture-info.h : removed RegionLCIDMap.
15515         * culture-info-tables.h : regenerated.
15516
15517 2005-08-16  Martin Baulig  <martin@ximian.com>
15518
15519         * class.c (mono_type_get_name_recurse): Small fix.
15520
15521 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
15522
15523         * locales.c : indentation fixie.
15524
15525 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
15526
15527         * object-internals.h,
15528           locales.h,
15529           locales.c,
15530           culture-info.h,
15531           icall.c : added RegionInfo table support.
15532         * culture-info-table.h : regenerated for region support.
15533
15534 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
15535
15536         * reflection.c (resolve_object): handle all kinds of MonoMethod
15537         including generic ones
15538
15539 2005-08-12  Ankit Jain <jankit@novell.com>
15540
15541         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
15542           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
15543
15544 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
15545
15546         * process.c: Don't close a thread handle when it's NULL. This is a
15547         workaround for bug #75733.
15548
15549 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
15550
15551         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
15552
15553 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
15554
15555         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
15556
15557 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15558
15559         * threadpool.c: if a work item in the thread pool has a callback that
15560         catches a exception, don't propagate it after invoking the callback.
15561         Fixes bug #75336.
15562
15563 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
15564
15565         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
15566
15567         * class-internals.h (MonoCachedClassInfo): Add some new fields.
15568
15569         * class.c (mono_class_init): Load field info lazily in the AOT case.    
15570
15571         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
15572
15573 2005-08-03  Ankit Jain  <jankit@novell.com>
15574
15575         Fix #75683.
15576         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
15577           PInvoke calling convention is 0.
15578
15579 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
15580
15581         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
15582         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
15583
15584 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
15585
15586         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
15587         to handle threads not started by the GC (patch by Michael Meeks
15588         <michael.meeks@novell.com>).
15589
15590 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
15591
15592         * reflection.c: Make buffer used in emitting types larger for some
15593         big generic types (patch by Michal Moskal).
15594
15595 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
15596
15597         * mono-debug.c: Fix some (not all) alignment problems.
15598
15599 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15600
15601         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
15602         Invoke mono_image_load_from_data_full passing the refonly
15603         parameter.
15604
15605         * assembly.c
15606         (mono_assembly_open_from_bundle): Add the refonly argument, 
15607         in order to pass it to other methods it calls to.
15608         (do_mono_assembly_open): Add the refonly argument, in order 
15609         to pass it to other methods it calls to.
15610         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
15611         the refonly parameter to it.
15612
15613         * image.c: Add loaded_images_refonly_hash and
15614         loaded_images_refonly_guid_hash to cache the reflection
15615         only loaded images.
15616         (mono_images_init): Initialize the hash tables used for
15617         caching the reflection only images.
15618         (load_modules): Invoke mono_image_open_full passing the refonly
15619         parameter to load the modules the correct way.
15620         (build_guid_table): Add the refonly argument, to re-build the 
15621         correct hash table.
15622         (do_mono_image_open): Added the refonly argument, in order to
15623         define it for the loaded image.
15624         (mono_image_loaded_full): New function, which receives an
15625         additional parameter to look for the image in the refonly or
15626         non-refonly section.
15627         (mono_image_loaded): Updated, using mono_image_loaded_full.
15628         (mono_image_loaded_by_guid_full): The same case that happens
15629         with mono_image_loaded_full.
15630         (mono_image_loaded_by_guid): Likewise.
15631         (register_image): Use the ref_only variable inside MonoImage
15632         to decide in which hash table store the current image.
15633         (mono_image_open_from_data_full): Rename
15634         mono_image_open_from_data to mono_image_open_from_data_full,
15635         adding the refonly argument, to define the ref_only variable 
15636         inside MonoImage.
15637         (mono_image_open_from_data): Return 
15638         mono_image_open_from_data_full.
15639         (mono_image_open_full): Rename mono_image_open to
15640         mono_image_open_full, receiving the new refonly argument,
15641         to pass it to inner methods.
15642         (mono_pe_file_open): Update this function, to open
15643         a MonoImage as a non-refonly image.
15644         (mono_image_close): Use the refonly variable inside
15645         MonoImage to remove the image from the correct caches.
15646
15647         * image.h: Add the signatures of mono_image_open_full,
15648         mono_image_open_from_data_full, mono_image_loaded_full,
15649         mono_image_loaded_by_guid_full.
15650
15651         * metadata-internals.h: Add the ref_only field to 
15652         MonoImage.
15653         
15654 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15655
15656         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
15657         Fix the last behavior, which used to load the assemblies and
15658         extract MonoReflectionAssemblyName information, instead of
15659         extract it from the metadata tables. Needed for Reflection
15660         Only assemblies.
15661         
15662 2005-07-29  Martin Baulig  <martin@ximian.com>
15663
15664         * mono-debug-debugger.c
15665         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
15666         not initialized.
15667
15668         * mono-debug.c
15669         (mono_debug_address_from_il_offset): Check whether we have
15670         debugging support before attempting to take the lock.
15671         (mono_debug_source_location_from_address): Likewise.
15672         (mono_debug_source_location_from_il_offset): Likewise.
15673         (mono_debug_il_offset_from_address): Likewise.
15674         (mono_debug_address_from_il_offset): Likewise.
15675
15676 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
15677
15678         * class.c (mono_class_from_name_case): Add support for dynamic images.
15679         Fixes #75650.
15680
15681         * object.c (mono_class_compute_gc_descriptor): Add a workaround
15682         for #75479.
15683
15684 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
15685         
15686         * reflection.c (mono_method_get_object): Fix warning.
15687
15688 2005-07-28  Martin Baulig  <martin@ximian.com>
15689
15690         * mono-debug.c
15691         (mono_debug_add_wrapper): Also write the wrapper type.
15692
15693 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
15694
15695         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
15696         
15697         * class.c (mono_class_init): Avoid reading nested classes if the AOT
15698         data indicates the class has none.
15699
15700 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
15701
15702         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
15703         loader lock with the debugger lock. Prevents deadlocks for beagle.
15704
15705         Beagle can now run on an smp box for a weekend without any
15706         issues. Woohoo!
15707
15708 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
15709
15710         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
15711         in a module. Fixes #75629.
15712
15713 2005-07-26  Martin Baulig  <martin@ximian.com>
15714
15715         * mono-debug.c (mono_debug_add_wrapper): New static method.
15716         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
15717         interncall or a wrapper.
15718
15719         * mono-debug.h (MonoDebugWrapperData): New public typedef.
15720         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
15721         (MONO_DEBUGGER_VERSION): Bump to 51.
15722
15723         * mono-debug-debugger.c
15724         (mono_debugger_add_type): Removed this empty function.
15725         (mono_debugger_add_method): Likewise.
15726
15727 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
15728
15729         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
15730         before accessing method->slot.
15731
15732 2005-07-21  Jb Evain  <jbevain@gmail.com>
15733
15734         * reflection.c (method_encode_clauses/class): Handle filters clauses.
15735         Fixes #75010.
15736
15737 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
15738
15739         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
15740         #75587.
15741
15742 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
15743
15744         * image.h image.c: Add mono_image_get_guid () API function.
15745
15746 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
15747
15748         There were issues when multiple threads tried to load
15749         assemblies. A deadlock was created between assemblies_mutex and
15750         mono_domain_assemblies_lock. This fixes the issue by making the
15751         assembly ref counting be lock free. See bug 75586.
15752         
15753         * image.c (mono_image_close): The add ref function here was using
15754         Interlocked operations while the unref was using a mutex and a
15755         --. I don't think this was ever a bug that would be exposed in a
15756         non-pendantic way (ie, by an embedder doing a ref on one thread
15757         and an unref on another), but for the sake of correctness, this is
15758         now Interlocked.
15759
15760         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
15761         (mono_assembly_load_reference): Call mono_assembly_addref rather
15762         than touching the refcount ourselves.
15763         (mono_assembly_close): Use InterlockedDecrement to unref the
15764         assembly. Don't acquire the lock unless it is actually needed.
15765
15766 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
15767
15768         * class.c (mono_class_layout_fields): Fix calculation of has_references
15769         for generic types.
15770
15771 2005-07-12  Martin Baulig  <martin@ximian.com>
15772
15773         Applying a patch from Michal Moskal <malekith@nemerle.org>.
15774
15775         * metadata.c
15776         (mono_type_hash): Provide better hashing for generic instances.
15777         (mono_generic_inst_hash): Improve hashing.
15778         (mono_generic_class_hash): Likewise.
15779
15780         * reflection.c (mymono_metadata_type_hash): Improve hashing for
15781         generic instances.
15782
15783 2005-07-12  Martin Baulig  <martin@ximian.com>
15784
15785         * reflection.c (mono_reflection_create_runtime_class): Remove the
15786         hack for generic type definitions and non-`Run' assemblies.
15787         (mono_reflection_bind_generic_parameters): Also use
15788         `klass->wastypebuilder' to check for TypeBuilders.
15789
15790 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
15791
15792         * class.c (mono_class_layout_fields): Fix calculation of has_references
15793         for generic types.
15794
15795         * class.c (inflate_generic_class): Fix a leak.
15796         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
15797         for generic types.
15798
15799 2005-07-11  Martin Baulig  <martin@ximian.com>
15800
15801         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
15802         on error.
15803
15804 2005-07-11  Martin Baulig  <martin@ximian.com>
15805
15806         * loader.c (find_method): Also lookup in
15807         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
15808
15809 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
15810
15811         * appdomain.c (mono_domain_unload): Don't free the error message
15812         before passing it to mono_get_exception_...
15813
15814         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
15815         
15816 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
15817
15818         * threads.c: try to better guess an available RT signal (bug #75387).
15819
15820 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
15821
15822         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
15823         and CACHE_OBJECT.
15824
15825 2005-07-07  Martin Baulig  <martin@ximian.com>
15826
15827         * class.c (mono_type_get_name_full): Return NULL for
15828         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
15829         fixes #75408.
15830
15831 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
15832
15833         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
15834         exit the appdomain as well being aborted.
15835
15836         * threadpool.c: Create all threadpool threads inside the root appdomain, and
15837         change back to the root domain after calling managed code. This enables
15838         appdomains using threadpools to be unloaded.
15839
15840 2005-07-07  Martin Baulig  <martin@ximian.com>
15841
15842         * class-internals.h
15843         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
15844         into `MonoDynamicGenericClass' since we only need it for dynamic
15845         types.
15846
15847         * reflection.c (mono_class_bind_generic_parameters): We don't need
15848         to compute the `parent' here.
15849
15850 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
15851
15852         * culture-info-table.h : regenerated.
15853
15854 2005-07-06  Martin Baulig  <martin@ximian.com>
15855
15856         * icall.c
15857         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
15858
15859         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
15860
15861 2005-07-06  Martin Baulig  <martin@ximian.com>
15862
15863         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
15864         we're doing a signature-only comparision; fixes #74945.
15865
15866 2005-07-06  Martin Baulig  <martin@ximian.com>
15867
15868         * class-internals.h (MonoGenericClass): Moved some things out into
15869         a new `MonoInflatedGenericClass' type.  
15870         (MonoInflatedGenericClass): New type; the `klass' of a
15871         `MonoGenericClass' is now computed lazyly in
15872         mono_get_inflated_generic_class().      
15873
15874         * class.c (mono_get_inflated_generic_class): New public function.
15875         (mono_class_inflate_generic_method): Removed the unused
15876         `MonoClass *' argument.
15877         (setup_generic_vtable): Don't call mono_get_inflated_method() on
15878         all the methods.
15879         (mono_class_create_generic): Make this static and merge it with
15880         mono_class_create_generic_2(); we're now called automatically from
15881         mono_get_inflated_generic_class().
15882
15883         * loader.c (mono_method_signature): Call
15884         mono_get_inflated_method() here.
15885
15886 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
15887
15888         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
15889         type of fields with RVA.
15890
15891         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
15892         for this pseudo class.
15893         (my_mono_class_from_generic_parameter): Likewise.
15894         (mono_class_init): Allow interfaces to have cctors.
15895
15896 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
15897
15898         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
15899         lazily for AOT methods.
15900
15901 2005-07-05  Martin Baulig  <martin@ximian.com>
15902
15903         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
15904         returns FALSE for a successful match, not TRUE.
15905
15906 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
15907
15908         * loader.c (mono_method_get_index): Optimize this a bit.
15909
15910 2005-07-04  Martin Baulig  <martin@ximian.com>
15911
15912         * class.c
15913         (class_compute_field_layout): Move the check for generic type
15914         definitions into mono_class_layout_fields().  Fixes #74684.
15915         (mono_class_from_generic_parameter): Correctly compute
15916         `klass->parent'; fixes #75457.
15917
15918         * reflection.c (register_assembly, register_module): Make sure
15919         `domain->rejobject_hash' is already created.
15920
15921 2005-07-02  Martin Baulig  <martin@ximian.com>
15922
15923         * class-internals.h
15924         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
15925         `MonoDynamicGenericClass'.      
15926
15927 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
15928
15929         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
15930         returned by a field getter is null, since null is a valid value.
15931
15932 2005-07-01  Martin Baulig  <martin@ximian.com>
15933
15934         * reflection.c (mono_reflection_generic_class_initialize): Update
15935         the `dgclass->fields [i].parent' to the correct class.
15936         (mono_image_get_fieldref_token): Use the declaring type, not the
15937         reflected type.
15938
15939 2005-07-01  Martin Baulig  <martin@ximian.com>
15940
15941         * loader.c (find_method): Also look in the interfaces; fixes #75429.
15942
15943 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
15944
15945         * threads.c (thread_cleanup): assert that thread != NULL
15946         (wait_for_tids_or_state_change): We were using the wrong variable
15947         when accessing wait->threads. `i' was always out of the bounds of
15948         the array.
15949
15950 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15951
15952         * loader.c: map user32 and kernel32 to libMonoSupportW
15953
15954 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
15955
15956         * appdomain.c (unload_thread_main): Mark this as WINAPI.
15957
15958 2005-06-28  Martin Baulig  <martin@ximian.com>
15959
15960         * loader.c (method_from_methodspec): Fix #75334.
15961
15962 2005-06-28  Martin Baulig  <martin@ximian.com>
15963
15964         Fix #74953 - Arrays now implement the generic IList<T> interface
15965         on the 2.0 platform.
15966
15967         * class-internals.h (MonoDefaults): Added `generic_array_class'.
15968
15969         * reflection.c (mono_class_bind_generic_parameters): New public
15970         function; similar to mono_reflection_bind_generic_parameters(),
15971         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
15972
15973         * domain.c (mono_init_internal): Try to initialize.
15974         `mono_defaults.generic_array_class' here; this'll only succeed if
15975         we're using the 2.0 corlib.
15976
15977         * icall.c
15978         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
15979         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
15980         (mono_lookup_internal_call): Added support for nested classes.
15981
15982         * loader.c
15983         (mono_get_method_from_token): Set `result->signature->pinvoke' if
15984         we're an interncall and have generic arguments.
15985
15986         * class.c
15987         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
15988         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
15989         instance of System.Array.InternalArray<T> for arrays, so they
15990         implement the generic IList<T> interface.
15991
15992 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
15993
15994         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
15995         (chastamar@yahoo.com). Fixes #75374.    
15996
15997 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
15998
15999         * culture-info-table.h: regenerated.
16000
16001 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16002
16003         * icall.c: handle spaces correctly for base64 strings.
16004
16005 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
16006
16007         * *.c: Kill some warnings.
16008
16009 2005-06-23  Duncan Mak  <duncan@novell.com>
16010
16011         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
16012         that this builds on Solaris 10 (x86).
16013
16014 2005-06-23  Martin Baulig  <martin@ximian.com>
16015
16016         * class.c
16017         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
16018         generic type definitions.
16019
16020 2005-06-23  Martin Baulig  <martin@ximian.com>
16021
16022         Fix #75331.
16023
16024         * metadata.c (mono_class_get_overrides): Renamed to
16025         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
16026         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
16027         pass it to mono_get_method_full().
16028
16029 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
16030
16031         * reflection.c (mono_reflection_create_runtime_class): take the
16032         mono_domain_lock in this method. Prevents deadlocks
16033
16034 2005-06-22  Martin Baulig  <martin@ximian.com>
16035
16036         * loader.c (method_from_methodspec): Fix #75330.
16037
16038 2005-06-22  Martin Baulig  <martin@ximian.com>
16039
16040         * reflection.c (type_get_qualified_name): Use
16041         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
16042         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
16043         argument; use it if we don't have an assembly name.
16044
16045 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
16046
16047         * object.c: In mono_message_init, set "copy out" flag for in
16048         parameters with the [Out] flag.
16049
16050 2005-06-21  Martin Baulig  <martin@ximian.com>
16051
16052         * class.c
16053         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
16054         and MONO_TYPE_PTR.
16055
16056 2005-06-21  Martin Baulig  <martin@ximian.com>
16057
16058         * class.c (mono_class_init): Don't initialize `class->fields' for
16059         generic instances since they're initialized again in
16060         compute_field_layout(). 
16061         (compute_field_layout): Set the field's `generic_info' here; fix
16062         #75320. 
16063
16064 2005-06-21  Martin Baulig  <martin@ximian.com>
16065
16066         * class-internals.h
16067         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
16068
16069         * metadata.c (mono_metadata_generic_method_equal): Also
16070         distinguish the `generic_class'; fixes #75334.
16071
16072 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16073
16074         * domain.c:
16075         * appdomain.c:
16076         * domain-internals.h:
16077         * reflection.c: 'domain_assemblies' field is now protected by its own
16078         lock. Don't call into managed code to run the AssemblyLoad event if we
16079         now there are no registered delegates for it.
16080
16081 2005-06-20  Martin Baulig  <martin@ximian.com>
16082
16083         * class.c (mono_class_is_assignable_from): Use a custom version of
16084         mono_class_has_parent() to make things work for generic instances;
16085         fix #75300.
16086
16087 2005-06-20  Martin Baulig  <martin@ximian.com>
16088
16089         * loader.c (method_from_methodspec): Apply a patch from
16090         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
16091
16092 2005-06-20  Martin Baulig  <martin@ximian.com>
16093
16094         * class.c (mono_class_init): Reverted Zoltan's last change; it
16095         breaks generics.
16096
16097 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
16098
16099         * threads.c (wait_for_tids_or_state_change): Add missing locking.
16100
16101 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16102
16103         * socket-io.c: fix the index in the socket array for writable/error
16104         sockets. Fixes bug #75306.
16105
16106 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
16107
16108         * class.c (mono_class_init): Allow interfaces to have static ctors.
16109
16110 2005-06-17  Martin Baulig  <martin@ximian.com>
16111
16112         * loader.c (method_from_methodspec): Use `context->container' when
16113         parsing the `gmethod->inst'.
16114
16115 2005-06-17  Martin Baulig  <martin@ximian.com>
16116
16117         * class.c (mono_type_get_name_recurse): Don't add the assembly
16118         name for type arguments.
16119
16120 2005-06-15  Martin Baulig  <martin@ximian.com>
16121
16122         * reflection.c (mono_image_get_inflated_method_token): Encode
16123         correct klass; fixes #75260.
16124
16125 2005-06-13 Michal Moskal <malekith@nemerle.org>
16126
16127         * icall.c: Make GetCorrespondingMethod/Constructor take
16128         MonoReflectionMethod method not MonoMethod. Removed
16129         MonoType.GetCorrespondingField, and make
16130         MonoGenericType.GetCorrespondingField take name not
16131         MonoClassField.
16132
16133 2005-06-13  Michal Moskal <malekith@nemerle.org>
16134
16135         * reflection.c (field_encode_signature, encode_locals):
16136          Make sizes of buffers for types larger (for big generic types).
16137          (create_generic_typespec,
16138          mono_reflection_sighelper_get_signature_local,
16139          mono_reflection_sighelper_get_signature_field):
16140          Add asserts for too small buffers.
16141
16142 2005-06-15  Martin Baulig  <martin@ximian.com>
16143
16144         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
16145         if our parent is not a dynamic type.
16146
16147 2005-06-15  Martin Baulig  <martin@ximian.com>
16148
16149         * class-internals.h (MonoTypeNameFormat): New enum.
16150
16151         * class.c
16152         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
16153         (mono_type_get_full_name): Removed.
16154         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
16155         argument instead of the boolean's.
16156
16157         * icall.c (ves_icall_System_MonoType_getFullName):
16158         Added `gboolean assembly_qualified'.    
16159
16160         * reflection.h
16161         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
16162
16163         * reflection.c (mono_reflection_parse_type): Parse the new type
16164         name format.
16165
16166 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16167
16168         * icall.c: no need to convert from utf16 to utf8 and then back again
16169         after the call to GetLogicalDrives.
16170
16171 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16172
16173         * icall.c: frombase64. Fix problems exposed by new tests.
16174
16175 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16176
16177         * icall.c: added internal calls for converting char [] and strings in
16178         base64 into byte [].
16179
16180 2005-06-10  Martin Baulig  <martin@ximian.com>
16181
16182         * class.c (mono_class_create_generic_2): Read the nested classes
16183         from the metadata rather than from `gklass->nested_classes' since
16184         `gklass' might not be initialized yet.
16185
16186 2005-06-09  Duncan Mak  <duncan@novell.com>
16187
16188         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
16189         all public headers. Fixes #74919.
16190
16191 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
16192
16193         * domain.c: The key for proxy_vtable_hash is now a pointer
16194         array. Added new GHashFunc and GCompareFunc functions for this.
16195
16196         * class.h: The list of interfaces in MonoRemoteClass is known in
16197         advance and can't grow (we create a new MonoRemoteClass if needed),
16198         so now the interface array can be allocated together with
16199         MonoRemoteClass.
16200         
16201         * object.c: Added a new method create_remote_class_key.
16202         Fixed mono_remote_class so it does not depend on
16203         mono_upgrade_remote_class.
16204         Removed extend_interface_array.
16205         Added new method clone_remote_class(), which makes a copy of a remote
16206         class and adds a new interface or class to it.
16207         mono_upgrade_remote_class() now creates a new remote class (or gets
16208         it from the cache) if an vtable upgrade is needed. In this way
16209         we make sure that other objects sharing the same remote class
16210         don't get the new vtable with unwanted interfaces.
16211         
16212         * object-internals.h:
16213         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
16214         
16215         * marshal.c: Track changes in mono_upgrade_remote_class().
16216
16217 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
16218         * icall.c: Add runtime methods for obtaining members of inflated
16219         class, which were created from supplied non-inflated members. It
16220         is used in internal Get{Method,Constructor,Field} methods in
16221         System.Type
16222
16223 2005-06-09  Martin Baulig  <martin@ximian.com>
16224
16225         * reflection.c
16226         (mono_reflection_bind_generic_method_parameters): Fix #75169.
16227
16228 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16229         * reflection.c (mono_image_basic_init): Define
16230         Version in MonoDynamicAssembly. 
16231         
16232 2005-06-08  Martin Baulig  <martin@ximian.com>
16233
16234         Fix #75136.
16235
16236         * loader.c
16237         (mono_method_signature_full): New public method; takes a
16238         `MonoGenericContext *'.
16239         (find_method): Use mono_method_signature_full() and pass the
16240         klass'es context to it.
16241
16242         * class.c (mono_class_is_inflated_method): Use
16243         mono_method_signature_full() and pass the context to it.
16244
16245 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
16246
16247         * object.c: add proper locking in mono_remote_class_vtable(),
16248         fixes possible memory corruption.
16249
16250 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
16251
16252         * marshal.c (mono_remoting_marshal_init): set
16253         initialized after initialization.
16254
16255 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
16256
16257         * locales.c : hush.
16258
16259 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
16260
16261         * object.c (extend_interface_array): fix really silly
16262         memory corrupting / comparison bug.
16263
16264 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16265
16266         * reflection.c: Functions added to support the creation
16267         of CustomAttributeData, which includes Attribute data
16268         used by ReflectionOnly methods.
16269
16270         * reflection.h:  mono_reflection_get_custom_attrs_data and
16271          mono_custom_attrs_data_construct added (functions exposed).
16272
16273          * icall.c: Added mono_reflection_get_custom_attrs_data
16274          as icall.
16275         
16276 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
16277
16278         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
16279         lupus's request.
16280
16281 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
16282
16283         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
16284
16285         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
16286         dynamic DllImportAttribute.
16287
16288         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
16289         dynamic DllImportAttribute.
16290
16291         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
16292         Fixes #75162.
16293
16294 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16295
16296         * threads.c: avoid segfault when an unstarted thread is aborted.
16297
16298 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
16299
16300         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
16301         Returns the name and version of the runtime for reporting.
16302
16303 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16304
16305         * appdomain.c: bump corlib version.
16306         * object-internals.h: new field in MonoReflectionAssembly.
16307
16308 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16309
16310         * object-internals.h: Carlos forgot to add this field.
16311
16312 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16313
16314         * icall.c: Added create_version to create instances
16315         of Version of MonoReflectionAssemblyName. This change helps
16316         the AssemblyName tests to keep running fine.
16317         
16318 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
16319   
16320         * object.c (mono_method_return_message_restore): A somehow less
16321         intrusive fix for #75138.
16322
16323 2005-06-03  Raja R Harinath  <rharinath@novell.com>
16324
16325         * object.c (mono_method_return_message_restore): Fix computation
16326         of expected number of out args.
16327
16328 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
16329
16330         * reflection.c (mono_image_get_method_info): Fix the case when the
16331         charset is empty.
16332
16333 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
16334
16335         * object.c: Added missing null check in
16336           mono_method_return_message_restore.
16337
16338 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
16339
16340         * reflection.c (mono_image_get_method_info): Handle the case when
16341         dllentry is empty.
16342
16343 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
16344
16345         * object.c: When creating the vtable for a proxy, take into account
16346         all inherited interfaces, not only the ones registered in
16347         iclass->interfaces. This fixs bug #74996.
16348         Also, in mono_method_return_message_restore, verify that the array
16349         of out args has the expected lengh.
16350
16351 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16352
16353         * socket-io.c: update the timeout in Poll when the call is interrupte.
16354
16355 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16356
16357         * socket-io.c: support abort/suspend in Select_internal after last
16358         change.
16359
16360 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16361
16362         * threadpool.c: remove warning.
16363
16364 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16365
16366         * icall.c:
16367         * socket-io.[ch]: Select_internal uses poll() now when available, thus
16368         removing the 1024 limit from select(). Runtime part of the fix for
16369         bug #71203.
16370
16371 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16372
16373         * socket-io.c: when resolving the addresses for the same
16374         host returned by gethostname(), get the local IPs from the interface
16375         list. Loopback addresses are discarded if the are interfaces up with
16376         non-loopback ones. Fixes bug #63265.
16377
16378 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
16379
16380         * appdomain.c, verify.c, object-internals.h, reflection.c:
16381         bumped corlib number to 36, and added new extra_flags field
16382         to ReflectionMethodBuilder and friends.  Fixes #75060.
16383
16384 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
16385
16386         * gc.c: register a new weak link only if the object is non-null
16387         (fixes bug#75047).
16388
16389 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
16390
16391         * culture-info.h : short time pattern too.
16392
16393 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
16394
16395         * culture-info.h : expand long time pattern string length.
16396
16397 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
16398
16399         * culture-info-table.h : update (more French date format; #72788).
16400
16401 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
16402
16403         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
16404         the method is static. Fixes #75029.
16405
16406 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
16407
16408         * reflection.c: Update the table_idx field of method builders after
16409         saving the module, since it can change. This is a workaround for
16410         bug #74914. 
16411
16412 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
16413
16414         * culture-info-table.h : update (additional French date format).
16415
16416 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
16417
16418         * icall.c (ves_icall_type_Equals): Revert last change.
16419         
16420         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
16421
16422         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
16423
16424 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
16425
16426         * class-internals.h: Added executioncontext_class field to 
16427         MonoDefaults structure.
16428         * domain.c: Cache System.Threading.ExecutionContext class in 
16429         mono_defaults.
16430         * object.c: Capture the ExecutionContext for asynchroneous calls in
16431          mono_async_result_new.
16432         * object-internals.h: Added execution_context and original_context 
16433         fields to MonoAsyncResult. Added execution_context to MonoThread.
16434         * security-manager.c|.h: Added mono_get_context_capture_method to 
16435         return the capture method (if required by the security manager or by
16436         the framework version used).
16437         * threadpool.c: Apply capture (if present) ExecutionContext in 
16438         mono_async_invoke and revert to original context after it completes.
16439
16440 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
16441
16442         * culture-info-table.h : updated (real hacky solution for zh-CHT).
16443
16444 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
16445
16446         * culture-info-table.h : zh-CHT related workaround.
16447
16448 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
16449
16450         * marshal.c (emit_marshal_custom): Add some error checking and call the
16451         methods in the ICustomMarshaler interface. Fixes #74875.
16452         
16453         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
16454         native->managed wrappers.
16455
16456 2005-05-12  Martin Baulig  <martin@ximian.com>
16457
16458         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
16459         here and use the loader lock.
16460
16461         * mono-debug.c: Properly lock when the debugger is not attached.
16462         (mono_debug_init): Release the initial lock if we're not running
16463         in the debugger.
16464
16465 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
16466
16467         * marshal.c (emit_marshal_custom): Pass through NULL values without
16468         calling the custom marshalling routines.
16469
16470         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
16471         conversion in structures. Fixes #74882.
16472
16473 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
16474
16475         * culture-info-table.h : zh-* cultures were missing.
16476
16477 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
16478
16479         * threads.c: Added a new event background_change_event which is signaled
16480         when a thread changes its background mode.
16481         Moved here several checks previously done in managed code. The checks
16482         require the thread lock, and using the thread lock in managed code
16483         can result in deadlocks.
16484         Merged Start_internal and Thread_internal into a single method. Now 
16485         Thread_internal does all work of creating and starting a thread.
16486         Added icalls for setting and getting the state of the object. Moved from
16487         managed code to avoid locking there.
16488         Added wait_for_tids_or_state_change() which is called instad of
16489         wait_for_tids when waiting for non-backround threads to end. This method
16490         will return if one of the threads ends or the background_change_event
16491         is signaled.
16492         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
16493         the background mode. This method signals the background_change_event
16494         event.
16495         * icall.c:
16496         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
16497         removed Start_internal.
16498         
16499 2005-05-11  Martin Baulig  <martin@ximian.com>
16500
16501         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
16502         to order of some fields to get proper alignment on 64-bit machines.
16503
16504 2005-05-11  Martin Baulig  <martin@ximian.com>
16505
16506         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
16507         changes as they're broken and completely fuck up the debugger.
16508
16509         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
16510
16511 2005-05-10  Martin Baulig  <martin@ximian.com>
16512
16513         * reflection.c (mono_reflection_generic_class_initialize): Don't
16514         call mono_class_setup_parent() here.
16515
16516 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16517
16518         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
16519         send/receive timeout use an integer in milliseconds. We were using a
16520         struct timeval.
16521
16522 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16523
16524         * locales.c:
16525         (internal_get_cultures): reserve the first slot of the array for the
16526         InvariantCulture, which will be filled in managed code.
16527
16528 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
16529
16530         * reflection.c (mono_image_fill_module_table): Initialize the
16531         GENERATION field as well.
16532
16533 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16534
16535         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
16536         Monitor.Enter on the object.
16537
16538 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
16539
16540         * threads.c: Enable the wait for running threads when exiting.
16541         * icall.c: Suspend all threads before exiting.
16542
16543 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
16544
16545         * assembly.c (mono_assembly_load_reference): Fix warning.
16546
16547 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16548
16549         * threadpool.c: changed the default number of threads per cpu. From now
16550         on, the default will be 20 + (5 * number of cpus) instead of 50.
16551
16552 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
16553
16554         * loader.c (mono_method_get_signature_full): Add locking here.
16555
16556 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
16557
16558         * appdomain.c: Moved methods for parsing and freeing assembly
16559         names to assembly.c.
16560         * assembly.c, domain-internals.h: Created public methods for parsing
16561         assembly names. Fixed mono_assembly_load_with_partial_name:
16562         it now finds the best match, taking into account the version,
16563         token and culture specified in the partial name. Also return
16564         the latest version if no version information is specified.
16565
16566 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
16567
16568         * threadpool.c: replace check for SocketAsyncCall class.
16569
16570 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16571
16572         * threadpool-internals.h:
16573         * Makefile.am: added threadpool-internals.h
16574
16575         * threadpool.c: call mono_unhandled_exception on exceptions not handled
16576         that happen in threadpool threads (tested on MS).
16577         (mono_thread_pool_remove_socket): new function that dispatch any pending
16578         AIO call on a socket that is closing. By now only epoll really needs it,
16579         as select/poll wake up when the socket closes.
16580
16581
16582         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
16583
16584 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
16585
16586         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
16587
16588 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
16589
16590         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
16591
16592 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
16593
16594         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
16595         has an abort request, convert it into a suspend request.
16596
16597 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
16598
16599         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
16600         warning for the usage of `UnmanagedFunctionPointerAttribute' which
16601         is not supported yet.
16602
16603 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16604
16605         * image.c: register assemblies loaded from data (bundles) in the loaded
16606         assemblies hash. Fixes bug #74772.
16607
16608 2005-04-29  Martin Baulig  <martin@ximian.com>
16609
16610         * class.c (mono_type_get_name_recurse): Update to the new naming
16611         schema from the latest .NET 2.x beta2.
16612         (mono_class_setup_vtable_general): If we're a generic instance,
16613         copy the vtable from our generic type definition and inflate all
16614         the methods in it.
16615
16616         * loader.c (find_method): Update to the new naming schema from the
16617         latest .NET 2.x beta2.
16618
16619 2005-04-29  Raja R Harinath  <harinath@gmail.com>
16620
16621         * class.c (mono_class_init): Add a mono_loader_unlock to the
16622         #74734 fix.
16623
16624 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
16625
16626         * icall.c (ves_icall_System_Environment_Exit): Remove the 
16627         suspend_all_other_threads () call for the time being, since it can hang.
16628
16629         * threads.c (mono_thread_manage): Similarly, disable the waiting for
16630         the background threads to exit, since it can also hang.
16631
16632         * class.c (mono_class_init): Applied patch from Ankit Jain 
16633         (radical@gmail.com). Avoid pending init errors when a field refers
16634         to a nested class using a typeref. Fixes #74734.
16635
16636         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
16637         this for dynamic modules.
16638
16639 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16640
16641         * threads.c: don't wait for threads that are in the process of aborting
16642         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
16643         and waiting for background threads to finish. This makes xsp and
16644         mod-mono-server exit without random length delays and/or hangs.
16645
16646 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16647
16648         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
16649
16650 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
16651
16652         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
16653         dynamic types to prevent infinite loops. Fixes #74727.
16654
16655         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
16656         ..._is_assignable_to.
16657
16658 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
16659
16660         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
16661
16662 2005-04-25  Martin Baulig  <martin@ximian.com>
16663
16664         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
16665
16666         * domain.c
16667         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
16668
16669         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
16670
16671         * reflection.c (build_compressed_metadata): Set metadata header
16672         version to 2.0.
16673
16674 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
16675
16676         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
16677         number into an integral and a decimal part. Fixes #70473.
16678
16679         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
16680
16681 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
16682
16683         * culture-info-table.h : reflected the latest locale-builder output.
16684
16685 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16686
16687         * threadpool.c: check for SuspendRequested too when deciding if
16688         mono_thread_interruption_checkpoint should be called.
16689
16690 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16691
16692         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
16693         * threads.c: remove interruption_mutex and use Interlocked instead. When
16694         suspending all the threads, wait for all the suspended events at once.
16695         If we're shutting down and get an APC that is going to be queued,
16696         call mono_thread_execute_interruption immediately, as the thread might
16697         be sleeping on a pthread condition or mutex.
16698
16699         * icall.c: call mono_runtime_set_shutting_down before suspending the
16700         threads.
16701
16702         Fixes bug #74693. And now xsp is happier when exiting.
16703
16704 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
16705
16706         * loader.c (mono_stack_walk): Fix #74690.
16707
16708 2005-04-22  Martin Baulig  <martin@ximian.com>
16709
16710         * mono-debug.h (MonoDebugMethodJitInfo): Added
16711         `MonoDebugMethodJitInfo *jit'.
16712
16713         * mono-debug.c (mono_debug_read_method): Cache the
16714         MonoDebugMethodJitInfo in `address->jit'.
16715         (mono_debug_free_method_jit_info): New public method.
16716
16717 2005-04-22  Martin Baulig  <martin@ximian.com>
16718
16719         * class.c (mono_class_is_assignable_from): Disallow
16720         type parameter -> interface.
16721
16722 2005-04-21  Dick Porter  <dick@ximian.com>
16723
16724         * threads.c (mono_thread_create): Turn an assertion into an error.
16725
16726 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
16727
16728         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
16729         
16730         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
16731         Fix some gcc 4.0 warnings.
16732
16733 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
16734
16735         * file-io.c: fix alt dir separator char on unix systems
16736         and cleanup (fixes bug #71214).
16737
16738 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
16739
16740         * marshal.c: Use CALLVIRT instead of CALL when dispatching
16741         a call to a remote domain, since the method may be an
16742         interface method in the client domain. This fixes bug #74192.
16743
16744 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16745
16746         * threadpool.c: recv/send are now performed before going back to managed
16747         code to save one transition.
16748
16749 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16750
16751         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
16752
16753         * metadata/threadpool.c: removed hack to workaround the bug above.
16754
16755         Fixes bug #74618.
16756
16757 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
16758
16759         * reflection.c reflection.h: Fix handling of parameter defaults in
16760         dynamic methods. Also fixes handling of parameter attributes.
16761         Fixes #74609.
16762
16763         * mono-debug.c (mono_debug_close_image): Fix warning.
16764
16765 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16766
16767         * socket-io.h: replaced old unused field with new 'blocking'.
16768         * threadpool.c: restore socket blocking state on windows(tm).
16769
16770 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
16771
16772         * icall.c: don't return the codebase in the AssemblyName[] returned by
16773         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
16774         * object-internals.h: Removed FIXME (fields were presents) and fixed
16775         versioncompat declaration.
16776
16777 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16778
16779         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
16780         not closed, so don't cleanup when it happens.
16781
16782 2005-04-13  Chris Toshok  <toshok@ximian.com>
16783
16784         * mono-debug-debugger.h: change prototype for
16785         mono_debugger_lookup_type.
16786
16787         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
16788         this function, although it should probably be named
16789         mono_debugger_init_type.
16790
16791 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16792
16793         * threadpool.c: fix non-AIO case.
16794
16795 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
16796
16797         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
16798         the built-in profiler to measure just JIT compilation times.
16799
16800 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16801
16802         * threadpool.c: the epollfd might be closed by another thread at
16803         any time, so ignore EBADF at treat it as a "we're closing" sign.
16804
16805 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16806
16807         * threadpool.c: release the semaphores with a count equals to the number
16808         of working threads in both IO and regular pools. Fixed typo that messed
16809         up the count of IO pool threads. Don't initialize the pipe handles if
16810         we're using epoll.
16811
16812 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16813
16814         * threadpool.c: some systems don't like a NULL when deleting the socket
16815         from epoll.
16816
16817 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16818
16819         * threadpool.c: fix semaphore allocation.
16820
16821 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16822
16823         * threadpool.c: added epoll() based implementation for asynchronous IO
16824         that is used instead of the default poll() when available.
16825         It can be disabled by setting MONO_DISABLE_AIO.
16826
16827 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16828
16829         * threadpool.c: windows needs 'closesocket' and instead of returning
16830         0 when the stream is closed while in select, it returns -1. Fixes bug
16831         #74573.
16832
16833 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
16834
16835         * class.c (class_compute_field_layout): Fix the regression caused by
16836         the previous try.
16837
16838 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16839
16840         * threadpool.c: separate pool for socket async. IO.
16841         * threadpool.h: mono_max_worker_threads is not a global any more.
16842
16843 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
16844
16845         * class.c (class_compute_field_layout): Fix #74549.
16846
16847 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16848
16849         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
16850         use 2 connected sockets instead.
16851
16852 2005-04-08  Miguel de Icaza  <miguel@novell.com>
16853
16854         * mono-config.c: Add new entry point for mkbundle
16855         mono_config_parse_memory. 
16856
16857 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16858
16859         * threadpool.c: removed another unused function.
16860
16861 2005-04-08  Ankit Jain  <radical@corewars.org>
16862
16863         * reflection.c (get_default_param_value_blobs): Add 'types'
16864         parameter to get the types encoded in the constant table.
16865         (mono_param_get_objects): Use the type from the constant table,
16866         not the type of the parameter, when creating default values.
16867         Handle null default values correctly.
16868
16869 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16870
16871         * file-io.c:
16872         * file-io.h:
16873         * threadpool.c:
16874         * threadpool.h:
16875         * icall.c:
16876         * socket-io.c: removed dead code for async IO.
16877
16878 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16879
16880         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
16881
16882         * threadpool.c: intercept socket async. calls and pass them to a thread
16883         that is polling and dispatching the job items to the threadpool as
16884         socket become ready. Fixes bugs #71217, #71933.
16885
16886         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
16887         between char and short/ushort arrays.
16888
16889         * socket-io.c: remove dead code.
16890
16891 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
16892
16893         * locales.c,
16894           icall.c : removed InternalToUpper_Comp() and
16895           InternalToLower_Comp().
16896
16897 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
16898
16899         * char-conversions.h : The tables were incorrectly generated. Should
16900           be generated against invariant culture.
16901
16902 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
16903
16904         * object.c (mono_runtime_invoke_array): Fix return value when 
16905         passing pre-created valuetype objects to ctors.
16906
16907         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
16908         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
16909         Fixes #74338.
16910
16911 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
16912
16913         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
16914         only used with --security and hides the wrong corlib version error.
16915
16916 2005-03-30  Joshua Tauberer  <tauberer@for.net>
16917
16918         * class.c: Changed mono_class_name_from_token so that types
16919         outside of a namespace don't have an initial period.  Improved
16920         the g_warning message used in _mono_class_get when loading
16921         fails.
16922         * assembly.c: In mono_assembly_load_reference, when an assembly
16923         can't be found, "No such file or directory" is misleading and
16924         unhelpful because a few paths were checked for the presence of
16925         the assembly.  When that happens (ENOENT), display a nicer
16926         message indicating the directories that were searched.  In all
16927         cases, the warning is made easier to read for non-hackers.
16928
16929 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
16930
16931         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
16932         project/solution.
16933         * appdomain.h|domain.c: Removed inline from functions.
16934         * appdomain.c: Reduced warnings when compiling on windows.
16935         * icall.c: Fixed output_debug declaration to gunichar2*.
16936         * mono-config.c: Reduced warnings when compiling on windows.
16937         * rand.c: Added missing "windows.h". Added missing return value.
16938         * rawbuffer.c: Added missing winsock2.h for windows.
16939         * sysmath.h: Added mono-compiler.h header to allow/ease 
16940         compilation with non-GCC compilers.
16941         * threads.c: Fixed declarations to compile with VS.NET C compiler.
16942         Removed cast warnings.
16943
16944         Adapted from the work of J Lothian (for VC6).
16945
16946 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
16947
16948         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
16949         from default_path.
16950
16951 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
16952
16953         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
16954         the 2.0 profile.
16955
16956 2005-03-27  Raja R Harinath  <harinath@gmail.com>
16957
16958         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
16959         has to be in $(exec_prefix).  $(prefix) is for arch-independent
16960         stuff, and it would probably use $(prefix)/share rather than
16961         $(prefix)/lib.
16962
16963 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16964
16965         * console-io.c: added 2 includes that might be missing.
16966
16967 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
16968
16969         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
16970         profile.
16971
16972         * reflection.c (create_custom_attr): Allocate the params array using
16973         alloca so it gets GC tracking.
16974
16975 2005-03-23  Chris Toshok  <toshok@ximian.com>
16976
16977         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
16978         out some spew.
16979
16980 2005-03-24  Raja R Harinath  <rharinath@novell.com>
16981
16982         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
16983         changes to pick up any changes in prefix, etc.
16984
16985 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
16986
16987         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
16988         
16989         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
16990         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
16991
16992 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
16993
16994         * class-internals.h object-internals.h class.c reflection.c: Extend the
16995         mono_lookup_dynamic_token () function to return the class of the
16996         token as well. 
16997
16998         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
16999         well. Fixes #73848.
17000
17001 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
17002
17003         * security-manager.c: Skip inheritance checks for intra-corlib
17004         class inheritance and method overrides. This skips a lot of checks
17005         and (anyway) permissions cannot work until corlib is loaded.
17006
17007 2005-03-23  Martin Baulig  <martin@ximian.com>
17008
17009         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
17010         MONO_TYPE_GENERICINST.  
17011
17012 2005-03-23  Martin Baulig  <martin@ximian.com>
17013
17014         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
17015
17016 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
17017
17018         * class.c: added locking comments to some functions.
17019         Cache the interface offsets arrays (saves about 20 KB
17020         of runtime memory in a typical app).
17021         Reduce the time overhead in mono_class_setup_supertypes ().
17022
17023 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
17024
17025         * icall.c: speedup and fix leaks in GetMethodsByName and
17026         GetPropertiesByName.
17027
17028 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
17029
17030         * reflection.c: some locking fixes.
17031
17032 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
17033
17034         * metadata.c: added missing break in case statement.
17035
17036 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
17037
17038         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
17039         typedbyref return values. Fixes #73941.
17040
17041 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
17042
17043         * security-manager.c|h: Added demandunmanaged method and 
17044         suppressunmanagedcodesecurity class to MonoSecurityManager.
17045         Renamed aptc class to allowpartiallytrustedcallers.
17046
17047 2005-03-17  Martin Baulig  <martin@ximian.com>
17048
17049         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
17050
17051 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17052
17053         * file-io.c: disabled file async. IO using aio_*. It uses the
17054         threadpool now. Workaround for bug #73718.
17055
17056 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
17057
17058         * assembly.h, mono-config.c: added code to deal with bundled configs
17059         for bundled assemblies.
17060
17061 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
17062
17063         * *.c, private.h: cleanup, removing old private.h header file.
17064
17065 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
17066
17067         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
17068         and throw_on_unmappable_char attributes.
17069
17070 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
17071
17072         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
17073         _ProcessName_internal.
17074
17075 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
17076
17077         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
17078         #73631.
17079
17080         * icall.c threads.c threads-types.h: Remove slothash icalls as they
17081         are no longer used.
17082
17083 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
17084
17085         * object.c (compute_class_bitmap): Add support for generics. Fixes
17086         #73527.
17087
17088 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
17089
17090         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
17091
17092 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17093
17094         * filewatcher.c: commented out the code for windows watcher, as we don't
17095         use it (we use the managed implementation instead).
17096
17097 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
17098
17099         * object-internals.h (MonoThread): Remove 'unused1' field.
17100
17101         * appdomain.c: Bump corlib version.
17102
17103         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
17104
17105         * reflection.c (mono_reflection_create_runtime_class): Remove the
17106         AssemblyBuilder.Save optimization since it causes too many problems.
17107
17108 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
17109
17110         * exception.c|h: Added mono_get_exception_reflection_type_load to
17111         create a ReflectionTypeLoadException object.
17112         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
17113         to return NULL is a InheritanceDemand fails during reflection. Updated
17114         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
17115         ReflectionTypeLoadException if an InheritanceDemand fails during 
17116         reflection. Added icall mapping for GetLinkDemandSecurity.
17117         * security-manager.c|h: Added ves_icall_System_Security_
17118         SecurityManager_GetLinkDemandSecurity internal call to return the
17119         class and methods permissions set for a LinkDemand. Removed unused
17120         fields in MonoSecurityManager.
17121
17122 2005-03-10  Martin Baulig  <martin@ximian.com>
17123
17124         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
17125         it's a generic instance.
17126
17127 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
17128
17129         * reflection.c (mono_get_object_from_blob): Applied patch from
17130         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
17131
17132         * class.c (mono_class_is_assignable_from): Another try at fixing 
17133         #73469 without breaking anything.
17134
17135 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
17136
17137         * class.c: (mono_class_is_assignable_from): Revert the last changes
17138         since they don't work with generics.
17139         
17140         * class.c (mono_class_is_assignable_from): Fix build bustage.
17141
17142         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
17143         the managed IsAssignableFrom method. Fixes #73469.
17144
17145         * reflection.c (mono_reflection_call_is_assignable_from): New helper
17146         function.
17147
17148 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
17149
17150         * object.c (mono_load_remote_field_new): Fix returning uninitialized
17151         memory when the remoting callback does not sets the out arguments.
17152         Fixes #73007.
17153
17154         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
17155         by mistake.
17156
17157         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
17158
17159         * object-internals.h (MonoStackFrame): Sync with managed object layout.
17160
17161         * appdomain.c: Bump corlib version.
17162
17163 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
17164
17165         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
17166         function.
17167
17168         * threads.c (mono_thread_attach): Detect threads which are not started
17169         by the GC pthread wrappers.
17170
17171 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
17172
17173         * icall.c: Added new icall for RNG.
17174         * rand.c|h: Added new icall to open the RNG. This allows to share a 
17175         single handle on Linux to access /dev/urandom and fix #73183.
17176
17177 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
17178
17179         * object.c: setting the new vtable in a transparent proxy object must
17180         not change the GC descriptor.
17181
17182 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
17183
17184         * object.c: fixed compilation without GCJ support.
17185         * reflection.c: for runtime-created types ensure klass->has_references
17186         is correct (bug #73215).
17187
17188 2005-03-02  Martin Baulig  <martin@ximian.com>
17189
17190         * class.c (mono_class_is_assignable_from): Make this work if
17191         `oklass' is a generic instance; fixes #72831.
17192
17193 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
17194
17195         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
17196         with hasthis set.
17197         
17198         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
17199
17200         * marshal.c: Reorganize native->managed marshalling code to also use
17201         the emit_marshal_... functions.
17202
17203 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
17204
17205         * object.c: typed allocs have issues with bitmap sizes > 30,
17206         so check for max_set >= 30.
17207
17208 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
17209
17210         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
17211         managed code. Fixes #73012.
17212
17213         * metadata.h (MonoMarshalSpec): Add elem_mult field.
17214
17215         * metadata.c reflection.c: Load/Emit elem_mult as well.
17216         
17217         * metadata.h (MonoMarshalSpec): Add comment.
17218
17219         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
17220
17221         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
17222         num_elem to -1 if not given.
17223
17224         * object-internals.h (MonoReflectionMarshal): Add has_size field.
17225
17226         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
17227         given values.
17228
17229 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
17230
17231         * null-gc.c (mono_gc_free_fixed): Was not compilable.
17232
17233 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
17234
17235         * reflection.c (encode_marshal_blob): Encode param_num field as well.
17236
17237         * object-internals.h (MonoReflectionMarshal): Add param_num field.
17238
17239 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
17240
17241         * object.c: generalized the reference bitmap creation
17242         and added hooks for the new GC.
17243         * class-internals.c: removed the gc_bitmap field from MonoClass.
17244
17245 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
17246
17247         * domain.c: help the compiler to produce better code
17248         in mono_jit_info_table_find ().
17249
17250 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
17251
17252         * object.c: make all allocations look typed.
17253
17254 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
17255
17256         * socket-io.c: load Mono.Posix if it's not loaded already
17257         (fixes bug#73033).
17258
17259 2005-02-24  Martin Baulig  <martin@ximian.com>
17260
17261         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
17262         * reflection.c (dup_type): Likewise.
17263
17264 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
17265
17266         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
17267         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
17268
17269 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
17270
17271         * domain.c, threads.c, object-internals.h: make the critical thread
17272         local vars use the fast access mode (even when we're compiled in
17273         a lib). Provide accessors to be used by the jit during codegen.
17274
17275 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
17276
17277         * appdomain.c: Changed hook functios behavior to include
17278         support for the reflection only assemblies. Some icalls were changed
17279         to support the mentioned assemblies too. Signatures of static methods
17280         try_assembly_resolve and real_load now have an additional parameter:
17281         refonly.
17282
17283         * assembly.c: General changes to mono_assembly_ methods to support
17284         reflection only api. Functions mono_assembly_open, mono_assembly_load,
17285         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
17286         suffix, to support an additional gbool parameter to specify whether
17287         the assembli is reflection only or not. Created some new hook functions 
17288         to add support for reflection only assemblies. Signatures of static 
17289         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
17290         have now an additional parameter: refonly.
17291
17292         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
17293         indicating whether the assembly is reflection only or not.
17294
17295         * exception.c: Add mono_get_exception_invalid_operation.
17296
17297         * icall.c: Throw an InvalidOperationException when trying to invoke
17298         a property/method/event, or trying to set/get the value of a field.
17299         Also add an icall to retrieve the ref_only flag to the
17300         MonoReflectionAssembly.
17301
17302 2005-02-23  Chris Toshok  <toshok@ximian.com>
17303
17304         Part of fix for #72827.
17305         * mono-debug.c (mono_debug_add_method): add lexical block data to
17306         the info we write.  Kind of a hack at the moment - we copy the
17307         lexical block info from the MonoDebugMethodInfo to the
17308         MonoDebugMethodJitInfo here, before writing it.
17309         (mono_debug_read_method): read the lexical block info.
17310
17311         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
17312
17313         * debug-mono-symfile.h: add lexical block support.
17314
17315         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
17316         support.
17317
17318 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
17319
17320         * loader.c (mono_lookup_pinvoke_call): Fix warning.
17321
17322         * object.c (mono_runtime_free_method): Call mono_free_method () and
17323         put the TODOs there.
17324
17325         * loader.c (mono_free_method): Free up most memory allocated for 
17326         dynamic methods.
17327
17328 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
17329
17330         * reflection.c: properly flag a Type argument to a
17331         named custom attr value (bug #72248).
17332
17333 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
17334
17335         * reflection.c: reduce code duplication in named custom
17336         attribute encoding.
17337
17338 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
17339
17340         * reflection.c: properly encode custom attrs of type object
17341         (bug #72649).
17342
17343 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
17344
17345         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
17346
17347 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
17348
17349         * socket-io.c: load System.dll if it's not loaded already
17350         (bug #72850 and #70477).
17351
17352 2005-02-21  Martin Baulig  <martin@ximian.com>
17353
17354         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
17355         generic instances.
17356
17357 2005-02-21  Martin Baulig  <martin@ximian.com>
17358
17359         * reflection.c (mono_image_build_metadata): We also need to
17360         "fixup" the MethodImpl table after we computed the final method
17361         indices.  Call fixup_methodimpl() to do that.
17362         (fixup_methodimpl): New private method.
17363
17364 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
17365
17366         * assembly.c: special case mscorlib.dll (bug#72536),
17367         patch from Carlos Alberto Cortez.
17368
17369 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
17370
17371         * threads-types.h threads.c: Fix build bustage.
17372
17373         * threads.c: Use a union for long<->double conversions.
17374
17375         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
17376         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
17377
17378         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
17379         containing the checkpoint call with NOT_TAKEN.
17380         
17381         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
17382         checkpoint before pushing the arguments, so they won't have to be
17383         spilled to stack.
17384
17385 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
17386
17387         * domain.c, assembly.c, domain-internals.h: make some data
17388         const and relocation-free.
17389
17390 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
17391
17392         * object.c, appdomain.c, class-internals.h: introduce the
17393         MonoClassRuntimeInfo structure to hold the info needed to
17394         use a class at runtime. Made mono_class_vtable() lock-free
17395         for all the appdomains.
17396
17397 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
17398
17399         * metadata-internals.h, image.c: introduce a per-image mempool to
17400         be used for memory that has the same lifetime as the image.
17401
17402 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
17403
17404         * domain.c: In mono_init_internal(), instead of selecting the first
17405         runtime version supported by an executable, get a list of all
17406         supported versions and select the one for which an mscorlib exists
17407         (since even if the runtime supports a given version, it doesn't mean
17408         that the framework for that version is installed).
17409         Modified get_runtimes_from_exe to support this behavior.
17410         In supported_runtimes, added information about additional system
17411         assembly versions.
17412         
17413         * assembly.c: Added support for more than one system assembly version
17414         per runtime version. Updated the assembly list.
17415         In mono_assembly_remap_version, removed the initial version check,
17416         since we don't know to which version we need to compare until we
17417         get the version set on which the assembly is based.
17418         Moved the code for loading corlib into the new method
17419         mono_assembly_load_corlib(), so it can be used by the initialization
17420         code.
17421         
17422         * domain-internals.h: Updated data structures and added declaration
17423         for mono_assembly_load_corlib.
17424
17425 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
17426
17427         * reflection.c (resolve_object): Fix the creation of the signature in 
17428         the SignatureHelper case.
17429
17430         * assembly.c (mono_assembly_remap_version): Fix binary search.
17431         
17432 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
17433  
17434         * class.c: Added inheritance check when a method is overloaded (from a
17435         virtual method or when implementing an interface) and when a class is
17436         inherited. Added functions to set a failure for a class and to 
17437         retreive the exception from a failure.
17438         * class-internals.h: Added fields to MonoClass to keep the exception
17439         information status for inheritance (or other exceptions) to be thrown
17440         later (i.e. not at load time).
17441         * object.c: Throw the inheritance SecurityException when a type is to 
17442         be created with either class or method inheritance violations.
17443         * reflection.c|h: Fix when getting declsec from a class. Removed 
17444         unrequired code for class. Improved sanity in parameter naming.
17445         * security-manager.c|h: Added functions to check for class and method
17446         inheritance.
17447
17448 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
17449
17450         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
17451         and has_finalize in dynamic types as well.
17452
17453 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
17454
17455         * culture-info-table.h : fixed currency format for en-GB (and so on).
17456
17457 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
17458
17459         * gc.c: ensure the GC handles never have 0 as a value.
17460
17461 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
17462
17463         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
17464         a pointer to a struct to unmanaged code. Fixes #72625.
17465
17466 2005-02-16  Martin Baulig  <martin@ximian.com>
17467
17468         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
17469
17470 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
17471
17472         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
17473
17474 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
17475
17476         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
17477
17478         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
17479         UnmanagedFunctionPointerAttribute, use it for determining calling convention
17480         etc. Fixes #71471.
17481
17482         * reflection.c (mono_custom_attrs_get_attr): New helper function.
17483
17484         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
17485
17486 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
17487
17488         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
17489         changes to make the current context a field in MonoThread.
17490
17491 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
17492
17493         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
17494         the last change.
17495         
17496         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
17497         extracted from mono_marshal_get_native_wrapper.
17498
17499         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
17500         to create wrappers around native functions.
17501
17502         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
17503         delegates for arbitrary function pointers. Fixes #71472.
17504
17505 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
17506
17507         * threads.c: cleaned up the code a little.
17508
17509 2005-02-15  Martin Baulig  <martin@ximian.com>
17510
17511         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
17512         the data table.
17513
17514         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
17515         allocate larger chunks if needed.
17516
17517 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
17518
17519         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
17520         in by mistake.
17521
17522 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
17523
17524         * domain.c: keep the domains in an array and ensure the domain ids
17525         are kept small, so they can be used as indexes to domain-specific data
17526         with a small memory overhead.
17527
17528 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
17529
17530         * icall.c: Handle byref types in Type icalls. Fixes #72544.
17531
17532 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
17533
17534         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
17535
17536 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
17537
17538         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
17539
17540         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
17541         values.
17542
17543         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
17544         
17545 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
17546
17547         * domain-internals.h: add the hashtable here.
17548
17549         * class-internals.h: Remove `info' from MonoMethod
17550
17551         * domain.c: Add a new hashtable, jit_trampoline_hash
17552
17553 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
17554
17555         * object.c: don't set the value of static fields
17556         (fixes bug#72494).
17557
17558 2005-02-11  Martin Baulig  <martin@ximian.com>
17559
17560         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
17561         (mono_debug_add_method): Silently ignore the method if it's too big.
17562         (mono_debug_add_type): Likewise.
17563
17564 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
17565
17566         * threads.c, appdomain.c: remove #ifdefs from the code.
17567
17568 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
17569
17570         * metadata-internals.h: Added flags to MonoAssembly to cache the most
17571         common security informations. This allows us to stay in unmanaged code
17572         when doing LinkDemand and it's special cases (except for the first 
17573         time for initialization). The flags a very much used with --security.
17574         * reflection.c|h: Added code to get declarative security attributes 
17575         for LinkDemand and InheritanceDemand. This required to refactor the
17576         existing code for Demand.
17577         * security-manager.c|h: Added new method fields for the special cases
17578         of LinkDemand.
17579
17580 2005-02-10  Martin Baulig  <martin@ximian.com>
17581
17582         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
17583         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
17584
17585 2005-02-10  Martin Baulig  <martin@ximian.com>
17586
17587         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
17588         debugging code; this is almost a complete rewrite.
17589
17590         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
17591
17592 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
17593
17594         * domain.c, object.h: expose mono_string_equal () and 
17595         mono_string_hash ().
17596         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
17597         it's implemented in managed code.
17598
17599 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
17600
17601         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
17602         lo leak objects between appdomains.
17603
17604 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
17605
17606         * assembly.c: old compilers compilation fix from 
17607         robertj@gmx.net (Robert Jordan).
17608
17609 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
17610
17611         * class-internals.h: Little reminder for the future.
17612
17613         * debug-helpers.c: Fix up wrapper_type_names
17614
17615 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
17616
17617         * image.c, metadata-internals.h: when loading an image from a file,
17618         mmap all of it and use the same codepaths as when using a
17619         in-memory image: the code is simpler and we use less memory
17620         (both writable and readonly).
17621
17622 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
17623
17624         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
17625         API to alloc runtime data structures that need to be tracked by the
17626         GC and contain pointers.
17627         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
17628         make the code more readable and eventually use a different GC.
17629
17630 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
17631
17632         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
17633         for out arguments.
17634         
17635 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
17636
17637         * object.c: In release_type_locks(), don't release the cctor lock
17638         if it has already been released. This fixes a crash in the
17639         thread5 test.
17640
17641 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
17642
17643         * gc.c, marshal.c, icall.c: register a delegate for finalization
17644         only when the native function pointer has been allocated for it.
17645
17646 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
17647
17648         * object.c: cleaned up some code, allocate objects that are
17649         pointer free with the atomic malloc variant. Allocate memory
17650         for static data from the mempool if it's pointer-free.
17651         Allocate the bounds array at the end of the array data, when needed.
17652         * object-internals.h, object.h: move a private function in a private
17653         header.
17654         * class.c: handle missing case in tracking references in fields.
17655
17656 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
17657
17658         * class.c, class-internals.h: keep track if a type has
17659         reference fields in either the instance or static fields.
17660
17661 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
17662
17663         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
17664         and renamed to MonoRuntimeInfo. Added fields to store the expected
17665         framework assembly version. Changed mono_get_framework_version and
17666         mono_get_runtime_version for a single mono_get_runtime_info method.
17667         
17668         * assembly.c: Added method to remap system assembly versions to the
17669         current executing runtime version. Removed old mapping code.
17670         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
17671         
17672         * icall.c, reflection.c: Track api changes.
17673
17674 2005-02-06  Miguel de Icaza  <miguel@novell.com>
17675
17676         * loader.c (method_from_memberref): Improve error reporting,
17677         produce the class name instead of the typeref/typedef index. 
17678
17679 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
17680
17681         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
17682
17683 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
17684
17685         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
17686         stdcall and charset name mangling.  Reorganize the code and add
17687         some tracing stuff.
17688
17689 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
17690
17691         * monodiet.c: More iters!
17692
17693         * marshal.c: Iter usage.
17694
17695         * icall.c: Iter usage.
17696
17697         * object.c: Use iters.
17698
17699         * debug-helpers.c: More iters
17700
17701 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
17702
17703         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
17704         under win32.
17705
17706 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
17707
17708         * mono-debug-debugger.c: use iters
17709
17710         * class.c, class-internals.h: mono_class_setup_events is static
17711         now
17712
17713         * All callers: use iters
17714
17715 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
17716
17717         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
17718         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
17719
17720 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
17721
17722         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
17723
17724         * marshal.h: Add prototypes for ldfld/stfld_remote.
17725
17726         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
17727         this is called during startup.
17728         
17729 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
17730
17731         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
17732         MonoThreadsSync struct private in monitor.c. Changed the way
17733         MonoThreadsSync is allocated so it's faster and there is no
17734         need to keep track of it with a finalizer and it uses less memory.
17735         This also finally allows us to allocate mono objects as ptrfree when
17736         there are no reference fields.
17737
17738 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
17739
17740         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
17741         disappearing link to the GC interface and use them to simplify
17742         the gchandles code.
17743
17744 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
17745
17746         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
17747         stfld_remote which call mono_load/store_field_new. This allows methods
17748         calling ldfld/stfld wrappers to be AOTed.
17749
17750         * console-io.c: Include sys/filio.h under solaris.
17751         
17752         * console-io.c: Include curses.h if needed correctly.
17753
17754 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
17755         
17756         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
17757         method->klass as well.
17758
17759         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
17760
17761         * class.c (mono_class_init): Switch on lazy initialization of 
17762         methods.
17763
17764         * class.c (mono_class_get_finalizer): Handle the case when the 
17765         finalizer is inherited.
17766
17767 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17768
17769         * console-io.c: <curses.h> is needed by term.h on solaris.
17770
17771 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
17772
17773         * icall.c, class-internals.h, monodiet.c, class.c: Remove
17774         mono_class_setup_properties where possible. Remove this ftn from
17775         the header file, and make it static.
17776
17777 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
17778
17779         * loader.c: Add missing setup_... call.
17780
17781         * class.c: Add missing setup_... calls.
17782
17783         * class.c (mono_class_init): Switch on lazy initialization of 
17784         the generic vtable.
17785         
17786         * class.c (mono_class_init): Fix generics broken by the recent changes.
17787
17788         * monodiet.c (handle_type): Add missing setup_... calls.
17789
17790         * class.c: Back out garbage in previous patch.
17791         
17792         * class.c: Add missing setup_... calls.
17793
17794         * class.c (mono_class_get_method_from_name_flags): Avoid calling
17795         mono_class_setup_methods () if possible.
17796
17797         * class-internals.h (MonoClass): Add 'has_cctor' flag.
17798
17799         * class-internals.h (MonoCachedClassInfo): New structure.
17800
17801         * class.c: Initialize properties and events fields of MonoClass lazily.
17802
17803         * class.c: Add infrastructure for lazily initializing the methods and
17804         vtable fields of MonoClass. Not yet used.
17805
17806         * class.c (mono_class_get_finalizer): New helper function.
17807
17808         * class.c: Add infrastructure for loading some class related data from
17809         an AOT file.
17810
17811         * object.c: Add infrastructure for initializing the vtable from data
17812         in the AOT file.
17813
17814         * gc.c (run_finalize): Use mono_class_get_finalizer ().
17815
17816         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
17817         appropriate initialization function before accessing parts of the
17818         MonoClass structure.
17819
17820         * marshal.c: Fix warnings.
17821         
17822         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
17823
17824         * mono-debug-debugger.c (get_exception_message): Use 
17825         mono_class_get_method_from_name_flags ().
17826
17827 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
17828
17829         * reflection.c, appdomain.c: Replace a few manual searches that
17830         Zoltan missed. (Paolo approved this part of my initial patch).
17831
17832 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
17833
17834         * profiler.c: disable recording statistical events at report time.
17835
17836 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
17837
17838         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
17839         to byteswap arrays of enum values, too (bug #72080).
17840
17841 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
17842
17843         * appdomain.c (set_domain_search_path): Allow this to be called if
17844         domain->setup is not yet set.
17845
17846         * loader.c (mono_method_get_index): New helper function.
17847
17848         * loader.c reflection.c: Use mono_method_get_index ().
17849
17850         * class.c (mono_class_get_method_from_name_flags): New helper method.
17851
17852         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
17853         this.
17854
17855         * class.c (mono_class_get_cctor): New helper method.
17856
17857         * string-icalls.c object.c class.c marshal.c reflection.c: Use
17858         mono_class_get_method () to look up methods.
17859
17860 2005-02-01  Miguel de Icaza  <miguel@novell.com>
17861
17862         * console-io.c: Fix the build, this should work on Windows.
17863
17864 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
17865
17866         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
17867         be set to null to keep things valid
17868
17869 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17870
17871         * icall.c: added Console 2.0 icalls.
17872         * Makefile.am: added console-io.[ch]
17873         * console-io.[ch]: internal calls for Console 2.0 API.
17874
17875 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
17876
17877         * class.c: make sure we consider all the interfaces
17878         when calculating max_interface_id (bug found by
17879         Jeroen Frijters running ikvm).
17880
17881 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
17882
17883         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
17884         valuetype fields to null.
17885
17886         * object.c (set_value): Ditto. Fixes #71669.    
17887
17888 2005-01-31  Martin Baulig  <martin@ximian.com>
17889
17890         * metadata.c (mono_metadata_has_generic_params): New public
17891         function; checks whether something is a generic method.
17892
17893 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
17894
17895         * appdomain.c: fix infinite recursion when adding assemblies.
17896
17897 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
17898
17899         * object.c: Fix small typo to return all items for Environment.
17900         GetCommandLineArgs.
17901
17902 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
17903
17904         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
17905         reflection.c: more domain and assembly-unload related fixes
17906         and memory leaks plugs.
17907
17908 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
17909
17910         * 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.
17911
17912 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
17913
17914         * loader.c (mono_method_signature): Make this method lazy
17915         (mono_get_method_from_token): Don't computate the signature here.
17916
17917         Doing this saves quite a bit of memory. I got 90 kb on starting up
17918         monodoc. It should also save some disk reads on startup.
17919
17920         * *: MonoMethod->signature might be NULL now. You *MUST* use
17921         mono_method_signature.
17922
17923 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
17924
17925         * object.c (mono_runtime_get_main_args): Return an array from the
17926         current domain here. Fixes #71938.
17927
17928 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
17929
17930         * monitor.c: formatting changes to comply with the
17931         mono coding style and remove #ifdefs from the code.
17932
17933 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
17934
17935         * metadata.c, private.h: remove some unneeded data
17936         and use a more compact representation for table schemas.
17937
17938 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
17939
17940         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
17941         to get a better distribution in hash tables.
17942         * *.c: use mono_aligned_addr_hash() where appropriate.
17943         * assembly.c: make var static.
17944
17945 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
17946
17947         * domain-internals.h: Put MonoJitInfo on a diet.
17948
17949         * domain.c: Fix a warning.
17950
17951 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
17952
17953         * gc.c: rework the gc handles code to reuse handles
17954         when freed.
17955
17956 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
17957
17958         * domain.c: fixed long standing bug in mono_string_equal() which
17959         was brought to light with the ldstr changes.
17960
17961 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
17962
17963         * reflection.c: Remove warning by adding missing include for marshal.h
17964
17965 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
17966
17967         * domain.c, object.c: change the ldstr_table to hold
17968         MonoString* as keys: makes the runtime isinterned lookup
17969         faster and simplifies memory management.
17970
17971 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
17972  
17973         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
17974         possible to add imperative security checks before calling the icall.
17975         * reflection.c: Return security attributes on the original MonoMethod
17976         (and not the wrapped one). This fix permissions on icalls.
17977
17978 2005-01-25  Dick Porter  <dick@ximian.com>
17979
17980         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
17981         the check for mktime() support actually test the mktime() return
17982         value.  "Fixes" bug 71682, though the output is still different to
17983         MS.
17984
17985 2005-01-25  Martin Baulig  <martin@ximian.com>
17986
17987         * class.c (mono_class_is_assignable_from): Make this work for
17988         generic instances.
17989
17990 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
17991
17992         * marshal.c (mono_string_utf8_to_builder)
17993         (mono_string_builder_to_utf16): We might not have ownership of the
17994         string. In thise case, we need to create a new buffer.
17995
17996         * object-internals.h (mono_stringbuilder_capacity): sb->str might
17997         be null, in which case, use the default capacity.
17998
17999 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
18000
18001         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
18002         GC events to the profiler.
18003
18004 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
18005
18006         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
18007         if you don't want the GC to run.
18008
18009 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
18010
18011         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
18012         start providing a GC API and keeping different implementations in
18013         their own file.
18014         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
18015
18016 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
18017
18018         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
18019         mmap rather than allocating a huge buffer.
18020         (mono_debug_close_mono_symbol_file): Free the buffer allocated
18021         above.
18022
18023 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
18024
18025         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
18026         and CheckExecutionRights.
18027         * reflection.c|h: Keep the index of the declarative security to be 
18028         used, instead of the pointer, when AOT compiler is used. Also add 
18029         class initialization when requesting demands.
18030         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
18031         CheckExecutionRights. Both properties are now FALSE by default, and
18032         unmodifiable, unless the --security option is used.
18033
18034 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
18035
18036         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
18037         reflection.c: properly refcount images and assemblies, many leaks fixed.
18038
18039 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18040
18041         * threadpool.c: increase the timeout for threads in the thread pool to
18042         10s.  Fixes bug #67159.
18043
18044 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
18045
18046         * class-internals.h: Sun's compiler insists on explicit
18047         signed on bit fields to handle then correctly.
18048
18049 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
18050
18051         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
18052         Make the size of the array fit only the number of invalid path
18053         chars that we have.
18054
18055         * class.c (_mono_class_get): Improve the error reporting when a
18056         class referenced is not found, to assist debugging. 
18057
18058 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
18059
18060         * threads.c: fix off-by-one error.
18061         * domain.c: free data allocated in the domain.
18062
18063 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
18064
18065         * reflection.c (mono_method_body_get_object): Fill out exception info
18066         as well.
18067
18068         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
18069         structure.
18070         
18071 2005-01-19  Martin Baulig  <martin@ximian.com>
18072
18073         * loader.c (mono_get_method_constrained): Make this work again.
18074
18075 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
18076
18077         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
18078         guint16 to match the managed side.
18079
18080         * reflection.c (mono_reflection_body_get_object): Fill out local
18081         variables array.
18082
18083         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
18084         as well.
18085
18086         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
18087         'local_var_sig_token'.
18088
18089 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
18090
18091         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
18092         System.Drawing.
18093
18094         * reflection.c (mono_method_body_get_object): Handle abstract and
18095         runtime methods.
18096
18097 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
18098
18099         * marshal.c, loader.c, class-internals.h, reflection.c:
18100         store the emthod data for a wrapper in an array instead of a list.
18101
18102 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
18103
18104         * marshal.c: change the code to allocate memory more
18105         conservatively for method wrappers.
18106
18107 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
18108
18109         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
18110         fields from MonoClass to the marshal info structure where they belong.
18111
18112 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
18113
18114         * class.c, object.c, class-internals.h, marshal.c: rearrange
18115         some fields and tweak some types to lower memory usage.
18116
18117 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
18118
18119         * threads.c (signal_thread_state_change): Handle the case when the
18120         target thread is the current thread.
18121
18122         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
18123
18124         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
18125         emit_ptr_to_object_conv. 
18126
18127         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
18128         marshalling. Fixes #71352.
18129
18130 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
18131
18132         * metadata.h, blob.h: move table enum to blob.h so it can be included
18133         in any header.
18134         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
18135         cut the size of MonoImage/MonoDynamicImage.
18136
18137 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
18138
18139         * profiler.c (mono_profiler_install_simple): Fix default arguments.
18140
18141 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
18142
18143         * reflection.c, reflection.h, icall.c: add a function to check
18144         if an attribute type is defined for a metadata object.
18145
18146 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
18147
18148         * object-internals.h: Added some needed fields from StringBuilder class.
18149         * marshal.c: Set the maxCapacity when creating a StringBuilder.
18150
18151 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
18152
18153         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
18154         threads before shutting down the runtime.
18155
18156         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
18157
18158 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
18159
18160         * object-internal.h, threads.c: implement stacksize and 
18161         parameterized thread start functionality (requires
18162         matching corlib). Marked broken code for later removal.
18163
18164 2005-01-12  Martin Baulig  <martin@ximian.com>
18165
18166         * class-internals.h (MonoGenericClass): Moved the `initialized'
18167         flag to MonoDynamicGenericClass, removed `init_pending'.
18168         (MonoGenericInst): Added `is_reference' flag.
18169
18170 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
18171
18172         * reflection.c (mono_image_create_pefile): Only set the pe_offset
18173         inside the MSDOS header. Fixes #71201.
18174
18175         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
18176         gc thread.
18177         (mono_domain_finalize): Ditto.
18178
18179 2005-01-12  Martin Baulig  <martin@ximian.com>
18180
18181         * class.c (mono_get_shared_generic_class): Use the cache for
18182         non-dynamic generic classes.
18183
18184         * class-internals.h (mono_class_create_generic_2): Removed
18185         function prototype, this function is now static inside class.c.
18186
18187         * class.c (mono_class_create_generic_2): Made this static, only
18188         call it from mono_class_init() and mono_class_setup_parent().
18189         (collect_implemented_interfaces_aux): Call mono_class_init() on
18190         the interfaces we collect.
18191         (mono_class_setup_vtable): Call mono_class_init (class->parent).
18192
18193 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
18194
18195         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
18196         it a real thread handle.
18197
18198         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
18199         MonoJitExceptionInfo, since each catch clause needs its own variable.
18200         
18201 2005-01-11  Dick Porter  <dick@ximian.com>
18202
18203         * image.c (mono_pe_file_open): New variant on mono_image_open()
18204         that does not set up the CLI metadata; used for FileVersionInfo so
18205         it can get the data for windows binaries too.
18206         
18207         * process.c (process_read_string_block): Don't read off the end of
18208         the StringTable block.
18209
18210         These both fix bug 70766.
18211
18212 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
18213
18214         * gc.c: set some fields to NULL at GC cleanup time.
18215         * threads.c: if we quit the main thread, call exit ().
18216
18217 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
18218
18219         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
18220
18221 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
18222
18223         * threads.h, threads.c, object.c: added accessor and settor for
18224         main_thread. Handle it specially when exiting from it: wait
18225         for other foreground threads to exit.
18226
18227 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
18228
18229         * process.c, verify.c: remove some bloat.
18230
18231 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
18232
18233         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
18234         the calling convention to cdecl under win32.
18235
18236 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
18237
18238         * object.c (mono_object_get_size): New function to get the size of
18239         an object instance.
18240
18241         * profiler.c (simple_allocation): Use above.
18242
18243 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
18244
18245         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
18246         ves_icall_System_AppDomain_getRootDomain (as it's not required to
18247         get an appdomain by it's id and we can't assume the root's id is 0).
18248         * domain-internals.h: Change the function prototype to match.
18249         * icall.c: Change the icall table for AppDomain.
18250
18251 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
18252
18253         * locales.c (string_invariant_compare_char): Only compute
18254         GUnicodeTypes in the case where we need them.  Test for ordinality
18255         first and return if so.
18256
18257         From the commit:
18258
18259                 /*
18260                  * FIXME: here we must use the information from c1type and c2type
18261                  * to find out the proper collation, even on the InvariantCulture, the
18262                  * sorting is not done by computing the unicode values, but their
18263                  * actual sort order.
18264                  */
18265
18266 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
18267
18268         * loader.c: for P/Invoke methods, allow the "Internal" shared
18269         library name to refer to the calling process symbol namespace.
18270
18271 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
18272
18273         * Makefile.am: Add the security manager to the build.
18274         * security-manager.c|h: New. Initialization of the security manager.
18275
18276 2005-01-07  Dick Porter  <dick@ximian.com>
18277
18278         * threads.c: 
18279         * monitor.c: Update thread state during Monitor and WaitHandle
18280         waits.  Fixes bug 71031.
18281
18282 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
18283
18284         * reflection.c (property_encode_signature): Correctly handle when the
18285         property has no methods.
18286
18287 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
18288
18289         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
18290         
18291         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
18292         fields from mb, not rmb. Fixes #71017.
18293
18294         * marshal.c (emit_ptr_to_str_conv): Add support for 
18295         ByValTStr -> string conversion. Fixes #71015.
18296
18297         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
18298
18299         * mempool.c (mono_mempool_contains_addr): New helper function.
18300
18301 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
18302
18303         * metadata.c (mono_metadata_compute_size): Fix size calculation of
18304         HasSematics encoded fields.
18305         
18306         * metadata.c (mono_type_to_unmanaged): Improve error message for 
18307         invalid string marshalling.
18308
18309         * metadata.c: Fix warnings.
18310         
18311 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
18312
18313         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
18314         profiler support.
18315
18316 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
18317
18318         * domain.c object.c domain-internals.h: Revert part of r38077 since the
18319         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
18320         tests.
18321
18322 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
18323
18324         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
18325         so methods containing these can be AOTed.
18326
18327 2005-01-03  Martin Baulig  <martin@ximian.com>
18328
18329         * loader.c (find_method): Removed the hack for generic instances.
18330         (method_from_memberref): If our parent is a generic instance, pass
18331         its generic type definition to find_method() and then inflate the
18332         method.
18333         (mono_get_method_constrained): Pass the generic type definition to
18334         find_method() and inflate the method later.
18335
18336         * class-internals.h (MonoStats): Added `generic_class_count'.
18337
18338         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
18339         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
18340
18341         * reflection.c (mono_custom_attrs_from_params): Don't ignore
18342         generic type definitions.
18343
18344 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
18345
18346         * loader.c icall.c: Fix warnings.
18347
18348 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
18349
18350         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
18351         blittable types. Fixes #70864.
18352
18353 2004-12-29  Martin Baulig  <martin@ximian.com>
18354
18355         * icall.c
18356         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
18357
18358         * reflection.c (mono_method_get_object): Create a
18359         "System.Reflection.MonoGenericMethod" for inflated methods; don't
18360         call mono_get_inflated_method().
18361
18362         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
18363
18364 2004-12-27  Martin Baulig  <martin@ximian.com>
18365
18366         * class-internals.h (MonoMethod): Added `is_inflated' flag.
18367         (MonoMethodInflated): Added `inflated' field.
18368
18369         * class.c (mono_class_inflate_generic_method): Don't really
18370         inflate the method here; just set the `is_inflated' flag in the
18371         MonoMethod.
18372         (mono_class_get_inflated_method): Actually inflate the method here
18373         if it's not already inflated; we use the MonoMethodInflated's new
18374         `inflated' field as a cache.
18375
18376 2004-12-26  Martin Baulig  <martin@ximian.com>
18377
18378         * class.c
18379         (inflate_generic_class): Moved some code out of inflate_generic_type().
18380         (mono_class_inflate_generic_method): If we're already inflated,
18381         inflate the context and use the declaring method; ie. make sure
18382         the declaring method of an inflated method is always the generic
18383         method definition.
18384         (mono_class_create_from_typedef): Create
18385         `class->generic_container->context->gclass'.
18386
18387 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
18388
18389         * metadata-internals.h, marshal.c, reflection.c: More
18390         MonoGHashTable->GHashTable.
18391
18392         * domain-internals.h, class.c: Change MonoGHashTable's into
18393         GHashTables for some cases where no gc stuff is used
18394
18395         All users: update apis
18396
18397 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
18398
18399         * metadata.c (builtin_types): Make this `const'. Makes this get
18400         put into the shareable section.
18401         (mono_metadata_init): Casts to make gcc happy.
18402
18403 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
18404
18405         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
18406
18407 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
18408
18409         * icall.c: Added an internal call to retrieve the position and length
18410         of assembly-level declarative security attributes (RequestMinimum, 
18411         RequestOptional and RequestRefuse). This is used by the Assembly class
18412         to re-create the corresponding permission sets.
18413
18414 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
18415
18416         * marshal.c: fix the stelemref wrapper to be type correct
18417         (and faster).
18418
18419 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
18420
18421         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
18422         to do key & 0x7fffffff. Hashtable already does this. It just
18423         results in longer code.
18424
18425 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
18426
18427         * appdomain.c: Bump corlib version.
18428         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
18429         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
18430         * reflection.c|h: Add functions to get declarative security infos
18431         (blob position and length) for assemblies, classes and methods.
18432
18433 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
18434
18435         * reflection.c: sort the constant table (bug #70693).
18436
18437 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
18438
18439         * object-internals.h, threads.c, domain.c: add accessors for
18440         the MonoThread and MonoDomain tls keys.
18441
18442 2004-12-18  Martin Baulig  <martin@ximian.com>
18443
18444         * class.c (inflate_generic_type): If we're inflating a generic
18445         instance, set `ngclass->context->container = context->container';
18446         ie. the container we inflated into.
18447
18448         * metadata.c (mono_metadata_parse_generic_param): Reflect above
18449         inflate_generic_type() changes.
18450
18451 2004-12-17  Martin Baulig  <martin@ximian.com>
18452
18453         * class-internals.h
18454         (MonoGenericClass): Replaced `MonoType *generic_type' with
18455         `MonoClass *generic_class'.  Removed `dynamic_info'; if
18456         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
18457         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
18458
18459 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
18460
18461         * exception.c (mono_exception_from_token): New helper function.
18462
18463 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
18464
18465         * assembly.c (mono_assembly_load_with_partial_name): Call 
18466         mono_assembly_loaded before invoking the preload hooks. Fixes
18467         #70564.
18468
18469         * object-internals.h (MonoThread): Change culture_info and 
18470         ui_culture_info into an array.
18471
18472         * threads.c: Cache culture info objects from more than one appdomain.
18473
18474         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
18475         current UI culture.
18476
18477 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
18478
18479         * threads.h threads.c appdomain.c: Clear the culture_info field of
18480         all threads during unloading if they point to an object in the dying
18481         appdomain.
18482
18483 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
18484
18485         * culture-info.h (TextInfoEntry): New struct
18486         * object-internals.h: sync with managed
18487         * locales.c: fill the `text_info_data' field
18488         * culture-info-tables.h: update
18489
18490 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
18491
18492         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
18493         collector.
18494
18495 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
18496
18497         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
18498         (ves_icall_ModuleBuilder_getMethodToken): Ditto
18499
18500 2004-12-12  Martin Baulig  <martin@ximian.com>
18501
18502         * mono-debug-debugger.c (write_type): If we're an enum and the
18503         builtin types have already been initialized, call mono_class_init().
18504
18505 2004-12-11  Martin Baulig  <martin@ximian.com>
18506
18507         * metadata.c (mono_metadata_load_generic_params): Added
18508         `MonoGenericContainer *parent_container' argument; automatically
18509         compute `container->is_method'; pass the correct owner to
18510         get_constraints().      
18511
18512         * reflection.c (compare_genericparam): Sort the GenericParam table
18513         according to increasing owners. 
18514
18515 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
18516
18517         * profiler.c: allow disabling the default profiler.
18518
18519 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
18520
18521         * decimal.c, icall.c: allow disabling System.Decimal support.
18522
18523 2004-12-09  Marek Safar <marek.safar@seznam.cz>
18524
18525         * reflection.c: Add support for null attribute arguments.
18526
18527 2004-12-09  Martin Baulig  <martin@ximian.com>
18528
18529         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
18530         names to get rid of compiler warnings.
18531
18532 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
18533
18534         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
18535         mono_marshal_load_type_info (). Fixes #69625.
18536         (mono_marshal_get_ptr_to_struct): Likewise.
18537
18538 2004-12-08  Martin Baulig  <martin@ximian.com>
18539
18540         * mono-debug.h: Bumped version number to 47.
18541
18542         * mono-debug-debugger.c
18543         (mono_debugger_event_handler, mono_debugger_event): Take two
18544         guint64 arguments insteed of a gpointer and a guint32.  
18545
18546 2004-12-08  Martin Baulig  <martin@ximian.com>
18547
18548         * debug-mono-symfile.h
18549         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
18550         `address' to `native_offset'.
18551
18552 2004-12-08  Martin Baulig  <martin@ximian.com>
18553
18554         * class.c (mono_class_create_from_typespec): Only inflate if we
18555         either have `context->gclass' or `context->gmethod'.
18556
18557 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
18558
18559         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
18560
18561         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
18562
18563         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
18564
18565         * reflection.c (mono_assembly_get_object): Remove the workaround put
18566         in for the release.
18567         
18568         * appdomain.c: Use the corlib_internal field from MonoAssembly.
18569
18570         * appdomain.c: Bump corlib version.
18571
18572         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
18573         be visible in other appdomains.
18574
18575 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
18576
18577         * threads.c: Interlocked inc and dec for longs were messed up,
18578         use a KISS based impl for this. Fixes 70234
18579
18580 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
18581
18582         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
18583
18584 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
18585
18586         * icall.c: fix to follow policy not to allow struct
18587         arguments in icalls.
18588
18589 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18590
18591         * process.c: make the patch that handles spaces in file paths work
18592         on mono/windows too.
18593
18594 2004-12-06  Martin Baulig  <martin@ximian.com>
18595
18596         * class.c (mono_class_create_generic): Call
18597         mono_class_setup_supertypes() if we're dynamic.
18598         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
18599
18600 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
18601
18602         * object-internals.h: Add new fields to MonoThread.
18603
18604         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18605
18606         * icall.c threads-types.h threads.c: Add new icalls.
18607
18608         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
18609
18610         * object-internals.h (MonoReflectionAssembly): Sync object layout with
18611         managed side.
18612
18613         * appdomain.c: Bump corlib version.
18614
18615         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
18616         internal assemblies. Fixes #69181.
18617
18618 2004-12-05  Martin Baulig  <martin@ximian.com>
18619
18620         * class.c (mono_class_inflate_generic_signature): Make this a
18621         no-op if `context' is NULL or we don't have any type parameters;
18622         also copy `sentinelpos'.        
18623
18624 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
18625
18626         * image.c: Add unbox_wrapper_cache.
18627
18628         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
18629
18630         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
18631         function generator.
18632         
18633         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
18634         Fixes #70173.
18635
18636         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
18637         
18638 2004-12-04  Martin Baulig  <martin@ximian.com>
18639
18640         * loader.c (mono_method_get_signature_full): New public function;
18641         like mono_method_get_signature(), but with an additional
18642         `MonoGenericContext *' argument.
18643
18644         * class.c (mono_class_inflate_generic_signature): Formerly known
18645         as inflate_generic_signature(); make this public.
18646
18647 2004-12-04  Martin Baulig  <martin@ximian.com>
18648
18649         * metadata.c
18650         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
18651         instead of a `MonoGenericContainer *'.  
18652         (mono_metadata_parse_array_full): Likewise.
18653         (mono_metadata_parse_signature_full): Likewise.
18654         (mono_metadata_parse_method_signature_full): Likewise.
18655         (mono_metadata_parse_generic_inst): Likewise.
18656         (mono_metadata_parse_generic_param): Likewise.
18657         (mono_metadata_parse_mh_full): Likewise.
18658         (mono_type_create_from_typespec_full): Likewise.
18659
18660 2004-12-03  Martin Baulig  <martin@ximian.com>
18661
18662         * class-internals.h (MonoGenericContainer): Replaced the
18663         `MonoGenericContext * pointer with a `MonoGenericContext'
18664         structure and made it the first element.
18665
18666 2004-12-03  Martin Baulig  <martin@ximian.com>
18667
18668         * class.c
18669         (inflate_generic_type): Set the `context->container' when creating
18670         a new MonoGenericContext.
18671         (mono_class_inflate_generic_method): Likewise.
18672         (mono_class_create_from_typespec): Just use `context->container'
18673         to get the container.
18674
18675         * loader.c (method_from_methodspec): Set `context->parent' from
18676         `context->container' - and if that's a method container, use its
18677         parent.  Also set the `context->container' when creating a new
18678         MonoGenericContext.
18679         (mono_get_method_from_token): Use just `context->container' to get
18680         the container.
18681
18682         * metadata.c (do_mono_metadata_parse_generic_class): Also set
18683         `gclass->context->container'.
18684
18685         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
18686         the `context->container' when creating a new MonoGenericContext.
18687
18688 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
18689
18690         * reflection.c (compare_genericparam): Sort params with identical
18691         owner by their number. Fixes gen-111 on sparc.
18692
18693 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
18694
18695         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
18696         around the domain changes.
18697
18698         * appdomain.c (mono_domain_unload): Handle the case when the thread
18699         calling Unload is itself being aborted during unloading. Fixes #70022.
18700
18701         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
18702
18703         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
18704         checkpoint_func as an icall so it gets a wrapper.
18705         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
18706         in the cross-appdomain wrappers too.
18707
18708         * threads.c (mono_thread_has_appdomain_ref): Make this public.
18709
18710         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
18711
18712         * reflection.c: Fix some memory leaks.
18713         
18714 2004-12-02  Martin Baulig  <martin@ximian.com>
18715
18716         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
18717
18718         * metadata.c (generic_class_cache): New static hashtable.
18719         (mono_metadata_lookup_generic_class): New public method.
18720
18721 2004-12-02  Martin Baulig  <martin@ximian.com>
18722
18723         * class.c (mono_class_create_from_typedef): Call
18724         mono_class_setup_parent() and mono_class_create_mono_type() before
18725         parsing the interfaces.
18726
18727 2004-12-02  Martin Baulig  <martin@ximian.com>
18728
18729         * metadata.c (generic_inst_cache): New static hashtable.
18730         (mono_metadata_lookup_generic_inst): New public function.
18731         (mono_metadata_inflate_generic_inst): New public function.
18732         (mono_metadata_parse_generic_inst): New public function.
18733         (do_mono_metadata_parse_generic_class): Use the new
18734         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
18735         since this'll also use the cache.
18736
18737         * reflection.c (mono_reflection_bind_generic_method_parameters):
18738         Use mono_metadata_lookup_generic_inst() to use the new cache.
18739
18740         * class.c (inflate_mono_type): Use
18741         mono_metadata_inflate_generic_inst() to inflate a generic
18742         instance; this'll also use the new cache.
18743
18744         * loader.c (method_from_methodspec): Use
18745         mono_metadata_parse_generic_inst() and
18746         mono_metadata_inflate_generic_inst() rather than parsing it
18747         manually, so we can use the new cache.
18748
18749 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
18750
18751         * threads.c (wait_for_tids): Do not incorrectly free threads when 
18752         the wait times out.
18753
18754 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
18755
18756         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
18757         iter->args based on whether parameters are passed in registers (i.e.
18758         MONO_ARCH_REGPARMS is defined)
18759
18760 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
18761
18762         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
18763         the exception message. Fixes #70070.
18764         (method_from_methodspec): Fix warnings.
18765
18766 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18767
18768         * process.c: (complete_path) return the path quoted
18769
18770 2004-12-01  Martin Baulig  <martin@ximian.com>
18771
18772         * class-internals.h (MonoGenericInst): New structure.
18773         (MonoGenericClass): Replaced `type_argc', `type_argv' and
18774         `is_open' with `MonoGenericInst *inst'.
18775         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
18776         `is_open' with `MonoGenericInst *inst'.
18777
18778 2004-11-30  Martin Baulig  <martin@ximian.com>
18779
18780         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
18781
18782         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
18783         to `generic_class_cache'.
18784
18785         * metadata.c
18786         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
18787         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
18788         (mono_generic_inst_is_valuetype): Renamed to
18789         mono_generic_class_is_valuetype().
18790
18791         * class-internals.h
18792         (MonoGenericInst): Renamed to MonoGenericClass.
18793         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
18794         (MonoClass): Renamed `generic_inst' to `generic_class'.
18795         (MonoGenericContext): Renamed `ginst' to `gclass'.
18796
18797         * object-internals.h
18798         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
18799
18800         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
18801         mono_reflection_generic_class_initialize().
18802
18803         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
18804         now known as "System.Reflection.MonoGenericClass".
18805         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
18806
18807 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
18808
18809         * class-internals.h: Added a flag field to MonoClass to cache the
18810         declarative security attributes actions associated with the class.
18811         * domain-internals.h: Added booleans to MonoJitInfo to cache the
18812         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
18813         applicable to the JITted method.
18814         * reflection.c|h: Added functions to extract (as flags) which security
18815         actions are available (declaratively) for a method, class or assembly.
18816         * metadata.c|h: Added functions to search the declarative security
18817         table in the metadata.
18818         
18819 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
18820
18821         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
18822         EXPORTEDTYPES are already in the class name cache, so there is no
18823         need to add extra code here to look at them. Just removes a bit of
18824         cruft.
18825
18826         (ves_icall_System_Environment_get_TickCount): No need for #if
18827         WINDOWS. We already have the code in io-layer.
18828
18829 2004-11-28  Martin Baulig  <martin@ximian.com>
18830
18831         * loader.c
18832         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
18833         Fixes gen-112.cs.
18834
18835 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
18836
18837         * assembly.c (do_mono_assembly_open): Instead of having a
18838         conditional WITH_BUNDLE, incorporate support for bundles here, by
18839         having a global `bundles' variable holding a pointer to the actual
18840         bundles. 
18841
18842         (mono_register_bundled_assemblies): New API call used by the
18843         bundle code. 
18844
18845         See mkbundle.1 for details.
18846         
18847 2004-11-27  Martin Baulig  <martin@ximian.com>
18848
18849         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
18850         the vtable for generic methods.
18851
18852 2004-11-26  Martin Baulig  <martin@ximian.com>
18853
18854         * metadata.c
18855         (mono_metadata_generic_method_hash): New public function.
18856         (mono_metadata_generic_method_equal): Likewise.
18857
18858         * class-internals.h
18859         (MonoGenericContainer): Added `GHashTable *method_hash'.
18860
18861         * reflection.c (ReflectionMethodBuilder): Added
18862         `MonoGenericContainer *generic_container'.
18863         (reflection_methodbuilder_to_mono_method): Don't create a new
18864         MonoGenericContainer each time we're called.
18865         (mono_reflection_bind_generic_method_parameters): Use
18866         `container->method_hash' to cache the results so we don't create a
18867         different method if we're called several times with the same
18868         arguments.
18869
18870         * loader.c (method_from_methodspec): Use the new
18871         `container->method_hash' here, too.
18872
18873 2004-11-26  Martin Baulig  <martin@ximian.com>
18874
18875         * class.c (inflate_generic_signature): Correctly compute
18876         `res->has_type_parameters'.
18877         (mono_class_vtable): Use the `has_type_parameters' flag to
18878         determine whether we're a generic method.
18879
18880         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
18881
18882 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
18883
18884         * object.c (mono_runtime_run_main): Fix a small memory leak.
18885
18886 2004-11-25  Martin Baulig  <martin@ximian.com>
18887
18888         * class.c (set_generic_param_owner): Fixed the loop.
18889
18890 2004-11-25  Martin Baulig  <martin@ximian.com>
18891
18892         * object.c (mono_class_vtable): Don't create any JIT wrappers for
18893         generic methods.
18894
18895 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
18896
18897         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
18898         names. Fixes #69787.
18899
18900 2004-11-24  Martin Baulig  <martin@ximian.com>
18901
18902         * class.c (mono_class_create_generic_2): If we don't have a
18903         `ginst->parent', inflate `gklass->parent' to get our parent.
18904
18905 2004-11-24  Martin Baulig  <martin@ximian.com>
18906
18907         * reflection.c (compare_genericparam): Correctly sort the
18908         GenericParam table; fixes #69779.
18909
18910 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
18911
18912         * reflection.c: When writing a PE file, don't create a huge
18913         buffer in memory. Just write the arrays we have to the file.
18914         This reduces memory usage.
18915
18916         * metadata-internals.h: MonoDynamicStream pefile is no longer used
18917         globally.
18918
18919 2004-11-17  Martin Baulig  <martin@ximian.com>
18920
18921         * class.c (mono_class_init): Don't setup `class->parent' for
18922         dynamic instances; moved this to mono_class_generic_2().
18923         (mono_class_create_generic): Also set `klass->inited' for dynamic
18924         generic instances.
18925         (mono_class_create_generic_2): Don't do anything for dynamic
18926         generic instances.  Set `klass->parent' here and also call
18927         mono_class_setup_parent() here. 
18928
18929         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
18930         `MonoType *parent' argument; set `ginst->parent' before calling
18931         mono_class_create_generic_2(), so we set the correct parent.
18932
18933 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
18934
18935         * reflection.c: allow getting attributes from ModuleBuilder
18936         (used by ikvm).
18937
18938 2004-11-17  Martin Baulig  <martin@ximian.com>
18939
18940         * class.c (mono_class_create_from_typedef): If a type parameter is
18941         inherited from an outer class, set its owner to that class.
18942
18943 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
18944
18945         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
18946           for (int*) written size. This fixes bug #69592.
18947
18948 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
18949
18950         * icall.c: Added IsAuthenticodePresnet internal call.
18951         * image.c|h: New function that check a MonoImage for an Authenticode
18952         signature in the certificate PE data directory.
18953         * security.c|h: New internal call to ask the runtime if an 
18954         Authenticode signature seems referenced in the PE header.
18955
18956 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
18957
18958         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
18959
18960         * reflection.c (mono_image_create_pefile): Free the assembly streams
18961         after writing out the assembly file.
18962
18963         * object.c (mono_runtime_run_main): Fix small memory leak.
18964
18965         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
18966         property access modifiers. Fixes #69389.
18967
18968 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
18969
18970         * domain.c, object.c, object-internals.h, domain-internals.h,
18971         object.h, marshal.c: keep dynamic code info per domain.
18972
18973 2004-11-15  Martin Baulig  <martin@ximian.com>
18974
18975         * class.c (mono_type_get_name_recurse): Put type arguments in
18976         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
18977         see bug #68387.
18978
18979 2004-11-15  Martin Baulig  <martin@ximian.com>
18980
18981         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
18982         (mono_class_setup_vtable): When computing `the_cname' for a
18983         generic instance, don't include the namespace since we'd otherwise
18984         add it twice.
18985
18986 2004-11-15  Martin Baulig  <martin@ximian.com>
18987
18988         * class.c (mono_class_create_generic): Changed return type to void.
18989         (mono_class_create_generic_2): New public function; setup
18990         `class->method', `class->field' and `class->interfaces' here
18991         instead of in mono_class_init().
18992
18993         * class.h (mono_class_create_generic): Moved to class-internals.h.
18994
18995 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
18996
18997         * reflection.c (mono_image_create_pefile): take a file HANDLE.
18998         rather than writing to memory, write to this file. Right now,
18999         we are just writting into a buffer, and copying that. However
19000         we can avoid the buffer later.
19001
19002         (mono_dynamic_stream_reset): new function
19003
19004         * icall.c, object-internals.h: update for the above.
19005
19006 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
19007
19008         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
19009         have been using gc'd memory. First it is slower, unlikely
19010         the comment in the source code said, secondly, it increases
19011         our footprint to do it in the gc.
19012
19013         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
19014         the method so that it does not have to copy to managed code.
19015
19016 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
19017
19018         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
19019
19020 2004-11-12  Martin Baulig  <martin@localhost>
19021
19022         * reflection.c (mono_image_create_token): Allow generic method
19023         definitions here, since they may appear in an `.override'; see
19024         gen-98/gen-99 for an example.
19025
19026 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
19027
19028         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
19029         #69365.
19030
19031         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
19032         descriptive.
19033
19034 2004-11-11  Martin Baulig  <martin@ximian.com>
19035
19036         * class.c (mono_class_setup_vtable): In an explicit interface
19037         implementation, the method name now includes the arity.
19038
19039 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
19040
19041         * object.c (mono_array_full_copy): Fix warning.
19042
19043 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
19044
19045         * appdomain.c: Removed look_for_method_by_name(). Use the new method
19046         mono_class_get_method_from_name() instead.
19047         
19048         * class-internals.h: Added two new types of wrappers. 
19049         Added MonoRemotingTarget enum. Added new trampoline function type, which
19050         takes an additional MonoRemotingTarget value as parameter, so it is
19051         possible to request a trampoline for a specific target.
19052         
19053         * class.c: Added new mono_class_get_method_from_name() method.
19054         
19055         * class.h: In MonoRemoteClass, we can have now to vtables, one for
19056         general remoting sinks and one specific for cross domain calls.
19057         
19058         * debug-helpers.c: Added new wrapper names.
19059         
19060         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
19061         of a remote class.
19062         
19063         * image.c: Porperly delete value objects form the remoting invoke hashtable.
19064         
19065         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
19066         with several other methods (mono_marshal_get_xappdomain_dispatch,
19067         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
19068         and others) can generate a fast remoting wrapper for cross domain calls.
19069         More information can be found in docs/remoting.
19070         Other changes: Removed mono_find_method_by_name, and used
19071         mono_class_get_method_from_name instead.
19072         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
19073         is stored in the remoting invoke hashtable.
19074         
19075         * marshal.h: published the new method for getting the xdomain wrapper,
19076         and also added a method for getting the adequate wrapper for a given
19077         method and target.
19078         
19079         * object-internals.h, object.c: Added a couple of methods for capying and
19080         cloning arrays.
19081         Modified mono_install_remoting_trampoline, which takes the new remoting
19082         trampoline that has a remoting target as parameter.
19083         mono_class_proxy_vtable now also takes a remoting target as parameter, and
19084         will return the most suitable vtable for the target.
19085         Added mono_remote_class_vtable, which returns the vtable of a remote class
19086         (which can be the normal remoting vtable or the xdomain vtable).
19087         
19088         * threads.c: the xdomain invoke and dispatch wrappers must also be
19089         protected against interruptions.
19090
19091 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19092
19093         * icall.c: use memmove in BlockCopyInternal when the source and
19094         destination arrays are the same.
19095
19096 2004-11-09  Martin Baulig  <martin@ximian.com>
19097
19098         * class-internals.h (MonoGenericContainer): Removed `method' and
19099         `signature', replaced them with `is_method' and `is_signature'
19100         flags.  Added `context'.
19101
19102         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
19103         instead of a `MonoGenericContainer *'.
19104
19105         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
19106         for dynamic type parameters.
19107         (mono_metadata_load_generic_params): Setup `container->context'.
19108
19109         * reflection.c (mono_reflection_setup_generic_class): Setup
19110         `tb->generic_container->context'.
19111         (do_mono_reflection_bind_generic_parameters): Use
19112         mono_class_inflate_generic_type() to correctly inflate types,
19113         rather than using our own hack just for MONO_TYPE_VAR.
19114
19115 2004-11-09  Martin Baulig  <martin@ximian.com>
19116
19117         * class.c (mono_class_inflate_generic_method): Small fix; don't
19118         crash here.
19119
19120         * icall.c
19121         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
19122         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
19123         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
19124         (ves_icall_Type_BindGenericParameters): Likewise.
19125         (ves_icall_Type_get_IsGenericInstance): Likewise.
19126         (ves_icall_Type_GetGenericParameterPosition): Likewise.
19127         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
19128         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
19129         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
19130
19131 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
19132
19133         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
19134         assembly versions and public key tokens. Fixes #69113.
19135
19136 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
19137
19138         * metadata.c: fix bug introduced with the type cache changes
19139         on 2004-11-06.
19140
19141 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
19142
19143         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
19144         the MonoClass pointer instead of the token in exception clauses.
19145         * reflection.c: updates for the above and make the code not depend
19146         on the structure of MonoExceptionClause.
19147
19148 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
19149
19150         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
19151         Add support for dynamic assemblies. Fixes #69114.
19152
19153         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
19154
19155 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
19156
19157         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
19158         since most only those methods use it. the code member of
19159         MonoMethodPInvoke was dead, so that can be removed too. Also,
19160         remove inline_count (again, not used), and move slot so that it
19161         can share bits with some other flags. This saves 8 bytes in the
19162         structure and gives us about 50 kb back for mcs helloworld.cs
19163
19164         * *.[ch]: Do naming changes for the above.
19165
19166         * loader.c (mono_method_get_header): Lazily init the header
19167         on first access.
19168         (mono_get_method_from_token): don't init the header here
19169         (mono_free_method): the header may never be allocated
19170
19171         Overall, this saves 150 kb of unmanaged allocations
19172         for mcs helloworld.cs. That accounts for 10% of the unmanaged
19173         memory at runtime.
19174         
19175         * loader.c, loader.h (mono_method_get_header): new accessor.
19176
19177         * *.[ch]: use the above method. Prepares us to lazily load
19178         the header.
19179
19180         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
19181         three warnings, which are actual bugs (see 69206).
19182
19183         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
19184         unused. Saves a cool 4 bytes / method.
19185
19186 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
19187
19188         * metadata.c (builtin_types): Add types for System.Object here.
19189         (mono_metadata_parse_type_full): Cache MonoType*'s that are
19190         for a class or valuetype from klass->this_arg or klass->byval_arg.
19191
19192         On mcs for a hello world, this gets us down from 21836 MonoType's
19193         to 14560.
19194
19195         (mono_metadata_free_type): Account for the above change.
19196
19197 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
19198
19199         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
19200         exception instead of asserting if name is null.
19201         (ves_icall_System_AppDomain_GetData): Ditto.
19202
19203 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
19204
19205         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
19206         EnumBuilder.
19207
19208         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
19209         Return NULL when the domain does not have entry_assembly set.
19210
19211         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
19212         Add a 'resource_modules' argument.
19213         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
19214
19215         * reflection.c (mono_reflection_create_runtime_class): Move setting
19216         of wastypebuilder here, so mono_get_type_object () returns a MonoType
19217         for enums too.
19218
19219         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
19220         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
19221         Throw an ArgumentNullException if 'ptr' is null.
19222
19223         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
19224         assemblies here. Fixes #69020.
19225
19226 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
19227
19228         * reflection.c (build_compressed_metadata): Fix the previous patch for
19229         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
19230         the stack.
19231
19232 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
19233
19234         * assembly.c (mono_assembly_names_equal): Allow a match if one of
19235         the cultures is false. Fixes #69090.
19236
19237         * reflection.c (build_compressed_metadata): Fix invalid memory read 
19238         detected by valgrind.
19239         
19240         * reflection.c (mono_reflection_get_type): Avoid triggering a 
19241         TypeResolve multiple times for the same type. Fixes #65577.
19242
19243 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
19244
19245         * marshal.c: Avoid using ldftn to call managed functions. It is
19246         much slower than just a call.
19247
19248         * reflection.c (mono_module_get_object): free the basename we
19249         allocate here from glib.
19250         
19251         * reflection.c (ensure_runtime_vtable): make sure to free
19252         overrides.  Also, we were allocating an array of MonoMethod not an
19253         array of MonoMethod*.
19254
19255         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
19256
19257         * image.c (mono_image_close): free image->guid here.
19258
19259 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
19260
19261         * reflection.c: Fix some spec conformance issues with the PE file
19262         structures so mcs compiled apps run on the Net 2.0 beta.
19263
19264 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
19265
19266         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
19267         Implement this. Fixes #67264.
19268
19269         * debug-helpers.h debug-helpers.c marshal.c: Move 
19270         mono_find_method_by_name to debug-helpers.c.
19271
19272 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
19273
19274         * object.c (mono_release_type_locks): type_initialization_hash is
19275         a GHashTable.
19276
19277         * reflection.c object.c object-internals.h: Fix warnings.
19278
19279         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
19280         without accessors. Fixes #61561.
19281
19282         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
19283         application base from the root domain if not set. Fixes #65641.
19284         (mono_runtime_init): Fix warning.
19285
19286 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19287
19288         * appdomain.c: call mono_thread_pool_init.
19289         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
19290         of worker threads based on the number of CPUs and the environment
19291         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
19292         for non-windows (windows) systems.
19293
19294 2004-10-27  Chris Toshok  <toshok@ximian.com>
19295
19296         * mono-debug-debugger.c (write_class): don't call mono_class_init
19297         here, as even with the check for (!klass->init_pending), we get
19298         into a situation where we're hitting cycles in class
19299         initialization.  Fixes #68816.
19300
19301 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
19302
19303         * image.c: Avoid overwriting values in the loaded_images_hash when an
19304         assembly is loaded multiple times. Fixes #61152.
19305
19306         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
19307         so multiple satellite assemblies for the same name can be loaded.
19308         Fixes #68259.
19309
19310         * mono_domain_assembly_preload: Actually return the loaded assembly, 
19311         not NULL.
19312
19313         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
19314         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
19315
19316         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
19317         pending finalizers are not invoked after the appdomain has been 
19318         unloaded. Fixes #67862.
19319
19320 2004-10-22  Martin Baulig  <martin@ximian.com>
19321
19322         * mono-debug-debugger.c
19323         (mono_debugger_runtime_invoke): Don't box valuetypes.
19324
19325 2004-10-22  Chris Toshok  <toshok@ximian.com>
19326
19327         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
19328         don't hide private methods.
19329
19330 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
19331
19332         * icall.c: Allows the runtime to "share" (when known) the public key
19333         token of an assembly. This avoid the need to recalculate the token 
19334         (from the public key) in managed code.
19335
19336 2004-10-21  Chris Toshok  <toshok@ximian.com>
19337
19338         * debug-helpers.c (append_class_name): argh, revert last patch.
19339         
19340 2004-10-21  Chris Toshok  <toshok@ximian.com>
19341
19342         * debug-helpers.c (append_class_name): use '+' as the delimiter,
19343         not '/', so that it matches what the debugger uses to look up
19344         methods.
19345
19346 2004-10-21  Martin Baulig  <martin@ximian.com>
19347
19348         * mono-debug-debugger.c (mono_debugger_throw_exception): New
19349         public method; this is called each time an exception is thrown and
19350         allows the debugger to use exception catch points.
19351
19352 2004-10-21  Martin Baulig  <martin@ximian.com>
19353
19354         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
19355         the stack pointer and the exception object in some struct and pass
19356         that to the debugger.
19357
19358 2004-10-21  Chris Toshok  <toshok@ximian.com>
19359
19360         * mono-debug-debugger.c (do_write_class): add instance/static
19361         event support.  We don't expose "raise" or "other" yet.
19362         (event_is_static): new method.
19363
19364 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
19365
19366         * mono-debug-debugger.c
19367         (mono_debugger_handle_exception): Remove
19368         bogus return value for fussy compilers.
19369
19370 2004-10-20  Martin Baulig  <martin@ximian.com>
19371
19372         * mono-debug-debugger.c
19373         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
19374         (mono_debugger_handled_exception): Likewise.
19375
19376 2004-10-20  Martin Baulig  <martin@ximian.com>
19377
19378         * mono-debug-debugger.h (MonoDebuggerEvent): Added
19379         MONO_DEBUGGER_EVENT_EXCEPTION.
19380
19381         * mono-debug-debugger.c (mono_debugger_handle_exception): New
19382         public function to send the debugger a notification for an
19383         exception and inform it about a catch/finally clause.
19384
19385 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
19386
19387         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
19388         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
19389         fix 2.95 build. 
19390
19391         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
19392
19393 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
19394
19395         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
19396         marshalled as [In,Out]. Fixes #58325.
19397
19398 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
19399
19400         * reflection.c (mono_method_body_get_object): Implement some fields.
19401
19402 2004-10-12  Martin Baulig  <martin@ximian.com>
19403
19404         * reflection.c (mono_reflection_bind_generic_parameters): Small
19405         fix, correctly retrieve our parent from a generic instance.
19406
19407 2004-10-12  Martin Baulig  <martin@ximian.com>
19408
19409         * metadata.c (mono_metadata_generic_param_equal): We always have
19410         an owner.
19411
19412         * class.c
19413         (mono_class_from_generic_parameter): We need to have an owner.
19414         (my_mono_class_from_generic_parameter): Likewise.
19415
19416         * reflection.c (mono_reflection_setup_generic_class): Renamed to
19417         mono_reflection_create_generic_class() and added a new
19418         mono_reflection_setup_generic_class().  
19419         (mono_reflection_initialize_generic_param): If we're a nested
19420         generic type and inherited from the containing class, set our
19421         owner to the outer class.
19422
19423 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
19424
19425         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
19426
19427         * reflection.c (mono_method_body_get_object): New function to create
19428         a MethodBody object.
19429
19430         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
19431
19432 2004-10-11  Martin Baulig  <martin@ximian.com>
19433
19434         * metadata.c (_mono_metadata_type_equal): Renamed to
19435         do_mono_metadata_type_equal() and made static.
19436
19437 2004-10-11  Martin Baulig  <martin@ximian.com>
19438
19439         * appdomain.c: Bump corlib version number to 28.
19440
19441 2004-10-10  Martin Baulig  <martin@ximian.com>
19442
19443         * class-internals.h
19444         (MonoGenericInst): Added `MonoGenericContainer *container'.
19445         (MonoGenericMethod): Likewise.
19446         (MonoGenericContext): Likewise.
19447         (MonoGenericParam): Added `MonoGenericContainer *owner'.
19448
19449         * metadata.c
19450         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
19451         (do_mono_metadata_parse_generic_inst): Likewise.
19452         (mono_metadata_parse_type_full): New public method.  This is the actual
19453         mono_metadata_parse_type() implementation - with an additional
19454         `MonoGenericContainer *' argument.
19455         (mono_metadata_parse_array_full): Likewise.
19456         (mono_metadata_parse_signature_full): Likewise.
19457         (mono_metadata_parse_method_signature_full): Likewise.
19458         (mono_metadata_parse_mh_full): Likewise.
19459         (mono_type_create_from_typespec): Likewise.
19460         (mono_metadata_interfaces_from_typedef_full): New public method;
19461         this is similar to the other _full() methods, but we take a
19462         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
19463         (mono_metadata_parse_generic_param): Take an additional
19464         `MonoGenericContainer *' argument and lookup the MonoGenericParam
19465         from that container.
19466         (mono_metadata_generic_param_equal): New static method to compare
19467         two type parameters.
19468         (_mono_metadata_type_equal): New static method; takes an
19469         additional `gboolean signature_only' argument - if true, we don't
19470         compare the owners of generic parameters.
19471         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
19472         with a TRUE argument - do a signature-only comparision.
19473
19474         * loader.c: Use the new _full() methods and pass the
19475         MonoGenericContainer to them.
19476
19477         * object-internals.h (MonoReflectionTypeBuilder): Added
19478         `MonoGenericContainer *generic_container' field.
19479         (MonoReflectionMethodBuilder): Likewise.
19480
19481 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
19482
19483         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
19484         case initial images of dynamic assemblies.
19485
19486         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
19487
19488         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
19489
19490         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
19491         length of event->other array.
19492         (typebuilder_setup_events): Ditto.
19493
19494         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
19495         'assembly_by_name' and add an 'assemblies' list.
19496
19497         * assembly.h assembly.c: Add a new search hook for determining whenever
19498         an assembly is already loaded. Use this instead of searching in the
19499         loaded_assemblies list.
19500
19501         * domain.c appdomain.c: Implement the new search hook so loaded 
19502         assemblies are now scoped by appdomain. Fixes #67727.
19503
19504 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
19505
19506         * threads.c (mono_thread_attach): Initialize synch_lock field so
19507         mono_thread_detach works again.
19508
19509         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
19510         'lib' too. Fixes #63130.
19511
19512 2004-10-06  Jackson Harper  <jackson@ximian.com>
19513
19514         * culture-info-tables.h: regenerated.
19515
19516 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
19517
19518         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
19519         implemented by other interfaces in the result. Fixes #65764.
19520         
19521         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
19522         Handle unloadable modules without crashing.
19523
19524         * image.c (load_modules): Revert the previous patch since modules must
19525         have a fixed index inside the array.
19526         
19527         * image.c (load_modules): Don't include native modules in the modules
19528         array.
19529
19530 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
19531
19532         * reflection.h: Add param_defaults field.
19533
19534         * reflection.c: Add support for parameter defaults in dynamic methods.
19535         Fixes #64595.
19536
19537         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
19538         an empty string when a type has no namespace. Fixes #64230.
19539
19540 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
19541
19542         * tabledefs.h: Added "internal" security actions to support non-CAS
19543         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
19544         Note: they do not seems to be used anymore in 2.0 (new metadata format)
19545
19546 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
19547
19548         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
19549         constructor of abstract class. Fixes #61689.
19550
19551 2004-10-04  Martin Baulig  <martin@ximian.com>
19552
19553         * class-internals.h (MonoGenericContainer): New type.
19554         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
19555         `MonoGenericContainer *generic_container'.
19556         (MonoClass): Replaced `gen_params' and `num_gen_params' with
19557         `MonoGenericContainer *generic_container'.
19558
19559         * metadata.c (mono_metadata_load_generic_params): Return a
19560         `MonoGenericContainer *' instead of a `MonoGenericParam *';
19561         removed the `num' argument.
19562
19563 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
19564
19565         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
19566         for dynamic images.
19567
19568         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
19569         machine fields.
19570
19571         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
19572
19573         * reflection.c: Save pe_kind and machine values into the generated
19574         image file.
19575
19576         * appdomain.c: Bump corlib version number.
19577
19578         * object-internals.h: Reorganize layout of LocalBuilder.
19579
19580         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
19581         New helper function.
19582
19583         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
19584         created MonoType for dynamic types. Fixes #66180.
19585
19586 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
19587
19588         * threadpool.c: the ares hashtable needs a critical section around it.
19589         this prevents some nasty segfaults
19590
19591 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
19592
19593         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
19594         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
19595         bug 67324).
19596         
19597 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
19598
19599         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
19600         
19601 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
19602
19603         * image.c: Always canonicalize image file names, to avoid loading
19604         the same assembly twice when referenced using a relative path.
19605
19606 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
19607
19608         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
19609
19610         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
19611
19612         * marshal.c: Fix warnings.
19613
19614 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
19615
19616         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
19617         attempting to marshal the delegate_trampoline as the method_addr.
19618         This patch has a static hashtable of marshalled delegates so that 
19619         we can map delegate_trampoline addresses back to delegates.  This
19620         allows a delegate passed to managed code to be passed back into native
19621         code.  Fixes #67039
19622
19623 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
19624
19625         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
19626
19627         * reflection.c (method_encode_code): Align method headers properly.
19628         Fixes #66025.
19629
19630 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
19631
19632         * marshal.c: In the runtime invoke wrapper, reset the abort
19633         exception if it is cached. This avoids the automatic rethrowal of 
19634         the exception after the catch of the wrapper. Also check for pending
19635         interruptions before calling the managed method. This is done using
19636         the new method emit_thread_force_interrupt_checkpoint, since the
19637         normal checkpoint method is ignored when running the invoke wrapper.
19638         * object.c: If the abort exception is rethrown, set the abort_exc
19639         field of the thread, so it will be rethrown aftere every catch.
19640         * threadpool.c: Only run an interruption checkpoint if what has been
19641         requested is a stop of the thread (aborts will be ignored).
19642         * threads.c: By default, a thread will now never be interrumped while
19643         running the runtime invoke wrapper (this ensures that runtime_invoke
19644         will always return to the caller if an exception pointer is provided).
19645         There is a new special method mono_thread_force_interruption_checkpoint()
19646         to force an interruption checkpoint even if running a protected
19647         wrapper, which is used by the same runtime invoke wrapper to do a check
19648         at a safe point.
19649
19650 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
19651
19652         * object.c, object-internals.h: Implemented mono_release_type_locks,
19653         which releases the cctor locks held by a thread.
19654         * threads.c, threads.h: In thread_cleanup, release cctor locks held
19655         by a thread. Added mono_thread_exit() method to be used to safely stop
19656         a thread.
19657
19658 2004-09-28  Raja R Harinath  <rharinath@novell.com>
19659
19660         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
19661         Move null check before dereference.  Avoid indexing beyond the end
19662         of the 'modules' array.
19663
19664 2004-09-28  Raja R Harinath  <rharinath@novell.com>
19665
19666         * metadata-internals.h (MonoImage): Add module_count field.
19667         * image.c (load_modules): Set image->module_count.
19668         (mono_image_load_file_for_image): Use image->module_count.
19669         * reflection.c (mono_image_load_module): Append to image->modules array 
19670         of dynamic assembly.
19671         (mono_module_get_object): Fix loop to actually increment index.
19672         Use image->module_count.
19673         * assembly.c (mono_assembly_load_references): Use image->module_count.
19674         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
19675         Likewise.
19676
19677 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
19678
19679         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
19680         Avoid assert on generic types.
19681
19682 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
19683
19684         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
19685
19686         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
19687
19688         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
19689         function to convert a MarshalSpec structure to its managed counterpart.
19690
19691         * reflection.c: Fix warnings.
19692         
19693         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
19694         field.
19695
19696         * icall.c (mono_create_icall_signature): Fix build.
19697
19698 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
19699
19700         * icall.c: Add MakePointType icall.
19701
19702         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
19703         warnings.
19704
19705 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19706
19707         * threadpool.c: reuse allocated slots in the queue.
19708
19709 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
19710
19711         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
19712
19713         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
19714
19715         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
19716         previous change.
19717
19718         * tabledefs.h: Add constants for pinvoke attributes BestFit and
19719         ThrowOnUnmappableChar.
19720
19721         * icall.c (ves_icall_Type_GetPacking): New icall.
19722
19723 2004-09-24  Martin Baulig  <martin@ximian.com>
19724
19725         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
19726
19727 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19728
19729         * appdomain.c:
19730         (mono_domain_set): allow setting a domain that is being unloaded.
19731         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
19732         being unloaded.
19733
19734 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
19735
19736         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
19737         the GetCustomAttributes icall.
19738
19739 2004-09-23  Martin Baulig  <martin@ximian.com>
19740
19741         * object-internals.h (MonoReflectionGenericParam): Replaced
19742         'has_ctor_constraint', `has_reference_type' and `has_value_type'
19743         with `guint32 attrs'.
19744
19745 2004-09-23  Martin Baulig  <martin@ximian.com>
19746
19747         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
19748
19749 2004-09-23  Martin Baulig  <martin@ximian.com>
19750
19751         * object-internals.h (GenericParameterAttributes): New enum.
19752
19753 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
19754
19755         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
19756         
19757         * class.c (init_events): Fill out event->other field.
19758
19759         * class.c: Fix warnings.
19760
19761         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
19762
19763 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
19764
19765         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
19766         walk which doesn't supply the IL offset.
19767
19768 2004-09-22  Martin Baulig  <martin@ximian.com>
19769
19770         * reflection.c (mono_reflection_setup_internal_class): If we're
19771         System.ValueType, System.Object or System.Enum, set
19772         `klass->instance_size' and create the vtable.
19773         (mono_reflection_create_internal_class): If we're an enum type,
19774         get the base class from our current corlib.
19775
19776 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
19777
19778         * reflection.h (MonoResolveTokenError): New type.
19779
19780         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
19781         icall.
19782
19783         * icall.c: Add an 'error' argument to the ResolveToken icalls.
19784
19785 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
19786
19787         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
19788         Support also calling constructors, but only for already allocated objects.
19789
19790 2004-09-17  Geoff Norton <gnorton@customerdna.com>
19791
19792         * reflection.c (type_get_qualified_name): If the klass is null
19793         return the typename to avoid a NullRefEx.
19794         (encode_cattr_value): Get the qualified name of the boxed type,
19795         not the underlying enumtype.  Fixes #62984.
19796
19797 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
19798
19799         * marshal.c: Fix problems with previous checkin.
19800
19801 2004-09-21    <vargaz@freemail.hu>
19802
19803         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
19804         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
19805
19806         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
19807
19808 2004-09-21  Geoff Norton <gnorton@customerdna.com>
19809
19810         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
19811         should only return a type for pointers, arrays, and passbyref types.
19812         Fixes bug #63841.
19813
19814 2004-09-21  Martin Baulig  <martin@ximian.com>
19815
19816         * domain.c (mono_debugger_check_runtime_version): New public
19817         function.
19818
19819         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
19820
19821 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
19822
19823         * reflection.c: Added missing sort to the declarative security 
19824         attributes table. MS implementation stops seeing the attributes if the
19825         token number regress in the table (as shown by ildasm and permview).
19826
19827 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
19828
19829         * object-internals.h (MonoReflectionModule): Add 'token' field.
19830         
19831         * reflection.c (mono_reflection_get_token): Add support for Module
19832         and Assembly.
19833         (mono_module_get_object): Set 'token' field.
19834         (mono_module_file_get_object): Set 'token' field.
19835
19836         * icall.c: Add new Assembly and Module icalls.
19837
19838         * appdomain.c: Bump corlib version.
19839
19840 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
19841
19842         * loader.h loader.c class.h class.c: Add helper functions for obtaining
19843         tokens of metadata objects.
19844
19845         * reflection.h reflection.c (mono_reflection_get_token): New function
19846         to obtain the token of a metadata object.
19847
19848         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
19849
19850 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
19851
19852         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
19853         
19854         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
19855
19856 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
19857
19858         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
19859         * object-internals.h: Added 3 MonoArray* members to MonoReflection
19860         AssemblyBuilder to access the permissions set in the class lib.
19861         * reflection.c: Added security attributes encoding step in 
19862         mono_image_build_metadata.
19863         * tabledefs.h: Added new security actions defined in 2.0:
19864         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
19865
19866 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
19867
19868         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
19869         macro parameter.
19870
19871 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
19872  
19873         * locales.c: nullify the ICU_collator member of CompareInfo when it is
19874           finalized. There where random SIGSEVs at program termination, when
19875           an object being finalized was trying to do a string comparison and
19876           the current culture was already finalized.
19877  
19878 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19879
19880         * threads.c: call thread_cleanup before finishing the thread if we get
19881         there.
19882
19883 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
19884
19885         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
19886         assemblies from the parent. Fixes #65665.
19887
19888 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
19889
19890         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
19891         modifiers.
19892
19893 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
19894
19895         * reflection.h: add prototype for mono_get_dbnull_object
19896         * reflection.c: add prototypes for get_default_param_value_blobs 
19897         and mono_get_object_from_blob for fussier compilers
19898
19899 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
19900  
19901         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
19902         false deadlock checks in class initialization.
19903  
19904 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
19905
19906         * image.c (mono_image_addref): Fix comment.
19907
19908         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
19909         possible.
19910
19911 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
19912
19913         * reflection.c (mono_param_get_objects): Modified to return
19914         ParameterInfo.DefaultValue object.
19915
19916         (get_default_param_value_blobs):
19917         (mono_get_object_from_blob):
19918         (mono_get_dbnull_object): New helper routines. 
19919
19920         * object.c (mono_get_constant_value_from_blob): New helper routine
19921         carved out from get_default_field_value ()
19922
19923         * object-internals.h (mono_get_constant_value_from_blob): Added
19924         function declaration.
19925
19926 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
19927
19928         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
19929         referenced assemblies. Fixes #62135.
19930
19931         * exception.h exception.c (mono_get_exception_file_not_found2): New
19932         helper function.
19933
19934 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
19935
19936         * class.h class.c: Add mono_type_get_underlying_type ().
19937
19938 2004-09-09  Geoff Norton <gnorton@customerndna.com>
19939
19940         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
19941         Fix GetTypes() to support dynamically created assemblies.
19942
19943 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
19944
19945         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
19946         
19947         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
19948         previous patch.
19949
19950         * reflection.h reflection.c loader.c: Allow dynamic construction of
19951         pinvoke methods. Fixes #65571.
19952         
19953         * reflection.c (mono_reflection_get_type): Revert previous change since
19954         it causes regressions.
19955
19956 2004-09-08  Martin Baulig  <martin@ximian.com>
19957
19958         * class.c (class_compute_field_layout): Don't call
19959         mono_class_layout_fields() for open generic instances.
19960
19961 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
19962         * threads.c appdomain.c: fix typo in GC macro
19963
19964 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19965
19966         * threads.c: don't call mono_thread_detach() in start_wrapper(),
19967         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
19968
19969 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
19970
19971         * image.c (mono_image_close): Applied patch from 
19972         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
19973         assembly is loaded multiple times from data.
19974         
19975         * image.c (mono_image_open): Fix warning.
19976
19977 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
19978
19979         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
19980         once. Fixes #58334.
19981         
19982         * reflection.c (mono_reflection_create_runtime_class): Initialize
19983         klass->nested_classes. Fixes #61224.
19984
19985 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
19986
19987         * threads.c: sched_yield() on exit, to allow threads to quit.
19988
19989 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
19990
19991         * object.c (mono_unhandled_exception): Remove leftover debug code.
19992
19993 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
19994
19995         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
19996
19997 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
19998
19999         * marshal.c (emit_marshal_array): Really null terminate string arrays.
20000         
20001         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
20002
20003 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
20004
20005         * marshal.c (emit_marshal_array): Null terminate string arrays.
20006         
20007         * marshal.c (raise_auto_layout_exception): Fix warning.
20008
20009         * reflection.c (mono_param_get_objects): Initialize the default value
20010         with DBNull.Value, not null. Fixes #62123.
20011
20012 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
20013
20014         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
20015         throw an exception with a cute explanation.
20016
20017 2004-09-06  Dick Porter  <dick@ximian.com>
20018
20019         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
20020         Close the new process's thread handle, as we don't use it.  The
20021         handle stays around forever otherwise.
20022
20023 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
20024
20025         * object.c (arith_overflow): Fix warning.
20026
20027         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
20028         calling conventions in method refs. Fixes #65352.
20029
20030         * reflection.c: Fix warnings.
20031
20032 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
20033
20034         * icall.c: Add a new icall for Array.Clear
20035
20036 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
20037
20038         * object.c: When allocating an array, we have to throw
20039         an overflow exception if any of the lengths are < 0.
20040
20041 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
20042
20043         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
20044         properly. Also move implementation of string array marshalling to 
20045         managed code. Fixes #42316.
20046
20047 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20048
20049         * assembly.c: provide more information when loading an assembly fails.
20050
20051 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20052
20053         * filewatcher.c: don't expect the development fam package to be
20054         installed.
20055
20056 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
20057
20058         * marshal.c: Make a copy of the signature cookie since it will be
20059         freed by the caller.
20060         
20061         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
20062
20063         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
20064
20065         * metadata.c (mono_metadata_free_marshal_spec): New function to free
20066         marshal specs.
20067
20068         * marshal.c: More refactoring.
20069         
20070         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
20071         smaller functions.
20072
20073 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
20074
20075         * object.c: In mono_message_invoke, fill the output parameter array after
20076           calling the managed method (it was done before the call). This fixes
20077           bug #59299.
20078
20079 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
20080
20081         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
20082         as well.
20083
20084 2004-09-02  Martin Baulig  <martin@ximian.com>
20085
20086         * class.c (mono_class_instance_size): Don't allow generic type
20087         definitions or open generic instances.
20088         (mono_class_array_element_size): If we're a value type, call
20089         mono_class_instance_size() on the original class.
20090
20091         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
20092         handle generic instances.
20093
20094         * mono-debug-debugger.c (write_type): Handle generic instances
20095         like classes.
20096
20097 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
20098
20099         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
20100         the allocation request fails. Fixes #65089.
20101
20102         * object.c (mono_runtime_free_method): Do not call mono_free_method.
20103         
20104         * object.c (mono_runtime_free_method): New function to free a dynamic
20105         method.
20106
20107         * marshal.c (mono_delegate_free_ftnptr): New function to free the
20108         delegate trampoline.
20109
20110         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
20111         with hasthis as dynamic,
20112
20113         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
20114
20115         * domain.c (mono_jit_info_table_remove): New function to remove an
20116         entry from the jit info table.
20117
20118         * class-internals.h (MonoMethod): Add 'dynamic' field.
20119
20120         * loader.c: Fix warnings.
20121
20122 2004-09-01  Martin Baulig  <martin@ximian.com>
20123
20124         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
20125         instead of mono_debugger_lock() because the latter one is a no-op
20126         unless running in the debugger.
20127
20128 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
20129
20130         * class.c (class_compute_field_layout): Classes with auto-layout or
20131         reference fields are not blittable.
20132         
20133 2004-09-01  Dick Porter  <dick@ximian.com>
20134
20135         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
20136         mono_image_get_filename() to get the assembly location.
20137
20138         * icall.c:
20139         * metadata.h: Fix compile warnings
20140
20141 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
20142
20143         * class.c (class_compute_field_layout): System.Object is blittable.
20144
20145         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
20146         as in/out. Fixes #59909.
20147
20148 2004-09-01  Martin Baulig  <martin@ximian.com>
20149
20150         * metadata.h (MONO_TYPE_ISREFERENCE): Call
20151         mono_metadata_generic_inst_is_valuetype() if we're a generic
20152         instance to check whether our underlying type is a reference type.
20153
20154 2004-09-01  Martin Baulig  <martin@ximian.com>
20155
20156         * metadata.c (mono_type_size): If we're a generic instance, call
20157         mono_class_value_size() for value types.
20158
20159 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
20160
20161         * marshal.c: Implement more custom marshalling functionality. Fixes
20162         #64915.
20163
20164 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
20165
20166         * mono-debug.c, debug-mono-symfile.c: add some locking love.
20167
20168 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
20169
20170         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
20171
20172         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
20173
20174         * icall.c: Fix some warnings.
20175
20176         * threads.c (abort_appdomain_thread): Fix unref errors.
20177         (mono_thread_current): Fix THREAD_DEBUG define.
20178
20179 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
20180
20181         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
20182
20183         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
20184
20185 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
20186
20187         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
20188         string arrays.
20189
20190 2004-08-28  Martin Baulig  <martin@ximian.com>
20191
20192         * metadata.c
20193         (mono_metadata_generic_inst_is_valuetype): New public function.
20194
20195         * metadata.h (MONO_TYPE_ISSTRUCT): Call
20196         mono_metadata_generic_inst_is_valuetype() if we're a generic
20197         instance to check whether our underlying type is a valuetype.
20198
20199 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
20200
20201         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
20202         #63768.
20203
20204 2004-08-25  Martin Baulig  <martin@ximian.com>
20205
20206         * loader.c (mono_get_method_from_token): Abstract methods can also
20207         be generic and thus have type parameters.
20208
20209         * metadata-internals.h
20210         (MonoDynamicImage): Added `GPtrArray *gen_params'.
20211
20212         * reflection.c (mono_image_get_generic_param_info): Don't create a
20213         metadata row, just add an entry to the `gen_params' array.
20214         (build_compressed_metadata): Sort the `gen_params' array and then
20215         actually create the metadata.
20216
20217 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20218
20219         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
20220
20221 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
20222
20223         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
20224
20225 2004-08-24  Martin Baulig  <martin@ximian.com>
20226
20227         * class.cs (mono_class_is_subclass_of): Like an interface, a
20228         generic instance also derives from System.Object.
20229
20230 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
20231
20232         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
20233         custom modifiers to be in any order. Fixes #61990.
20234
20235 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
20236
20237         * object.c: Register mono_object_new_fast icall.
20238         
20239         * object.c (mono_class_get_allocation_ftn): Return to calling
20240         mono_object_new_fast, since it seems faster to compute the object 
20241         size in unmanaged code than passing it as a parameter.
20242
20243         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
20244
20245         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
20246         this function with Boehm as the oom handler, so we don't have to check
20247         the result of GC_malloc.
20248
20249         * object.c: Remove checks for oom.
20250
20251         * object.h object.c (mono_class_get_allocation_ftn): New function to
20252         return the icall which can be used to allocate an instance of a given
20253         class. 
20254
20255         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
20256
20257         * class-internals.h: Add 'enabled' field.
20258
20259 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
20260
20261         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
20262
20263 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
20264         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
20265         value 0x0010.
20266
20267 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
20268
20269         * appdomain.c: use the Tls function for appdomain too,
20270         at Zoltan's request. Actually return in mono_context_get
20271
20272         * appdomain.c, profiler.c, threads.c: use __thread
20273
20274 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
20275
20276         * appdomain.c threads.c: Call GC_CreateThread on windows.
20277
20278         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
20279         multiple libraries since this don't work on windows.
20280
20281 2004-08-18  Martin Baulig  <martin@ximian.com>
20282
20283         * class-internals.h
20284         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
20285         MonoMethodHeader.
20286
20287         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
20288         MonoMethodNormal since we also need it for abstract and interface
20289         methods.
20290
20291         * reflection.c
20292         (build_compressed_metadata): Sort the GenericParam table.
20293         (mono_image_create_token): Added `gboolean create_methodspec'
20294         argument; this is false when generating a MethodImpl token.
20295         (reflection_methodbuilder_to_mono_method): Abstract and interface
20296         methods may also have generic parameters.
20297
20298 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
20299
20300         * appdomain.c: thread local alloc
20301
20302 2004-08-17  Martin Baulig  <martin@ximian.com>
20303
20304         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
20305
20306         * icall.c
20307         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
20308         argument.
20309
20310         * class.c (mono_type_get_full_name): New public function.
20311         (mono_type_get_name): Don't include the type arguments.
20312
20313 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
20314
20315         * Makefile.am: Build static versions of libmetadata and libmonoruntime
20316         for inclusion into the mono executable.
20317
20318 2004-08-16  Martin Baulig  <martin@ximian.com>
20319
20320         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
20321         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
20322
20323 2004-08-14  Martin Baulig  <martin@ximian.com>
20324
20325         * class.c (dup_type): Also copy the `byref' field.
20326
20327 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
20328
20329         * reflection.c (create_dynamic_mono_image): Revert the last change 
20330         since it breaks bootstrap.
20331
20332 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
20333
20334         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
20335
20336         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
20337         not free them with g_free.
20338
20339 2004-08-11  Martin Baulig  <martin@ximian.com>
20340
20341         * reflection.c (mono_reflection_setup_internal_class): Also call
20342         mono_class_setup_mono_type() if we already have a `tb->type.type'.
20343
20344 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
20345
20346         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
20347         called during default (first) AppDomain creation. Keep track of
20348         Evidence when loading assemblies.
20349
20350 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
20351
20352         * opcodes.c, opcodes.h: reduce runtime relocations.
20353
20354 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
20355
20356         * culture-info.h, locales.c: fixes and chages to sue the new
20357         optimized format of the locale data.
20358         * culture-info-tables.h: regenerated.
20359
20360 2004-08-06  Geoff Norton <gnorton@customerdna.com>
20361         
20362         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
20363
20364 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
20365
20366         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
20367         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
20368         * domain-internals.h: icall declaration.
20369         * icall.c: icall registration.
20370         * object-internals.h: New fields in MonoAssembly for CAS.
20371
20372 2004-08-05  Duncan Mak  <duncan@ximian.com>
20373
20374         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
20375         CEE_LDELEM_ANY.
20376
20377 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
20378
20379         * reflection.c: fix to deal with object[] arrays in custom ctors
20380         (bug #62550).
20381
20382 2004-08-05  Martin Baulig  <martin@ximian.com>
20383
20384         * class.c (mono_class_array_element_size): Added support for
20385         generic instances and correctly handle "recursive" types.
20386
20387 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
20388
20389         * assembly.c: Fix warnings.
20390
20391 2004-08-04  Martin Baulig  <martin@ximian.com>
20392
20393         * class.c
20394         (mono_type_get_name_recurse): Added `gboolean include_arity'
20395         argument specifying whether or not we should include the generic
20396         arity in the type name.
20397         (_mono_type_get_name): New static function.
20398         (mono_class_setup_vtable): If we're a generic instance, don't
20399         include the generic arity in the names of explicit method
20400         implementations.        
20401
20402 2004-08-03  Martin Baulig  <martin@ximian.com>
20403
20404         * class.c (mono_type_get_name_recurse): Enclose the generic type
20405         arguments in `<', '>'.
20406
20407 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
20408
20409         * gc.c: make GC warning messages use the trace API, they are just
20410         noise to most of the users.
20411
20412 2004-08-03  Martin Baulig  <martin@ximian.com>
20413
20414         * debug-mono-symfile.c (read_string): Correctly read the string.
20415
20416 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
20417
20418         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
20419         
20420         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
20421         icalls.
20422         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
20423
20424 2004-07-30  Martin Baulig  <martin@ximian.com>
20425
20426         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
20427         Reflect latest symbol writer changes.   
20428
20429 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
20430
20431         * object.c: always create an object if null is passed
20432         to Invoke() where a valuetype is expected.
20433
20434 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
20435
20436         * marshal.c (mono_marshal_init): make managed
20437         signatures match native ones better for 64bits.
20438
20439 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20440
20441         * appdomain.c: hack to build correctly the private bin path on windows.
20442         Fixes bug #61991.
20443
20444 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
20445
20446         * assembly.c: Load mscorlib from the correct framework directory
20447           (mono/<version>/mscorlib.dll).
20448         * appdomain.h: Added prototypes for new functions.
20449         * internals.h: Added some prototypes.
20450         * domain.c: When initializing the runtime, get from the executable and
20451           the configuration files the runtime version that the app supports.
20452           Added support methods for reading app.exe.config. Added list of versions
20453           supported by the JIT. Added two new methods: mono_init_from_assembly,
20454           which initializes the runtime and determines the required version from
20455           the provided exe file, and mono_init_version, which initializes
20456           the runtime using the provided version.
20457         * icall.c: Get machine.config from version-specific directory.
20458         * reflection.c: When generating an image, embed the version number
20459           of the current runtime.
20460
20461 2004-07-28  Dick Porter  <dick@ximian.com>
20462
20463         * socket-io.c
20464         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
20465         returned sockaddr size before creating the remote address object.
20466         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
20467         61608.
20468
20469 2004-07-28  Dick Porter  <dick@ximian.com>
20470
20471         * locales.c (string_invariant_compare_char): Fix invariant char
20472         compares between upper and lower cases.  Fixes bug 61458.
20473
20474 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
20475         
20476         * marshal.c: actually cache stelem.ref wrappers.
20477         
20478 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
20479
20480         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
20481         sections and remove the mono_cli_rva_map () function.
20482
20483 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
20484
20485         * debug-mono-symfile.c: fix one more endianess issue, from a patch
20486         by Geoff Norton (<gnorton@customerdna.com>).
20487
20488 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
20489
20490         * class.c: fix class loads for pointer types (typeof(int) !=
20491         typeof(int*)).
20492
20493 2004-07-27  Martin Baulig  <martin@ximian.com>
20494
20495         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
20496         reading the debugging information from an external ".mdb" file.
20497
20498 2004-07-24  Martin Baulig  <martin@ximian.com>
20499
20500         * reflection.c (mono_image_get_type_info): Only write a class
20501         layout entry if we actually have a size or a packing size.
20502
20503 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
20504
20505         * reflection.c (type_get_fully_qualified_name): 
20506         insert cast to get type checking of ?: with non-gcc compilers
20507
20508 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
20509
20510         * rand.c: use g_getenv for both lookups of
20511         MONO_EGD_SOCKET
20512
20513 2004-07-17  Martin Baulig  <martin@ximian.com>
20514
20515         * reflection.c (mono_reflection_bind_generic_method_parameters):
20516         Set `gmethod->reflection_info'.
20517
20518 2004-07-17  Martin Baulig  <martin@ximian.com>
20519
20520         * class.c (mono_class_create_from_typedef): Insert the newly
20521         created class into the hash table before computing the interfaces
20522         since we could be called recursively.
20523
20524 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
20525
20526         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
20527         function to implement stelem.ref in managed code
20528         * class-internals.h, debug-helpers.c: a new wrapper type
20529         for the above.
20530
20531 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
20532
20533         * gc.c: allow GC handles to work even when no GC is compiled in.
20534         Fix part of bug #61134 (GetAddrOfPinnedObject).
20535
20536 2004-07-13  Peter Williams  <peter@newton.cx>
20537  
20538         * process.c (complete_path): Make sure we don't attempt to execute
20539         directories.
20540  
20541 2004-07-12  Geoff Norton <gnorton@customerdna.com>
20542
20543         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
20544           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
20545           and will add/subtract the hour if needed
20546
20547 2004-07-12  Martin Baulig  <martin@ximian.com>
20548
20549         * reflection.c (mono_field_get_object): If we have
20550         `field->generic_info', take the attributes from
20551         `field->generic_info->generic_type'.    
20552
20553 2004-07-12  Martin Baulig  <martin@ximian.com>
20554
20555         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
20556         This function must be called before initializing the runtime.
20557         (mono_debug_init_1): New function; call this after initializing
20558         the runtime, but before loading the assembly.  It tells the
20559         debugger to load corlib and the builtin types.
20560
20561         * mono-debug-debugger.c: Did some larger changes in the debugging
20562         code; support recursive class declarations, make sure we actually
20563         add all classes.
20564
20565 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20566
20567         * debug-helpers.c: undo my previous patch and fixed the real issue in
20568         ../mini/exceptions-x86.c
20569
20570 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20571
20572         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
20573         when no HOME env. variable was set and a NullRef was thrown in a .cctor
20574         called from other .cctors.
20575
20576 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
20577
20578         * loader.c: Removed the mono_loader_wine_init hack now that we are
20579         doing a managed version of Windows.Forms.
20580
20581 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
20582
20583         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
20584         threadpool.c, threads.c: remove static data from rootset.
20585
20586 2004-07-09  Dick Porter  <dick@ximian.com>
20587
20588         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
20589         Don't do any more processing if the matched length was 0.  It was
20590         increasing the size of the string before.  Fixes bug 61167.
20591
20592 2004-07-09  Dick Porter  <dick@ximian.com>
20593
20594         * socket-io.h:
20595         * socket-io.c
20596         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20597         Add support for SO_PEERCRED if its available.
20598
20599 2004-07-09  Peter Bartok <pbartok@novell.com>
20600         * loader.c: winelib.exe.so error message is now only displayed if
20601         MONO_DEBUG is set. To help us avoid questions when people are trying
20602         out the new Managed.Windows.Forms.
20603
20604 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
20605
20606         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
20607         for isinst and castclass wrappers.
20608
20609         * class-internals.h icall.c: Move registration and lookup of JIT icalls
20610         to libmetadata from the JIT, so they could be used by the marshalling
20611         code and the interpreter.
20612
20613         * marshal.c: Register marshalling related JIT icalls here instead of
20614         in mini.c. Use CEE_MONO_ICALL instead of the family of 
20615         CEE_MONO_PROC<x> opcodes to call marshalling functions.
20616
20617         * metadata.h: Remove unneeded marshalling conversions.
20618
20619         * opcodes.c: Update for new opcodes.
20620         
20621 2004-07-08  Martin Baulig  <martin@ximian.com>
20622
20623         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
20624         (mono_debug_get_domain_data): Make this function static.
20625
20626 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
20627
20628         * gc.c, object.h: add nice GC handle API for embedders.
20629
20630 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
20631
20632         * reflection.c: more changes for the new api
20633
20634         * object.c: When we reflect on a field w/ a constant value, it
20635         will not have a memory location, so we must access metadata. Also,
20636         allow easier reading of strings so that we can read them from
20637         the constant data.
20638
20639         * class.c (mono_class_layout_fields): no need for literal fields here.
20640
20641         * class-internals.h: api changes for const fields
20642
20643         * icall.c (ves_icall_get_enum_info): use new apis for const fields
20644
20645 2004-07-06  Martin Baulig  <martin@ximian.com>
20646
20647         * mono-debug.h: Increment version number to 44.
20648
20649         * mono-debug.c (mono_debug_add_wrapper): The second argument is
20650         now a gpointer, rewrote this whole method.
20651
20652         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
20653         function.  Add information about the wrapper in a new "misc table".
20654
20655         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
20656         for the new misc table.
20657
20658 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
20659
20660         * metadata-internals.h image.c: Add a cache for helper signatures.
20661
20662         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
20663
20664 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
20665
20666         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
20667         delegates from a delegate. Fixes #61033.
20668         
20669         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
20670         marshalling of stringbuilder arrays. Fixes #59900.
20671
20672 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
20673
20674         * icall.c: Add EnumBuilder:setup_enum_type icall.
20675
20676 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
20677
20678         * icall.c: Added a new icall for the property version of
20679         OffsetOfStringData.
20680
20681 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
20682
20683         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
20684         it has a constant size across platforms.
20685
20686         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
20687         stack trace.
20688
20689 2004-06-29  Martin Baulig  <martin@ximian.com>
20690
20691         * mono-debug.c (mono_debug_add_method): Protect the whole function
20692         in mono_debugger_lock(), not just parts of it.
20693
20694 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
20695
20696         * reflection.c: make sure padding bytes in heaps are zeroed.
20697
20698 2004-06-24  David Waite  <mass@akuma.org>
20699
20700         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
20701         image.c, loader.c, locales.c, marshal.c, metadata.c,
20702         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
20703         string-icalls.c, threads.c: change to C90-style comments from C99 /
20704         C++ -style
20705
20706 2004-06-24  Dick Porter  <dick@ximian.com>
20707
20708         * threads.c
20709         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
20710         return createdNew.  Fixes bug 60412.
20711
20712         * threads-types.h: 
20713         * icall.c: Add createdNew parameter to CreateMutex icall
20714
20715 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
20716
20717         * reflection.c, object-internals.h: save default value in params.
20718
20719 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20720
20721         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
20722         no need to build a new path combining that with the application base.
20723         Fixes bug #60442.
20724
20725 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
20726
20727         * reflection.c: fixed minor standard compliance issues.
20728
20729 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
20730
20731         * reflection.c: fixed issue with encoding some custom attributes
20732         (arrays in properties and fields, bug #60411).
20733
20734 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20735
20736         * reflection.c: fix start address when copying the public key token.
20737
20738 2004-06-23  Martin Baulig  <martin@ximian.com>
20739
20740         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
20741         the `exc' object in a static object to put it into the GC's root set.
20742
20743 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
20744
20745         * reflection.c: make mono_reflection_setup_internal_class ()
20746         callable a second time to setup a new parent class.
20747
20748 2004-06-23  Dick Porter  <dick@ximian.com>
20749
20750         * threads.c: Check for WAIT_IO_COMPLETION return values.
20751
20752 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
20753
20754         * appdomain.c: Removed the g_free on the public key token. Now copy 
20755         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
20756         * assembly.c: Added public key token string value when loading 
20757         assemblies. Fix bug #60439.
20758         * icall.c: Added missing informations (like public key) in 
20759         GetReferencedAssemblies. Fix #60519.
20760         * image.h: Changed definition for public key token from const char*
20761         public_tok_value to guchar public_key_token [17];
20762         * reflection.c: Updated for changes to public key token.
20763
20764 2004-06-22  Lluis Sanchez Gual
20765
20766         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
20767         for the field in base classes.
20768
20769 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
20770
20771         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
20772         mark headers as not supported, they are installed only for use by the
20773         debugger.
20774
20775 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
20776
20777         * *.c, *.h: avoid namespace pollution in public headers.
20778
20779 2004-06-21  Martin Baulig  <martin@ximian.com>
20780
20781         * exception.c (mono_get_exception_security): It's in
20782         "System.Security", not in "System".
20783
20784         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
20785         the exception classes.
20786
20787 2004-06-21  Martin Baulig  <martin@ximian.com>
20788
20789         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
20790         Protect the exception object from being finalized.
20791
20792 2004-06-21  Martin Baulig  <martin@ximian.com>
20793
20794         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
20795         public function.
20796
20797 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
20798
20799         * reflection.c: Load the assembly in mono_reflection_type_from_name,
20800         if it was not loaded before. Fix parts of #60439.
20801
20802 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
20803
20804         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
20805         code that was broken since Ben's change: wrappers are now
20806         dependent on the method signature only again.
20807
20808 2004-06-21  Martin Baulig  <martin@ximian.com>
20809
20810         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
20811         added interface support.
20812
20813 2004-06-21  Martin Baulig  <martin@ximian.com>
20814
20815         * class.c (mono_vtable_get_static_field_data): New public method.
20816
20817 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
20818
20819         * filewatcher.c : Windows build fix to be compliant with API changes.
20820
20821 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
20822
20823         * class.h, class.c: more accessors.
20824         * metadata.h, metadata.c: prepare for hiding MonoType and
20825         MonoMethodSignature: people should use the accessors from now on
20826         outside of the tree.
20827
20828 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
20829
20830         * *.c, *.h: more API cleanups.
20831
20832 2004-06-18  Jackson Harper  <jackson@ximian.com>
20833
20834         * assembly.c: Trace loading assemblies.
20835         * loader.c: Trace loading native libraries.
20836         * mono-config.c: Trace loading config files.
20837         
20838 2004-06-18  Dick Porter  <dick@ximian.com>
20839
20840         * locales.c: Tell ICU the lengths of strings, it can cope with
20841         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
20842
20843 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
20844
20845         * image.c: swapped name/filename;
20846
20847 2004-06-18  Martin Baulig  <martin@ximian.com>
20848
20849         * mono-debug-debugger.c (write_class): Write the parent class at
20850         the end of the header.
20851
20852 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
20853
20854         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
20855
20856 2004-06-17  Raja R Harinath  <rharinath@novell.com>
20857
20858         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
20859         (bundle_obj): New conditional define.
20860         (BUILT_SOURCES): Remove.
20861         ($(bundle_srcs)): Make parallel-make safe.
20862         (libmonoruntime_la_LIBADD): Make unconditional.
20863         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
20864         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
20865
20866 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
20867
20868         * culture-info-tables.h: It was inconsistent with the latest
20869           supp info files.
20870
20871 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
20872
20873         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
20874         be loaded.
20875
20876         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
20877         with gcc 2.95.
20878
20879 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
20880
20881         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
20882         cleaned up public header threads.h.
20883
20884 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
20885
20886         * Makefile.am, *.c, *.h: more API cleanups.
20887
20888 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
20889
20890         * Makefile.am: removed monosn from compilation.
20891         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
20892         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
20893         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
20894         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
20895         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
20896         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
20897
20898 2004-06-15  Jackson Harper  <jackson@ximian.com>
20899
20900         * assembly.c: Make locales lower case when searching the GAC for
20901         assemblies. gacutil will always make locales lowercase when
20902         installing so this effectively makes them case insensitive.
20903         
20904 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
20905
20906         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
20907         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
20908           parameter which allows to choose whether the wait can be interrupted or 
20909           not. Also added the method mono_monitor_enter(), which locks the monitor
20910           using an infinite wait and without allowing interruption.
20911           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
20912           interrupted.
20913         * object.h: Added new fields in MonoThread. suspend_event holds the event
20914           used to susped/resume the thread. synch_lock is the lock object to use for
20915           modifying the thread state.
20916         * threads.c: Use the new synch_lock object for locking, instead of "this",
20917           which can generate deadlocks.
20918           Moved thread state change in Thread.Sleep and Thread.Join from managed
20919           to unmanaged code. This avoids a deadlock when the thread was suspended
20920           just after acquiring the thread lock.
20921           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
20922           Implemented Thread.Suspend using an event instead of ThreadSuspend,
20923           which is not fully implemented in the io-layer.
20924         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
20925
20926 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
20927
20928         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
20929         threads-types.h: more API cleanups.
20930
20931 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
20932
20933         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
20934         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
20935         threadpool.c, threads.c: first pass at the exported API cleanup.
20936
20937 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
20938
20939         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
20940
20941 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20942
20943         * icall.c: added internalGetHome.
20944
20945 2004-06-14  Dick Porter  <dick@ximian.com>
20946
20947         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
20948         possible to return successfully when '.' or '..' were the only
20949         entries in a directory, but were skipped.  The MonoIOStat was not
20950         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
20951         Fixes bug 59574.
20952
20953 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
20954
20955         * reflection.c: make binaries run on .Net 1.1 by default.
20956
20957 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
20958
20959         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
20960
20961 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
20962
20963         * marshal.c: keep track of struct size with explicit layout
20964         (bug #59979).
20965
20966 2004-06-12  Martin Baulig  <martin@ximian.com>
20967
20968         * mono-debug-debugger.c: Comment out a debugging g_message().
20969
20970 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
20971
20972         * reflection.c, reflection.h: do not free custom attrs that are cached.
20973         * icall.c: use braces to make code clearer.
20974
20975 2004-06-11  Martin Baulig  <martin@ximian.com>
20976
20977         * class.h (MonoInflatedField): New type.
20978         (MonoClassField): Replaced `MonoType *generic_type' with
20979         `MonoInflatedField *generic_info'.
20980
20981         * icall.c
20982         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
20983
20984 2004-06-11  Martin Baulig  <martin@ximian.com>
20985
20986         * reflection.c (mono_image_create_method_token): Correctly encode
20987         varargs methods.
20988
20989 2004-06-11  Martin Baulig  <martin@ximian.com>
20990
20991         * metadata.c (mono_metadata_parse_method_signature): When parsing
20992         a MethodDef which has VarArgs, also set sentinelpos if we don't
20993         have any parameters.
20994
20995 2004-06-11  Martin Baulig  <martin@ximian.com>
20996
20997         * verify.c (mono_method_verify): In CEE_CALL, use
20998         mono_method_get_signature() to get the method's signature, unless
20999         we're a PInvoke method.
21000
21001 2004-06-10  Jackson Harper  <jackson@ximian.com>
21002
21003         * assembly.c: Use <path>/lib/mono/gac for the extra paths
21004         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
21005         logical name as the supplied path is just a prefix to the gac not
21006         the direct path to it.
21007         
21008 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
21009
21010         * reflection.c: make the token for a created method match
21011         the token of the MethodBuilder it was created from
21012         (IKVM requires this behaviour now).
21013
21014 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
21015
21016         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
21017         reflection.c, socket-io.c: leak fixes.
21018
21019 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
21020
21021         * icall.c: handle sentinel pos in vararg methods in position different
21022         from 0.
21023
21024 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21025
21026         * culture-info-tables.h: freshly generated.
21027
21028 2004-06-09  Martin Baulig  <martin@ximian.com>
21029
21030         * loader.c (mono_get_method_constrained): Call `mono_class_init
21031         (constrained_class)'.   
21032
21033 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
21034
21035         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
21036         any methods. Fixes #59629.
21037
21038 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21039
21040         * culture-info-tables.h: reflecting locale-builder updates.
21041
21042 2004-06-08  Dick Porter  <dick@ximian.com>
21043
21044         * object.h:
21045         * locales.c: Fixed compile warnings, including a real bug in
21046         CompareInfo_internal_compare.
21047         
21048 2004-06-08  Dick Porter  <dick@ximian.com>
21049
21050         * locales.c
21051         (ves_icall_System_Globalization_CompareInfo_internal_index):
21052         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
21053         Double-check the resuls of usearches, because ICU currently
21054         ignores most of the collator settings here.  Fixes bug 59720.
21055         
21056 2004-06-08  Dick Porter  <dick@ximian.com>
21057
21058         * locales.c
21059         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
21060         Fix memory leak and segfault-causing typo.  No idea how this one
21061         lasted so long without being noticed.
21062
21063 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
21064
21065         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
21066         any methods. Fixes #59629.
21067
21068 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21069
21070         * assembly.c:
21071         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
21072         own the critical section before). Removed dead code (that's done
21073         in the preload hook).
21074
21075         (mono_assembly_load_with_partial_name): call the preload hook.
21076
21077 2004-06-08  Martin Baulig  <martin@ximian.com>
21078
21079         * metadata.c (mono_metadata_signature_alloc): Default
21080         `sentinelpos' to -1.
21081
21082         * reflection.c (mono_image_get_array_token): Likewise.
21083
21084 2004-06-08  Martin Baulig  <martin@ximian.com>
21085
21086         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
21087
21088         * metadata.c (mono_metadata_parse_method_signature): When parsing
21089         a MethodDef which has VarArgs, set sentinelpos.
21090
21091         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
21092         `gint16' since we're using -1 for non-varargs methods.
21093
21094         * reflection.c
21095         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
21096         (method_encode_signature): Added varargs support.
21097         (method_builder_encode_signature): Likewise.
21098         (mono_image_get_varargs_method_token): New static method.
21099         (mono_image_create_method_token): New public method; this is
21100         called via an icall instead of mono_image_create_token() when
21101         calling a varargs method.       
21102
21103 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
21104
21105         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
21106
21107 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21108
21109         * culture-info-tables.h : Reflecting the latest locale-builder that
21110           fixed empty array representation ({} to {0}).
21111
21112 2004-06-07  Jackson Harper  <jackson@ximian.com>
21113
21114         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
21115         looking up extra gac paths. This allows MONO_GAC_PATH to act
21116         exactly like a prefix.
21117         
21118 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
21119
21120         * reflection.c (mono_reflection_type_from_name): Make a copy of the
21121         type name before modifying it. Fixes #59405.
21122
21123 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21124
21125         * culture-info.h: added fields for "all datetime patterns".
21126         * locales.c: (  ves_icall_System_Globalization_CultureInfo
21127           _construct_datetime_format ()): fill xxx_patterns fields.
21128         * object.h: added fields for "all datetime patterns" to
21129           MonoDateTimeFormatInfo.
21130         * culture-info-tables.h: reflecting locale-builder updates.
21131
21132 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
21133
21134         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
21135         the event has no add and remove methods. Fixes #59629.
21136
21137 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
21138
21139         * object.c: Fixed possible integer overflow when allocating large
21140         strings.
21141
21142 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
21143
21144         * culture-info-tables.h: reflecting locale-builder updates.
21145
21146 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
21147
21148         * culture-info-tables.h: reflecting locale-builder updates.
21149
21150 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
21151
21152         * culture-info-tables.h: reflecting locale-builder updates.
21153
21154 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
21155
21156         * threads.c: Made Thread.Sleep abortable.
21157
21158 2004-06-02  Martin Baulig  <martin@ximian.com>
21159
21160         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
21161
21162         * debug-mono-symfile.h: Bumped symbol file version number to 37.
21163
21164 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
21165
21166         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
21167
21168 2004-05-30  Jackson Harper  <jackson@ximian.com>
21169
21170         * reflection.c: Do not hardcode assembly versions or public key
21171         tokens anymore. All of this except the corlib section was dead
21172         code anyways.
21173         
21174 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
21175
21176         * object.c (mono_runtime_invoke_array): Automatically create boxed
21177         objects for byref valuetypes if needed. Fixes #59300.
21178         
21179         * object.c (mono_method_return_message_restore): Handle 
21180         MONO_TYPE_OBJECT as well.
21181
21182 2004-05-28  Jackson Harper  <jackson@ximian.com>
21183
21184         * reflection.c: The modified type encoding was causing build
21185         problems. Reverted for now.
21186         
21187 2004-05-28  Jackson Harper  <jackson@ximian.com>
21188
21189         * reflection.c/h: Take an assembly ref so that we dont create
21190         fully qualified names when encoding types in the same assembly as
21191         the custom attribute being emitted.
21192         * appdomain.c: Increment version number.
21193         
21194 2004-05-26  Duncan Mak  <duncan@ximian.com>
21195
21196         * icall.c
21197         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
21198         Set the full version number (major, minor, build, revision).
21199
21200 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
21201
21202         * marshal.c (emit_struct_conv): increment src/dst after blit
21203         (mono_marshal_get_managed_wrapper,
21204         mono_marshal_get_native_wrapper): make sure we have marshalling
21205         info before marshalling params (info computation affects
21206         blittable)
21207
21208         * class.c (class_compute_field_layout): correctly deal with
21209         blittable
21210         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
21211         value types (as per what windows dows by default)
21212         (mono_class_setup_mono_type): System.ValueType is blittable
21213         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
21214         blittable
21215
21216         * marshal.c (mono_marshal_load_type_info): flag types  as
21217         non-blittable if the native layout doesn't match the managed
21218         layout
21219
21220 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21221
21222         * appdomain.c: don't add stuff in the private search path that is
21223         above the application base. If application base is not set, there's
21224         no private search path.
21225
21226 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
21227
21228         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
21229         byref struct arguments in native->managed marshalling.
21230
21231 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
21232
21233         * marshal.c (mono_marshal_get_runtime_invoke): correctly
21234         cache methods using signature (special case for methods
21235         that are value type or string class)
21236         
21237         * image.c (mono_image_close): clean up allocated GSList's
21238         in runtime_invoke_cache.
21239
21240 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21241
21242         * mono-config.c: set the correct path for mono_cfg_dir on windows when
21243         there's no MONO_CFG_DIR environment variable defined.
21244
21245 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21246
21247         * threads.c: windows version must be >= 0x0500 to include OpenThread.
21248
21249 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
21250
21251         * threadpool.c: Really wait for 500ms after the async call, even if the wait
21252           is interrumped.
21253         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
21254           before waiting for it, and call CloseHandle after the wait to unref it.
21255           This will make sure that handles are not disposed too early.
21256
21257 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21258
21259         * appdomain.c:
21260         * appdomain.h:
21261         * icall.c: removed
21262         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
21263         needed now.
21264
21265         * object.c: se the application_base only for the domain that runs
21266         Main. Fixes bug #59216,
21267
21268 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21269
21270         * appdomain.c:
21271         * object.c: only the domain in which Main is run have
21272         SetupInformation.ConfigurationFile set, so moved a few lines from
21273         appdomain.c to object.c.
21274
21275 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21276
21277         * appdomain.c: we tried to load [name].(dll|exe), but according
21278         to bug #57710, we must also try [culture]/[name].(dll|exe) and
21279         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
21280         There's a test case attached to bug #58922.
21281
21282 2004-05-27  Dick Porter  <dick@ximian.com>
21283
21284         * icall.c:
21285         * file-io.c: Implemented icalls for locking and unlocking regions
21286         in a file.
21287         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
21288         FALSE on error (fixes both compiler warning and real bug.)
21289
21290 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
21291
21292         * culture-info-tables.h: reflecting locale-builder updates.
21293
21294           (Added missing ChangeLog entry for 05/26)
21295
21296 2004-05-27  Jackson Harper  <jackson@ximian.com>
21297
21298         * locales.c: Fix some cut and paste errors.
21299         
21300 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21301
21302         * mono-config.c: set the correct path for config. directory on windows.
21303
21304 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21305
21306         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
21307           on win32.
21308
21309 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
21310
21311         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
21312         from pinvoke functions.
21313         
21314         * marshal.c (mono_ftnptr_to_delegate): Implement this.
21315
21316 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21317
21318         * culture-info-tables.h: reflecting locale-builder updates.
21319
21320 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
21321
21322         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
21323         #59086.
21324
21325 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
21326
21327         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
21328         * icall.c: Modified icalls for RNG.
21329         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
21330         Windows (CryptoAPI).
21331
21332 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
21333
21334         * locales.c: Fix build.
21335
21336 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
21337
21338         * culture-info-tables.h: reflecting locale-builder updates.
21339
21340 2004-05-25  Jackson Harper  <jackson@ximian.com>
21341
21342         * locales.c: When creating the current culture use the $LANGs
21343         specific culture. So DateTimeFormat and NumberFormat entries are created.
21344         
21345 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
21346
21347         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
21348         a char array as parameter.
21349
21350 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
21351
21352         * image.c: In mono_image_open(), always use an absolute path name to
21353           look for already loaded images.
21354
21355 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
21356
21357         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
21358         missing in the windows build (like older cygwin include files).
21359
21360 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
21361
21362         * icall.c: Fixed check for possible integer overflow in Buffer_
21363         BlockCopy icall. Replaced comments style // by /* */.
21364
21365 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
21366
21367         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
21368         
21369         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
21370         check after MONO_VTADDR. Fixes pinvoke2.exe.
21371
21372         * marshal.h marshal.c metadata.h: Add beginnings of support for
21373         ftnptr -> delegate marshalling.
21374
21375 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
21376
21377         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
21378         * threads.c: Fix warnings.
21379
21380 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
21381
21382         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
21383         * icall.c: Registered icalls for Suspend and Resume.
21384         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
21385           Thread.Abort.
21386         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
21387         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
21388         * process.c: Use WaitForSingleObjectEx.
21389         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
21390           checkpoints.
21391         * threads.c, threads.h: Make use of new Ex wait methods. Improved
21392           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
21393           for Suspend and Resume. Added new mono_thread_stop, used for stoping
21394           background threads. Added basic support for Abort in Windows.
21395           Start new threads using a managed delegate invoke wrapper. This wrapper
21396           has an interruption checkpoint that is needed since an interruption
21397           can be requested before the thread leaves the unmanaged code that starts 
21398           the thread.
21399         * marshal.c: Added interruption checkpoint after every native call, and
21400           also before managed calls for wrappers called from unmanaged code to
21401           go into managed code.
21402         * object.h: Added new field in MonoThread to keep track of interruption
21403           requests.
21404
21405 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
21406
21407         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
21408         calls.
21409
21410 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21411
21412         * appdomain.c:
21413         * assembly.c:
21414         * gc.c:
21415         * locales.c:
21416         * mono-config.c:
21417         * rand.c: getenv -> g_getenv (windows!)
21418
21419         * process.c: complete_path is also used on non-windows platforms.
21420
21421 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21422
21423         * icall.c: new signature for Process_Start.
21424
21425         * process.[ch]: new signature for Process_Start. If we're on windows
21426         and UseShellExecute is false, we have to search for the program by
21427         ourselves if we don't get a full path.
21428
21429 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
21430
21431         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
21432         marshalling and call CleanUpNativeData if needed. Fixes #58646.
21433
21434 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21435
21436         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
21437         Fixes bug #58373.
21438
21439 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21440
21441         * process.c: use double quotes to quote program name and arguments on
21442         windows. Fixes bug #58575.
21443
21444 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21445
21446         * file-io.c: don't return "." and ".." when using windows Find*File.
21447
21448 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
21449
21450         * marshal.c: Don't pass wrappers to message init because method 
21451         addressed used to lookup metadata. part of remoting[2|3] fix.
21452
21453 2004-05-15  Jackson Harper  <jackson@ximian.com>
21454
21455         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
21456         path is essentially the same as MONO_PATH except that it points to
21457         GACs instead of lib directories.
21458         * loader.h: The user gac is gone so we dont need function to
21459         enable/disable it.
21460         * mono-config.c: user gac option is now gone.
21461         
21462 2004-05-15  Jackson Harper  <jackson@ximian.com>
21463
21464         * culture-info.h: Make defines more consistent, add calendar data
21465         to the culture info table.
21466         * culture-info-tables.h: Add basic calendar data. Basically
21467         everyone gets default gregorian until all the data is
21468         updated.
21469         * locales.c: Use the new consistent defines. Set calendar data for
21470         culture info objects.
21471         * object.h: add a field for calendar data to CultureInfo
21472         
21473 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
21474
21475         * image.c: image->runtime_invoke_cache is keyed on signatures now.
21476         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
21477         a signature.
21478         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
21479         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
21480         an extra param that is the pointer of the method to invoke. The IL for
21481         the invoke method is no longer specific to the method, but to the
21482         signature of the method. Thus, we can share the same code for multiple
21483         methods. This reduces the number of methods that have to be compiled.
21484
21485 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
21486
21487         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
21488
21489         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21490
21491         * icall.c: Optimize Buffer.BlockCopy.
21492
21493 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21494
21495         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
21496         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
21497         quote). Changed them to "MMMM yyyy".
21498
21499 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
21500
21501         * rand.c
21502         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
21503
21504 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
21505
21506         * reflection.h: Updated after changes to managed structures.
21507
21508         * appdomain.c: Bump corlib version.
21509
21510 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21511
21512         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
21513         windows.
21514
21515 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21516
21517         * Makefile.am: link to ../os/libmonoos.la on windows.
21518
21519         * assembly.c:
21520                 -If MONO_DEBUG, warn about non-existing directories in
21521                 MONO_PATH.
21522                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
21523                 compile time variable.
21524                 -Removed init_default_path and call mono_set_rootdir from
21525                 libmonoos.a instead (windows only).
21526
21527         * assembly.h: declare mono_assembly_getrootdir().
21528
21529         * domain.c:
21530         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
21531
21532         * loader.c: s/getenv/g_getenv/
21533
21534 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
21535
21536         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
21537
21538         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
21539
21540         * metadata.h: Add new marshalling conversions.
21541
21542         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
21543         function.
21544
21545         * reflection.c (mono_reflection_get_type): Lookup the type in all
21546         modules of a multi-module assembly. Fixes #58291.
21547
21548 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
21549
21550         * threads.c: Before aborting a background, set the StopRequested
21551         state.  This avoids throwing the Abort exception.
21552         In mono_thread_manage, don't continue with the shutdown until all
21553         aborted threads have actually stopped.
21554
21555 2004-05-10  Jackson Harper  <jackson@ximian.com>
21556
21557         * locales.c: Remove the modifier from culture names.
21558         
21559 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21560
21561         * Makefile.am: monosn is not installed any more. It has been deprecated
21562         in favor of sn.
21563
21564 2004-05-07  Jackson Harper  <jackson@ximian.com>
21565
21566         * locales.c
21567         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
21568         Fix array construction, add bailout if the length is 0.
21569
21570 2004-05-07  Dick Porter  <dick@ximian.com>
21571
21572         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
21573         machine doesn't have a DNS entry.  Patch by Urs Muff
21574         (umuff@quark.com), fixes bug 57928.
21575
21576 2004-05-06  Jackson Harper  <jackson@ximian.com>
21577
21578         * reflection.c: Handle null PublicTokens properly. alloc mem for
21579         assembly names culture so we dont crash when freeing it.
21580         
21581 2004-05-06  Jackson Harper  <jackson@ximian.com>
21582
21583         * assembly.c: Check the usergac when loading with partial names.
21584         
21585 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
21586
21587         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
21588         does nothing for now (not required for Linux/Windows) but the class
21589         library can call it (and a newer or modified runtime could need it).
21590         * icall.c: Registred icall.
21591
21592 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21593
21594         * loader.c: prints a message on module loading error we set MONO_DEBUG
21595         environment variable.
21596
21597 2004-05-05  Jackson Harper  <jackson@ximian.com>
21598
21599         * appdomain.c: Handle PublicKeyToken=null properly.
21600         
21601 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
21602
21603         * environment.c|h: Added icall ves_icall_System_Environment_
21604         GetOSVersionString to get the current OS version as a string.
21605         * icall.c: Registred icall.
21606
21607 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
21608
21609         * object.c: in mono_object_get_virtual_method(), take into account that
21610         non-virtual methods don't have a slot in the vtable. Check needed when
21611         the object is a proxy.
21612
21613 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
21614
21615         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
21616         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
21617
21618         * object.c (mono_class_compute_gc_descriptor): Fix warning.
21619
21620         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
21621         passed when a valuetype is expected.
21622
21623         * object.c (mono_unhandled_exception): Only set the exit code if the
21624         exception happens in the main thread. Fixes thread5.exe.
21625
21626         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
21627         invalid names. Fixes #58047.
21628
21629 2004-05-03  Jackson Harper  <jackson@ximian.com>
21630
21631         * assembly.c: This line was committed accidently and is unneeded.
21632         
21633 2004-05-03  Jackson Harper  <jackson@ximian.com>
21634
21635         * icall.c: Add new icall for Assembly::LoadWithPartialName
21636         * assembly.c/.h: new function that probes the GAC to load partial
21637         assembly names by Paolo Molaro.
21638         
21639 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21640
21641         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
21642         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
21643         (type_get_fully_qualified_name): Added PublicKeyToken when building a
21644         full type name.
21645
21646 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21647
21648         * appdomain.c: fixed check for 'neutral' culture and removed warning.
21649         * reflection.c: fix bug when parsing a full type name and Version is not
21650         the last thing in the string.
21651
21652 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
21653
21654         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
21655         crashes when it is freed.
21656
21657 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21658
21659         * assembly.c: print the compat warning to stderr.
21660
21661 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
21662
21663         * assembly.c (mono_assembly_load_references): Add a compatibility
21664         hack to run old applications that might be still referencing the
21665         3300-based assemblies, only do this for System.xxx.
21666
21667 2004-05-01  Jackson Harper  <jackson@ximian.com>
21668
21669         * appdomain.c: If the culture is neutral we set it to "".
21670         
21671 2004-04-29  Jackson Harper  <jackson@ximian.com>
21672
21673         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
21674
21675 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
21676  
21677         * string-icalls.c: added low overhead function for copying chars
21678         * icall.c: added needed icall for the above function
21679  
21680 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21681
21682         * icall.c: fix return value of get_global_assembly_cache.  Implemented
21683         Environment.GetLogicalDrives.
21684
21685 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
21686
21687         * rand.c: try and talk to egd or prngd
21688         for random bytes if opening devices fail.
21689
21690 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
21691
21692         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
21693         alignment for the type using the native alignment of its members 
21694         instead of using klass->min_align.
21695
21696         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
21697
21698 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21699
21700         * file-io.c:
21701         * socket-io.c: added check for sys/aio.h.
21702
21703 2004-04-28  Dick Porter  <dick@ximian.com>
21704
21705         * threads.c: Don't abort a thread thats already aborting, when
21706         terminating everything.
21707
21708 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21709
21710         * icall.c: added 2 new async calls for Socket.
21711
21712         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
21713         IO on *nix systems.
21714
21715         * threadpool.c: removed unused variable.
21716
21717 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
21718
21719         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
21720
21721 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
21722
21723         * locales.c: put back string_invariant_tolower () and
21724         string_invariant_toupper ().
21725
21726 2004-04-26 David Waite <mass@akuma.org>
21727
21728         * file-io.h:
21729         * socket-io.h:
21730         * threads.h:
21731         * unicode.h: remove comma from end of enumeration declarations
21732
21733 2004-04-26 David Waite <mass@akuma.org>
21734
21735         * debug-mono-symfile.h:
21736         * decimal.c:
21737         * mono_debug.h:
21738         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
21739
21740
21741 2004-04-26  Jackson Harper  <jackson@ximian.com>
21742
21743         * appdomain.c: Increment version number.
21744         
21745 2004-04-26  Jackson Harper  <jackson@ximian.com>
21746
21747         * appdomain.c: Set assembly references public token value when
21748         PublicKeyToken is specified, not the hash_value. Free public token
21749         values when free assembly name data. Previously the public key
21750         token was hex decoded, however we are using hex encoded public key
21751         tokens, so this is not neccasary.
21752         * assembly.c: Lookup assemblies in the gac if their public token
21753         value is set. Add function to allow enabling user gac
21754         lookups. Specify whether or not the assembly was loaded from the
21755         GAC. Compare full assembly names when checking the cache for
21756         assemblies (Temporarily disabled see comment in code). Remove
21757         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
21758         specifies trace-loader they get extra info to stdout on the
21759         loading of assemblies.
21760         * image.h: Add a field for an assembly references public token
21761         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
21762         whether an assembly has been loaded from the GAC.
21763         * image.c: Remove a corlib -> mscorlib name mapping.
21764         * loader.h: Add function to enable/disable the user gac.
21765         * mono-config.c: Check if the usergac is enabled in the config
21766         file.
21767         * icall.c: New icall to determine whether or not an assembly has
21768         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
21769         * tabldefs.h: Add constant for assemblyref flag that specifies a
21770         full public key is used instead of a public token.
21771         * reflection.c: Remove mscorlib -> corlib mappings. Set
21772         PublicTokenValue instead of hash value. This value is a hex
21773         string so it does not need to be expanded.
21774
21775 2004-04-26  Martin Baulig  <martin@ximian.com>
21776
21777         * mono-debug-debugger.c (mono_debugger_initialize): Set
21778         `mono_debugger_initialized' before calling mono_debug_lock().
21779
21780 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
21781
21782         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
21783           InternalToUpper/InternalToLower.
21784         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
21785           removed invariant culture shortcut.  This is now done in managed code.
21786         * locales.c: (string_invariant_toupper/tolower) removed.
21787
21788 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21789
21790         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
21791         Added Poll internal call.
21792
21793         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
21794         call for Poll. Select was too heavy for polling a single socket.
21795
21796         * threadpool.[ch]: added mono_threadpool_cleanup.
21797         * threads.c: use it. Don't use Thread_Abort on windows.
21798
21799 2004-04-23  Martin Baulig  <martin@ximian.com>
21800
21801         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
21802
21803 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
21804
21805         * icall.c: Registred new icalls for key pair protection and added an
21806         icall for Environment.GetFolderPath on Windows.
21807         * security.c|h: Added new icalls for key pair protection.
21808
21809 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21810
21811         * socket-io.c: don't display the non-supported family warning for known
21812         families. Now this is not displayed on windows when checking support
21813         for IPv4/IPv6.
21814
21815 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21816
21817         * class.c: don't display the layout warning for static fields.
21818
21819 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
21820
21821         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
21822         * locales.c, locales.h: Added new icalls for culture-specific
21823         Char.ToLower and Char.ToUpper.
21824
21825 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21826
21827         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
21828         by David Waite.
21829
21830 2004-04-20  Martin Baulig  <martin@ximian.com>
21831
21832         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
21833         of the type name before passing it to mono_reflection_type_from_name().
21834
21835 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
21836
21837         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
21838         encodings here. Fixes #56965.
21839
21840 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
21841
21842         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
21843         fix test on strstr result not that I can see anything that
21844         relies on the result.
21845
21846 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
21847
21848         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
21849         Fixes #57081.
21850
21851         * marshal.c (mono_marshal_get_string_encoding): New helper function.
21852
21853         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
21854         function to determine which marshalling to use for strings. Fixes
21855         #56965.
21856
21857         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
21858
21859         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
21860
21861 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
21862
21863         * icall.c: #include mono-config.h
21864
21865 2004-04-15  Jackson Harper  <jackson@ximian.com>
21866
21867         * culture-info-tables.h: Fix date formats for en-US culture.
21868         
21869 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
21870
21871         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
21872         ThreadPool.SetMinThreads.
21873         * threadpool.c: Implemented ThreadPool.GetMinThreads and
21874         ThreadPool.SetMinThreads.
21875
21876 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
21877
21878         * mono-config.c: also load the .config file in the directory
21879         where the assembly was found.
21880
21881 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
21882
21883         * assembly.c: load per-assembly config files.
21884         * icall.c: decrapified code to get the config dir and moved to
21885         mono-config.c.
21886         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
21887         per-assembly config files. When doing a dll map lookup give precedence
21888         to the per-assembly data.
21889
21890 2004-04-14  Martin Baulig  <martin@ximian.com>
21891
21892         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
21893         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
21894         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
21895
21896         * mono-debugger-debugger.c: While the debugger is locked, remember
21897         whether the symbol tables have changes and send one single
21898         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
21899
21900 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
21901
21902         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
21903
21904         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
21905         function.
21906
21907         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
21908         account when marshalling string arrays. Fixes #56965.
21909
21910 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
21911
21912         * icall.c: Add new icalls mapping for security.
21913         * security.c|h: Add internal calls for WindowsIdentity,
21914         WindowsImpersonationContext and WindowsPrincipal.
21915
21916 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
21917
21918         * class.c: Added comment to ensure the System.MonoDummy class
21919         is removed when no longer necessary
21920
21921 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
21922
21923         * appdomain.c: Pass arguments to the bootstraping exceptions to
21924         minimize JITed methods at boot
21925
21926         * metadata.c (mono_exception_from_name_two_strings): Allow for the
21927         second string to be null.
21928
21929         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
21930         Change the protocol to minimize the JIT methods at startup.  Now
21931         it Returns the internal codepage, if the value of "int_code_page"
21932         is 1 at entry, and we can not compute a suitable code page
21933         number, returns the code page as a string.
21934
21935 2004-04-13  Jackson Harper  <jackson@ximian.com>
21936
21937         * culture-info-tables.h: Fix number of decimal digits for all
21938         english locales.
21939
21940 2004-04-13  Jackson Harper  <jackson@ximian.com>
21941
21942         * icall.c: Clairfy out of sync error message. It is not always
21943         your corlib that is out of sync.
21944
21945 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
21946
21947         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
21948         properties when only the set accessor is overriden. Fixes #55874.
21949
21950 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
21951
21952         * assembly.c (mono_assembly_load_references): Make this thread safe.
21953         Fixes #56327.
21954
21955 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
21956
21957         * monosn.c: Add missing initialization calls.
21958
21959 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
21960
21961         * locales.c:
21962         ves_icall_System_Globalization_CultureInfo_construct_number_format
21963         Fix g_assert so it compiles on fussier compilers re int/ptr
21964         mismatch
21965
21966 2004-04-08  Dick Porter  <dick@ximian.com>
21967
21968         * socket-io.h:
21969         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
21970         53992.  Also rearrange the code so that the internal calls return
21971         an error value and exceptions are thrown from managed code.
21972
21973         * icall.c: Add type info to the socket icalls.
21974
21975 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21976
21977         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
21978         owes me a beer.
21979
21980 2004-04-07  Martin Baulig  <martin@ximian.com>
21981
21982         * class.c (mono_class_from_generic_parameter): Don't default
21983         `klass->parent' to `mono_defaults.object_type'.
21984
21985 2004-04-07  Martin Baulig  <martin@ximian.com>
21986
21987         * reflection.c (mono_reflection_initialize_generic_parameter): Set
21988         `param->pklass->reflection_info'.       
21989
21990 2004-04-07  Jackson Harper  <jackson@ximian.com>
21991
21992         * culture-info-tables.h: Fix date separator symbol.
21993         
21994 2004-04-07  Martin Baulig  <martin@ximian.com>
21995
21996         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
21997         from System.Type to System.MonoType.
21998
21999 2004-04-07  Martin Baulig  <martin@ximian.com>
22000
22001         * reflection.h
22002         (MonoReflectionGenericParam): Added `has_reference_type' and
22003         `has_value_type' fields.
22004
22005         * reflection.c (mono_image_get_generic_param_info): Encode the
22006         correct flags if we have the `class' or `struct' constraint.
22007
22008 2004-04-07  Martin Baulig  <martin@ximian.com>
22009
22010         * reflection.h
22011         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
22012
22013 2004-04-07  Jackson Harper  <jackson@ximian.com>
22014
22015         * appdomain.c: Revert extra patches, just wanted to bump the
22016         version number.
22017         
22018 2004-04-07  Jackson Harper  <jackson@ximian.com>
22019
22020         * Makefile.am: Add culture-info private headers.
22021         * icall.c: Add new icalls for contructing locales.
22022         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
22023         * locales.h: Declare new culture info construction methods.
22024         * object.h: Add new fields used to avoid the CultureMap to
22025         MonoCultureInfo.
22026         * culture-info.h: Definition of structs used in the culture info
22027         tables.
22028         * culture-info-tables.h: Autogenerated tables that contain culture
22029         info data. This file was generated with the locale-builder tool.
22030         * appdomain.c: Incement corlib version number.
22031         
22032 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
22033
22034         * appdomain.c: (mono_runtime_init) move mono_thread_init
22035         to before mono_object_new calls so critical sections
22036         are initialized before use.
22037
22038 2004-04-07  Martin Baulig  <martin@ximian.com>
22039
22040         * icall.c
22041         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
22042         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
22043         (ves_icall_MonoGenericParam_initialize): Removed.
22044         (monogenericparam_icalls): Removed.
22045         (generictypeparambuilder_icalls): Added new table for
22046         System.Reflection.Emit.GenericTypeParameterBuilder.
22047
22048         * reflection.c
22049         (mono_reflection_define_generic_parameter): Removed.
22050         (mono_reflection_initialize_generic_parameter): This is now called
22051         from GenericTypeParameterBuilder's .ctor.
22052
22053 2004-04-06  Martin Baulig  <martin@ximian.com>
22054
22055         * class.c (mono_class_init): Don't inflate nested classes in a
22056         generic instance.
22057         (mono_type_get_name_recurse): Include the generic arguments for
22058         generic instances and generic type declarations.
22059         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
22060         (_mono_class_get_instantiation_name): Removed.
22061         (mono_class_create_generic): Always use `gklass->name' as our name.
22062
22063         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
22064
22065         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
22066         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
22067         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
22068         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
22069         closed generic methods here.
22070
22071         * reflection.c
22072         (mono_reflection_generic_inst_get_nested_types): Removed.
22073         (inflate_mono_method): Copy the generic parameters from the
22074         MonoMethodHeader into out MonoGenericMethod.
22075
22076 2004-04-06  Martin Baulig  <martin@ximian.com>
22077
22078         * row-indexes.h
22079         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
22080
22081         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
22082
22083         * reflection.c (build_compressed_metadata): If we have any entries
22084         in the GenericParam, MethodSpec or GenericParamConstraint tables,
22085         set the header version to 1.1.
22086
22087 2004-04-06  Martin Baulig  <martin@ximian.com>
22088
22089         * class.c (mono_class_init): If we're a generic instance,
22090         initialize our nested classes, too.
22091         (_mono_class_get_instantiation_name): Deal with the new `!%d'
22092         suffix. 
22093
22094 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22095
22096         * process.c: quote the argument passed to the shell on windows.
22097
22098 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
22099
22100         * threads.c (mono_alloc_special_static_data): Allow this to be
22101         called during startup.
22102
22103 2004-04-02  Martin Baulig  <martin@ximian.com>
22104
22105         * icall.c
22106         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
22107
22108 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
22109
22110         * icall.c: Fix build.
22111
22112 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
22113
22114         * Makefile.am: Added security.c|h.
22115         * icall.c: Added icall for get_UserName;
22116         * security.c: New file for security related icalls. Added function
22117         get_UserName for System.Environment (fix #56144).
22118         * security.h: New. Header file for security.c
22119
22120 2004-04-02  Dick Porter  <dick@ximian.com>
22121
22122         * icall.c: Deleted the icalls that were obsoleted some time ago
22123         by the ICU string code, and which were mixed into the icall
22124         rearranging.  Fixes bug 55969.
22125
22126         * string-icalls.h: 
22127         * string-icalls.c: Deleted the code that those icalls reference.
22128
22129 2004-04-01  Martin Baulig  <martin@ximian.com>
22130
22131         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
22132
22133         * class.c (mono_class_from_generic_parameter): Don't set 
22134         TYPE_ATTRIBUTE_INTERFACE.
22135         (my_mono_class_from_generic_parameter): Likewise.
22136
22137 2004-04-01  Martin Baulig  <martin@ximian.com>
22138
22139         * loader.c (find_method): Added an optional `MonoClass *ic'
22140         argument to search in a specific interface.
22141         (mono_get_method_constrained): New public function.
22142
22143 2004-04-01  Martin Baulig  <martin@ximian.com>
22144
22145         * reflection.c (mono_image_get_generic_field_token): Use the
22146         `handleref' cache here.
22147
22148 2004-04-01  Martin Baulig  <martin@ximian.com>
22149
22150         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
22151
22152         * reflection.c (create_generic_typespec): Use the `typespec' hash
22153         here, not the `typeref' one.    
22154
22155 2004-04-01  Martin Baulig  <martin@ximian.com>
22156
22157         * class.c (mono_class_inflate_generic_type): Moved the
22158         functionality into a new static inflate_generic_type() which
22159         returns NULL if it didn't do anything.  Only increment the
22160         `mono_stats.inflated_type_count' if we actually inflated
22161         something.
22162         (mono_class_get_full): Check the classes type to see whether we
22163         need to inflate it; also inflate MONO_TYPE_(M)VAR.
22164
22165 2004-04-01  Jackson Harper  <jackson@ximian.com>
22166
22167         * reflection.c: Set culture for assembly references.
22168         
22169 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
22170
22171         * reflection.[ch], icall.[ch], Fix support for pinning variables.
22172
22173 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22174
22175         * assembly.c:
22176         (do_mono_assembly_open): the critical section also covers
22177         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
22178
22179 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22180
22181         * threads.c:
22182         (mono_manage_threads): abort the background threads when finishing.
22183         Fixes bug #47232.
22184
22185 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22186
22187         * gc.c: only close the done_event handle if there was no timeout.
22188         C-ified comments.
22189
22190 2004-03-30  Martin Baulig  <martin@ximian.com>
22191
22192         * icall.c (icall_entries): It's called "System.Activator", not
22193         "System.Activation".    
22194
22195 2004-03-30  Martin Baulig  <martin@ximian.com>
22196
22197         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
22198         (mono_class_create_from_typespec): Likewise.
22199
22200 2004-03-30  Martin Baulig  <martin@ximian.com>
22201
22202         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
22203         `has_ctor_constraint' and `initialized'.
22204
22205 2004-03-30  Martin Baulig  <martin@ximian.com>
22206
22207         * reflection.c (encode_new_constraint): New static function to add
22208         the constructor constraint attribute to a type parameter.
22209         (encode_constraints): Call encode_new_constraint() if necessary.
22210
22211         * reflection.h
22212         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
22213
22214         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
22215         
22216 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
22217
22218         * reflection.c, icall.c: add support for pinning variables. 
22219
22220 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
22221
22222         * marshal.c (mono_marshal_get_managed_wrapper):
22223         init bool local with zero rather than null.
22224
22225 2004-03-29  Martin Baulig  <martin@ximian.com>
22226
22227         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
22228         the "official" behavior here.
22229         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
22230
22231 2004-03-29  Martin Baulig  <martin@ximian.com>
22232
22233         * icall.c: Reflect latest API changes.
22234
22235 2004-03-29  Martin Baulig  <martin@ximian.com>
22236
22237         * loader.c (mono_get_method_from_token): Also call
22238         mono_metadata_load_generic_params () for abstract and interface
22239         methods; replace the type arguments in the method signature with
22240         the ones which are loaded from the metadata.
22241
22242 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
22243
22244         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
22245         of the lock is not the current thread. MS.NET don't do it, in spite of
22246         what the documentation says. See bug #56157.
22247
22248 2004-03-28  Martin Baulig  <martin@ximian.com>
22249
22250         * class.c (mono_class_init): Don't call init_properties() and
22251         init_events() for generic instances; set `prop->parent' when
22252         inflating properties.
22253
22254         * reflection.c (mono_generic_inst_get_object): Call
22255         `mono_class_init (ginst->klass)'.
22256         (mono_type_get_object): Only create a MonoGenericInst if your
22257         generic type is a TypeBuilder.
22258         (do_mono_reflection_bind_generic_parameters): Only set
22259         `ginst->is_dynamic' if our generic type is a TypeBuilder.
22260
22261 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
22262
22263         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
22264         Fixes #56091.
22265
22266 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22267
22268         * icall.c: added Kill_internal icall.
22269         * process.[ch]: added Kill_internal icall.
22270
22271 2004-03-25  Martin Baulig  <martin@ximian.com>
22272
22273         * class.h (MonoStats): Added `generic_instance_count',
22274         `inflated_method_count', `inflated_type_count' and
22275         `generics_metadata_size'.       
22276
22277 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22278
22279         * reflection.c: no warnings now.
22280
22281 2004-03-25  Martin Baulig  <martin@ximian.com>
22282
22283         * class.c (mono_class_get_full): New public function; does a
22284         mono_class_get(), but also takes a `MonoGenericContext *'.
22285
22286         * loader.c (mono_field_from_memberref): Renamed to
22287         `field_from_memberref', made static and added `MonoGenericContext *'
22288         argument.
22289         (mono_field_from_token): Added `MonoGenericInst *' argument.
22290         (method_from_memberef): Likewise.
22291         (mono_get_method_from_token): Likewise.
22292         (mono_get_method_full): New public function; does a
22293         mono_get_method(), but also takes a `MonoGenericContext *'.
22294
22295         * verify.c (mono_method_verify): Get the method's generic context
22296         and pass it to mono_field_from_token(), mono_get_method_full() and
22297         mono_class_get_full().
22298
22299 2004-03-25  Martin Baulig  <martin@ximian.com>
22300
22301         * class.c (mono_class_inflate_generic_type): Take a
22302         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
22303         `MonoGenericMethod *'.
22304
22305 2004-03-25  Martin Baulig  <martin@ximian.com>
22306
22307         * loader.h (MonoMethodInflated): Store the MonoGenericContext
22308         instead of the MonoGenericMethod here.
22309
22310 2004-03-25  Martin Baulig  <martin@ximian.com>
22311
22312         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
22313         each time we create a new MonoGenericInst, we also create a new
22314         context which points back to us.
22315
22316         * class.c (inflate_method): Use `ginst->context' instead of
22317         creating a new context.
22318
22319         * loader.c (method_from_memberref): Use
22320         `klass->generic_inst->context' instead of creating a new context.
22321
22322 2004-03-25  Martin Baulig  <martin@ximian.com>
22323
22324         * class.h (MonoGenericContext): New struct.
22325         (MonoGenericMethod): Removed `generic_inst'.
22326
22327         * class.c (mono_class_inflate_generic_method): Take a
22328         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
22329
22330 2004-03-25  Martin Baulig  <martin@ximian.com>
22331
22332         * loader.h (MonoMethodInflated): New typedef.
22333
22334         * metadata.h (MonoMethodSignature): Removed `gen_method', make
22335         `generic_param_count' consume just 30 bits, added `is_inflated'
22336         and `has_type_parameters' flags (one bit each).
22337
22338         * class.c (mono_class_inflate_generic_method): Create a
22339         MonoMethodInflated instead of a MonoMethodNormal and set
22340         `is_inflated' in the method signature.
22341
22342         * class.h (MonoGenericMethod): Removed `generic_method'.
22343
22344 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
22345
22346         * image.c: Make sure the name of a MonoImage is always an absolute path.
22347           This fixes bug #54415.
22348
22349 2004-03-24  Martin Baulig  <martin@ximian.com>
22350
22351         * class.c (mono_class_setup_vtable): If we're a generic instance,
22352         use our generic type's vtable size.
22353
22354 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
22355
22356         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
22357         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
22358         problems.
22359
22360 2004-03-23  Martin Baulig  <martin@ximian.com>
22361
22362         * class.h (MonoDynamicGenericInst): Added `int count_events' and
22363         `MonoEvent *events'.
22364
22365         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
22366         (typebuilder_icalls): Added "get_event_info"; calls
22367         mono_reflection_event_builder_get_event_info(). 
22368
22369         * reflection.c (mono_reflection_generic_inst_initialize): Added
22370         `MonoArray *events'.
22371         (mono_reflection_event_builder_get_event_info): New function.
22372
22373 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
22374
22375         * object.h: add mono_type_initialization_init
22376
22377         * object.c (mono_runtime_class_init): 
22378         implement class constructor synchronization rules
22379         to cope with threading issues.  
22380         add mono_type_initialization_init
22381
22382         * appdomain.c (mono_runtime_init): call 
22383         mono_type_initialization_init
22384
22385         * class.h: removing initializing field from MonoVTable
22386
22387 2004-03-23  Martin Baulig  <martin@ximian.com>
22388
22389         * class.c (my_mono_class_from_generic_parameter): Use
22390         `param->name' if it's not NULL. 
22391
22392 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
22393
22394         * class.c: do not insert non-virtual methods in the vtable.
22395         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
22396         that means the method is non-virtual. This never would have
22397         happened before.
22398
22399 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
22400
22401         * profiler.c: Added lock for accessing coverage_hash.
22402
22403 2004-03-22  Martin Baulig  <martin@ximian.com>
22404
22405         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
22406         `method->method->signature->generic_param_count != 0' to make it
22407         work for interface methods.
22408
22409 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22410
22411         * process.c: quote the string passed to the shell using g_shell_quote.
22412
22413 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22414
22415         * threads.c:
22416         (mono_threads_manage): don't remove the finalizer thread and self
22417         from the threads hash table so that mono_thread_manage can be called
22418         more than once.
22419
22420 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22421
22422         * process.c: quote the arguments when UseShellExecute is true. Fixes
22423         bug #55790.
22424
22425 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22426
22427         * threads.c: set mono_thread_detach as a cleanup routine for every
22428         thread. This way it's always executed upon thread termination, either
22429         aborted or finished normally. No more xsp hangs!
22430
22431 2004-03-17  Martin Baulig  <martin@ximian.com>
22432
22433         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
22434         `int count_nested' and a `MonoType **nested'.
22435
22436         * reflection.c (mono_reflection_bind_generic_parameters): Moved
22437         most of the functionality into a new static
22438         do_mono_reflection_bind_generic_parameters() and don't take a
22439         `MonoType *nested_in' argument any more.  Don't compute nested
22440         types here.
22441         (mono_reflection_generic_inst_get_nested_types): New public method
22442         to get nested types.
22443
22444         * class.c (mono_class_create_generic): Set `klass->nested_in' if
22445         we're a nested class.
22446
22447         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
22448         mono_reflection_generic_inst_get_nested_types() to compute the
22449         nested types.
22450
22451 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
22452
22453         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
22454         descriptive error message under windows.
22455         
22456 2004-03-17  Martin Baulig  <martin@ximian.com>
22457
22458         * class.c (dup_type): Added `const MonoType *original' argument;
22459         copy the attrs from the original type.
22460
22461 2004-03-17  Martin Baulig  <martin@ximian.com>
22462
22463         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
22464         `m->generic_inst_cache' here.
22465
22466 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
22467
22468         * exception.h exception.c: Add stack_overflow_exception.
22469
22470 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22471
22472         * threadpool.c:
22473         (overlapped_callback): call SetEvent *after* invoking the callback.
22474         No need to call CloseHandle.
22475
22476 2004-03-16  Martin Baulig  <martin@ximian.com>
22477
22478         * reflection.c (mono_image_get_fieldref_token): Take a
22479         `MonoReflectionField *' instead of a `MonoClassField *' and a
22480         `MonoClass *'; store the `MonoReflectionField *' in the hash.
22481
22482 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22483
22484         * appdomain.c: don't add the culture to the filename we're looking for
22485         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
22486
22487 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22488
22489         * locales.c: don't ignore symbols when doing case insensitive compares.
22490         Thanks Dick! Fixes bug #54046.
22491
22492         * threads.c: surround 'threads' usage with enter/leave in
22493         mono_thread_manage.
22494
22495 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
22496
22497         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
22498         implicitly marshalled as [Out]. Fixes #55450.
22499
22500         (mono_marshal_get_runtime_invoke): Zero out the result if there is
22501         an exception.
22502
22503 2004-03-16  Martin Baulig  <martin@ximian.com>
22504
22505         * class.c (mono_class_from_generic_parameter): Use the actual
22506         parameter name. 
22507
22508 2004-03-16  Martin Baulig  <martin@ximian.com>
22509
22510         * reflection.c (type_get_signature_size): New static function.
22511         Compues the size of the type in a method signature.
22512         (method_get_signature_size): New static function; calls
22513         type_get_signature_size() to compute the actual size of the
22514         method's signature.
22515         (method_encode_signature): Use method_get_signature_size() to get
22516         the signature's size rather than using `nparams * 10'.
22517
22518 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22519
22520         * file-io.h: define here WapiOverlapped on windows. I don't want the
22521         regular OVERLAPPED one.
22522
22523         * file-io.c:
22524         * threadpool.c: somehow, BindIoCompletionCallback is not found.
22525         Disabling AIO on windows.
22526
22527 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22528
22529         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
22530         bug #55385.
22531
22532 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22533
22534         * appdomain.c: upgraded corlib version.
22535
22536         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
22537         and BeginWrite. Allow opening files for asynchrnous operations.
22538
22539         * file-io.h: new struct that maps FileStreamAsyncResult.
22540         * icall.c: added new icalls.
22541         * process.[ch]: support setting child process environment variables
22542         and use the SHELL or COMSPEC when UseShellExecute is true.
22543
22544         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
22545         callback for async. IO is here and also BindHandle.
22546
22547         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
22548         from here.
22549
22550 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
22551
22552         * reflection.c (create_custom_attr): Allow len == 0.
22553
22554         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
22555         computation on big-endian machines.
22556
22557 2004-03-13  Martin Baulig  <martin@ximian.com>
22558
22559         * class.h (MonoGenericInst): Added `int count_ifaces'.
22560
22561         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
22562         `ginst->count_ifaces' instead `klass->interface_count' since we
22563         may get called before the vtable is created.
22564
22565         * loader.c (mono_method_get_param_names): If we're a generic
22566         instance, return and don't initialize the class.
22567
22568         * reflection.c (mono_reflection_setup_generic_class): Don't call
22569         ensure_runtime_vtable().
22570         (mono_reflection_bind_generic_parameters): Set
22571         `ginst->count_ifaces'.
22572
22573 2004-03-11  Jackson Harper <jackson@ximian.com>
22574
22575         * icall.c:
22576         * unicode.c:
22577         * unicode.h: Remove unused System.Char icalls.
22578         
22579 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
22580
22581         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
22582         code when we P/Invoke the first library in Windows.Forms, instead
22583         of when we first open the assembly.
22584
22585         * assembly.c: Drop the lookup from here.
22586
22587 2004-03-10  Martin Baulig  <martin@ximian.com>
22588
22589         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
22590         class for properties, fields and events.  Finally fixes #54945.
22591
22592 2004-03-10  Martin Baulig  <martin@ximian.com>
22593
22594         * metadata.c (mono_metadata_class_equal): New static function;
22595         checks whether two generic instances or two generic parameters are
22596         equal.
22597         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
22598         compare classes.        
22599
22600 2004-03-10  Martin Baulig  <martin@ximian.com>
22601
22602         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
22603
22604         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
22605         argument and write it into the `reflection_info' field.
22606
22607         * icall.c
22608         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
22609         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
22610
22611 2004-03-09  Jackson Harper  <jackson@ximian.com>
22612
22613         * char-conversions.h: use 8 bits for numeric data its all we need
22614         * icall.c: numeric data is only 8 bits now.
22615
22616 2004-03-09  Martin Baulig  <martin@ximian.com>
22617
22618         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
22619
22620         * class.c (init_properties, init_events): Initialize the new
22621         `parent' field.
22622
22623         * reflection.c (typebuilder_setup_properties): Likewise.
22624         (typebuilder_setup_events): Likewise.
22625
22626         * reflection.h (MonoEventInfo): Replaced `parent with
22627         `declaring_type' and `reflected_type'.
22628
22629         * icall.c (ves_icall_get_property_info): Distinguish between
22630         declaring and reflected type.
22631         (ves_icall_get_event_info): Likewise.
22632
22633 2004-03-09  Martin Baulig  <martin@ximian.com>
22634
22635         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
22636         (ves_icall_Type_GetField): Correctly set field->klass.
22637
22638 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
22639
22640         * loader.h: Fix warning.
22641
22642 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
22643
22644         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
22645         library routine if present.  Notice that it will still continue
22646         executing even if its missing, for those working on the Gtk#
22647         edition of Windows.Forms.
22648
22649         * assembly.c (do_mono_assembly_open): If loading the
22650         System.Windows.Forms call mono_loader_wini_init.
22651
22652 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
22653
22654         * class.h: Added MonoRemoteClass struct.
22655         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
22656         function for MonoStrings.
22657         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
22658         Added internal call for getting the proxy type.
22659         * marshal.c: Get the type of transparent proxies from its remote_class.
22660         Added methods that generate the IL for type checks and casts:
22661         mono_marshal_get_isinst, mono_marshal_get_castclass, 
22662         mono_marshal_get_proxy_cancast.
22663         * marshal.h: Declaration of the previous new methods.
22664         * object.c: Added new moethods for creating and updating MonoRemoteClass
22665         instances: mono_remote_class, mono_upgrade_remote_class, 
22666         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
22667         * verify.c: FIx transparent_proxy_fields layout.
22668         * appdomain.c: Bump corlib version.
22669
22670 2004-03-04  Jackson Harper  <jackson@ximian.com>
22671
22672         * icall.c: Add icall to access char conversion tables.
22673         * char-conversions.h: Character conversion tables.
22674         * Makefile.am: Add char-conversions.h private header file.
22675         
22676 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
22677
22678         * appdomain.c (unload_thread_main): Increase unloading timeout to
22679         10 sec as a temporary workaround for Nant problems.
22680
22681 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
22682
22683         * gc.c: Add checks for GC_enable and GC_disable.
22684
22685         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
22686         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
22687         (bug #54988).
22688         
22689 2004-02-27  Martin Baulig  <martin@ximian.com>
22690
22691         * reflection.c (mono_reflection_bind_generic_parameters): Take a
22692         `MonoReflectionType *' instead of a `MonoType *'.
22693
22694 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
22695
22696         * gc.c (run_finalize): Avoid finalizing the object representing the
22697         finalizer thread.
22698         (finalizer_thread): Fix warning.
22699
22700 2004-02-25  Martin Baulig  <martin@ximian.com>
22701
22702         * class.c (_mono_class_get_instantiation_name): Added `int offset'
22703         argument for nested types.
22704         (mono_class_create_generic): Added support for nested generictypes.
22705
22706         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
22707         `GList *nested'.
22708
22709         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
22710
22711         * reflection.c (method_encode_signature): Increase the minimum
22712         value of `size' from 10 to 11.
22713         (mono_reflection_bind_generic_parameters): Take `int type_argc'
22714         and `MonoType **types' arguments instead of the `MonoArray
22715         *types'; added `MonoType *nested_in'.  Recursively instantiate
22716         nested classes. 
22717
22718 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
22719
22720         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
22721         stack_overflow_ex members which are used by exception handling.
22722
22723         * appdomain.c (mono_runtime_init): Initialize the new members.
22724
22725         * gc.c (mono_gc_enable): New helper function.
22726         * gc.c (mono_gc_disable): New helper function.
22727
22728 2004-02-23  Martin Baulig  <martin@ximian.com>
22729
22730         * icall.c: I must have been really stupid - make it actually work
22731         this time ;-)
22732
22733 2004-02-23  Martin Baulig  <martin@ximian.com>
22734
22735         * loader.c (method_from_memberref): Only inflate the method if
22736         it's in another klass.
22737
22738 2004-02-23  Martin Baulig  <martin@ximian.com>
22739
22740         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
22741         (mono_class_init): If we're a generic instance and an interface,
22742         compute `class->interface_id'; also create `class->interfaces'
22743         here and inflate them.
22744
22745         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
22746         `ginst->is_open'.
22747         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
22748
22749         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
22750
22751 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
22752
22753         * reflection.c (method_encode_code): Improved the error message
22754         generated by the exception.
22755
22756 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22757
22758         * icall.c: Martin did not do what he said in the ChangeLog for
22759         2004-02-18, but put back the changes for properties and events.
22760         Commenting those changes out again and adding comment to bug #54518.
22761         
22762         * process.c: removed warning.
22763
22764 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
22765
22766         * marshal.c (emit_struct_conv): Print an error message instead of
22767         asserting when a type does not have the StructLayout attribute.
22768
22769 2004-02-20  Martin Baulig  <martin@ximian.com>
22770
22771         * reflection.c (mono_type_get_object): Also use the cache for
22772         generic instances.
22773         (mono_reflection_bind_generic_parameters): Always compute
22774         `ginst->ifaces'.        
22775
22776 2004-02-20  Martin Baulig  <martin@ximian.com>
22777
22778         * class.h (MonoGenericMethod): Removed `klass'.
22779
22780         * class.c (mono_class_inflate_generic_method): Added `MonoClass
22781         *klass' argument.
22782
22783 2004-02-20  Martin Baulig  <martin@ximian.com>
22784
22785         * reflection.c (method_encode_methodspec): Actually use the
22786         uninflated signature for the memberref.
22787
22788 2004-02-20  Martin Baulig  <martin@ximian.com>
22789
22790         * class.h (MonoGenericMethod): Removed `declaring'.
22791
22792         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
22793         is NULL, compute it here.
22794
22795 2004-02-20  Martin Baulig  <martin@ximian.com>
22796
22797         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
22798
22799         * metadata.c (mono_metadata_generic_inst_hash): New method.
22800         (mono_metadata_generic_inst_equal): New method.
22801
22802         * reflection.c (mono_reflection_bind_generic_parameters): Use the
22803         `klass->image->generic_inst_cache' cache to avoid creating
22804         duplicate MonoGenericInst's.
22805
22806         * class.c (mono_class_inflate_generic_type): Use the cache.
22807
22808 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
22809
22810         * object.c: fixed gc descriptor calculation for embedded valuetypes.
22811
22812 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22813
22814         * icall.c: added Socket.WSAIoctl icall.
22815
22816         * socket-io.[ch]: implemented
22817         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
22818
22819 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
22820
22821         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
22822
22823 2004-02-18  Urs C Muff  <umuff@quark.com>
22824
22825         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
22826         this work on PPC and other big-endian architectures.
22827
22828         * debug-mono-symfile.h: Prepended the names of all the `guint32'
22829         fields with an underscore to make sure they're only accessed by
22830         the read32() macro.
22831
22832 2004-02-18  Martin Baulig  <martin@ximian.com>
22833
22834         * icall.c: Put the klass->refclass changes back for methods and
22835         fields, but not for properties and events.  We're currently not
22836         distinguishing between DeclaringType and ReflectedType for
22837         properties and events, that's what caused the regressions.
22838
22839 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22840
22841         * object.c:
22842         (mono_async_result_new): the handle can be NULL.
22843
22844         * threadpool.c: Use an event instead of a semaphore, don't initialize
22845         it until needed. This saves quite a few semaphores from being created
22846         when using the threadpool.
22847
22848 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
22849
22850         * object.c (mono_string_is_interned_lookup): Fix interning of long
22851         strings. Fixes #54473.
22852
22853         * domain.c (ldstr_equal): Optimize if the two strings are equal.
22854
22855         * icall.c: Revert the klass->refclass changes since they introduce
22856         regressions (bug #54518).
22857
22858 2004-02-18  Martin Baulig  <martin@ximian.com>
22859
22860         * class.c (mono_class_init): If we're a generic instance and don't
22861         come from a TypeBuilder, inflate our members here.
22862         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
22863         (mono_class_create_generic): New public method.
22864         (mono_class_initialize_generic): Removed.
22865         (get_instantiation_name): Renamed to
22866         _mono_class_get_instantiation_name() and made it public.
22867
22868 2004-02-18  Martin Baulig  <martin@ximian.com>
22869
22870         * class.c (mono_class_inflate_generic_type): Clear the new
22871         instance's `nginst->klass' when inflating a generic instance.
22872         (mono_class_is_subclass_of): Added (basic) support for generic
22873         instances.
22874
22875 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
22876
22877         * appdomain.h, domain.c: use a MonoCodeManager instead of a
22878         MonoMempool to hold compiled native code.
22879
22880 2004-02-17  Martin Baulig  <martin@ximian.com>
22881
22882         * class.h (MonoDynamicGenericInst): Added `count_properties' and
22883         `properties'.
22884
22885         * reflection.c (mono_reflection_generic_inst_initialize): Added
22886         `MonoArray *properties' argument.
22887
22888         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
22889
22890 2004-02-17  Martin Baulig  <martin@ximian.com>
22891
22892         * icall.c (ves_icall_Type_GetFields): Renamed to
22893         ves_icall_Type_GetFields_internal() and added a
22894         `MonoReflectionType *rtype' argument; pass it to
22895         mono_field_get_object() to set the field's "reflected" type.
22896         (ves_icall_Type_GetConstructors): Likewise.
22897         (ves_icall_Type_GetEvents): Likewise.
22898         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
22899         argument; pass it to mono_method_get_object() to set the method's
22900         "reflected" type.       
22901
22902 2004-02-17  Martin Baulig  <martin@ximian.com>
22903
22904         * class.h (MonoDynamicGenericInst): New type.
22905         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
22906
22907         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
22908         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
22909         (ves_icall_MonoGenericInst_GetFields): New interncall.
22910
22911         * class.c (mono_class_from_generic): Don't call
22912         mono_class_initialize_generic() if this is a dynamic instance;
22913         ie. it's being created from a TypeBuilder.
22914         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
22915         `class->byval_arg.type'.
22916
22917         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
22918         to `inflate_method' and made static.
22919         (mono_reflection_inflate_field): Removed.
22920         (mono_reflection_generic_inst_initialize): New public method.
22921
22922         * reflection.h (MonoReflectionGenericInst): Removed `methods',
22923         `ctors' and `fields'; added `initialized'.
22924
22925 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
22926
22927         * debug-helpers.c (mono_method_full_name): Fix output for empty
22928         namespaces.
22929
22930 2004-02-12  Martin Baulig  <martin@ximian.com>
22931
22932         * class.h (MonoClassField): Added `MonoType *generic_type'.
22933
22934         * reflection.c (mono_image_get_fieldref_token): Added support for
22935         instantiated generic types.
22936         (field_encode_inflated_field): Removed.
22937         (mono_image_get_inflated_field_token): Removed.
22938         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
22939
22940         * reflection.h (MonoReflectionInflatedField): Removed.
22941
22942 2004-02-12  Martin Baulig  <martin@ximian.com>
22943
22944         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
22945         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
22946
22947         * reflection.c (mono_image_get_methodspec_token): Take a
22948         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
22949         (mono_image_create_token): Check whether we have a
22950         `method->signature->gen_method' and call
22951         mono_image_get_methodspec_token() if appropriate.
22952         (inflated_method_get_object): Removed.
22953         (mono_reflection_bind_generic_method_parameters): Return a
22954         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
22955         (mono_reflection_inflate_method_or_ctor): Likewise.
22956
22957         * reflection.h (MonoReflectionInflatedMethod): Removed.
22958
22959 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
22960
22961         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
22962         for custom valuetype marshalling.
22963
22964         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
22965
22966 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22967
22968         * icall.c: fixed WSAGetLastError_internal name.
22969
22970 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
22971
22972         * threads.c (mono_thread_attach): Allow this to be called multiple
22973         times for a thread.
22974         
22975         * threads.c (build_wait_tids): Do not wait for ourselves.
22976
22977         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
22978         appdomain list is empty.
22979
22980         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
22981         memory returned by mono_string_builder_to_utf16, since it points into
22982         managed memory. Thanks to Bernie Solomon for noticing this.
22983
22984         * icall.c: Add AppDomainSetup icalls.
22985
22986         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
22987
22988         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
22989         types.
22990
22991         * reflection.c (reflection_methodbuilder_to_mono_method): Save
22992         custom attributes to the method_aux struct. Also fix array indexes etc.
22993
22994         * loader.c (mono_method_get_param_names): Make dynamic case work again.
22995         
22996 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
22997
22998         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
22999         (both static and runtime) and reduce startup time.
23000
23001 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
23002
23003         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
23004         AsAny marshalling conversion instead of crashing.
23005
23006         * marshal.c: Fix warnings.
23007
23008 2004-02-09  Martin Baulig  <martin@ximian.com>
23009
23010         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
23011
23012         * reflection.h (MonoReflectionInflatedMethod): Removed the
23013         `declaring' field, it's now in the unmanaged MonoGenericMethod.
23014
23015         * reflection.c (method_encode_methodspec): Removed the `method'
23016         argument; we get it from `gmethod->declaring'.
23017         (inflated_method_get_object): Removed the `declaring' argument.
23018
23019 2004-02-09  Martin Baulig  <martin@ximian.com>
23020
23021         * class.h (MonoGenericMethod): New type.
23022         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
23023         `generic_method'.
23024
23025         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
23026         a `MonoGenericMethod *gen_method' one.
23027
23028         * class.c (mono_class_inflate_generic_type): Take an additional
23029         `MonoGenericMethod * argument.  This is only non-NULL if we're
23030         inflating types for a generic method.   
23031         (mono_class_inflate_generic_signature): Renamed to
23032         inflate_generic_signature() and made static; take a
23033         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
23034         (inflate_generic_header): Take a `MonoGenericMethod *' argument
23035         instead of a `MonoGenericInst *' one.
23036         (mono_class_inflate_generic_method): Likewise.
23037
23038         * reflection.c (encode_generic_method_sig): Take a
23039         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
23040         (method_encode_methodspec): Likewise.
23041         (inflated_method_get_object): Likewise. 
23042
23043         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
23044         field with a `MonoGenericMethod *gmethod' one.  
23045
23046 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
23047
23048         * class.h (mono_class_has_parent): add parens to expansion
23049         so you can ! this.
23050
23051 2004-02-08  Martin Baulig  <martin@ximian.com>
23052
23053         * image.h (MonoImage): Removed `generics_cache'.
23054
23055         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
23056         instead of a `MonoType *' argument; removed the `inflate_methods'
23057         argument.  Don't inflate methods here.
23058
23059         * loader.c (find_method): If it's a generic instance, call
23060         mono_class_init() on the `sclass->generic_inst->generic_type'.
23061
23062         * metadata.c (mono_type_size): Make this work on uninitialized
23063         generic instances; call it on the `ginst->generic_type's class.
23064
23065         * reflection.c (mono_reflection_bind_generic_parameters): Call
23066         mono_class_from_generic() to create the `ginst->klass'.
23067
23068 2004-02-08  Martin Baulig  <martin@ximian.com>
23069
23070         * class.h (MonoClass): Changed type of `generic_inst' from
23071         `MonoType *' to `MonoGenericInst *'.
23072
23073 2004-02-08  Martin Baulig  <martin@ximian.com>
23074
23075         * icall.c (ves_icall_Type_BindGenericParameters): Just call
23076         mono_type_get_object(), this is now creating a `MonoGenericInst'
23077         for MONO_TYPE_GENERICINST.
23078         (ves_icall_MonoGenericInst_GetParentType): Likewise.
23079         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
23080
23081         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
23082         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
23083         (inflated_method_get_object): Added `MonoClass *refclass' argument.
23084         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
23085         and reflected type.
23086
23087         * reflection.h (MonoReflectionInflatedMethod): Removed
23088         `declaring_type' and `reflected_type'.
23089
23090 2004-02-08  Martin Baulig  <martin@ximian.com>
23091
23092         * class.h (MonoGenericInst): Added `MonoType *parent' and
23093         `MonoType **ifaces'.
23094
23095         * reflection.h (MonoReflectionGenericInst): Removed `klass',
23096         `parent' and `interfaces'.
23097
23098         * reflection.c (mono_reflection_bind_generic_parameters): Take a
23099         `MonoType *' argument and return a `MonoType *'.
23100
23101         * icall.c
23102         (ves_icall_MonoGenericInst_GetParentType): New interncall.
23103         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
23104
23105 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
23106
23107         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
23108         valuetype marshalling.
23109
23110 2004-02-06  Martin Baulig  <martin@ximian.com>
23111
23112         * class.c
23113         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
23114         (my_mono_class_from_generic_parameter): Likewise.
23115
23116 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
23117
23118         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
23119         contents of the symbol files lazily.
23120
23121         * object.h (MonoThread): Add 'name' and 'name_len' fields.
23122
23123         * threads.h threads.c icall.c: New icalls for getting and setting the
23124         threads name.
23125
23126 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
23127
23128         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
23129         Raise an exception when the domain is not found.
23130
23131 2004-02-03  Martin Baulig  <martin@ximian.com>
23132
23133         * reflection.c (mono_image_get_methodspec_token): Use the
23134         uninflated signature; fixes gen-33.
23135
23136 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
23137
23138         * gc.c threads.c: Make the finalizer thread a normal managed thread so
23139         the finalizer code can use thread functionality.
23140
23141         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
23142         the finalizer thread.
23143
23144         * threads.c: Make some functions more robust.
23145
23146         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
23147
23148         * metadata.h: Add new marshalling conventions.
23149
23150         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
23151         stringbuilder marshalling. Fixes #53700.
23152
23153         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
23154
23155         * reflection.c (mono_image_get_type_info): Save declarative security
23156         info.
23157
23158         * reflection.c (mono_image_get_field_info): Handle uninitialized 
23159         unmanaged fields as well.
23160
23161         * appdomain.c: Bump corlib version.
23162
23163 2004-02-01  Martin Baulig  <martin@ximian.com>
23164
23165         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
23166         method type arguments.  
23167
23168 2004-01-30  Duncan Mak  <duncan@ximian.com>
23169
23170         * marshal.h: Add prototype for
23171         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
23172         and
23173         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
23174         fix the build.
23175
23176 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
23177
23178         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
23179         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
23180
23181 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
23182
23183         * marshal.c (mono_marshal_get_native_wrapper): Add support for
23184         custom marshalling of valuetypes.
23185
23186         * marshal.c: Fix some warnings.
23187
23188 2004-01-29  Martin Baulig  <martin@ximian.com>
23189
23190         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
23191         for generic method parameters.
23192
23193         * reflection.c (method_encode_methodspec): Write the uninflated
23194         signature into the methodspec table.
23195         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
23196         is always the uninflated method.
23197         (reflection_methodbuilder_to_mono_method): Copy the generic
23198         parameters from the MethodBuilder into `header->gen_params'.
23199
23200 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
23201
23202         * class.c (mono_class_from_generic_parameter): Fix warning.
23203
23204 2004-01-27  Martin Baulig  <martin@ximian.com>
23205
23206         * class.c (mono_class_from_generic_parameter): Don't create
23207         `klass->methods' here.  
23208
23209 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
23210
23211         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
23212         extension since it does not work with libraries named lib<FOO>.dll.so.
23213
23214 2004-01-25  Martin Baulig  <martin@ximian.com>
23215
23216         * class.c (mono_class_inflate_generic_type): Added support for
23217         MONO_TYPE_GENERICINST.
23218
23219         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
23220         inflate methods on open constructed types.      
23221
23222 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23223
23224         * object.c: fire ProcessExit event in the root AppDomain after running
23225         Main. Fixes bug #53299.
23226
23227 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
23228
23229         * socket-io.c: include the new socket-wrappers.h header.
23230         Use the wrappers instead of the unix socket functions to make the code
23231         more clear.
23232
23233 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
23234
23235         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
23236
23237         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
23238         Fixes #22532.
23239
23240 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
23241
23242         * reflection.c (mono_image_create_pefile): Handle the case when the
23243         entry point is not a MethodBuilder.
23244
23245         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
23246         field to ReflectionMethod since it is not allways a builder.
23247
23248         * reflection.c (type_get_fully_qualified_name): New helper function to
23249         return the fully qualified name of a type.
23250
23251         * reflection.c (encode_marshal_blob): Always emit the fully qualified
23252         type name for custom marshallers.
23253
23254         * reflection.c (mono_marshal_spec_from_builder): Ditto.
23255
23256         * class.c (mono_class_setup_vtable): If a parent class already 
23257         implements an interface, use the implementing methods from that class.
23258         Fixes #53148.
23259
23260 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23261
23262         * threadpool.c: just return instead of ExitThread to allow for thread
23263         clean up earlier.
23264
23265 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
23266
23267         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
23268         when closing resource modules.
23269
23270         * reflection.c (mono_image_create_pefile): Handle the case when the
23271         entry point is not a MethodBuilder.
23272
23273         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
23274         field to ReflectionMethod since it is not allways a builder.
23275
23276 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
23277
23278         * marshal.c (mono_marshal_get_managed_wrapper): 
23279         mono_marshal_alloc takes native int so CONV_I
23280         the arg for 64bits.
23281
23282 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
23283
23284         * reflection.c (fixup_cattrs): New function to fixup the methoddef
23285         tokens in the cattr table. Fixes #53108.
23286
23287 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23288
23289         * loader.c: don't trim ".dll" before looking up in the config file.
23290         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
23291
23292 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
23293
23294         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
23295         Return the module which contains the resource as well.
23296         (ves_icall_System_Reflection_Module_Close): New icall.
23297
23298         * appdomain.c: Bump corlib version number.
23299
23300         * image.c (mono_image_addref): New public function.
23301
23302         * assembly.c: Call mono_image_addref.
23303
23304         * reflection.c (mono_module_get_object): Increase reference count of 
23305         the image.
23306
23307         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
23308         Fixes #22532.
23309
23310         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
23311         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
23312         proper exceptions on DllImport problems.
23313
23314 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
23315
23316         * class.c, metadata.c: eliminate CSIZE macro.
23317
23318 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
23319
23320         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
23321         * object.h: Added async_callback field in MonoAsyncResult.
23322         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
23323         * verify.c: Added async_callback in MonoAsyncResult layout.
23324
23325 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
23326
23327         * reflection.c (mono_reflection_get_custom_attrs): Add support
23328         for Modules.
23329
23330 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
23331
23332         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
23333         marshalling.
23334         (mono_marshal_method_from_wrapper): Add null pointer check.
23335
23336 2004-01-16  Martin Baulig  <martin@ximian.com>
23337
23338         * debug-mono-symfile.h: Set version number to 36 and reflect
23339         latest symbol writer changes.
23340
23341 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
23342
23343         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
23344         multi-dimensional arrays.
23345         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
23346         (mono_class_from_mono_type): Use bounded_array_class_get.
23347         
23348         * class.c (mono_bounded_array_class_get): New function which takes
23349         a 'bounded' bool argument to distinguish vectors from one dimensional
23350         arrays.
23351
23352         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
23353         bounded_array_class_get if the array has bounds.
23354
23355         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
23356         Search modules loaded using AssemblyBuilder:AddModule as well.
23357
23358 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23359
23360         * appdomain.c: increased corlib version.
23361         * filewatcher.c: removed g_print.
23362         * icall.c:
23363         (get_property_info): only allocate what is actually requested.
23364         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
23365
23366 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23367
23368         * Makefile.am: added filewatcher.[ch]
23369         * filewatcher.[ch]: FileSystemWatcher runtime support.
23370         * icall.c: added new FSW icalls.
23371
23372 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
23373
23374         * string-icalls.c: fix stringbuilder regression as suggested by
23375         Iain McCoy <iain@mccoy.id.au>.
23376
23377 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
23378
23379         * process.c (process_read_stringtable_block): Recognize '007f' as
23380         a language neutral stringtable block.
23381
23382 2004-01-12  Patrik Torstensson
23383
23384         * object.h (MonoStringBuilder) : Changed layout to support our
23385         new stringbuilder class.
23386         * marshal.c: Change marshalling to support the new layout of 
23387         string builder.
23388         * appdomain.c: increased version number because new layout of
23389         string builder.
23390
23391 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
23392
23393         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
23394         assembly name as an string instead of an AssemblyName, since it is
23395         easier to extract info from it.
23396
23397         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
23398         the culture subdirectories too. Fixes #52231.
23399
23400 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23401
23402         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
23403         It takes 2 new parameters with an optional name for the method to look
23404         for and case ignoring info.
23405
23406         * threadpool.c: removed unused variable.
23407
23408 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23409
23410         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
23411         It takes 2 new parameters with an optional name for the property to look
23412         for and case ignoring info.
23413         Fixes bug #52753.
23414
23415 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
23416
23417         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
23418         Fix #52451.
23419
23420 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23421
23422         * appdomain.c:
23423         * assembly.c: escape the uri before passing it to g_filename_from_uri.
23424         Fixes bug #52630.
23425
23426 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
23427
23428         * reflection.c: Add support for more than one unmanaged resource.
23429
23430         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
23431         in field->def_value, as done in all other cases.
23432
23433         * reflection.c (mono_reflection_get_custom_attrs): Add support for
23434         TypeBuilders.
23435
23436         * reflection.c (mono_reflection_create_runtime_class): Remove 
23437         errorneous assignment to klass->element_class, since it is already
23438         done in mono_reflection_setup_internal_class.
23439
23440 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23441
23442         * gc.c: added missing LeaveCriticalSection.
23443         * icall.c: indented a couple of lines.
23444         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
23445         if we call EndInvoke inside a callback. Fixes bug #52601.
23446
23447 2004-01-07  Martin Baulig  <martin@ximian.com>
23448
23449         * mono-debug-debugger.h
23450         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
23451
23452 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
23453
23454         * appdomain.c: Use messages in NotImplementedException.
23455
23456         * exception.c (mono_get_exception_not_implemented): Now this takes
23457         a message argument.
23458
23459         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
23460         exception instead of g_asserting an aborting when something is not
23461         implemented.
23462
23463         Add some inline docs.
23464
23465 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
23466
23467         * reflection.h: Update after changes to object layout.
23468
23469         * reflection.c: Implement saving of unmanaged aka win32 resources.
23470
23471         * appdomain.c: Bump version number.
23472
23473         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
23474         Handle missing domains gracefully.
23475
23476 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
23477
23478         * file-io.c : On Windows, there are much more invalid_path_chars.
23479
23480 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
23481
23482         * class.h, object.c: prepare for GetType () speedup.
23483
23484 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
23485
23486         * profiler.c: workaround for --profile null reference exception on
23487           cygwin. Patch by Patrik Torstensson.
23488
23489 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
23490
23491         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
23492         make work for unaligned access.
23493
23494 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
23495
23496         * class.c: small cleanup (class->fields [i] -> field).
23497         * image.c: check address of metadata is valid.
23498
23499 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
23500
23501         * assembly.h assembly.c (mono_assembly_loaded): New public function to
23502         search the list of loaded assemblies.
23503
23504         * reflection.c (mono_reflection_type_from_name): Use 
23505         mono_assembly_loaded instead of mono_image_loaded.
23506
23507         * reflection.c: Fix warnings.
23508
23509 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
23510
23511         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
23512         is dynamic. This is needed since an assembly can contain both dynamic and
23513         non-dynamic images.
23514
23515         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
23516         assembly->dynamic.
23517
23518         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
23519
23520         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
23521         to store modules loaded using AddModule.
23522
23523         * reflection.c (mono_image_fill_file_table): Generalize this so it works
23524         on Modules.
23525
23526         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
23527
23528         * reflection.c (mono_image_fill_export_table_from_module): New function to
23529         fill out the EXPORTEDTYPES table from a module.
23530
23531         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
23532         into a separate function. Also handle loaded non-dynamic modules.
23533
23534         * reflection.c (mono_image_basic_init): Fix memory allocation.
23535
23536         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
23537
23538         * assembly.c (mono_assembly_load_references): Make this public.
23539
23540 2003-12-19  Martin Baulig  <martin@ximian.com>
23541
23542         * class.c (mono_class_initialize_generic): Made this static, take
23543         a `MonoGenericInst *' instead of a `MonoClass *'.
23544         (mono_class_from_generic): Call mono_class_initialize_generic()
23545         unless we're already initialized or being called from
23546         do_mono_metadata_parse_generic_inst().
23547
23548         * class.h (MonoGenericInst): Added `initialized' and
23549         `init_pending' flags.
23550
23551         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
23552         `mono_class_init (gklass)' or mono_class_initialize_generic()
23553         here; set `generic_inst->init_pending' while parsing the
23554         `type_argv'.
23555
23556 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
23557
23558         * locales.c: include string.h for memxxx prototypes
23559
23560 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
23561
23562         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
23563         constructor when accessing literal fields.
23564
23565 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
23566
23567         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
23568
23569         * reflection.c (assembly_add_resource_manifest): New function to fill
23570         the MANIFESTRESOURCE table.
23571
23572         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
23573
23574         * reflection.h: Update to changes in class layout.
23575
23576         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
23577         Reenable call to mono_runtime_is_shutting_down ().
23578
23579         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
23580         determine if the runtime is shutting down.
23581
23582 2003-12-16  Jackson Harper <jackson@ximian.com>
23583
23584         * icall.c: comment out call to mono_runtime_is_shutting_down to
23585         fix build.
23586         
23587 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
23588
23589         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
23590         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
23591
23592 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
23593
23594         * reflection.c: move definition of swap_with_size
23595         to before its first call
23596
23597 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
23598
23599         * appdomain.c (mono_runtime_is_shutting_down): New public function.
23600
23601         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
23602         icall.
23603
23604         * object.c: Fix warnings.
23605
23606         * icall.c (ves_icall_Type_Get...): Only consider inherited static
23607         members if FlattenHierarchy is set.
23608
23609         * reflection.c (mono_image_add_decl_security): New function to emit
23610         declarative security.
23611
23612         * reflection.h reflection.c: Add support for declarative security.
23613
23614         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
23615         
23616 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
23617
23618         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
23619         
23620         * appdomain.c verify.c: Moved corlib version checking into its own
23621         function in appdomain.c since it needs to create vtables etc.
23622
23623 2003-12-13  Patrik Torstensson <p@rxc.se>
23624
23625         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
23626         instead of unwrapped server.
23627
23628 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
23629
23630         * verify.c (check_corlib): Fix field index.
23631
23632 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
23633
23634         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
23635         GetGacPath icall.
23636
23637 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
23638
23639         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
23640         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
23641         cope with sizeof(size_t) != sizeof(guint32).
23642
23643 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23644
23645         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
23646         in case of failure.
23647
23648 2003-12-10  Mark Crichton <crichton@gimp.org>
23649
23650         * icall.c: removed the GetNonZeroBytes.  We now handle this case
23651         in managed code.
23652
23653         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
23654
23655 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
23656
23657         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
23658         marked as deleted.
23659
23660 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
23661
23662         * verify.c (check_corlib): Handle the case when the version field is 
23663         initialized by a static constructor.
23664
23665 2003-12-08  Patrik Torstensson  <p@rxc.se>
23666
23667     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
23668
23669 2003-12-08  Martin Baulig  <martin@ximian.com>
23670
23671         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
23672         a MonoReflectionGenericParameter, also take the parameter index
23673         and name as arguments.
23674         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
23675         (ves_icall_MonoGenericParam_initialize): New interncall.
23676         (ves_icall_Type_make_byref_type): New interncall.
23677
23678         * reflection.h (MonoReflectionGenericParam): Derive from
23679         MonoReflectionType, not just from MonoObject.  Added `refobj' and
23680         `index' fields.
23681
23682         * reflection.c (mono_reflection_define_generic_parameter): Create
23683         and return a new MonoReflectionGenericParam; don't initialize the
23684         constraints here.
23685         (mono_reflection_initialize_generic_parameter): New public method;
23686         initializes the constraints and creates the `param->pklass'.
23687
23688 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
23689
23690         * reflection.h reflection.c: Use the new fields 'num_types', 
23691         'num_fields' and 'num_methods' to track the number of types etc.
23692
23693         * verify.c (check_corlib): Check corlib version number.
23694
23695 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
23696
23697         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
23698         function works on all methods.
23699
23700 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
23701
23702         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
23703         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
23704         the custom_type_info flag of the transparent proxy.
23705         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
23706         objects that supports IRemotingTypeInfo.
23707         * object.h: Added custom_type_info field in transparent proxy.
23708
23709 2003-12-06  Martin Baulig  <martin@ximian.com>
23710
23711         * class.c (mono_class_create_from_generic): Removed.
23712         (mono_class_from_generic): Check `ginst->klass' before doing
23713         anything else.  This is important to fully support "recursive"
23714         generic types.
23715
23716         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
23717         empty `generic_inst->klass' before doing anything else.
23718
23719 2003-12-06  Dick Porter  <dick@ximian.com>
23720
23721         * verify.c: 
23722         * object.h:
23723         * icall.c:
23724         * locales.c: Use C structs to access class fields.  Don't do a
23725         conversion between MonoString and UChar because both are
23726         platform-endian UTF-16.  Compare now takes startindex and count
23727         parameters.  Add a char overload for IndexOf.  Speed up the
23728         invariant string IndexOf.
23729
23730 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
23731
23732         * Makefile.am (monosn_LDADD): Fix parallel build.
23733
23734 2003-12-04  Martin Baulig  <martin@ximian.com>
23735
23736         * icall.c
23737         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
23738         (ves_icall_Type_make_array_type): New interncall.       
23739
23740 2003-12-04  Martin Baulig  <martin@ximian.com>
23741
23742         * locales.c: also change it in the !HAVE_ICU case.
23743
23744 2003-12-04  Dick Porter  <dick@ximian.com>
23745
23746         * icall.c:
23747         * locales.c: construct_compareinfo is now in CompareInfo, not
23748         CultureInfo.
23749
23750 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
23751
23752         * image.c (mono_image_load_file_for_image): Cache loaded images in the
23753         image->files array.
23754
23755         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
23756         table as well.
23757
23758         * assembly.c (mono_assembly_load_references): Only load references
23759         once.
23760
23761         * class.c (mono_class_from_name): Avoid linear search of the 
23762         EXPORTEDTYPE table.
23763
23764         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
23765
23766 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
23767
23768         * image.h (MonoImage): Add 'field_cache' field.
23769
23770         * loader.c (mono_field_from_token): Cache field lookups.
23771         
23772         * reflection.c (mono_module_get_object): Fix name property.
23773
23774         * icall.c (ves_icall_get_enum_info): Update after changes to 
23775         mono_metadata_get_constant_index ().
23776
23777         * icall.c: Get rid of get_type_info icall, use a separate icall for
23778         each type property to avoid needless memory allocations. Fixes #51514.
23779
23780         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
23781         to avoid needless binary searches.
23782
23783         * class.c (class_compute_field_layout): Move the initialization of
23784         field->def_value to mono_class_vtable ().
23785
23786         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
23787         non-corlib types.
23788
23789         * object.c (mono_object_allocate): Make it inline.
23790
23791         * object.c (mono_object_allocate_spec): Make it inline.
23792         
23793 2003-12-02  Dick Porter  <dick@ximian.com>
23794
23795         * locales.c (create_NumberFormat): NumberFormatInfo construction.
23796         Patch by Mohammad DAMT (mdamt@cdl2000.com).
23797
23798 2003-12-01  Dick Porter  <dick@ximian.com>
23799
23800         * threads.c: Fix signature and call in CreateMutex and
23801         CreateEvent.
23802
23803 2003-12-01  Dick Porter  <dick@ximian.com>
23804
23805         * icall.c: 
23806         * locales.c: Implement string compares and searching
23807
23808         * object.h: Add extra Thread field
23809
23810 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
23811
23812         * reflection.c (fixup_method): Add support for MonoCMethod.
23813
23814 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
23815
23816         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
23817
23818         * reflection.c (assembly_name_to_aname): Allow extra characters in
23819         assembly names. Fixes #51468.
23820
23821 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
23822
23823         * exception.c (mono_exception_from_name_domain): New helper function.
23824
23825         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
23826         exception object in the correct domain.
23827
23828         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
23829         formatting + make a copy a the input data.
23830
23831         * loader.c (mono_get_method_from_token): Methods which contain
23832         native code do not have entries in the ImplMap.
23833
23834         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
23835         Thanks to Gonzalo for spotting this.
23836         
23837         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
23838         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
23839
23840         * assembly.h (mono_assembly_load_from): Split the second part of 
23841         assembly loading into a new public function.
23842
23843         * exception.h (mono_get_exception_bad_image_format): New function.
23844
23845 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
23846
23847         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
23848         Enumerate all modules inside a dynamic assembly. Fixes #51293.
23849         
23850         * icall.c: Add new icall for creating dynamic methods.
23851
23852         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
23853
23854         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
23855
23856         * reflection.c (mono_reflection_create_dynamic_method): New icall to
23857         create a dynamic method.
23858
23859         * reflection.c (resolve_object): New helper function.
23860
23861         * reflection.c: Generalize ReflectionMethodBuilder and the functions
23862         which manipulate it so they can also work on dynamic methods.
23863
23864         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
23865         creating the MonoReflectionMethodAux structure if it is not needed.
23866         
23867         * reflection.h verify.c: Update after changes to object layout.
23868
23869         * reflection.c (method_builder_encode_signature): Fix compilation on
23870         gcc 2.95.x.
23871
23872 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
23873
23874         * appdomain.h: Added support for context static fields. Added static_data
23875           field to MonoAppContext and renamed thread_static_fields to a more
23876           generic special_static_fields in MonoAppDomain, since it can now contain
23877           context static fields.
23878         * domain.c: Updated hashtable name.
23879         * object.c: Replaced field_is_thread_static() for a more generic
23880           field_is_special_static() which also checks for context static attribute.
23881           In mono_class_vtable(), added support for static context fields.
23882         * threads.c: Changed methods that manage thread static fields to more
23883           generic methods so they can be reused both for thread and context static
23884           data.
23885         * threads.h: Declared some new methods.
23886
23887 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
23888
23889         * reflection.h: Update after changes to the managed types.
23890
23891         * reflection.c (encode_custom_modifiers): New helper function.
23892
23893         * reflection.c (method_encode_signature): Emit custom modifiers.
23894
23895         * reflection.c (field_encode_signature): Emit custom modifiers.
23896
23897 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
23898
23899         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
23900
23901         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
23902         implementation.
23903
23904         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
23905         icall.
23906
23907         * object.c (mono_field_get_value_object): New function.
23908
23909         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
23910         specific.
23911
23912 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
23913
23914         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
23915         return a preallocated out-of-memory exception instance.
23916
23917         * object.c (out_of_memory): Use the new function.
23918
23919         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
23920         flag is before the custom modifiers. Fixes #49802.
23921
23922 2003-11-16  Martin Baulig  <martin@ximian.com>
23923
23924         * class.c (mono_class_is_open_constructed_type): Implemented the
23925         MONO_TYPE_GENERICINST case.
23926
23927 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
23928
23929         * assembly.c (mono_assembly_fill_assembly_name): New function to
23930         fill out the MonoAssemblyName structure.
23931         (mono_assembly_open): Use the new function.
23932
23933         * icall.c (fill_reflection_assembly_name): New helper function.
23934
23935         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
23936         new function.
23937
23938         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
23939
23940 2003-11-15  Martin Baulig  <martin@ximian.com>
23941
23942         * class.c (mono_class_is_open_constructed_type): New public
23943         function; checks whether a type is an open constructed type,
23944         ie. whether it still contains type parameters.
23945         (mono_class_inflate_generic_type): If we're a type parameter and
23946         the inflated type is also a MONO_TYPE_(M)VAR, return the original
23947         type.
23948
23949         * class.h (MonoGenericInst): Added `guint32 is_open'.
23950
23951         * loader.c (method_from_methodspec): Check whether we're an open
23952         or closed constructed type and set `ginst->is_open'.
23953
23954         * reflection.c (mono_reflection_bind_generic_parameters): Check
23955         whether we're an open or closed constructed type and set
23956         `ginst->is_open'.
23957         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
23958         from open constructed types.
23959
23960 2003-11-15  Martin Baulig  <martin@ximian.com>
23961
23962         * reflection.c (mono_reflection_bind_generic_parameters): If we're
23963         a generic instance (instead of a generic type declaration) with
23964         unbound generic parameters, bind them to our actual types.
23965
23966 2003-11-14  Martin Baulig  <martin@ximian.com>
23967
23968         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
23969
23970         * reflection.c (mono_reflection_bind_generic_parameters): If we're
23971         an interface type, populate `res->interfaces' with instantiated
23972         versions of all the interfaces we inherit.
23973
23974 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
23975
23976         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
23977         when MONO_PATH is set but doesn't contain the install dir.
23978
23979 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23980
23981         * icall.c:
23982         (ves_icall_Type_GetInterfaces): don't return an interface twice when
23983         it's also implemented in base classes. Fixes bug #50927.
23984
23985 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
23986
23987         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
23988         if this method is called from a finalizer. Fixes #50913.
23989
23990 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
23991
23992         * threads.c: Implement VolatileRead/VolatileWrite
23993
23994         * icall.c: Add new icalls for VolatileRead/VolatileWrite
23995
23996 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
23997
23998         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
23999         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
24000         2.95.3.
24001
24002         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
24003         from Peter Ross (pro@missioncriticalit.com).
24004         
24005 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
24006
24007         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
24008
24009 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
24010
24011         * assembly.c (mono_assembly_load_references): Disable check because it
24012         triggers on older corlibs which lots of people have.
24013
24014 2003-11-12  Jackson Harper  <jackson@ximian.com>
24015
24016         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
24017         load corlib.dll if mscorlib.dll is not found.
24018         * assembly.h: Remove corlib name define.
24019         * class.c:
24020         * domain.c:
24021         * image.c: Change corlib name to mscorlib.
24022         
24023 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
24024
24025         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
24026
24027 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
24028
24029         * appdomain.h: Added loader_optimization here to sync with the C#
24030         code, and add disallow_binding_redirects field.
24031
24032 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
24033
24034         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
24035
24036         * reflection.c (mono_image_build_metadata): Fix crash on modules
24037         with no types.
24038
24039         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
24040
24041         * icall.c (ves_icall_get_method_info): Return callingConvention as
24042         well.
24043
24044         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
24045         namespaces from the EXPORTEDTYPE table as well.
24046
24047         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
24048         from all modules inside the assembly.
24049         
24050 2003-11-11  Martin Baulig  <martin@ximian.com>
24051
24052         * reflection.c (mono_reflection_bind_generic_parameters): Make
24053         this work for interfaces.
24054
24055 2003-11-11  Martin Baulig  <martin@ximian.com>
24056
24057         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
24058
24059 2003-11-11  Martin Baulig  <martin@ximian.com>
24060
24061         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
24062         "MonoInflatedMethod" and "MonoInflatedCtor".
24063
24064 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
24065
24066         * reflection.c (resolution_scope_from_image): Use the assembly table
24067         from the manifest module, since other modules don't have it.
24068
24069         * debug-helpers.c (mono_type_full_name): New helper function.
24070
24071         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
24072
24073         * image.c (mono_image_load_file_for_image): New public function which
24074         is a replacement for the load_file_for_image in class.c.
24075
24076         * assembly.c (mono_assembly_load_module): A wrapper for the function
24077         above which does assembly association and reference loading too.
24078
24079         * class.c (mono_class_from_name): Call mono_assembly_load_module.
24080
24081 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24082
24083         * appdomain.c: not all of the attributes for the full assembly name
24084         are required and the order doesn't matter. Fixes bug #50787.
24085
24086 2003-11-10  Dick Porter  <dick@ximian.com>
24087
24088         * locales.c: Use platform-endian UTF16
24089
24090 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
24091
24092         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
24093         
24094 2003-11-10  Martin Baulig  <martin@ximian.com>
24095
24096         * metadata.c
24097         (mono_metadata_load_generic_params): Make this actually work.
24098
24099         * reflection.c (mono_reflection_bind_generic_parameters): If our
24100         parent is a generic instance, pass all the `types' to it, no
24101         matter whether it has the same number of type parameters or not.
24102
24103 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
24104
24105         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
24106
24107         * assembly.c (mono_assembly_load_references): Move the image<->assembly
24108         assignment code to this function so it gets called recursively for all
24109         modules.
24110
24111         * image.c (load_modules): Remove the assembly assignment since it is
24112         now done by mono_assembly_load_references.
24113         
24114         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
24115         Add 'module' argument.
24116         (mono_module_get_types): New helper function.
24117         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
24118
24119 2003-11-08  Martin Baulig  <martin@ximian.com>
24120
24121         * class.c (mono_class_inflate_generic_method): Interface method
24122         don't have a header.
24123
24124         * reflection.c (mono_image_get_methodspec_token): Take an
24125         additional `MonoGenericInst *' argument instead of reading it from
24126         the header; this is necessary to support interfaces.
24127         (mono_image_create_token): Pass the `MonoGenericInst *' from the
24128         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
24129         (inflated_method_get_object): Take an additional `MonoGenericInst *'
24130         argument.
24131
24132         * reflection.h (MonoReflectionInflatedMethod): Added
24133         `MonoGenericInst *ginst'.
24134
24135 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
24136
24137         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
24138
24139 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
24140
24141         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
24142
24143 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
24144
24145         * reflection.c 
24146         (reflection_methodbuilder_from_method_builder):
24147         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
24148         initialize a ReflectionMethodBuilder structure.
24149         (mono_image_get_methodbuilder_token):
24150         (mono_image_get_ctorbuilder_token): New functions to emit memberref
24151         tokens which point to types in another module inside the same assembly.
24152
24153         * reflection.c: Use the new helper functions.
24154         
24155         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
24156
24157         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
24158         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
24159
24160         * reflection.c (resolution_scope_from_image): Emit a moduleref if
24161         neccesary.
24162
24163         * reflection.c (mono_image_build_metadata): Emit metadata only for the
24164         current module. Emit the manifest only for the main module.
24165
24166         * reflection.c (mono_image_create_token): Add assertion when a 
24167         memberref needs to be created.
24168
24169         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
24170
24171         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
24172         larger buffer for the custom attribute blob. Fixes #50637.
24173         
24174 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24175
24176         * threadpool.c: notify listener on async processing handles after
24177         invoking the async callback. Thanks to Zoltan.
24178
24179 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
24180
24181         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
24182         avoid code duplication.
24183
24184         * reflection.h (MonoDynamicImage): New type which is currently unused,
24185         but will be used through the ref.emit code in place of 
24186         MonoDynamicAssembly.
24187
24188         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
24189         object layout.
24190
24191         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
24192         a MonoDynamicImage instead of just a MonoImage.
24193         
24194         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
24195         icalls to ModuleBuilder but keep their semantics, so they will work
24196         with moduleb->assemblyb. This will change later.
24197         
24198 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
24199
24200         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
24201         object layout.
24202
24203         * reflection.c (mono_image_build_metadata): Avoid creation of a default
24204         main module, since it is now done by the managed code.
24205
24206 2003-11-03  Martin Baulig  <martin@ximian.com>
24207
24208         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
24209         `ginst->klass' here.
24210         (method_encode_methodspec): Don't use the `ginst->generic_method's
24211         klass if it's a generic instance, use `ginst->klass' in this case.
24212
24213 2003-11-03  Martin Baulig  <martin@ximian.com>
24214
24215         * reflection.c (mono_image_get_generic_method_param_info):
24216         Removed, use mono_image_get_generic_param_info() instead.
24217         (mono_image_get_type_info): Write the GenericParam table before
24218         the Method table.  This is neccessary because in the GenericParam
24219         table, type parameters of the class (ie. '!0' etc.) must come
24220         before the ones from its generic methods (ie. '!!0' etc).
24221
24222 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
24223
24224         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
24225
24226 2003-11-02  Martin Baulig  <martin@ximian.com>
24227
24228         * reflection.c (create_generic_typespec): Take a
24229         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
24230         the generic parameters from it.
24231
24232 2003-11-02  Martin Baulig  <martin@ximian.com>
24233
24234         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
24235         instead of a `MonoClassField *' since we just need the type.
24236         (create_generic_typespec): New static function.  Creates a
24237         TypeSpec token for a generic type declaration.
24238         (mono_image_get_generic_field_token): New static function.
24239         (mono_image_create_token): If we're a FieldBuilder in a generic
24240         type declaration, call mono_image_get_generic_field_token() to get
24241         the token.
24242
24243 2003-11-02  Martin Baulig  <martin@ximian.com>
24244
24245         * reflection.h
24246         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
24247         `MonoReflectionGenericInst *declaring_type' and
24248         `MonoReflectionGenericInst *reflected_type' fields.
24249
24250         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
24251         `MonoReflectionGenericInst *declaring_type' and a
24252         `MonoReflectionGenericInst *reflected_type' argument instead of a
24253         single `MonoReflectionGenericInst *type' one.  Set
24254         `res->declaring_type' and `res->reflected_type' from them.
24255         (mono_reflection_inflate_field): Likewise.      
24256
24257 2003-11-02  Martin Baulig  <martin@ximian.com>
24258
24259         * class.c (mono_class_setup_vtable): Don't store generic methods
24260         in the vtable.  
24261
24262 2003-11-02  Martin Baulig  <martin@ximian.com>
24263
24264         * reflection.h (MonoReflectionGenericInst): Added
24265         `MonoReflectionType *declaring_type'.
24266
24267         * reflection.c (mono_reflection_bind_generic_parameters): Use
24268         `if (tb->parent)' instead of `klass->parent'.
24269
24270 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
24271
24272         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
24273         with an empty ASSEMBLY table.
24274
24275         * reflection.c (mono_image_build_metadata): Avoid using the same loop
24276         variable in the inner and outer loops.
24277
24278 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
24279
24280         * metadata.h (mono_metadata_make_token): Put parentheses around macro
24281         argument.
24282
24283         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
24284         
24285         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
24286         icalls. Instead, do everything in managed code. This is needed since
24287         it is hard to restore the original domain etc. in unmanaged code in the
24288         presence of undeniable exceptions.
24289
24290         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
24291         New icalls to push and pop appdomain refs.
24292
24293 2003-10-31  Martin Baulig  <martin@ximian.com>
24294
24295         * class.c (inflate_generic_type): Renamed to
24296         mono_class_inflate_generic_type() and made it public.
24297
24298         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
24299         New interncall.
24300
24301         * loader.c (mono_field_from_memberref): Also set the retklass for
24302         typespecs.
24303
24304         * fielder.c (mono_image_get_inflated_field_token): New static
24305         method; creates a metadata token for an inflated field.
24306         (mono_image_create_token, fixup_method): Added support for
24307         "MonoInflatedField".
24308         (fieldbuilder_to_mono_class_field): New static function.
24309         (mono_reflection_inflate_field): New public function.
24310
24311         * reflection.h
24312         (MonoReflectionGenericInst): Added `MonoArray *fields'.
24313         (MonoReflectionInflatedField): New typedef.     
24314
24315 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
24316
24317         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
24318         for Solaris and other platforms without s6_addr16
24319
24320 2003-10-30  Martin Baulig  <martin@ximian.com>
24321
24322         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
24323         argument instead of two.
24324         (mono_class_inflate_generic_signature): Likewise.
24325         (inflate_generic_header): Likewise.
24326         (mono_class_inflate_generic_method): Likewise.  In addition, if
24327         `ginst->klass' is set, it becomes the new `method->klass'.
24328
24329         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
24330         field.
24331
24332         * reflection.c (encode_generic_method_sig): Write a 0xa as the
24333         first byte. [FIXME]
24334         (method_encode_methodspec): If we have generic parameters, create
24335         a MethodSpec instead of a MethodRef.
24336         (fixup_method): Added support for "MonoInflatedMethod" and
24337         "MonoInflatedCtor".
24338         (mono_image_create_token): Added support for "MonoInflatedMethod"
24339         and "MonoInflatedCtor".
24340         (inflated_method_get_object): New static function; returns a
24341         managed "System.Reflection.MonoInflatedMethod" object.
24342         (mono_reflection_bind_generic_method_parameters): Return a
24343         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
24344         (mono_reflection_inflate_method_or_ctor): Likewise.
24345         (mono_image_get_generic_method_param_info): Initialize unused
24346         fields to zero.
24347         (mono_image_get_generic_param_info): Likewise.
24348
24349         * reflection.h (MonoReflectionInflatedMethod): New public
24350         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
24351         "S.R.MonoInflatedCtor" classes.
24352
24353         * loader.c (method_from_memberref): If we're a TypeSpec and it
24354         resolves to a generic instance, inflate the method.
24355
24356 2003-10-28  Dick Porter  <dick@ximian.com>
24357
24358         * object.c (mono_runtime_run_main): Convert command-line arguments
24359         into utf8, falling back to the user's locale encoding to do so.
24360
24361 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
24362
24363         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
24364         at this time.
24365
24366         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
24367
24368         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
24369         up icalls at method definition time. Partially fixes #33569.
24370
24371 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
24372
24373         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
24374         marshalling of arrays. Fixes #50116.
24375
24376         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
24377
24378         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
24379         points to a vtable in the dying appdomain.
24380
24381         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
24382         listeners into unmanaged code inside the lock.
24383
24384         * object.c (mono_class_vtable): Turn off typed allocation in non-root
24385         domains and add some comments.
24386
24387 2003-10-25  Martin Baulig  <martin@ximian.com>
24388
24389         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
24390
24391         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
24392
24393         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
24394         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
24395         currently parsing.  Create the generic class and store it in
24396         `generic_inst->klass' before parsing the type arguments.  This is
24397         required to support "recursive" definitions; see mcs/tests/gen-23.cs
24398         for an example.
24399         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
24400         to support recursive typespec entries.
24401
24402         * class.c (mono_class_setup_parent): If our parent is a generic
24403         instance, we may get called before it has its name set.
24404         (mono_class_from_generic): Splitted into
24405         mono_class_create_from_generic() and mono_class_initialize_generic().
24406
24407 2003-10-25  Martin Baulig  <martin@ximian.com>
24408
24409         * icall.c (ves_icall_Type_BindGenericParameters): Return a
24410         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
24411         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
24412         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
24413
24414         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
24415         (create_typespec): Likewise.
24416         (mono_reflection_bind_generic_parameters): Return a
24417         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
24418         (mono_reflection_inflate_method_or_ctor): New public function.
24419
24420         * reflection.h (MonoReflectionGenericInst): New typedef.        
24421
24422 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
24423
24424         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
24425         inside the domain lock. Fixes #49993.
24426         
24427         * object.c (mono_class_vtable): When typed allocation is used, 
24428         allocate vtables in the GC heap instead of in the mempool, since the
24429         vtables contain GC descriptors which are used by the collector even
24430         after the domain owning the mempool is unloaded.
24431
24432         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
24433
24434         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
24435         reflect what it does. Also invalidate mempools instead of freeing
24436         them if a define is set.
24437
24438         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
24439         of the appdomain.
24440         
24441         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
24442         hold the finalizable objects in this domain.
24443
24444         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
24445         appdomain.
24446
24447         * appdomain.c (mono_domain_set): New function to set the current
24448         appdomain, but only if it is not being unloaded.
24449
24450         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
24451         appdomain which is being unloaded.
24452         
24453         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
24454         unloading of the root appdomain.
24455
24456         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
24457         icall to execute a method in another appdomain. Intended as a 
24458         replacement for InternalSetDomain, which can confuse the code 
24459         generation in the JIT.
24460
24461         * appdomain.c (mono_domain_is_unloading): New function to determine
24462         whenever an appdomain is unloading.
24463
24464         * appdomain.c (mono_domain_unload): New function to correctly unload
24465         an appdomain.
24466
24467         * assembly.c (mono_assembly_load_references): Check that an assembly
24468         does not references itself.
24469
24470         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
24471         domain manually, it asks the finalizer thread to do it, then waits for
24472         the result. Also added a timeout.
24473
24474         * icall.c: Register the new icalls.
24475
24476         * threads.h threads.c: Export the mono_gc_stop_world and 
24477         mono_gc_start_world functions.
24478         
24479         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
24480         function to fill out the mempool with 0x2a.
24481
24482 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
24483
24484         * reflection.h (MonoReflectionMethodAux): New structure to store
24485         information which is rarely used, thus is not in the MonoMethod
24486         structure.
24487
24488         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
24489         store the aux info.
24490
24491         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
24492         and marshalling info into the aux structure.
24493
24494         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
24495         from the aux structure.
24496
24497         * loader.c (mono_method_get_param_names): Retrieve the param names from
24498         the aux structure.
24499         
24500 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
24501
24502         * exception.h exception.c: Add AppDomainUnloadedException && fix 
24503         warning.
24504
24505 2003-10-21  Dick Porter  <dick@ximian.com>
24506
24507         * socket-io.c
24508         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
24509         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
24510
24511 2003-10-21  Martin Baulig  <martin@ximian.com>
24512
24513         * reflection.c (mono_reflection_bind_generic_parameters):
24514         `klass->parent' is NULL for interfaces.
24515
24516 2003-10-21  Martin Baulig  <martin@ximian.com>
24517
24518         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
24519
24520 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
24521
24522         * exception.c (mono_exception_from_name_msg): New helper function for
24523         creating exceptions and initializing their message field.
24524
24525         * exception.c: Simplify functions using the new helper.
24526
24527         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
24528         New function.
24529
24530         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
24531         mono_raise_exception, since otherwise gcc doesn't generate the function
24532         epilog for raise_exception, confusing the stack unwinding in the JIT.
24533         Fixes #45043.
24534
24535         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
24536         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
24537         Fixes #49499.
24538
24539 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24540
24541         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
24542         utf8.
24543
24544 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
24545
24546         * icall.c: Removed GetUninitializedObject method because
24547           AllocateUninitializedClassInstance does the same.
24548
24549 2003-10-18  Martin Baulig  <martin@ximian.com>
24550
24551         * class.c (inflate_generic_signature): Renamed to
24552         mono_class_inflate_generic_signature() and made it public.
24553         (my_mono_class_from_generic_parameter): New static function; if we
24554         don't already have the generic parameter's MonoClass, create a
24555         very simple one which is just used internally in the runtime and
24556         not passed back to managed code.
24557
24558         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
24559
24560         * metadata.h (MonoMethodSignature): Moved the
24561         `MonoGenericParam *gen_params' to the MonoMethodHeader.
24562         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
24563
24564         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
24565         ves_icall_MonoMethod_GetGenericArguments(); this is now an
24566         interncall on the MonoMethod class, not on MethodInfo.
24567         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
24568         calling mono_reflection_bind_generic_method_parameters() directly.
24569
24570         * loader.c (mono_method_get_signature): If this is a MethodSpec;
24571         return the already computed `method->signature'.
24572         (method_from_methodspec): New static function to load a method
24573         from a MethodSpec entry.
24574         (mono_get_method_from_token): Call the new method_from_methodspec()
24575         for MethodSpec tokens.  
24576         (mono_get_method_from_token): If we're a generic method, load the
24577         type parameters.
24578
24579         * reflection.c (mono_image_get_memberref_token): Allow
24580         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
24581         table.
24582         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
24583         (mono_image_create_token): First check whether it's a generic
24584         method (so we'd need to create a MethodSpec), then do the other
24585         two alternatives.
24586         (mono_reflection_bind_generic_method_parameters): Return a
24587         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
24588         called directly from the interncall.
24589
24590 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
24591
24592         * reflection.c (load_public_key): Move loading of the public key
24593         into managed code.
24594
24595         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
24596
24597         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
24598         fields.
24599
24600         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
24601         culture, hash_alg and public_key. Fixes #49555.
24602
24603 2003-10-17  Martin Baulig  <martin@ximian.com>
24604
24605         * class.h (MonoGenericInst): Moved this declaration here and added
24606         `MonoMethod *generic_method'.
24607
24608         * icall.c
24609         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
24610         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
24611
24612         * metadata.c (mono_metadata_type_equal): Two types of
24613         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
24614         index; ie. don't compare the address of the `MonoGenericParam'
24615         structure.
24616         (mono_metadata_load_generic_params): Removed the `MonoMethod
24617         *method' argument.
24618
24619         * metadata.h (MonoGenericInst): Moved declaration to class.h.
24620         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
24621
24622         * reflection.c (method_encode_signature): Encode the number of
24623         generic parameters.
24624         (encode_generic_method_sig): New static function.
24625         (method_encode_methodspec): New static function; creates an entry
24626         in the MethodSpec table for a generic method.
24627         (mono_image_get_methodspec_token): New static function.
24628         (mono_image_create_token): Call mono_image_get_methodspec_token()
24629         for generic methods.
24630         (mono_reflection_bind_generic_method_parameters): New public
24631         function.  Instantiates a generic method.
24632
24633 2003-10-16  Martin Baulig  <martin@ximian.com>
24634
24635         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
24636         *gen_params' here from MonoMethodHeader.
24637
24638         * metadata.c (mono_metadata_parse_method_signature): If we have
24639         generic parameters, initialize `method->gen_params' and then set
24640         the correct `type->data.generic_param' in all the parameters.
24641
24642 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
24643
24644         * threads.c (mono_threads_get_default_stacksize): New function to 
24645         return the default stacksize.
24646
24647         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
24648         termination of the finalizer thread, since the previous method had
24649         race conditions. Fixes #49628.
24650
24651         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
24652         as for the other managed threads.
24653
24654 2003-10-16  Martin Baulig  <martin@ximian.com>
24655
24656         * class.c (inflate_generic_signature): Copy `generic_param_count'
24657         and `gen_params'.
24658
24659         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
24660         New interncall.
24661
24662         * metadata.c (mono_metadata_parse_method_signature): Actually set
24663         the `method->generic_param_count' here.
24664         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
24665
24666 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
24667
24668         * object.h: Add a new field to TypedRef to simplify the implementation
24669         of the REFANY opcodes in the JIT.
24670
24671         * icall.c: Make use of the new field.
24672
24673         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
24674         dynamically.
24675
24676 2003-10-15  Martin Baulig  <martin@ximian.com>
24677
24678         * class.c (mono_class_from_gen_param): Renamed to
24679         mono_class_from_generic_parameter() and moved most of the
24680         functionality from mono_reflection_define_generic_parameter()
24681         here; ie. we create a "real" class here.
24682         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
24683         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
24684         previously been called.
24685
24686         * class.h (MonoGenericParam): Moved the declaration of this struct
24687         here from metadata.h and added `MonoMethod *method'.
24688
24689         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
24690         interncall.
24691
24692         * loader.c (mono_get_method_from_token): If we have any generic
24693         parameters, call mono_metadata_load_generic_params() to read them
24694         from the MONO_TABLE_GENERICPAR.
24695
24696         * metadata.c (mono_metadata_load_generic_params): Added
24697         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
24698
24699         * metadata.h (MonoMethodSignature): Replaced
24700         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
24701         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
24702
24703         * reflection.c (mono_reflection_define_generic_parameter): Moved
24704         most of the functionality into the new
24705         mono_class_from_generic_parameter(); set the `method' field if
24706         we're a method parameter.       
24707
24708 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
24709
24710         * marshal.c (emit_struct_conv): if native size is 0
24711         emit no code.
24712
24713 2003-10-14  Martin Baulig  <martin@ximian.com>
24714
24715         * icall.c: The generics API has changed in the spec since it was
24716         added to System.Type; these modifications make it match the spec
24717         again.
24718         (ves_icall_Type_GetGenericParameters): Renamed to
24719         `ves_icall_Type_GetGenericArguments'.
24720         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
24721         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
24722         `ves_icall_MonoType_get_HasGenericArguments'.
24723         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
24724         `ves_icall_MonoType_get_IsGenericParameter'.
24725         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
24726         this is no interncall anymore.
24727         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
24728         `ves_icall_TypeBuilder_get_IsGenericParameter'.
24729
24730 2003-10-14  Martin Baulig  <martin@ximian.com>
24731
24732         * reflection.c (mono_reflection_bind_generic_parameters): Also
24733         inflate generic methods if we're reading the class from IL.
24734
24735 2003-10-13  Martin Baulig  <martin@ximian.com>
24736
24737         * reflection.c (mono_reflection_define_generic_parameter): This
24738         method isn't called directly from the icall anymore; take a
24739         `MonoReflectionAssemblyBuilder *' so we can use this for type and
24740         method generic parameters.
24741         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
24742         (method_builder_encode_signature): Encode generic parameters.
24743         (mono_image_get_method_info): Write generic params to the
24744         MONO_TABLE_GENERICPARAM table.
24745
24746         * reflection.h (MonoReflectionMethodBuilder): Added
24747         `MonoArray *generic_params'.
24748
24749         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
24750
24751         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
24752         wrapper for mono_reflection_define_generic_parameter().
24753         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
24754
24755 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
24756
24757         * marshal.h: Add missing function to fix build.
24758
24759         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
24760         the SetLastError pinvoke attribute.
24761
24762         * marshal.c (mono_marshal_set_last_error): New helper function called
24763         by the generated code.
24764         
24765         * marshal.c (mono_mb_emit_branch): New helper function.
24766
24767         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
24768
24769         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
24770         classes as parameters and return values of delegates. Fixes #29256. 
24771
24772 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
24773
24774         * locales.c: use gint32 in non HAVE_ICU case
24775
24776 2003-10-11  Martin Baulig  <martin@ximian.com>
24777
24778         * mono-debug.c (mono_debug_add_method): Added a workaround for
24779         bug #48591.
24780
24781 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
24782
24783         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
24784         delegates passed to native code must use the STDCALL calling 
24785         convention. Fixes #35987.
24786
24787 2003-10-10  Martin Baulig  <martin@ximian.com>
24788
24789         * class.c (inflate_generic_type): If we're inflating for a generic
24790         type instance (and not for a generic method), return
24791         MONO_TYPE_MVAR unchanged.
24792
24793 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24794
24795         * string-icalls.c: Join ignores null strings in the source array.
24796         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
24797         * threads.c: GetAvailableTheads is slightly more accurate.
24798
24799 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
24800
24801         * threads.h threads.c : add mono_threads_set_default_stacksize
24802         and pass default to CreateThread calls.
24803
24804 2003-10-09  Dick Porter  <dick@ximian.com>
24805
24806         * icall.c:
24807         * locales.h:
24808         * locales.c: Internal calls for constructing CultureInfo and
24809         related objects from libicu (if its available.)
24810
24811 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
24812
24813         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
24814
24815 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24816
24817         * threadpool.c: added an argument to async_invoke_thread that is the
24818         item to process, pass the MonoAsyncResult to the thread start function
24819         when creating a new thread. This way we don't need to acquire any lock
24820         when we're creating a new thread. Readded a semaphore for faster
24821         response times (instead of that Sleep i added).
24822
24823 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
24824
24825         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
24826         get daylight change dates better on Windows, fix handling
24827         of platforms without tm_gmtoff.
24828
24829 2003-10-06  Martin Baulig  <martin@ximian.com>
24830
24831         * class.c (inflate_generic_method): Renamed to
24832         mono_class_inflate_generic_method() and made public.
24833         (mono_class_init): Don't inflate the generic methods here.
24834         (mono_class_from_generic): Added `gboolean inflate_methods'
24835         argument.  Inflate the methods here.
24836
24837         * loader.c (mono_method_get_param_names): Ignore instances of
24838         generic types for the moment.
24839
24840         * reflection.c (fixup_method): Added support for inflated methods.
24841         (mono_image_create_token): Use mono_image_get_methodref_token()
24842         for inflated methods.
24843         (mono_custom_attrs_from_param): Ignore instances of generic types
24844         for the moment.
24845         (mono_reflection_bind_generic_parameters): New public function.
24846         Moved all the functionality from
24847         ves_icall_Type_BindGenericParameters() here and added support for
24848         dynamic types.
24849         (mono_reflection_define_generic_parameter): Initialize
24850         `klass->methods' here.
24851
24852         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
24853         functionality into mono_reflection_define_generic_parameter().
24854         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
24855         TypeBuilder, return that TypeBuilder.
24856
24857 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24858
24859         * appdomain.c: removed mono_delegate_semaphore.
24860
24861         * threadpool.c:
24862         (mono_thread_pool_add): moved hash table creation inside and the thread 
24863         creation outside of the critical region.
24864         (mono_thread_pool_finish): removed obsolete code.
24865         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
24866         continue or exit the thread depending on the queue.
24867
24868 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
24869
24870         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
24871         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
24872         handle more bool marshalling options
24873
24874 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
24875
24876         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
24877         arrays of structs. Also add a more descriptive error message when
24878         a structure member is marshalled as LPArray.
24879
24880 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
24881
24882         * marshal.c (mono_marshal_get_native_wrapper): Add support for
24883         marshalling arrays of complex types. Fixes #29098. Also remove an
24884         usused and incomplete function.
24885
24886 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
24887
24888         * gc.c: report heap_size - free_bytes as total memory allocated
24889         (bug#49362).
24890
24891 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
24892
24893         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
24894         fix timezone handling problems on Windows.
24895         
24896         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
24897         asserts when the year is outside the range handled by ms the functions.
24898
24899         * class.c (setup_interface_offsets): If the class is an interface,
24900         fill out its interface_offsets slot.
24901
24902 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24903
24904         * threadpool.c: mark threadpool threads as background.
24905
24906 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
24907
24908         * decimal.c - define DECINLINE to nothing if not using GCC
24909
24910 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
24911
24912         * assembly.c: More refcount fixes.
24913
24914 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24915
24916         * string-icalls.c: if we're not trimming, return the same string.
24917         When not splitting, don't create a new string.
24918
24919 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24920
24921         * image.c:
24922         (mono_image_open): increment the ref_count inside the critical section.
24923
24924 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
24925
24926         * image.c (mono_image_open): Fix reference counting bug.
24927
24928 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
24929
24930         * marshal.c (mono_marshal_type_size) struct alignment changed for 
24931         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
24932         64bits. Avoid leak in mono_marshal_get_native_wrapper when
24933         mono_lookup_pinvoke_call throws.        
24934
24935 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
24936
24937         * reflection.c (mono_reflection_parse_type): Fix #49114.
24938
24939         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
24940         temporary workaround for cygwin header problem.
24941
24942         * object.c (mono_object_isinst): Synchronize this with the code
24943         generated by the JIT for casts.
24944
24945 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
24946
24947         * reflection.c (encode_type): Fix #38332.
24948
24949 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
24950
24951         * marshal.c (mono_marshal_method_from_wrapper): New function to return
24952         the original method from the wrapper method.
24953
24954 2003-09-25  Martin Baulig  <martin@ximian.com>
24955
24956         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
24957         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
24958         (ves_icall_Type_get_IsGenericInstance): New interncall.
24959
24960 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
24961
24962         * object.c: fix cast warning in big endian code.
24963
24964 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
24965
24966         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
24967         
24968 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24969
24970         * assembly.c: don't call check_env from mono_assembly_load. It's
24971         already done once in mono_assemblies_init and may cause headaches when
24972         multiple threads are loading assemblies.
24973
24974 2003-09-19  Martin Baulig  <martin@ximian.com>
24975
24976         * reflection.c (mono_reflection_define_generic_parameter): Don't
24977         allocate `klass->methods', set `klass->flags' to
24978         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
24979
24980 2003-09-18  Martin Baulig  <martin@ximian.com>
24981
24982         * class.c (mono_class_init): Don't create `class->methods' if it's
24983         already initialized.
24984
24985         * metadata.c (mono_metadata_load_generic_params): Make this
24986         actually work.
24987
24988         * reflection.c (mono_reflection_define_generic_parameter): Set
24989         parent class and interfaces from the constraints.
24990
24991         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
24992         to keep this struct in sync with the declaration in TypeBuilder.cs.
24993
24994 2003-09-17  Martin Baulig  <martin@ximian.com>
24995
24996         * metadata.h (MonoType): Replaced the data's `int type_param'
24997         field with `MonoGenericParam *generic_param'.
24998         (MonoGenericParam): Added `MonoClass *klass'.
24999
25000         * class.c (mono_class_from_gen_param): Removed the
25001         `MonoImage *image' and `int type_num' arguments.
25002
25003         * metadata.c (mono_metadata_parse_generic_param): New static
25004         method; creates a MonoGenericParam which just contains the index.
25005         (do_mono_metadata_parse_type): Call
25006         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
25007         MONO_TYPE_MVAR.
25008
25009         * reflection.c (mono_image_typedef_or_ref): Generic type
25010         parameters may be in the same assembly, but never use a typedef
25011         for them.
25012         (mono_reflection_define_generic_parameter): We're now creating a
25013         "real" class for the type parameter; it's now safe to call
25014         mono_class_from_mono_type() on the class'es type, it'll do the
25015         right thing.
25016
25017 2003-09-16  Martin Baulig  <martin@ximian.com>
25018
25019         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
25020         `symfile->range_entry_size' and `symfile->class_entry_size' here;
25021         the `symfile' data structure must be fully initialized before it
25022         gets added to the table.
25023
25024 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
25025
25026         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
25027
25028         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
25029         class init trampolines.
25030
25031 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
25032
25033         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
25034         to the built-in profiler to turn off time and allocation profiling
25035         respectively.
25036
25037 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
25038
25039         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
25040         g_direct_equal.
25041
25042         * debug-helpers.c (mono_method_full_name): Print the wrapper type
25043         in human readable form.
25044
25045 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
25046
25047         * reflection.c icall.c: Fixed warnings.
25048
25049         * image.c (load_class_names): Use a temporary hash table to hold the
25050         namespaces in order to avoid doing many string comparisons.
25051
25052         * image.h: Fix typo.
25053
25054         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
25055         Pass NULL instead of g_direct_equal to the GHashTable constructor 
25056         since the NULL case is short-circuited inside g_hash_table_lookup, 
25057         leading to better performance.  
25058
25059         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
25060         obtain the first custom attribute for a given index. Depends on the
25061         CustomAttribute table being sorted by the parent field.
25062
25063         * reflection.c (mono_custom_attrs_from_index): Use the new function 
25064         for better performance.
25065
25066 2003-09-07  Martin Baulig  <martin@ximian.com>
25067
25068         * class.c (mono_class_init): If we're a generic instance, inflate
25069         all our methods instead of loading them from the image.
25070         (mono_class_from_generic): Set `class->methods = gklass->methods'.
25071
25072 2003-09-07  Martin Baulig  <martin@ximian.com>
25073
25074         * mono-debug-debugger.c: Added support for constructors.
25075
25076 2003-09-06  Martin Baulig  <martin@ximian.com>
25077
25078         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
25079         New interncall.
25080
25081         * reflection.c (mono_reflection_setup_generic_class): Call
25082         ensure_runtime_vtable() to create the vtable.
25083
25084 2003-09-05  Martin Baulig  <martin@ximian.com>
25085
25086         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
25087         MONO_TYPE_MVAR.
25088
25089 2003-09-04  Martin Baulig  <martin@ximian.com>
25090
25091         * reflection.c (mono_reflection_define_generic_parameter): Generic
25092         parameters start with zero.
25093
25094 2003-09-04  Martin Baulig  <martin@ximian.com>
25095
25096         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
25097
25098         * reflection.h (MonoReflectionGenericParam): New typedef.
25099         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
25100         the generic parameters from the managed TypeBuilder.
25101
25102         * reflection.c (mono_reflection_define_generic_parameter): New function.
25103         (mono_reflection_create_runtime_class): Encode generic parameters.
25104         (mono_reflection_setup_generic_class): New function; this is
25105         called after adding adding all generic params to the TypeBuilder.
25106         (encode_type): Added MONO_TYPE_VAR.
25107
25108 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
25109
25110         * class.h class.c (mono_class_needs_cctor_run): Moved this method
25111         here from the JIT.
25112
25113         * assembly.h assembly.c: Moved the AOT loading code into an assembly
25114         load hook.
25115
25116 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
25117
25118         * reflection.h reflection.c class.h class.c: Delete duplicate 
25119         definition of mono_type_get_name () from reflection.c and export the
25120         one in class.c.
25121
25122         * class.c: Class loading fixes from Bernie Solomon 
25123         (bernard@ugsolutions.com).
25124
25125         * reflection.c: Endianness fixes from Bernie Solomon 
25126         (bernard@ugsolutions.com).
25127         
25128 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
25129
25130         * assembly.h assembly.c: Define a file format version for AOT
25131         libraries.
25132         
25133         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
25134
25135         * appdomain.h (MonoJitInfo): New field to determine whenever the
25136         code is domain neutral.
25137         
25138 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
25139
25140         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
25141
25142 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
25143
25144         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
25145         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
25146         Avoid caching the result since strings must be domain specific. Fixes
25147         #48050.
25148
25149 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
25150
25151         * marshal.c (mono_marshal_init): Make this callable multiple times
25152         since it is hard to find a correct place to call it.
25153
25154         * object.c (mono_runtime_class_init): Execute static constructors in
25155         the correct appdomain.
25156
25157         * image.c (build_guid_table): Handle the case when multiple images have
25158         the same GUID.
25159
25160 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25161
25162         * icall.c: added a couple of icalls for System.Web.
25163
25164 2003-08-28  Martin Baulig  <martin@ximian.com>
25165
25166         * icall.c (ves_icall_Type_BindGenericParameters): Use
25167         `klass->generic_inst' instead of `&klass->byval_arg' in the
25168         mono_type_get_object() call.  The returned type must be
25169         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
25170
25171 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
25172
25173         * NOTES: New file.
25174
25175         * object.c (mono_class_proxy_vtable): Make it thread safe.
25176
25177         * pedump.c: Fix warning.
25178
25179         * object.c appdomain.h: Get rid of metadata_section. 
25180         It is no longer needed and it was causing deadlocks with domain->lock.
25181
25182         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
25183
25184 2003-08-26  Martin Baulig  <martin@ximian.com>
25185
25186         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
25187
25188 2003-08-26  Martin Baulig  <martin@ximian.com>
25189
25190         * pedump.c (main): Call mono_metadata_init(),
25191         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
25192         and mono_loader_init().
25193
25194 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
25195
25196         * loader.h: Add missing include to fix build.
25197
25198         * image.h: mono_image_load_references is no more.
25199
25200         * assembly.c: Reworked assembly loading to make it really thread safe.
25201         After these changes, the assembly returned by mono_assembly_open is
25202         fully initialized, i.e. all its references assemblies are loaded.
25203
25204         * assembly.c (mono_image_load_references): Renamed to 
25205         mono_assembly_load_references, and made private, since clients no
25206         longer need to call it.
25207
25208         * class.c: Removed calls to mono_assembly_load_references, since it was
25209         a source of deadlocks.
25210
25211         * loader.h loader.c class.h class.c: Protect data structures using a 
25212         new lock, the loader lock.
25213
25214         * class.c (mono_class_setup_vtable): Create temporary hash tables and
25215         GPtrArrays only when needed.
25216
25217         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
25218         into empty structures by mcs. Fixes pinvoke7.cs.
25219         
25220         * domain.c (mono_init): Call a new initialization function.
25221
25222         * appdomain.c (mono_runtime_init): Call the new initializer function
25223         of the marshal module.
25224
25225         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
25226         inserted into empty structures by mcs. Fixes pinvoke7.cs.
25227
25228         * marshal.h marshal.c: Added locks around the wrapper caches to make
25229         this module thread safe.
25230
25231         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
25232         this argument. Fixes pinvoke1.exe.
25233
25234 2003-08-25  Lluis Sanchez <lluis@ximian.com>
25235
25236         * object.h: Added call_type field to MonoMethodMessage and the corresponding
25237         enumeration of values. Removed fields to store remote call output values in
25238         MonoAsyncResult. Not needed any more.
25239         * object.c: Initialize call_type and async_result fields in mono_message_init.
25240         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
25241         dispatching the message.
25242         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
25243         async call to finish. To do it use a message with EndInvoke call type.
25244
25245 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
25246
25247         * loader.h loader.c (mono_method_hash_marhal_info): New function which
25248         determines whenever a method has marshalling info.
25249
25250 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25251
25252         * assembly.c: fix the build on windows.
25253
25254 2003-08-22 Lluis Sanchez <lluis@ximian.com>
25255
25256         * object.cs: Fixed bug #47785.
25257
25258 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
25259
25260         * string-icalls.c (StringReplace): If their are no occurances of
25261         the old string found return a reference to the supplied
25262         string. This saves some memory and matches MS behavoir.
25263         
25264 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25265
25266         * socket-io.c: fixed compilation for systems that define AF_INET6
25267         and don't define SOL_IP/SOL_IPV6.
25268
25269 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
25270
25271         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
25272         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
25273
25274         * rawbuffer.c rawbuffer.h: Make this module thread safe.
25275
25276         * domain.c: Make this module thread safe.
25277
25278         * domain.c (mono_init): Call new initialization function.
25279
25280         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
25281         reference types too. Fixes #38812.
25282
25283         * image.c (mono_image_init): Fixed warnings.
25284
25285         * class.c (mono_class_from_typeref): Handle assembly load failure
25286         correctly.
25287
25288         * appdomain.c (add_assemblies_to_domain): Handle the case when
25289         the references of an assembly are not yet loaded.
25290
25291         * metadata.c image.c assembly.c: Moved initialization of global
25292         variables to a separate function called at startup since lazy 
25293         initialization of these variables is not thread safe.
25294         
25295         * image.c assembly.c: Made this module thread safe by adding locks in 
25296         the appropriate places.
25297
25298         * domain.c (mono_init): Call the new initialization functions of the
25299         three modules.
25300
25301 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
25302
25303         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
25304           make a direct call. It is proxy's work to make the call asynchronous.
25305           mono_delegate_end_invoke(): If the targe is a proxy, just collect
25306           the return values.
25307         * object.cs: mono_method_call_message_new(): read AsyncResult and
25308           state object from parameters list, if this info is requested.
25309         * object.h: Added fields to store remote call output values in
25310           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
25311
25312 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
25313
25314         * object.h: add needed fields to MonoThread.
25315         * threads.c, threads.h: allow registering a function to cleanup data
25316         allocated per thread by the JIT.
25317
25318 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
25319
25320         * loader.h: portability fix by Bernie Solomon
25321         * <bernard@ugsolutions.com>.
25322
25323 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
25324
25325         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
25326         return a MonoArray. This simplifies the code and also ensures that
25327         the cache allways contains an object reference as a value.
25328
25329         * icall.c (ves_icall_get_parameter_info): Simplified using the new
25330         function.
25331
25332 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25333
25334         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
25335         fixes a problem with byte ordering when getting the address family for
25336         a socket.
25337
25338 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
25339
25340         * .cvsignore: Added monosn.
25341
25342         * reflection.h reflection.c loader.c: Added support for parameter
25343         marshalling to dynamically created types. Fixes #47295.
25344
25345 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
25346
25347         * rand.c: remove useless warnings.
25348
25349 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
25350
25351         * class.c: implemented ldtoken for methods and fieldrefs.
25352
25353 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25354
25355         * threadpool.c: when mono_async_invoke was called, no one took care of
25356         monitoring the queue. So if the method invoked took some time and we
25357         got new async invoke requests after 500 ms (the thread created waited
25358         that long in WaitForSingleObject), the new async invoke was not called
25359         until the previous one finished.
25360
25361         This is fixed now. Thanks to Totte for helping with it.
25362
25363 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25364
25365         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
25366
25367 2003-08-11  Martin Baulig  <martin@ximian.com>
25368
25369         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
25370
25371 2003-08-06  Martin Baulig  <martin@ximian.com>
25372
25373         * mono-debug-debugger.c: Added support for static fields,
25374         properties and methods.
25375
25376 2003-08-06  Martin Baulig  <martin@ximian.com>
25377
25378         * mono-debug-debugger.c: Don't store the MonoString's vtable to
25379         make this work for applications with multiple application domains.
25380
25381 2003-08-04  Martin Baulig  <martin@ximian.com>
25382
25383         * mono-debug-debugger.c: Completely reworked the type support; the
25384         most important thing is that we're now just using one single
25385         `MonoType' instance per type.
25386
25387 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
25388
25389         * mono-endian.h, mono-endian.c, icall.c: Added icall
25390         ves_icall_System_Double_AssertEndianity to assert double word endianity
25391         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
25392
25393 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
25394
25395         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
25396         support, icalls and fixes.
25397
25398 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
25399
25400         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
25401         classes that are a punctuation character in .NET is not the same a
25402         g_unichar_ispunct.
25403
25404 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
25405
25406         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
25407
25408 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
25409
25410         * icall.c: Add new MemCopy internalcall.
25411         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
25412         Simplified code; It is not necessary to handle all the cases here,
25413         as the C# code takes care of it.  Only handle the case of the name
25414         resource embedded into the assembly.
25415
25416         Changed signature to return the data pointer and the size of the
25417         data. 
25418
25419 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
25420
25421         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
25422         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
25423
25424 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
25425
25426         * socket-io.c: ignore EINTR error in select.
25427
25428 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
25429
25430         * class.h, class.c: removed unused subclasses field in MonoClass.
25431
25432 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
25433
25434         * icall.c: improve fix of get_base_definition(). If the parent class
25435           doesn't have the mehod, look at the parent of the parent.
25436         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
25437           to check if a parameter is an in or out parameter
25438           (PARAM_ATTRIBUTE_IN is not set by default).
25439           mono_method_return_message_restore(): Use mono_class_value_size to
25440           get the size of a value type. mono_type_stack_size (parameterType)
25441           does not return the correct value if parameterType is byRef.
25442           mono_load_remote_field(), mono_load_remote_field_new(),
25443           mono_store_remote_field(), mono_store_remote_field_new():
25444           raise exception if the remote call returns an exception.
25445
25446 2003-07-28  Martin Baulig  <martin@ximian.com>
25447
25448         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
25449         method.  This is a wrapper around mono_runtime_invoke() which
25450         boxes the instance object if neccessary.
25451
25452 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
25453
25454         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
25455         metadata.h, row-indexes.h, verify.c: first cut of generics support.
25456
25457 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
25458
25459         * icall.c: disable mcs bug workaround.
25460
25461 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
25462
25463         * object.c (mono_runtime_class_init): Take the metadata_section
25464         mutex before obtaining the domain mutex.
25465
25466         * appdomain.h: Added definition of metadata_section mutex here. 
25467
25468         * object.c: define metadata_mutex here.
25469
25470 2003-07-24  Ravi Pratap  <ravi@ximian.com>
25471
25472         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
25473         fixed.
25474
25475 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
25476
25477         * reflection.c: Fix bug #46669
25478
25479 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25480
25481         * exception.c:
25482         * exception.h:
25483         * icall.c:
25484         * object.h: fill in the type name for TypeLoadException.
25485
25486 2003-07-23  Ravi Pratap  <ravi@ximian.com>
25487
25488         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
25489         relationship between TypeBuilders while compiling corlib) and bug
25490         45993 (Array types returned from the runtime while compiling
25491         corlib were from the loaded corlib).
25492
25493 2003-07-22  Martin Baulig  <martin@ximian.com>
25494
25495         * mono-debug-debugger.c: Reworked the type support a bit more;
25496         distinguish between types and classes.
25497
25498 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
25499
25500         * icall.c: add IsArrayImpl icall.
25501
25502 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
25503
25504         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
25505         initializing real_size only once. Also fix bug #46602.
25506
25507 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
25508
25509         * object.c: Renamed mono_metadata_section to metadata_section.
25510
25511 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
25512
25513         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
25514           empty array if the type is an array. Fixed.
25515           ves_icall_MonoMethod_get_base_definition: if the base method
25516           is abstract, get the MethodInfo from the list of methods of
25517           the class.
25518         * reflection.c: ParameterInfo.PositionImpl should be zero-based
25519           and it was 1-based. Fixed in mono_param_get_objects.
25520
25521 2003-07-20  Martin Baulig  <martin@ximian.com>
25522
25523         * mono-debug.h: Set version number to 31.
25524         (mono_debug_init): Added `MonoDomain *' argument.
25525
25526         * mono-debug-debugger.c: Reworked the type support; explicitly
25527         tell the debugger about builtin types; pass the `klass' address to
25528         the debugger.
25529
25530 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
25531
25532         * image.c: Allow new metadata tables to be loaded without a
25533         warning. Also update the warning message to give the new constant value.
25534                 
25535 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
25536
25537         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
25538         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
25539         array type representation changes.
25540
25541 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
25542
25543         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
25544         on Environment.Exit () call.
25545
25546 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
25547
25548         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
25549         requires a matching corlib.
25550
25551 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
25552
25553         * Changelog: My editor decided to add a CR to each line. Sorry about that.
25554           Committed again without the CRs.
25555         
25556 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
25557
25558         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
25559           getting it from the "this" socket instance. Did not work
25560           if the socket is a subclass of Socket.
25561           Also fixed bug #35371.
25562
25563 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
25564
25565         * metadata.c: fixed size for TypedByRef.
25566         * loader.c: when searching for a method, consider the vararg amrker.
25567         * unicode.c, decimal.c: constify some arrays.
25568
25569 2003-07-15  Dick Porter  <dick@ximian.com>
25570
25571         * socket-io.c: Fixed compilation for gcc < 3.2.
25572
25573         Fixed compilation for machines that don't have AF_INET6 (thanks to
25574         Bernie Solomon <bernard@ugsolutions.com> for that part.)
25575
25576         Fixed compile warnings.
25577         
25578         Fixed formatting and line endings.
25579
25580 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
25581
25582         * socket-io.h:
25583         * socket-io.c: Added IPv6 support.
25584
25585 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
25586
25587         * class.c (mono_class_is_assignable_from): New function to implement
25588         the is_assignable_from logic. Used by mono_object_isinst, 
25589         Type::IsAssignableFrom () and the interpreter.
25590
25591         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
25592         Object, even interfaces.
25593         
25594         * object.c (mono_object_isinst): Implement in terms of 
25595         is_assignable_from.
25596
25597         * icall.c (ves_icall_type_is_assignable_from): New icall.
25598
25599 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
25600
25601         * domain.c (foreach_domain): fix compiler warning.
25602
25603 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
25604
25605         * image.c (load_metadata_ptrs): use g_strndup because strndup is
25606         not available on all plattforms
25607
25608 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
25609
25610         * image.h image.c: Store the metadata version string in MonoImage.
25611         * icall.c: New icall to retrieve the image version.
25612         * reflection.c (create_dynamic_image): Fill in the image version field
25613         * reflection.c (build_compressed_metadata): Use the image version
25614         from the image structure.
25615
25616 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25617
25618         * appdomain.c: modified comment.
25619         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
25620         That will be its last iteration when mono_gc_cleanup is called from
25621         mono_runtime_cleanup and before the domain is unloaded.
25622
25623         Fixes bug #45962.
25624
25625 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
25626
25627         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
25628         attributes.
25629
25630 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
25631
25632         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
25633         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
25634         Bernie Solomon <bernard@ugsolutions.com>.
25635
25636 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
25637
25638         * object.c, object.h: provide mono_object_new_fast() for faster
25639         allocation in some special cases.
25640
25641 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
25642
25643         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
25644         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
25645
25646 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
25647
25648         * threadpool.c: fix leaks.
25649
25650 2003-07-01  Dick Porter  <dick@ximian.com>
25651
25652         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
25653         using MonoGHashTables.  Fixes threadpool bug posted to list.
25654
25655 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
25656
25657         * image.h, image.c: added support to load an assembly from a byte array.
25658         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
25659         assembly bundle support.
25660
25661 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
25662
25663         * threadpool.c (mono_thread_pool_add): keep a reference to the
25664         AsyncResult to prevent GC
25665
25666 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
25667
25668         * class.c: leak fix.
25669
25670 2003-06-25  Dick Porter  <dick@ximian.com>
25671
25672         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
25673         for the async object, the WaitHandle object will close the handle.
25674         Fixes bug 45321.
25675
25676 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
25677
25678         * class.c: in mono_array_class_get (), lookup from the hash with the
25679         same type we insert: this works around a bug in
25680         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
25681         lluis. The real fix will have to wait for after the release.
25682
25683 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
25684
25685         * icall.c: fix memory leak when getting type members.
25686
25687 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
25688
25689         * reflection.c: added more pubtoken special cases.
25690
25691 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
25692
25693         * class.c: handle field offset correctly when class size
25694         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
25695
25696 2003-06-20  Martin Baulig  <martin@ximian.com>
25697
25698         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
25699         *image' field.
25700
25701 2003-06-20  Martin Baulig  <martin@ximian.com>
25702
25703         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
25704
25705 2003-06-20  Martin Baulig  <martin@ximian.com>
25706
25707         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
25708         just distinguish between variables in registers and variables at
25709         an offset relative to a register.
25710
25711 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25712
25713         * icall.c: #ifdef out latest changes until mcs is fixed.
25714
25715 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
25716
25717         * icall.c: return members in metadata order.
25718
25719 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
25720
25721         * icall.c: avoid infinite loop in GetTimeZoneData.
25722
25723 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
25724
25725         * icall.c: added Marshal.Prelink/All icalls.
25726
25727 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
25728
25729         * object.c, object.h: fix warnings and do some overflow checking
25730         when creating arrays.
25731
25732 2003-06-17  Dick Porter  <dick@ximian.com>
25733
25734         * file-io.h:
25735         * file-io.c: File attributes need to be tweaked slightly when
25736         passed from the managed to the w32 world.
25737
25738 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
25739         * profiler.h profiler-private.h profiler.c: Rework last patch
25740         based on suggestion by Paolo.
25741         
25742 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
25743
25744         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
25745         instruction level coverage data collection.
25746         * profiler.h profiler.c (: Added new callback function which can be
25747         used by the profiler to limit which functions should have coverage
25748         instrumentation.
25749         * profiler.c (mono_profiler_load): Call g_module_build_path to
25750         generate the file name of the profiler library.
25751
25752 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
25753
25754         * profiler.c, profiler.h, profiler-private.h: added basic block 
25755         coverage profiling API.
25756
25757 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
25758
25759         * reflection.c (mono_reflection_create_runtime_class): Add support
25760         for events in dynamically generated code.
25761
25762         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
25763         not allocated.
25764
25765 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
25766
25767         * icall.c: when getting timezone info, return reasonable values if we
25768         can't get the actual data.
25769
25770 2003-06-14  Dick Porter  <dick@ximian.com>
25771
25772         * threads.c (start_wrapper): Remove the reference to the thread
25773         object in the TLS data, so the thread object can be finalized.
25774         This won't be reached if the thread threw an uncaught exception,
25775         so those thread handles will stay referenced :-( (This is due to
25776         missing support for scanning thread-specific data in the Boehm GC
25777         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
25778
25779 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
25780
25781         * reflection.c: ensure streams and tables are first allocated with
25782         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
25783
25784 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
25785
25786         * icall.c: fixed GetElementType for byrefs (bug# 44792).
25787
25788 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
25789
25790         * reflection.c (mono_reflection_create_runtime_class): Add support for
25791         properties to dynamically created classes.
25792         * reflection.c: Fix a few places where non-MonoObjects were inserted
25793         into the tokens hashtable.
25794
25795 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
25796
25797         * object.c: some support to handle out of memory exceptions.
25798
25799 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
25800
25801         * marshal.c (mono_marshal_get_native_wrapper): support reference
25802         return types
25803
25804 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
25805
25806         * object.h, object.c: more portability stuff from Bernie Solomon.
25807         Unexport mono_object_allocate(). Added mono_object_unbox ().
25808         Set exitcode when an unhandled exception is thrown.
25809
25810 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
25811
25812         * marshal.c (mono_marshal_get_native_wrapper): use custom
25813         marshaler for return types.
25814
25815 2003-06-10  Dick Porter  <dick@ximian.com>
25816
25817         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
25818         ip_mreq is available
25819
25820 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
25821
25822         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
25823         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
25824         by Bernie Solomon <bernard@ugsolutions.com>.
25825
25826 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
25827
25828         * gc.c (mono_gc_init): Avoid error message on shutdown when
25829         GC_DONT_GC=1 is used.
25830
25831         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
25832         New icall to return the GUID of a module.
25833
25834 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
25835
25836         * class.c: ensure instance size always includes the parent's size
25837         even whem class size is set explicitly (fixes bug#44294).
25838
25839 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
25840
25841         * profiler.h, profiler.c: made the simple profiler thread-safe,
25842         get more accurate timing info. Allow the loading of an
25843         externally-developed profiler module.
25844
25845 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
25846
25847         * marshal.c (mono_marshal_get_native_wrapper): improved
25848         class/byref arguments.
25849         (mono_marshal_get_native_wrapper): better string marshaling support.
25850
25851 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
25852
25853         * class.c: ensure .pack and .size are handled correctly and
25854         simplified layout of static fields.
25855
25856 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
25857
25858         * appdomain.c
25859         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
25860
25861         * loader.c (mono_lookup_pinvoke_call): look for modules in the
25862         current directory (fix bug 44008)
25863
25864 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
25865
25866         * marshal.c (mono_marshal_get_native_wrapper): started support for
25867         custom marshalers.
25868         (mono_delegate_to_ftnptr): consider marshalling specifications
25869
25870 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
25871
25872         * reflection.c, reflection.h: emit custom marshal info.
25873
25874 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25875
25876         * object.c: free the GError.
25877         * icall.c: added CloseEvent_internal.
25878         * threads.[ch]:
25879         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
25880         call.
25881
25882 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
25883
25884         * loader.c (mono_method_get_signature): Add support for dynamic
25885         assemblies.
25886
25887 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
25888
25889         * reflection.c: fixed bug #43905.
25890
25891 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
25892
25893         * class.c, domain.c, icall.c, metadata.h, object.h: support for
25894         handling TypedReference and ArgIterator.
25895         * loader.c, loader.h: added function to get signature at call site.
25896
25897 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
25898
25899         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
25900         data readonly. Buglets and warning fixes. Some MethodSpec support.
25901
25902 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
25903
25904         * class.h, class.c, object.c: remove relative numbering support.
25905
25906 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
25907
25908         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
25909         free the string, until we get a chance to fix Gtk#
25910
25911 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25912
25913         * marshal.c: revert last patch.
25914
25915 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
25916
25917         * icall.c: updates for new mono_class_vtable() not calling
25918         the type constructor anymore.
25919
25920 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
25921
25922         * object.h, object.c: separate vtable creation from type
25923         initialization. Make running the .cctor thread safe.
25924
25925 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
25926
25927         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
25928
25929 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
25930
25931         * loader.c (mono_get_method): consider calling convention
25932
25933 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
25934
25935         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
25936         to return the invisible global type for a module.
25937
25938         * reflection.c (mono_image_build_metadata): Emit global fields too.
25939
25940 2003-05-20  Peter Williams  <peterw@ximian.com>
25941
25942         * loader.c (mono_lookup_internal_call): Add a few newlines.
25943
25944 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
25945
25946         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
25947         literal strings.
25948
25949         * appdomain.c (set_domain_search_path): Recalculate search path when
25950         AppDomainSetup.PrivateBinPath changes.
25951
25952         * object.c (mono_class_compute_gc_descriptor): It turns out some
25953         parts of the class libs (like System.Thread) holds pointers to
25954         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
25955         to treat native int a pointer type here.
25956         
25957 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
25958
25959         * appdomain.h, domain.c: add hashtable for jump target resolution.
25960
25961 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
25962
25963         * reflection.h reflection.c icall.c: Added new icalls 
25964         GetManifestResourceInfoInternal, GetModulesInternal and support
25965         infrastructure.
25966
25967 2003-05-16  Dick Porter  <dick@ximian.com>
25968
25969         * icall.c:
25970         * file-io.h:
25971         * file-io.c: Implement System.IO.MonoIO::GetTempPath
25972
25973 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
25974
25975         * object.c: mono_store_remote_field: little fix to previous patch.
25976
25977 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
25978
25979         * class.c: add constructors to array classes.
25980         * icall.c: special case array construction for InternalInvoke (),
25981
25982 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
25983
25984         * class.h class.c reflection.c object.c: Added support for field
25985         defaults in dynamically generated classes.
25986
25987 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
25988
25989         * reflection.c: properly encode charset for ddlimport.
25990
25991 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
25992
25993         * threads.c: allow compiling without GC.
25994
25995 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
25996
25997         * appdomain.h, object.c, object.h, threads.c, threads.h: added
25998         handling of thread static data.
25999
26000 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
26001
26002         * reflection.h, reflection.c: added mono_custom_attrs_free ().
26003
26004 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
26005
26006         * class.c (mono_array_class_get): always set the serializable flags
26007         (mono_array_class_get): always set the SEALED attribute for array types
26008
26009 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
26010
26011         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
26012         attributes (fix for bug 42021).
26013
26014 2003-05-12  Dick Porter  <dick@ximian.com>
26015
26016         * gc.c: Don't run finalizers when the finalizer thread is
26017         finishing up, because the default domain has already been
26018         destroyed.
26019
26020 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
26021
26022         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
26023         value is null, we should throw an exception.   This is slightly
26024         different than the other conventions used for the constructor.
26025
26026 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26027
26028         * socket-io.c: fixed windows build.
26029
26030 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26031
26032         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
26033
26034 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
26035
26036         * object.c (mono_string_new_wrapper): Compatibility fix for MS
26037         compilers.
26038
26039 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
26040
26041         * class.c (mono_class_layout_fields): Add experimental GC aware
26042         auto layout facility. Requires class library changes to work correctly.
26043
26044         (mono_class_setup_vtable): Avoid overriding explicit interface
26045         method implementations. Fixes iface3.exe test.
26046
26047         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
26048         object reference.
26049         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
26050         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
26051
26052         * metadata.h: Add new type classification macro which determines
26053         whenever the type holds an object reference.
26054
26055 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
26056
26057         * marshal.c (mono_marshal_get_native_wrapper): cleanups
26058
26059 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
26060
26061         * gc.c (finalizer_thread): Work around a GC bug.
26062
26063 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
26064
26065         * marshal.c (emit_struct_conv): allow unions
26066
26067         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
26068
26069 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
26070
26071         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
26072
26073 2003-05-06  Martin Baulig  <martin@ximian.com>
26074
26075         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
26076
26077 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26078
26079         * socket-io.c:
26080         (Select_internal): allow NULLs, don't create arrays if not needed.
26081         Coupled with Socket.cs changes.
26082
26083         * threadpool.c:
26084         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
26085         register a finalizer for it that will close the semaphore handle. This
26086         fixes the leak and make Lupus' test run with > 4080 loops.
26087
26088 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
26089
26090         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
26091         Jerome Laban (bug #42287)
26092
26093 2003-05-02  Martin Baulig  <martin@ximian.com>
26094
26095         * debug-mono-symfile.h
26096         (MonoSymbolFile): Moved declaration into mono-debug.h.
26097         (MonoDebugMethodJitInfo): Likewise.
26098         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
26099         argument.
26100         (_mono_debug_address_from_il_offset): Take a
26101         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
26102
26103         * mono-debug.h
26104         (MonoDebugDomainData): New struct.
26105         (mono_debug_get_domain_data): New function.
26106         (mono_debug_add_method): Take an additional `MonoDomain *'
26107         argument.
26108         (mono_debug_source_location_from_address): Likewise.
26109         (mono_debug_il_offset_from_address): Likewise.
26110         (mono_debug_address_from_il_offset): Likewise.
26111
26112 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
26113
26114         * reflection.c: one more check for null type in custom attrs.
26115
26116 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26117
26118         * reflection.c: avoid warning (comparison is always false due to limited
26119         range of data type).
26120
26121 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26122
26123         * icall.c: throw an exception in Type.GetField if the argument 'name'
26124         is NULL.
26125
26126 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
26127
26128         * reflection.c: fixed handling of enums in named arguments to custom
26129         attributes (bug #42123).
26130
26131 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
26132
26133         * reflection.c: use the right array element type and handle
26134         a null for a Type argument, too.
26135
26136 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
26137
26138         * reflection.c: handle arrays as arguments to custom attributes.
26139
26140 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
26141
26142         * reflection.c: handle a string value in a custom attr
26143         ctor that takes an object.
26144
26145 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
26146
26147         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
26148         (fix bug #42063)
26149
26150 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
26151
26152         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
26153
26154 2003-04-27  Martin Baulig  <martin@ximian.com>
26155
26156         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
26157         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
26158         MONO_DEBUGGER_EVENT_BREAKPOINT.
26159         (mono_breakpoint_trampoline_code): Removed.
26160         (mono_debugger_event_handler): The last argument is now a
26161         `guint32'.
26162         (mono_debugger_insert_breakpoint_full): Removed the
26163         `use_trampoline' argument.
26164         (mono_debugger_method_has_breakpoint): Likewise.
26165         (mono_debugger_trampoline_breakpoint_callback): Renamed to
26166         mono_debugger_breakpoint_callback(); take the method and
26167         breakpoint number as arguments.
26168
26169 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
26170
26171         * metadata.c: fix off by one when loading parameters attributes.
26172
26173 2003-04-24  Martin Baulig  <martin@ximian.com>
26174
26175         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
26176
26177 2003-04-24  Martin Baulig  <martin@ximian.com>
26178
26179         * mono-debug-debugger.c: Moved all code which interacts with the
26180         Mono Debugger here.
26181
26182         * debug-mono-symfile.c: This code now just deals with the symbol
26183         file itself, the debugger code is now in mono-debug-debugger.c.
26184
26185 2003-04-23  Martin Baulig  <martin@ximian.com>
26186
26187         * mono-debug.c (mono_debug_source_location_from_il_offset):
26188         New method; like mono_debug_source_location_from_address(), but
26189         takes an IL offset instead of a machine address.
26190
26191 2003-04-23  Martin Baulig  <martin@ximian.com>
26192
26193         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
26194         `line' field; this is now computed by the debugger.
26195
26196 2003-04-23  Martin Baulig  <martin@ximian.com>
26197
26198         * mono-debug.[ch]: New files.  This is the new debugging interface.
26199
26200         * mono-debug-debugger.[ch]: New files.  Moved all code which
26201         interacts with the Mono Debugger here.
26202
26203 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
26204
26205         * domain.c (mono_init): initialize mono_defaults.monitor_class
26206
26207 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
26208
26209         * reflection.c (method_encode_code): Add a spicy exception to help
26210         future compiler authors.
26211
26212 2003-04-21  Martin Baulig  <martin@ximian.com>
26213
26214         * icall.c
26215         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
26216         Make this work with relative pathnames; g_filename_to_uri() needs
26217         an absolute filename.
26218
26219 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
26220
26221         * icall.c: Track name changes in Object and ValueType.
26222
26223 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
26224
26225         * metadata.c (mono_type_stack_size): size should be a multiple of
26226         sizeof (gpointer)
26227
26228 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26229
26230         * gc.c:
26231         (internal_domain_finalize): moved into mono_domain_finalize. No need
26232         to create another thread because the finalizers will be run in the
26233         finalizer thread.
26234         
26235         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
26236         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
26237         to be run (MS does this too).
26238
26239 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
26240
26241         * object.c (mono_class_compute_gc_descriptor): Update comment.
26242
26243         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
26244
26245         * image.h: Add synchronized wrapper cache.
26246
26247         * image.c (do_mono_image_open): Initialize cache.
26248
26249         * reflection.c (create_dynamic_mono_image): Initialize cache.
26250
26251 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26252
26253         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
26254         ves_icall_System_Buffer_ByteLengthInternal.
26255
26256 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
26257
26258         * reflection.c: setup klass->nested_in earlier. Allow
26259         a dash in the assembly name.
26260
26261 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
26262
26263         * metadata.c (mono_type_to_unmanaged): dont access
26264         type->data.klass for MONO_TYPE_OBJECT
26265         (mono_type_to_unmanaged): consider System.Delegate class
26266
26267 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
26268
26269         * class.c: just setup supertypes in the proper place instead of
26270         initializing the full element class for arrays.
26271
26272 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
26273
26274         * class.c: ensure the element class of arrays is initialized.
26275         Setup the supertype info for array classes, too.
26276
26277 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
26278
26279         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
26280
26281 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26282
26283         * Makefile.am: re-added -m option when running cygpath. This way,
26284         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
26285         separator.
26286         * mono-config.c: same codepath for locating mono config file for WIN32
26287         and the rest.
26288         * assembly.c: if mono_assembly_setrootdir is called, don't override
26289         the value set.
26290
26291 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26292
26293         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
26294         MONO_ASSEMBLIES variable.
26295
26296 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
26297
26298         * icall.c: added Assembly::GetNamespaces() icall.
26299
26300 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26301
26302         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
26303
26304 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
26305
26306         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
26307         * object.c: fixed bug in the construction of vtable for proxies
26308
26309 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
26310
26311         * object.c (mono_array_new): Mark mono_array_new as an icall.
26312
26313 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26314
26315         * class.c: fixed test for public method when overriding interfaces.
26316         Closes bug #40970.
26317
26318 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
26319
26320         * appdomain.h, domain.c: added mono_domain_foreach() to
26321         be able to access the currently loaded appdomains.
26322         * object.c: make string interning work across sppdomains.
26323         Mark some functions for use as icalls.
26324
26325 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
26326
26327         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
26328
26329         * reflection.h reflection.c: Allocate long living data using 
26330         GC_MALLOC_ATOMIC so the collector does not need to scan it.
26331
26332         * reflection.c: Double the allocation size in streams instead of
26333         increasing it, to prevent unneccesary copying on large assemblies.
26334         
26335         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
26336         creation if the assembly does not have the Run flag set.
26337
26338 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
26339
26340         * class.h: avoid the C++ keywords in header files (Jerome Laban
26341         spotted and fixed this).
26342
26343 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26344
26345         * object.c:
26346         (mono_unhandled_exception): fill in the arguments for the
26347         UnhandledException event. Only trigger that event for the default
26348         domain (as MS does).
26349
26350 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
26351
26352         * object.c: Improve typed allocation stuff based on suggestions from
26353         Paolo. Also turn it on if the GC library supports it.
26354
26355 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
26356
26357         * object.c object.h class.h: Added experimental typed allocation
26358         facility using the interfaces in gc_gcj.h.
26359
26360         * os/gc_wrapper.h: Added new include files.
26361         
26362 2003-04-03  Martin Baulig  <martin@ximian.com>
26363
26364         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
26365         which is not yet enabled by default.
26366
26367         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
26368         functions.
26369         (mono_gc_lock, mono_gc_unlock): New static functions.
26370
26371         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
26372         functions; stop/start the world for the garbage collector.  This
26373         is using the windows API; we need to complete the SuspendThread()/
26374         ResumeThread() implementation in the io-layer to make this work on Unix.
26375         (mono_gc_push_all_stacks): New public function; tells the garbage
26376         collector about the stack pointers from all managed threads.
26377
26378 2003-04-03  Martin Baulig  <martin@ximian.com>
26379
26380         * object.h (MonoThread): Added `gpointer stack_ptr'.
26381
26382         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
26383
26384 2003-04-03  Martin Baulig  <martin@ximian.com>
26385
26386         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
26387
26388 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
26389
26390         * reflection.c (typebuilder_setup_fields): Initialize field.first and
26391         field.last.
26392
26393 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
26394
26395         * loader.c (mono_lookup_internal_call): Report the corlib that is
26396         out of sync.
26397
26398 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
26399
26400         * icall.c (ves_icall_type_GetTypeCode): fixed check for
26401         System.DBNull (it's class not valuetype).
26402
26403 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
26404
26405         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
26406         if the array method was already assigned a token (fixes bug#40646).
26407
26408 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
26409
26410         * reflection.c (mono_reflection_get_type): Attempt type resolve even
26411         if no assembly is given.
26412
26413 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
26414
26415         * metadata.h: Added the new tables.
26416
26417         * row-indexes.h: Added definitions for new tables.
26418
26419         * metadata.c: Add schemas for new tables, and add support for
26420         computing the sizes of them.
26421
26422         * class.c: Update for handling the new type cases.
26423
26424 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
26425
26426         * metadata.h (MONO_TYPE_IS_VOID): new macro
26427
26428 2003-03-31  Martin Baulig  <martin@ximian.com>
26429
26430         * threads.h (MonoThreadCallbacks): Added `thread_created'.
26431
26432         * threads.c (mono_thread_new_init): Call `thread_created' in the
26433         mono_thread_callbacks.
26434
26435 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
26436
26437         * loader.h: added marshalbyrefobject_class to mono_defaults
26438         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
26439         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
26440           generation of output parameters.
26441           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
26442         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
26443           contextbound and the target object belongs to the context of the caller.
26444         * object.h: added context and unwrapped_server variables in MonoRealProxy.
26445         * object.c: Implemented support for interfaces and abstract classes
26446           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
26447           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
26448
26449 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
26450
26451         * class.h class.c (mono_class_is_subclass_of): New function.
26452         
26453         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
26454         routines for most common case (calls from ArrayList::ToArray).
26455
26456         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
26457         routine so programs which call Environment::Exit() can be profiled.
26458
26459         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
26460         Added MONO_ARCH_SAVE_REGS.
26461
26462         * icall.c (ves_icall_type_is_subtype_of): Use new function.
26463
26464 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
26465
26466         * blob.h: Add a couple of new MonoType types definitions.
26467
26468         * tabledefs.h: Add a couple of new call convs.
26469
26470 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
26471
26472         * reflection.h (MonoReflectionDynamicAssembly): track changes in
26473         the layout of the class.
26474
26475         * reflection.c (alloc_table): double the size on overflow to avoid
26476         unnecessary copying.
26477
26478         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
26479         avoid filling out metadata tables and blobs. Also set mb->ilgen to
26480         null so it can be garbage collected.
26481         
26482 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
26483
26484         * reflection.c (mono_reflection_get_type): Return the resolved type
26485         only if it is in the assembly we searched.
26486
26487         * reflection.c (ensure_runtime_vtable): Initialize method slots.
26488
26489         * class.c (mono_class_setup_vtable): Set the slot of the overriding
26490         method.
26491
26492 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26493
26494         * appdomain.c:
26495         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
26496         the right one is 'file:///blah', but MS allows it.
26497         * assembly.c:
26498         (mono_assembly_open): allow 'file://blah'
26499
26500         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
26501
26502 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
26503
26504         * socket-io.c: fixes bug #40310.
26505
26506 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
26507
26508         * reflection.c (mono_reflection_parse_type): handle deeply nested
26509         types correctly.
26510
26511         * reflection.c (mono_image_create_token): Use unique token values
26512         since they will be put into a hash table.
26513
26514         * class.c (mono_class_setup_vtable): If a method occurs in more than
26515         one place in the vtable, and it gets overriden, then change the
26516         other occurances too.
26517
26518         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
26519         object as return type.
26520
26521 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
26522
26523         * icall.c: Deleted "ToString" implementation for double and float
26524         because they are full implemented in managed code.
26525
26526 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
26527
26528         * reflection.c, reflection.h: implemented and exported functions
26529         to retrieve info about custom attributes.
26530
26531 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26532
26533         * appdomain.c: moved Uri handling to assembly.c
26534         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
26535         work when using a file Uri in *nix and windows.
26536
26537         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
26538         GetReferencedAssemblies.
26539
26540 2003-03-18  Dick Porter  <dick@ximian.com>
26541
26542         * icall.c: Rename a couple of internal calls
26543
26544         * threads.c: Set the thread state to Stopped when a thread exits.
26545         Fixes bug 39377.
26546
26547 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
26548
26549         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
26550         New icall.
26551
26552         * object.c (mono_class_vtable): fix warning.
26553
26554 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
26555
26556         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
26557
26558         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
26559         memory.
26560         (method_encode_clauses): Create exception info structures in the right
26561         order.
26562         (mono_reflection_setup_internal_class): Initialize supertypes field.
26563
26564         * class.c object.c: Handle interfaces which implement other interfaces 
26565         correctly.
26566
26567         * class.h class.c: Move the supertypes array initialization code into 
26568         a separate function so it can be used for dynamic types too. Also call
26569         it earlier, in mono_class_init(), since it can be used before the
26570         type is initialized.
26571
26572 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26573
26574         * Makefile.am:
26575         * assembly.c:
26576         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
26577
26578         * appdomain.c:
26579         * appdomain.h:
26580         * marshal.c:
26581         * object.c: remove warnings.
26582
26583 2003-03-13  Martin Baulig  <martin@ximian.com>
26584
26585         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
26586         (MonoDebugLexicalBlockEntry): New types.
26587
26588         * debug-mono-symfile.c
26589         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
26590
26591 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26592
26593         * process.c: ret can be any non-zero value accroding to MS doc.
26594
26595 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
26596
26597         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
26598         fixing a warning for a miss-used prototype, would have cause
26599         random memory corruption.
26600
26601 2003-03-07  Martin Baulig  <martin@ximian.com>
26602
26603         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
26604         getting really annoying ....
26605
26606 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
26607
26608         * reflection.c (fixup_method): added support for array methods.
26609
26610 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
26611
26612         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
26613         (pointed out by Michael Adams).
26614
26615 2003-03-04  Dick Porter  <dick@ximian.com>
26616
26617         * icall.c: Temporarily reverted the Double and Single ToString()
26618         change, because it broke nunit.
26619
26620 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
26621
26622         * object.h, threads.h: make include files compatible with C++
26623         (patch by Jerome Laban <jlaban@wanadoo.fr>).
26624
26625 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
26626
26627         * icall.c: Erased ToString helper functions for Double and Single.
26628         Now, that implementations ar all in managed code (Double and Single
26629         Formatters).
26630
26631 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
26632
26633         * appdomain.c: Added method for initializing the default context of
26634         a domain. Added internal call for getting the default context.
26635         * appdomain.h: Added context variable in MonoDomain struct.
26636         * domain.c: mono_domain_set also sets the default context of the domain
26637         * icall.c: Mapped internal method InternalGetDefaultContext.
26638         * object.c: mono_object_get_virtual_method returns always a remoting
26639         wrapper if the object is a transparent proxy.
26640         mono_runtime_invoke_array: when creating an object by calling the
26641         constructor, if the created object is a proxy, then the constructor should
26642         be called using the a remoting wrapper.
26643
26644 2003-03-03  Dick Porter  <dick@ximian.com>
26645
26646         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
26647         variable so it compiles on solaris.  Problem spotted by
26648         Christopher Taylor <ct@cs.clemson.edu>
26649
26650 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26651
26652         * appdomain.c:
26653         (get_info_from_assembly_name): don't leak value.
26654
26655         * icall.c:
26656         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
26657         result.
26658
26659 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
26660
26661         * assembly.c: export mono_image_load_references ().
26662         * class.c: handle function pointers. mono_class_from_name() now
26663         supports nested type names directly.
26664
26665 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
26666
26667         * reflection.h reflection.c: Encode already created dynamic methods 
26668         and fields correctly as a DEF instead of a REF.
26669
26670         * reflection.c: Get rid of the force_ref argument to 
26671         mono_image_typedef_or_ref since it was wrong in the first place.
26672
26673         * string-icalls.c: add error checking to string constructors according
26674         to the MSDN docs.
26675
26676         * reflection.c: Emit types in the order their TypeBuilders were 
26677         created. Previously, a new table index was assigned to each type before
26678         the tables were emitted. This was wrong because the signature blob
26679         might already refer to a type by its original table index.
26680
26681 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
26682
26683         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
26684         change.
26685         
26686 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26687
26688         * Makefile.am: make assemblies dir have \ instead of / on windows.
26689
26690 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
26691
26692         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
26693         iterate over the NESTEDCLASS table using a linear search since the
26694         table is not guaranteed to be sorted by the secondary key.
26695
26696         * class.c (mono_class_create_from_typedef): fixed up call to
26697         mono_metadata_nesting_typedef.
26698         
26699 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
26700
26701         * marshal.c (mono_string_to_byvalstr): clear the memory as
26702         suggested by Jerome Laban <jlaban@wanadoo.fr>
26703
26704 2003-02-26  Dick Porter  <dick@ximian.com>
26705
26706         * process.c: Cope with padding in .rsrc blocks
26707
26708 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
26709
26710         * metadata.h: reverted the filter_len change, it breaks reflection
26711         
26712 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
26713
26714         * metadata.h: added a new field to store the filter_len
26715         
26716
26717 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
26718
26719         * reflection.c: handle custom attributes for types and members
26720         created with Reflection.Emit (bug#38422).
26721
26722 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
26723
26724         * reflection.c: define RTSpecialName automatically for constructors for
26725         compatibility with MS.NET.
26726
26727         * reflection.c (mono_reflection_create_runtime_class): initialize
26728         nested_in field of dynamically created classes.
26729
26730 2003-02-22  Martin Baulig  <martin@ximian.com>
26731
26732         * debug-mono-symfile.h: Incremented version number.
26733
26734 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
26735
26736         * object.h icall.c process.c: fix warnings.
26737
26738 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
26739
26740         * appdomain.h appdomain.c:
26741         (mono_domain_try_type_resolve): split the 
26742         name_or_tb argument into a name and a tb argument.
26743         (mono_domain_has_type_resolve): new function to check whenever the
26744         application has registered a TypeResolve event handler.
26745         
26746         * icall.c reflection.h reflection.c: move the type resolve logic into
26747         mono_reflection_get_type () so it will be invoked when 
26748         Assembly::GetType () is called.
26749
26750         * reflection.c:
26751         (mono_reflection_get_type): renamed to get_type_internal.
26752         (mono_reflection_get_type): fixed type name generation so it works 
26753         for nested types too.
26754         (mono_reflection_get_type): call has_type_resolve () to avoid the 
26755         costly type name generation if there is no resolve event handler.
26756
26757 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
26758
26759         * class.c, image.c: load exported types from file references.
26760
26761 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
26762
26763         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
26764           used to cache the managed methods used to create proxies and make 
26765           remote invocation of methods.
26766         * class.h: Added in MonoVTable a flag to indicate that a class needs 
26767           to be remotely created.
26768         * object.c: Modified the method mono_class_vtable(). It now initializes 
26769           the remote flag of the vtable. Modified mono_object_new_specific(), 
26770           so now it checks the remote flag.
26771         * icall.c: Added a couple of internal methods, one for enabling instance 
26772           creation interception for a type, and one for creating objects bypassing
26773           the remote check.
26774
26775 2003-02-18  Martin Baulig  <martin@ximian.com>
26776
26777         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
26778         New interncall to get a method's metadata token.
26779
26780         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
26781         New interncall for the debugger.
26782
26783 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
26784
26785         * class.c (mono_class_setup_vtable): allocate supertype array
26786
26787 2003-02-18  Martin Baulig  <martin@ximian.com>
26788
26789         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
26790
26791 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26792
26793         * reflection.c:
26794         (assembly_name_to_aname): jump over unknown properties (i've found
26795         something like: 'type, assembly, version=xxx, custom=null, public...',
26796         so now will ignore custom=null and still get the rest of the values).
26797
26798 2003-02-17  Dick Porter  <dick@ximian.com>
26799
26800         * threads.c: Have Thread.Start() wait for a semaphore to signal
26801         that the thread has set up all its local data.  This fixes bug
26802         34323, where Abort() raced the new thread's TLS data.
26803
26804         Also removes the handle_store() call from start_wrapper, because
26805         threads are now always created suspended and there is no longer a
26806         race between the parent and child threads to store the info.
26807
26808 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
26809
26810         * image.c: explain the #- heap issue in a message, hopefully
26811         avoiding FAQs on mono-list.
26812
26813 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26814
26815         * icall.c:
26816         (GetEntryAssembly): if the domain has not invoked
26817         AppDomain.ExecuteAssembly yet, return the assembly of the default
26818         AppDomain.
26819
26820 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
26821
26822         * class.c (mono_ldtoken): make it work in dynamic assemblies.
26823
26824 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
26825
26826         * metadata.c, reflection.c: simple speedup to type hash
26827         and equals code.
26828
26829 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
26830
26831         * image.c, image.h, class.c, assembly.c: move module loading
26832         to MonoImage. When loading metadata, consider alignemnet from
26833         the start of metadata, not from the metadata address in memory.
26834
26835 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
26836
26837         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
26838         AssemblyBuilder objects. Factored out custom attribute creation into
26839         a separate function.
26840         (create_custom_attr): new function to create custom attributes.
26841
26842 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
26843
26844         * Makefile.am: Got tired of typing the full pathname to pedump.
26845         Until there is another option, am installing this.
26846
26847 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
26848
26849         * class.c (class_compute_field_layout): always set field->parent 
26850         (mono_ldtoken): use mono_defaults.fieldhandle_class;
26851
26852 2003-02-11  Dick Porter  <dick@ximian.com>
26853
26854         * threads-types.h:
26855         * monitor.c: Rewrote Monitor, making lock much faster and
26856         Pulse/Wait work as specified.  Also uses much fewer handles, and only
26857         creates them as needed.
26858
26859         * exception.c: Added SynchronizationLockException
26860
26861         * threads.c: Deleted old Monitor implementation.  The new one is
26862         in a new file.
26863
26864 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
26865
26866         * class.c: handled TypedReference type code. Set the correct size for
26867         class data. Setup interface_offsets for interface classes, too.
26868
26869 2003-02-09  Martin Baulig  <martin@ximian.com>
26870
26871         * debug-mono-symfile.h: Reflect latest symbol writer changes.
26872
26873 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
26874
26875         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
26876         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
26877         * object.c: fixed mono_object_get_virtual_method () for interfaces.
26878         * verify.c: check for code that runs after the end of the method.
26879
26880 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
26881
26882         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
26883         "System.Math::Round2".
26884         * sysmath.h: Added Floor, Round and Round2 definitions.
26885         * sysmath.c: Modified certain functions that were not 100% compliant
26886         with MS.NET (math precision) and added the implementation of Floor,
26887         Round and Round2.
26888
26889 2003-02-07  Martin Baulig  <martin@ximian.com>
26890
26891         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
26892
26893 2003-02-07  Martin Baulig  <martin@ximian.com>
26894
26895         * debug-mono-symfile.c: Reflected latest symwriter changes.
26896         (mono_debug_create_mono_symbol_file): Removed.
26897         (mono_debug_open_mono_symbol_file): Take an argument which
26898         specifies whether to create a dynamic symbol file.
26899
26900 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
26901
26902         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
26903
26904 2003-02-05  Martin Baulig  <martin@ximian.com>
26905
26906         * reflection.c (mono_image_build_metadata): Make this public,
26907         protect it against being called multiple times, don't create
26908         resources and don't build the compressed metadata here.
26909         (mono_image_create_pefile): Do this here.
26910
26911         * icall.c
26912         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
26913
26914 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26915
26916         * socket-io.c: fixed bug #36322.
26917
26918 2003-02-06  Piers Haken <piersh@friskit.com>
26919
26920         * appdomain.[ch]:
26921         * class.h:
26922         * debug-mono-symfile.c:
26923         * icall.c:
26924         * loader.c:
26925         * mono-config.c:
26926         * monosn.c:
26927         * reflection.c:
26928         * socket-io.c: warning cleanups
26929
26930 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
26931
26932         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
26933         function. works like remoting invoke, but does a check for the Proxy first.
26934
26935 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
26936
26937         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
26938
26939 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
26940
26941         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
26942         array of pointers.
26943         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
26944         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
26945
26946         * object.c (mono_store_remote_field_new): used by the new jit
26947         instead of mono_store_remote_field
26948         (mono_load_remote_field_new): used by the new jit
26949         instead of mono_load_remote_field
26950
26951 2003-02-05  Patrik Torstensson
26952
26953         * appdomain.c: changed unload to take the domain id instead
26954         of domain
26955         
26956         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
26957
26958
26959 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26960
26961         * appdomain.c: don't look for assemblies in ApplicationBase if
26962         PrivateBinPathProbe is set.
26963
26964 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26965
26966         * object.c: make the first argument in main_args contain the absolute
26967         path to the assembly. Fixes bug #37511.
26968
26969 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26970
26971         * icall.c: get correct UTC offset for countries not using daylight
26972         time saving. Fixes bug #30030.
26973
26974 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26975
26976         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
26977         and 1 are the family).
26978
26979 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
26980
26981         * icall.c (ves_icall_InternalExecute): removed wrong assertion
26982
26983         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
26984
26985 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
26986
26987         * reflection.c: added support for SignatureHelper tokens, which is
26988         needed by the Calli opcode.
26989
26990         * reflection.h: track changes to SignatureHelper class.
26991
26992         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
26993
26994 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26995
26996         * appdomain.c: fixed loading assemblies from PrivateBinPath.
26997
26998 2003-02-03  Patrik Torstensson
26999         * appdomain.[c|h], domain.c : 
27000          - Added support for getting a domain via domain id
27001          - Support for setting and getting domain from System.AppDomain 
27002            (used in cross appdomain channel)
27003          - Added support for get/set for a MonoAppContext on a thread 
27004            (Context class in System.Runtime.Remoting.Contexts),
27005          - Removed hack in Get/SetData and ExecuteAssembly.
27006         
27007         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
27008         the managed world to get control when a proxy is created.
27009
27010         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
27011         
27012 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
27013
27014         * icall.c
27015         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
27016         Populate the codebase field as well.
27017
27018 2003-02-02  Martin Baulig  <martin@ximian.com>
27019
27020         * debug-mono-symfile.c
27021         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
27022         (mono_debug_symfile_add_method): Allow interncalls.
27023
27024 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27025
27026         * icall.c: throw parse exception if strtod fails or the string is empty.
27027
27028 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
27029
27030         * marshal.c: handle object type separately from defined
27031         class types.
27032
27033 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
27034
27035         * marshal.c: handle NATIVE_LPSTR for strings when it's
27036         explicitly specified.
27037
27038 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
27039
27040         * reflection.c, reflection.h, icall.c: setup the reflection
27041         handle cache for ModuleBuilders and AssemblyBuilders.
27042
27043 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
27044
27045         * reflection.c (reflection_methodbuilder_to_mono_method): set
27046         pinvoke flag
27047
27048 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27049
27050         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
27051
27052 2003-01-29  Dick Porter  <dick@ximian.com>
27053
27054         * threads.c: No need for the fake_thread kludge now that Thread
27055         doesn't run a class constructor
27056         
27057 2003-01-29  Dick Porter  <dick@ximian.com>
27058
27059         * threads.c: Use g_direct_hash instead of the rather bogus
27060         g_int_hash
27061
27062 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
27063
27064         * marshal.c (mono_marshal_get_native_wrapper): add check for null
27065         (fix pinvoke12.exe)
27066         (mono_marshal_get_struct_to_ptr): generate valid IL code
27067         (mono_marshal_get_ptr_to_struct): generate valid IL code
27068         (*): correctly set sig->pinvoke, we need to memdup the signature
27069         to do that
27070
27071 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
27072
27073         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
27074         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
27075
27076 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
27077
27078         * profiler.c: provide more callers information.
27079
27080 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
27081
27082         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
27083
27084         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
27085
27086         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
27087
27088 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27089
27090         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
27091         exception instead of going into an infinite loop on dates which it 
27092         can't yet handle.
27093
27094         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
27095         out-of-range exception if needed.
27096
27097         * class.c (mono_class_setup_vtable): allow a virtual method to provide
27098         an implementation for an interface method and to override an inherited
27099         method at the same time. 
27100         Imagine a scenario when a virtual method is used to override a
27101         virtual abstract method in a parent class, and this same method 
27102         provides an implementation for an method inherited from an interface. 
27103         In this case, the interface resolution code will set im->slot, which 
27104         means that the virtual method override pass will skip this method 
27105         which means a pointer to the abstract method inherited from the parent
27106         will remain in the vtable of this non-abstract class.
27107
27108         * class.c: (mono_class_setup_vtable): continue search for a real 
27109         method if only an abstract method is found.     
27110
27111 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
27112
27113         * reflection.c: add size to encoding for ByValStr and ByValArray
27114         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
27115
27116 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27117
27118         * class.c (mono_class_setup_vtable): pass the override info as an
27119         argument.
27120
27121         * class.c (mono_class_setup_vtable): set the slot of overriding methods
27122         correctly.
27123         
27124         * reflection.c (ensure_runtime_vtable); add support for method 
27125         overrides.
27126         
27127 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27128
27129         * reflection.c (resolution_scope_from_image): Hack to work to work with
27130         dynamic assemblies.
27131
27132         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
27133         added a 'force_ref' argument to force this function to allways return 
27134         a TypeRef. This is needed by mono_image_get_memberref_token ().
27135         
27136 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27137
27138         * reflection.c (mono_image_get_type_info): interfaces really don't have
27139         a parent.
27140
27141         * reflection.c (mono_image_basic_init): fill out missing fields of
27142         image structure.
27143
27144         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
27145         dynamic assemblies. This is required so dynamic assemblies show up in
27146         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
27147         Type::GetType() etc. This is consistent with MS behaviour.
27148
27149         * image.c image.h reflection.c: add newly created classes to the name 
27150         cache so mono_class_get () will find them.      
27151
27152 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27153
27154         First part of changes to get IKVM.NET running under mono.
27155         
27156         * appdomain.h, appdomain.c: added new function 
27157         mono_domain_try_type_resolve() which will emit TypeResolve events. 
27158         This function will call AppDomain::DoTypeResolve to do the actual work.
27159
27160         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
27161         moved existing code dealing with dynamic tokens to a new function 
27162         called mono_reflection_lookup_dynamic_token (). This function will 
27163         raise TypeResolve events when appropriate. Since reflection.c is not 
27164         part of libmetadata, a new hook function called 
27165         mono_lookup_dynamic_token() is added to class.c which will call this.
27166
27167         * assembly.h assembly.c: make the invoke_load_hook function public,
27168         so it can be called for dynamic assemblies.
27169
27170         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
27171
27172         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
27173         type isn't found.
27174
27175         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
27176         MonoGHashTable, since it contains pointers to objects which the GC 
27177         needs to track.
27178
27179         * assembly.c (search_loaded): remove unused variable.
27180         
27181 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
27182
27183         * object.c: fixed issue exposed by gcc-generated IL programs
27184         that use RVA data for pointers.
27185
27186 2003-01-25  Martin Baulig  <martin@ximian.com>
27187
27188         * threads.c (start_wrapper): Moved the initialization of
27189         `start_func' above the mono_new_thread_init() call to which we
27190         pass it as argument.
27191
27192 2003-01-24  Martin Baulig  <martin@ximian.com>
27193
27194         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
27195         the MonoThread pointer.
27196
27197 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
27198
27199         * icall.c: Rename `PowImpl' to Pow.
27200
27201 2003-01-23  Dick Porter  <dick@ximian.com>
27202
27203         * threads.c (start_wrapper): Create a Thread object if needed, so
27204         the Main() thread can do the class initialisation in a subthread
27205         that has been set up to allow managed code execution.
27206
27207         Pass the thread ID instead of the MonoThread pointer to the thread
27208         start and attach callbacks.  This change is required, because the
27209         jit thread start callback must be called _before_ the Thread
27210         object can be created.
27211         
27212         (mono_thread_init): Removed much object creation code that is no
27213         longer needed.  No managed code is called from here now.
27214
27215         * object.c (mono_runtime_exec_managed_code): Create a subthread
27216         for Main, and call back to the runtime to use it.
27217         Set the exit code when Main exits.
27218
27219         * gc.c: Make sure domain finalisation happens in a subthread.
27220         Re-enable threaded GC, fixing bug 31333 (again).
27221
27222         * environment.c: System.Environment internall calls (so far just
27223         ExitCode is here, the others are still in icall.c)
27224
27225         * appdomain.c (mono_runtime_cleanup): All threads running managed
27226         code should have finished before mono_runtime_cleanup() is
27227         reached, so no need to clean up threads.
27228
27229 2003-01-22  Martin Baulig  <martin@ximian.com>
27230
27231         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
27232         `gpointer func' arguments.      
27233         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
27234         but added `MonoThread *thread' argument.
27235         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
27236
27237         * threads.c (mono_new_thread_init): Added `gpointer func' argument
27238         and pass it to the mono_thread_start_cb callback.
27239         (mono_install_thread_callbacks): New public function to install a
27240         set of callbacks which are set by the debugger.
27241         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
27242
27243 2003-01-22  Martin Baulig  <martin@ximian.com>
27244
27245         * Makefile.am: Install debug-mono-symfile.h.
27246
27247 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
27248
27249         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
27250
27251 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
27252
27253         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
27254         * class.c (mono_ptr_class_get): correctly set access levels of pointers
27255         (mono_array_class_get): correctly set access levels of arrays
27256
27257 2003-01-20      Patrik Torstensson
27258         * image.h (MonoAssemblyName): changed major, minor, build, revision
27259         from signed to unsigned.
27260
27261 2003-01-20  sean kasun <skasun@azstarnet.com>
27262
27263         * reflection.c (load_cattr_value): Now this handles
27264         MONO_TYPE_SZARRAY.  Fixes bug #35629
27265
27266 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
27267
27268         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
27269         integer value
27270
27271 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27272
27273         * decimal.c: fixed bug #26056.
27274
27275 2003-01-17  Martin Baulig  <martin@ximian.com>
27276
27277         * gc.c: Raise an ExecutionEngineException instead of using g_error().
27278
27279 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27280
27281         * exception.[ch]:
27282         (mono_get_exception_type_initialization): new function.
27283
27284         * object.c: throw a TypeInitializationException when an exception is
27285         thrown invoking the class constructor.
27286
27287 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27288
27289         * reflection.c: fixed attribute reading.
27290
27291 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27292
27293         * icall.c:
27294         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
27295         provided, look for the type in the calling assembly and then in
27296         mscorlib; if the assembly name is provided, only try that one.
27297
27298 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
27299
27300         * object.c: register the vtable before there is a chance it's
27301         queried again recursively.
27302
27303 2003-01-13  Duncan Mak  <duncan@ximian.com>
27304
27305         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
27306         gc-internal.h. 
27307         
27308 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
27309
27310         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
27311
27312 2003-01-11  Martin Baulig  <martin@ximian.com>
27313
27314         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
27315         this to 20 for the release.
27316
27317 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
27318
27319         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
27320
27321         * loader.c (mono_method_get_marshal_info): bug fix
27322
27323         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
27324         structures with explicit layout
27325
27326 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
27327
27328         * profiler.c: made the output more readable (and sorted). 
27329         Added caller information for the allocation profiler.
27330
27331 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
27332
27333         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
27334
27335 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27336
27337         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
27338         to get value types.
27339         
27340 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
27341
27342         * object.c, profiler.h, profiler.c, profiler-private.h:
27343         Added object allocation profiler.
27344
27345 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
27346
27347         * reflection.h, reflection.c: handle global methods.
27348         Compress blob entries.
27349
27350 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
27351
27352         * marshal.c: fix compilation.
27353
27354 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
27355
27356         * loader.c (mono_method_get_marshal_info): impl.
27357
27358         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
27359
27360 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27361
27362         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
27363         for reference types.
27364
27365 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
27366
27367         * loader.c: fixed off by one error in loaded parameter names.
27368
27369 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
27370
27371         * marshal.c (mono_marshal_get_icall_wrapper): like
27372         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
27373         instead of a MonoMethod.
27374
27375 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27376
27377         * decimal.c: fixed bug #36537.
27378
27379 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
27380
27381         * marshal.c: throw a missing method exception if a
27382         P/Invoke method is not found.
27383
27384 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
27385
27386         * icall.c: allow a null this for constructors.
27387
27388 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
27389
27390         * icall.c: raise the proper exceptions if the arguments to the
27391         internal Invoke are incorrect.
27392
27393 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
27394
27395         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
27396
27397 2003-01-03  Martin Baulig  <martin@ximian.com>
27398
27399         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
27400
27401 2002-12-31  Martin Baulig  <martin@ximian.com>
27402
27403         * debug-mono-symfile.c: Completely rewrote the type section.
27404         Instead of using individual malloc()ed fields, we use one big
27405         continuous memory area and offsets into this area.
27406         See the comments in the source code for details.
27407
27408 2002-12-30  Martin Baulig  <martin@ximian.com>
27409
27410         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
27411
27412 2002-12-30  Martin Baulig  <martin@ximian.com>
27413
27414         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
27415         line number table in this data blob instead of using an external
27416         pointer.
27417
27418 2002-12-28  Martin Baulig  <martin@ximian.com>
27419
27420         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
27421
27422 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
27423
27424         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
27425         as a boxed return type.
27426
27427 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
27428
27429         * appdomain.c
27430         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
27431         g_build_filename to properly get separators on the filename created.
27432
27433         * object.h: Small change, introduce MonoMarshalByRefObject to
27434         track the layout of that structure in the C# universe as we make
27435         changes there.
27436
27437 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
27438
27439         * object.c: removed assert to allow static fields on interfaces.
27440         * loader.c: a TypeSpec may be used for any type, not just arrays.
27441
27442 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27443
27444         * class.c, class.h: added mono_class_array_element_size ().
27445         Ignore static methods in interfaces.
27446
27447 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27448
27449         * threads.c: fixed the build under cygwin.
27450
27451 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
27452
27453         * reflection.c: handle nullref constants. Allocate keys for
27454         reflection handles with the GC.
27455
27456 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
27457
27458         * threads.c, threads.h: added mono_thread_get_abort_signal()
27459         to get a suitable signal for thread abort.
27460
27461 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
27462
27463         * metadata.c: fix handling of ExportedType table.
27464
27465 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27466
27467         * icall.c: added WriteWindowsDebugString internal call.
27468
27469 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27470
27471         * reflection.h: added fields to match C# implementation.
27472
27473 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27474
27475         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
27476
27477 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
27478
27479         * gc.h, gc-internal.h: Rename header for GC internal calls to
27480         gc-internal.h from gc.h as to not clash with Boehm GC having its
27481         header installed as <gc.h> in outside include paths.
27482         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
27483         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
27484
27485 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27486
27487         * icall.c: assign minor, build and revision in FillName.
27488
27489 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
27490
27491         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
27492         Added support for running code generated by Reflection.Emit.
27493
27494 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27495
27496         * appdomain.c: check for NULL argument in LoadFrom.
27497
27498 2002-12-10  Dick Porter  <dick@ximian.com>
27499
27500         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
27501
27502 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27503
27504         * appdomain.c: fix buglet when building exe file name.  Handle full
27505         assembly name (needed after latest changes to AssemblyName).
27506         * image.c:
27507         (mono_image_close): free some hashtables.
27508
27509 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
27510
27511         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
27512         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
27513         on some systems (redhat 7.3) 
27514
27515 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
27516
27517         * threads.c: delete the critical section of a sync block,
27518         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
27519
27520 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
27521
27522         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
27523
27524 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27525
27526         * appdomain.[ch]: handle the assembly preload event to try loading the
27527         assemblies using the paths we have in the current domain.
27528
27529         * assembly.[ch]: created an assembly preload hook that is called to try
27530         loading the assembly by other means that the ones provided here.
27531
27532         * domain.c: initialize the domain search path.
27533
27534         From now on, assemblies (TODO: except corlib and System) are loaded
27535         according to these rules when using mono_assembly_load ():
27536
27537                 1. It tries to load the assembly from the ApplicationBase
27538                 of the current domain appending .dll and .exe (TODO: have to
27539                 try loading from name/name.dll and name/name.exe).
27540
27541                 2. It tries the search path specified in PrivateBinPath for the
27542                 current domain (if any).
27543
27544                 3. Previous behavior.
27545
27546 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
27547
27548         * icall.c: implemented GetInterfaceMap() related icall.
27549         * domain.c, loader.h: load MethodInfo in mono_defaults.
27550
27551 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
27552
27553         * gc.c: disable the finalizer thread for now, untill all the issues
27554         with it are resolved.
27555
27556 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27557
27558         * string-icalls.c: handle embedded nulls in string ctor when the
27559         length is specified.
27560
27561 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
27562
27563         * class.c: look for explicit interface implementation in parent
27564         classes, too.
27565
27566 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
27567
27568         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
27569
27570 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
27571
27572         * gc.c: protect handles with a critical section.
27573
27574 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27575
27576         * icall.c:
27577         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
27578         parameters. If no assembly specified, try getting the type from all
27579         the assemblies in the current domain, else, load the assembly and get
27580         the type from it.
27581
27582 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27583
27584         * marshal.c: applied patch from Aleksey Demakov that fixes
27585         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
27586
27587 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27588
27589         * icall.c: fixed get_location.
27590
27591 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
27592
27593         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
27594         declarations to make it work with older gcc. 
27595
27596         * loader.c (mono_get_method): set signature->pinvoke for native calls
27597
27598 2002-11-20  Dick Porter  <dick@ximian.com>
27599
27600         * threads.c (mono_thread_init): Set the main thread's handle
27601
27602 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
27603
27604         * gc.c: allow compilation without GC support. Changed to match the
27605         mono coding style.
27606
27607 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
27608
27609         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
27610
27611 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
27612
27613         * reflection.c: set a public key token on the core assemblies.
27614
27615 2002-11-18  Dick Porter  <dick@ximian.com>
27616
27617         * threads.c: Split out some thread initialisation so that other
27618         files can set the start callback function.
27619
27620         * gc.c: Run finalisers in a separate thread, to avoid stack
27621         overflow.  Fixes bug 31333.
27622
27623         * appdomain.c: Set up GC finalisation thread.
27624
27625         * reflection.c: 
27626         * object.c: 
27627         * domain.c: Use gc.h macros for GC_malloc
27628         
27629 2002-11-15  Dick Porter  <dick@ximian.com>
27630
27631         * threadpool.c: 
27632         * threads.c:
27633         * appdomain.c: Removed mono_runtime_init_with_attach(),
27634         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
27635         merging the extra parameter with the existing function.  Removed
27636         unneeded code in mono_thread_attach().
27637
27638 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
27639
27640         * image.c (mono_image_loaded_by_guid): a method to get loaded
27641         images by guid. 
27642         (load_metadata_ptrs): we store the guid as string.
27643
27644 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
27645
27646         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
27647
27648         * metadata.c (mono_guid_to_string): imported method form Zoltan
27649         Varga (slightly modified)
27650
27651         * assembly.c (mono_assembly_open): load precompiled code
27652
27653         * loader.h (MonoMethod): we store the method token for use in the
27654         aot compiler. 
27655
27656 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27657
27658         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
27659         the hook function called when an assembly is loaded.
27660         
27661         * domain.c: Modified file.
27662         (mono_domain_assembly_load): removed hash table insertion of assemblies.
27663
27664         Fixes bug #33196.
27665
27666 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
27667
27668         * reflection.c: Map PEFileKind to the value expected by the WinNT
27669         image loader. 
27670
27671 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27672
27673         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
27674         Read until the buffer is filled completely.
27675
27676 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27677
27678         * icall.c: implemented MonoType.InternalGetEvent ().
27679
27680 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27681
27682         * appdomain.c: implemented InitAppDomainSetup. Delayed
27683         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
27684         the entry_assembly.
27685
27686         * assembly.c: base_dir is now an absolute path ending with
27687         G_DIR_SEPARATOR.
27688
27689         * icall.c: modified get_location according to the above changes.
27690
27691         * object.c: init AppDomain.SetupInformation for the default domain after
27692         we have the entry assembly.
27693
27694         * domain.c: when unloading a domain, setup = NULL.
27695
27696 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
27697
27698         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
27699
27700 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
27701
27702         * object.h, object.c: introduced mono_object_get_virtual_method ()
27703         to lookup the method invoked on an object when a callvirt is done on
27704         a method.
27705         * icall.c: make MethodInfo::Invoke() always do a virtual call.
27706
27707 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27708
27709         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
27710         current domain when loaded an assembly and failed to load it.
27711
27712         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
27713
27714 2002-10-31  Dick Porter  <dick@ximian.com>
27715
27716         * icall.c: 
27717         * file-io.h: 
27718         * file-io.c: Return the error status in a parameter, as the
27719         GetLastError() value has long since been blown away if we try and
27720         look it up in a subsequent internal call invocation.  Delete the
27721         GetLastError() internal call, because it's useless.
27722
27723 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
27724
27725         * class.[ch]: added cast_class to fix bug 29517
27726
27727 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
27728
27729         * marshal.c: create valid IL code in the filter clause:
27730         the new JIT is less forgiving:-)
27731
27732 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27733
27734         * icall.c: removed get_property internal call.
27735
27736 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
27737
27738         * appdomain.h domain.c: Added an ID to appdomains.
27739         
27740         * threads.c threads.h icall.c: Implement icall
27741         Thread:GetDomainID(), and remove unused icall 
27742         CurrentThreadDomain_internal.
27743
27744 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27745
27746         * icall.c: Don't recurse through the base types in GetConstructor.
27747         Fixes bug #32063. 
27748
27749 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
27750
27751         * mempool.h, mempool.c: added mono_mempool_empty() and
27752         mono_mempool_stats().
27753
27754 2002-10-23  Dick Porter  <dick@ximian.com>
27755
27756         * file-io.c: 
27757         * file-io.h: 
27758         * icall.c: Added MonoIO.GetFileType internal call
27759
27760 2002-10-17  Dick Porter  <dick@ximian.com>
27761
27762         * appdomain.c (mono_runtime_cleanup): Don't signal the async
27763         delegate semaphore before waiting for all threads to finish,
27764         because new threads can also call async delegates.  Fixes bug
27765         32004.
27766
27767         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
27768         of 3 seconds, in case another async job is queued.  (This part is
27769         needed because the bug fix reintroduced the 3s exit lag.)  This
27770         makes the mono_runtime_shutdown flag superfluous.
27771
27772 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
27773
27774         * reflection.c: include ehader size in method section headers.
27775         Really check for suplicated modules entries.
27776
27777 2002-10-17  Martin Baulig  <martin@gnome.org>
27778
27779         * debug-mono-symfile.c: Added back support for locals.
27780
27781 2002-10-14  Martin Baulig  <martin@gnome.org>
27782
27783         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
27784         MONO_TYPE_VOID.
27785
27786 2002-10-14  Martin Baulig  <martin@gnome.org>
27787
27788         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
27789         mono_class_get() instead of looking in the class cache. 
27790
27791 2002-10-13  Martin Baulig  <martin@gnome.org>
27792
27793         * debug-mono-symfile.c: Set version number to 28, include the
27794         signature in method names.
27795
27796 2002-10-13  Martin Baulig  <martin@gnome.org>
27797
27798         * debug-mono-symfile.h: Set version number to 27.
27799
27800 2002-10-11  Martin Baulig  <martin@gnome.org>
27801
27802         * gc.c: Don't register/unregister NULL pointers as disappearing links.
27803
27804 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
27805
27806         * metadata.c, metadata.h: added helper function to allocate signatures.
27807
27808 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27809
27810         * icall.c: added internal call to get the location of machine.config.
27811
27812 2002-10-08  Martin Baulig  <martin@gnome.org>
27813
27814         * debug-mono-symfile.c: Ignore classes with a pending init for the
27815         moment.
27816
27817 2002-10-03  Dick Porter  <dick@ximian.com>
27818
27819         * threads.c: Freebsd pthread_t is a pointer
27820
27821 2002-10-03  Dick Porter  <dick@ximian.com>
27822
27823         * socket-io.c: Implemented GetHostName_internal
27824
27825 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27826
27827         * mono-config.c:
27828         (mono_config_parse_file): don't leak the text.
27829
27830 2002-10-02  Martin Baulig  <martin@gnome.org>
27831
27832         * debug-mono-symfile.c: Added support for methods.
27833
27834 2002-10-01  Martin Baulig  <martin@gnome.org>
27835
27836         * debug-mono-symfile.c: Don't emit methods and line numbers for
27837         the dynamic symbol file, just write the type table.  We can easily
27838         have an external helper program which creates a symbol file for an
27839         IL file.        
27840
27841 2002-10-01  Dick Porter  <dick@ximian.com>
27842
27843         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
27844         Only add the handle to the cleanup array when we're about to
27845         launch the thread.  Bug 31425 deadlocked when the test was run on
27846         mono under w32.
27847
27848 2002-10-01  Martin Baulig  <martin@gnome.org>
27849
27850         * debug-mono-symfile.c: Added support for properties.
27851
27852 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
27853
27854         * reflection.c: unaligned store fix from Mark Crichton
27855         <crichton@gimp.org>.
27856
27857 2002-09-27  Martin Baulig  <martin@gnome.org>
27858
27859         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
27860         New interncall.
27861
27862 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
27863
27864         * assembly.h, assembly.c: use a sane API to hook into the assembly
27865         loading process instead of a useless special-purpouse hack
27866         (ngen needs a hook, too, for example).
27867
27868 2002-09-27  Dick Porter  <dick@ximian.com>
27869
27870         * threads.c (mono_thread_init): Call GetCurrentProcess() so
27871         io-layer can set up some process handle info.  Not needed on w32,
27872         but doesn't hurt either.
27873
27874         * process.c: Pass the program name in the second parameter to
27875         CreateProcess, so the path is searched.  Include the working
27876         directory. Implemented process name, process enumeration, and some
27877         process detail internal calls.
27878         
27879         * icall.c: Added internal calls for process lookup, and some
27880         process details
27881
27882 2002-09-26  Martin Baulig  <martin@gnome.org>
27883
27884         * assembly.c (mono_install_open_assembly_hook): New global
27885         function to install a function to be invoked each time a new
27886         assembly is loaded.
27887         (mono_assembly_open): Run this callback function if set.
27888
27889         * debug-mono-symfile.c: Put back line numbers for the dynamic
27890         symbol file and also record the .il file as source file.  This
27891         allows us to install the temporary symbol file as `file.dbg' just
27892         like a compiler-generated one.
27893
27894 2002-09-26  Nick Zigarovich <nick@chemlab.org>
27895
27896         * Corrected typo in gc.c (BOHEM vs BOEHM).
27897
27898 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27899
27900         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
27901         GetProperties. Also avoid calling g_slist_length in GetProperties and
27902         GetMethods.
27903
27904 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
27905
27906         * reflection.c: avoid unaligned stores (bug spotted by
27907         Mark Crichton  <crichton@gimp.org>).
27908
27909 2002-09-25  Martin Baulig  <martin@gnome.org>
27910
27911         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
27912         instead of guint64 for addresses and added prologue/epilogue info.
27913
27914 2002-09-25  Martin Baulig  <martin@gnome.org>
27915
27916         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
27917         store line number info.  For the dynamic symbol file, we only need
27918         to provide the JIT generated dynamic line number info for the dynamic
27919         symbol file.
27920
27921 2002-09-25  Martin Baulig  <martin@gnome.org>
27922
27923         * debug-mono-symfile.h: Incremented version number.
27924
27925 2002-09-24  Martin Baulig  <martin@gnome.org>
27926
27927         * class.c (mono_debugger_class_init_func): New global function
27928         pointer variable.
27929         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
27930         call it.
27931
27932         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
27933         function.  This is called via the mono_debugger_class_init_func
27934         hook to add all types to the dynamic type table.
27935         (ves_icall_MonoDebugger_GetType): New interncall to get a class
27936         from its metadata token.
27937
27938         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
27939         New interncall for the debugger.
27940
27941 2002-09-24  Nick Drochak <ndrochak@gol.com>
27942
27943         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
27944         before using it in case it is null.
27945         
27946 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
27947
27948         * metadata.c: allow custom modifiers in local var signatures
27949         (bug spotted by Zoltan Varga).
27950
27951 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
27952
27953         * class.c: deal with the <Module> class that may have a NULL vtable.
27954         Eliminate warnings.
27955
27956 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
27957
27958         * image.c, image.h: more strong name helpers.
27959         * monosn.c: more work: convert pem keys to cryptoapi format.
27960
27961 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
27962
27963         * string-icalls.c: speedup IndexOf.
27964
27965 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
27966
27967         * icall.c: updates from Zoltan.2.Varga@nokia.com.
27968
27969 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
27970
27971         * icall.c: cleanup: use mono_object_domain ().
27972
27973 2002-09-23  Martin Baulig  <martin@gnome.org>
27974
27975         * debug-mono-symfile.c: Improved type support.
27976
27977 2002-09-22  Martin Baulig  <martin@gnome.org>
27978
27979         * debug-mono-symfile.c: Added support for reference types and strings.
27980
27981 2002-09-22  Martin Baulig  <martin@gnome.org>
27982
27983         * debug-mono-symfile.c: Started to work on the type table.
27984
27985 2002-09-21  Martin Baulig  <martin@gnome.org>
27986
27987         * debug-mono-symfile.c: Largely reworked the symbol table format.
27988         The symbol table is now incrementally updated each time a new
27989         method is added.  We're now also using our own magic and version
27990         so that you don't need to recompile all your classes if the
27991         dynamic table changes.
27992         (mono_debug_update_mono_symbol_file): Removed.
27993         (mono_debug_symfile_add_method): New function to add a method.
27994
27995 2002-09-21  Martin Baulig  <martin@gnome.org>
27996
27997         * icall.c
27998         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
27999         New interncall.
28000
28001         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
28002         New interncall to get a method from its metadata token.
28003
28004 2002-09-21  Martin Baulig  <martin@gnome.org>
28005
28006         * debug-mono-symfile.c: Create type table.
28007
28008 2002-09-20  Martin Baulig  <martin@gnome.org>
28009
28010         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
28011
28012 2002-09-20  Martin Baulig  <martin@gnome.org>
28013
28014         * debug-mono-symfile.c: Provide information about params and locals.
28015
28016 2002-09-20  Martin Baulig  <martin@gnome.org>
28017
28018         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
28019         New interncall.
28020
28021         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
28022         interncall to get a method from its metadata token.
28023
28024 2002-09-20  Martin Baulig  <martin@gnome.org>
28025
28026         * debug-mono-symfile.c: Added a few checks for method->header
28027         being non-NULL.  This should never happen, but for the moment
28028         let's use a g_warning() rather than a g_assert().
28029
28030 2002-09-19  Mark Crichton  <crichton@gimp.org>
28031
28032         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
28033         even if support for it isn't present.  Added an #ifdef to fix this.
28034
28035         * socket-io.c: Added checks back for Solaris support.
28036
28037 2002-09-19  Martin Baulig  <martin@gnome.org>
28038
28039         * debug-mono-symfile.c (read_string, write_string): Reflect latest
28040         changes in the symbol file format.
28041
28042 2002-09-18  Martin Baulig  <martin@gnome.org>
28043
28044         * debug-mono-symfile.c: Set version number to 21.
28045
28046 2002-09-18  Dick Porter  <dick@ximian.com>
28047
28048         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
28049         on netbsd.  Fixes bug 30051.
28050
28051 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28052
28053         * reflection.c:
28054         (set_version_from_string): little fix.
28055
28056 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
28057
28058         * monosn.c, Makefile.am: added strong name utility.
28059         * reflection.h, reflection.c: implemented delayed signing,
28060         locale, version and hash id assembly attributes.
28061
28062 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
28063
28064         * loader.c, metadata.c: load param attributes in signatures.
28065
28066 2002-09-16  Martin Baulig  <martin@gnome.org>
28067
28068         * debug-mono-symfile.c: Added string table with all method names.
28069
28070 2002-09-14  Martin Baulig  <martin@gnome.org>
28071
28072         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
28073         fast method lookup.
28074
28075 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
28076
28077         * reflection.c: record the public key token of referenced assemblies.
28078
28079 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
28080
28081         * image.c, image.h: added functions to get the strong name and the
28082         public key of an assembly.
28083         * pedump.c: use them.
28084
28085 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
28086
28087         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
28088
28089 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
28090
28091         * marshal.c (mono_marshal_get_managed_wrapper): Added
28092         MONO_TYPE_BOOLEAN 
28093
28094 2002-09-11  Martin Baulig  <martin@gnome.org>
28095
28096         * gc.c: Call GC_unregister_disappearing_link() on all links when
28097         finalizing them, this is necessary to aviod a crash in boehm's
28098         finalize handler.
28099
28100 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
28101
28102         * gc.c: handle GetTarget for finalized objects spotted and fixed by
28103         nick@chemlab.org.
28104
28105 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
28106
28107         * icall.c: implemented MonoType::Module.
28108         * reflection.c, reflection.h: mono_module_get_object () from
28109         Tomi Pakarinen <tomi.pakarinen@welho.com>.
28110
28111 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
28112
28113         * icall.c: ignore overridden methods in GetMethods ().
28114         Fix for FieldInfo::SetValue().
28115         * object.c: handle float/double in runtime invoke.
28116
28117 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
28118
28119         * object.c: allow a constructor to be called again on an object.
28120
28121 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
28122
28123         * class.h, class.c: move field layout code to it's own function and
28124         export it. Get an interface id earlier. Move fields in MonoClass
28125         so they are more cache friendly and align the bitfields.
28126         * loader.c: temporary handle get_param_names() for a runtime method.
28127         * reflection.c, reflection.h: more code to handle runtime creation of
28128         types.
28129
28130 2002-09-09  Martin Baulig  <martin@gnome.org>
28131
28132         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
28133         signature with the pinvoke field being set for the actual call.
28134
28135 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
28136
28137         * icall.c: removed some unused icalls. Start of map of glib charsets
28138         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
28139
28140 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
28141
28142         * debug-helpers.c: break infinite loop (found and fixed by
28143         Holger Arnold <harnold@gmx.de>).
28144
28145 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
28146
28147         * icall.c: target may be null in create_delegate.
28148
28149 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
28150
28151         * marshal.c: handle a boolean return type.
28152
28153 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
28154
28155         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
28156
28157 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
28158
28159         * gc.c: fix weakreferences.
28160
28161 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
28162
28163         * icall.c: added icall to get default codepage.
28164
28165 2002-09-03  Dick Porter  <dick@ximian.com>
28166
28167         * threads.h: 
28168         * threads.c: Use MonoThread instead of MonoObject where
28169         apropriate.
28170
28171         Store running thread objects in a hash table, so that we have all
28172         the info to hand when waiting for them to finish
28173         (means we don't need OpenThread() any more, so mingw builds should
28174         be fully functional again.)
28175
28176         * verify.c:
28177         * object.h: Added thread ID to MonoThread
28178
28179 2002-09-03  Martin Baulig  <martin@gnome.org>
28180
28181         * icall.c (System.Reflection.Assembly::get_location): New interncall.
28182
28183 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28184
28185         * icall.c: fixed leak in get_temp_path. Thanks lupus.
28186
28187 2002-09-03  Martin Baulig  <martin@gnome.org>
28188
28189         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
28190         argument to store the end address of the disassembled instruction.
28191
28192         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
28193         here from debug-symfile.h.
28194         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
28195         JIT into this struct.
28196         (MonoSymbolFile): Added `char *image_file' field.
28197         (MonoDebugGetMethodFunc): Removed.
28198         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
28199         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
28200         (mono_debug_find_method): New method.
28201
28202         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
28203         create a full symbol file.
28204         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
28205         and static symbol files.
28206         (mono_debug_find_method): The symbol file keeps an internal method hash,
28207         call this to get a MonoDebugMethodInfo from a MonoMethod.
28208
28209         * debug-symfile.[ch]: Removed.
28210
28211 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
28212
28213         * image.c (do_mono_image_open): Remove linker version check.
28214
28215 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
28216
28217         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
28218         wrappers for instance methods.
28219         
28220 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28221
28222         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
28223
28224 2002-08-28  Dick Porter  <dick@ximian.com>
28225
28226         * Makefile.am: Export HOST_CC for w32 builds
28227
28228 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
28229
28230         * file-io.c process.c: MonoString are null terminated, no
28231         need for mono_string_to_utf16() anymore.
28232
28233 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
28234
28235         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
28236
28237 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
28238
28239         * icall.c, reflection.h: speedup System.MonoType.
28240
28241 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
28242
28243         * reflection.c: allow null as the value of a string argument in
28244         custom attributes constructors.
28245
28246 2002-08-27  Martin Baulig  <martin@gnome.org>
28247
28248         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
28249         `trampoline_address' field.
28250
28251 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
28252
28253         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
28254         check (fixes bug #29486) 
28255
28256 2002-08-27  Martin Baulig  <martin@gnome.org>
28257
28258         * debug-mono-symfile.c: Changed the file format in a way that allows us
28259         open it read-only and to use a specially malloced area for all the
28260         dynamic data.  We can now also generate a symbol file on-the-fly if we're
28261         debugging IL code and there is no MCS generated symbol file for it.
28262
28263 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
28264
28265         * object.c: added a define for a good string and array
28266         creation speedup (not enabled by default because we need to deal with
28267         the synch stuff).
28268
28269 2002-08-26  Martin Baulig  <martin@gnome.org>
28270
28271         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
28272         function to create a dynamic symbol file.  This is used by the
28273         debugger to create a symbol file for IL code on-the-fly.
28274
28275 2002-08-26  Martin Baulig  <martin@gnome.org>
28276
28277         * loader.c (mono_lookup_pinvoke_call): Include the error message
28278         from g_module_error() in the error message.
28279
28280 2002-08-24  Martin Baulig  <martin@gnome.org>
28281
28282         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
28283         function to update the symbol file.  The symbol file is mmap()ed
28284         writable, but private.  This allows us to install the symbol file
28285         together with the assembly.
28286
28287 2002-08-24  Martin Baulig  <martin@gnome.org>
28288
28289         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
28290         but they can read the new symbol file format which mcs is now creating.
28291
28292         * debug-symfile.c (mono_debug_find_source_location): Moved to
28293         debug-mono-symfile.c; this is now operating on the new symbol file.
28294
28295 2002-08-23  Martin Baulig  <martin@gnome.org>
28296
28297         * debug-helpers.c (mono_method_desc_from_method): New function to get
28298         a MonoMethodDesc from a MonoMethod.
28299
28300 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
28301
28302         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
28303         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
28304
28305 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
28306
28307         * string-icalls.[ch]: make helper methods static.
28308
28309 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28310
28311         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
28312         types to it and to SetValueInternal.
28313
28314         * object.c: Moved handle_enum label to its proper place. This was the
28315         f... bug! ;-)
28316
28317         This time i compiled mcs and gtk-sharp and they both work.
28318
28319 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28320
28321         * icall.c: reverted partially my previous patch until 
28322         object.c:set_value handles enums correcly.
28323
28324 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28325
28326         * icall.c:
28327         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
28328         (ves_icall_System_Environment_get_MachineName): removed warning when
28329         compiling under cygwin.
28330
28331 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
28332
28333         * object.c: fixed field_get_value() for reference types.
28334
28335 2002-08-22  Dick Porter  <dick@ximian.com>
28336
28337         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
28338         Don't free a buffer while it's still needed.  Patch from Jonathan
28339         Liger <Jonathan.liger@wanadoo.fr>
28340
28341 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
28342
28343         * icall.c (ves_icall_System_Environment_get_Platform): Add new
28344         internal call.
28345
28346 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
28347
28348         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
28349         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
28350
28351         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
28352         we call unmanaged code which throws exceptions.
28353
28354 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
28355
28356         * appdomain.h: added per-domain entry_assembly.
28357         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
28358         arguments.
28359         * icall.c: Assembly::GetEntryAssembly icall.
28360         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
28361         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
28362
28363 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
28364
28365         * appdomain.h, gc.c: added mono_domain_finalize ().
28366
28367 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28368
28369         * object.c:
28370         (mono_print_unhandled_exception): changed g_warning by g_printerr
28371         because g_log has a 1024 characters limit (yeah, i got a big stack
28372         trace). Don't print exception name, that should be in ToString 
28373         returned string.
28374
28375 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28376
28377         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
28378         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
28379
28380 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28381
28382         * object.c:
28383         (mono_print_unhandled_exception): after previous commit, i realized
28384         that MS calls ToString on the exception. I changed this function to
28385         do that. This way we get stack_trace for free.
28386
28387 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28388
28389         * object.c:
28390         (mono_print_unhandled_exception): invoke Message property instead of
28391         getting 'message' field from Exception. Don't allocate memory for
28392         'trace' and 'message' if not needed.
28393
28394 2002-08-18  Dick Porter  <dick@ximian.com>
28395
28396         * unicode.c: Fix asserts to match Encoder.cs checks
28397
28398 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
28399
28400         * marshal.c: fix unaligned store issue and a few wrong
28401         opcode argument types.
28402
28403 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28404
28405         * icall.c: added GetUninitializedObjectInternal internal call.
28406
28407 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
28408
28409         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
28410         to the right domain.
28411
28412 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
28413
28414         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
28415
28416         * class.c (class_compute_field_layout): set blittable to false for Strings
28417
28418         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
28419
28420 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
28421
28422         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
28423         first chunk of code to create types at runtime. Code to
28424         handle ReflectedType/DeclaringType. Make reflection handles
28425         domain specific.
28426
28427 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
28428
28429         * class.c: set correct name in arrays.
28430
28431 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
28432
28433         * appdomain.c (mono_domain_transfer_object): make it work with
28434         valuetypes. bug fixes.
28435
28436 2002-08-12  Dick Porter  <dick@ximian.com>
28437
28438         * object.h: Rename some parameters to avoid c++ keywords (Patch
28439         from Joseph Wenninger <kde@jowenn.at>)
28440
28441 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
28442
28443         * icall.c: added icall to implement Assembly.GetFile*.
28444
28445 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
28446
28447         * reflection.h, reflection.c: code to embed managed resources.
28448
28449 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
28450
28451         * class.c: move all the type size stuff into
28452         class_compute_field_layout().
28453
28454 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
28455
28456         * class.c: ensure enums have always the correct instance size.
28457         * unicode.c: remove wrong assert.
28458
28459 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
28460
28461         * assembly.c: fix mem corruption issue.
28462         * image.h, image.c: added mono_image_get_resource () to access
28463         managed resources.
28464         * icall.c: implemented Assembly.EntryPoint property and some
28465         Managed Resources related internalcalls.
28466
28467
28468 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
28469
28470         * image.c, image.h: impemented mono_image_get_entry_point ().
28471         * appdomain.c: use mono_image_get_entry_point.
28472
28473 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
28474
28475         * reflection.c: support the object type argument when loading
28476         custom attributes.
28477
28478 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
28479
28480         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
28481         String as return type.
28482
28483 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
28484
28485         * reflection.c: fix encoding of named args for custom attrs to match
28486         the ms implementation. Read them back when instantiating custom
28487         attributes.
28488
28489 2002-08-02  Radek Doulik  <rodo@ximian.com>
28490
28491         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
28492         by Dietmar as quick fix
28493         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
28494         16 as stack size, used on more places as quick fix before Dietmar
28495         will fix it properly
28496
28497 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
28498
28499         * object.h, object.c: added accessors for fields and properties.
28500
28501 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
28502
28503         * class.c, class.h: made mono_class_get_field_from_name ()
28504         loop on parent types.
28505         Added mono_class_get_property_from_name ().
28506
28507 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
28508
28509         * class.c, class.h: move the code to setup the type vtable in its own
28510         function so that it can be reused also for types created at runtime.
28511         Eliminate the "class" identifier from the header file.
28512         * reflection.c: setup the vtable for enums so that we can create
28513         objects for use in SetConstant ().
28514
28515 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
28516
28517         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
28518         instead of the delegate itself as this pointer (bug #28383)
28519
28520 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
28521
28522         * marshal.c (mono_marshal_get_managed_wrapper): added return type
28523         conversions.
28524
28525 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
28526
28527         * loader.c: don't set the pinvoke bit on icalls.
28528
28529 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
28530
28531         * debug-helpers.c (mono_method_full_name): only print a number to
28532         indicate wrapper type (so that the output is more readable in traces).
28533
28534 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
28535
28536         * class.c (mono_class_init): include method override patch from Paolo
28537
28538 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
28539
28540         * icall.c: fixed GetTypeCode().
28541
28542 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
28543
28544         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
28545         use real delegate invoke function to make it work with multicast
28546         delegates (fix bug# 28291).
28547
28548 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
28549
28550         * object.c: load constant strings.
28551
28552 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
28553
28554         * reflection.c: no magic numbers.
28555         * tabledefs.h: security action enum.
28556
28557 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
28558
28559         * assembly.c: fix possible memory corruption.
28560
28561 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
28562
28563         * reflection.h, reflection.c: added support for linking resources.
28564         * verify.c: check we have an updated corlib.
28565
28566 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
28567
28568         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
28569         string arrays.
28570         (mono_marshal_string_array): null terminate unmanaged string arrays.
28571         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
28572
28573 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
28574
28575         * icall.c: Type.GetType () can now return also types from the
28576         calling assembly.
28577
28578 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
28579
28580         * loader.h, loader.c: stack walking support.
28581         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
28582         GetCallingAssembly.
28583
28584 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
28585
28586         * marshal.c: added optimisations for blittable types 
28587
28588         * class.c (mono_array_class_get): do not set blittable attribute on arrays
28589         (mono_class_setup_mono_type): set blittable attribute for single
28590         and double.
28591
28592         * marshal.c (mono_string_utf8_to_builder): impl.
28593         (mono_string_builder_to_utf8): impl.
28594         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
28595
28596 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
28597
28598         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
28599         (mono_marshal_get_managed_wrapper): impl. byref types
28600
28601 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28602
28603         * icall.c:
28604         (search_method): don't display debug message. 
28605
28606 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
28607
28608         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
28609
28610 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
28611
28612         * appdomain.c: set the missing filename when throwing exception.
28613
28614 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
28615
28616         * metadata.c (mono_type_size): code cleanup
28617         (mono_type_stack_size): removed some test code
28618
28619 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
28620
28621         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
28622         mono_get_exception_file_not_found now.
28623
28624         * exception.c (mono_exception_from_name_two_strings): New version
28625         that will call a constructor with two string arguments. 
28626         (mono_get_exception_file_not_found): New helper routine, used to
28627         report file-not-found errors.
28628
28629 2002-07-20  Dick Porter  <dick@ximian.com>
28630
28631         * process.h:
28632         * process.c: Pass file handles to CreateProcess
28633         
28634         * icall.c:
28635         * file-io.h:
28636         * file-io.c: Implemented CreatePipe
28637
28638 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
28639
28640         * metadata.c (mono_get_param_info): set alignment for value types
28641
28642 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
28643
28644         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
28645         Constify mono_domain_assembly_open().
28646         * loader.c: handle null namespace in icalls.
28647
28648 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
28649
28650         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
28651         (emit_str_to_ptr_conv): marshal object as structs
28652
28653         * metadata.c (mono_type_to_unmanaged): marshal object as structs
28654
28655         * marshal.c (mono_marshal_get_runtime_invoke): support value types
28656
28657 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
28658
28659         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
28660         (mono_marshal_get_native_wrapper): we an now return value types
28661
28662 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
28663
28664         * verify.c: more checks implemented.
28665
28666 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
28667
28668         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
28669         (fix bug #27695)
28670         (mono_marshal_get_native_wrapper): allow byref arguments
28671         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
28672         impl. PtrToStringXXX methods
28673         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
28674         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
28675         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
28676         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
28677         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
28678
28679 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
28680
28681         * reflection.c: fix buglet in parsing an assembly name.
28682
28683 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
28684
28685         * marshal.c (emit_ptr_to_str_conv): first impl.
28686
28687 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
28688
28689         * object.c, class.h: cache the vtable in the class as suggested by
28690         vargaz@freemail.hu (Zoltan Varga).
28691
28692 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
28693
28694         * class.h, loader.c: added mono_field_from_token().
28695         * verify.c: first cut of type checking code.
28696
28697 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
28698
28699         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
28700
28701 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
28702
28703         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
28704         (fix bug #27782)
28705         (mono_marshal_get_remoting_invoke): impl.
28706         (mono_delegate_begin_invoke): impl.
28707         (mono_mb_emit_save_args): impl.
28708         (mono_delegate_end_invoke): impl.
28709         (mono_marshal_get_delegate_begin_invoke):
28710         (mono_marshal_get_delegate_end_invoke):
28711         (mono_marshal_get_delegate_invoke): generate a special name for
28712         those methods (including the signature) and associate them whith
28713         the delegate class. 
28714
28715 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
28716
28717         * reflection.[ch]: 
28718         (mono_reflection_type_from_name): now it has a MonoImage parameter
28719         which is used as the default image to search the type in. If the image
28720         is NULL or getting the type from it fails, it defaults to corlib.
28721
28722         * icall.c: changed 1 call to mono_reflection_type_from_name to match
28723         new parameter.
28724
28725 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
28726
28727         * reflection.c: update the parameter table index.
28728
28729 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
28730
28731         * domain.c: don't include the mark byte in the string hash.
28732
28733 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
28734
28735         * icall.cs: icall for Type.GetTypeCode ().
28736         * verify: a couple of fixes and disabled local initialization checks.
28737
28738 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
28739
28740         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
28741
28742         * debug-helpers.c (mono_method_full_name): print the type of the
28743         runtime wrapper
28744
28745         * metadata.c (mono_signature_hash): a hash function for signatures
28746         (mono_signature_hash): better hash algorithm
28747
28748         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
28749
28750         * debug-helpers.c (mono_method_full_name): this can now generate
28751         method names with signatures
28752
28753         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
28754         method dont have this pointers.
28755
28756 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
28757
28758         * reflection.c: fixup typebuilder tokens.
28759         * image.c: fix buglet.
28760         * marshal.h: remove whitespace.
28761         * metadata.h, metadata.c: reinstate code that was removed.
28762         * verify.c: handle catch directives and fix another couple of bugs.
28763
28764 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
28765
28766         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
28767         (mono_marshal_get_native_wrapper): make it comp. with the old code
28768         (mono_marshal_get_native_wrapper): support boolean
28769         (mono_marshal_get_managed_wrapper): support more types
28770
28771 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
28772
28773         * class.c (class_compute_field_layout): compute class->blittable attribute.
28774
28775 2002-07-09  Dick Porter  <dick@ximian.com>
28776
28777         * threads.c: Make the thread cleaning up cope with threads that
28778         call ExitThread()
28779
28780 2002-07-08  Radek Doulik  <rodo@ximian.com>
28781
28782         * reflection.c (method_encode_code): use non-translated values to
28783         compute finally_start, this fixes exception handling on ppc, yay!
28784
28785         * decimal.h (struct signscale): fix endianess
28786
28787 2002-07-07  Radek Doulik  <rodo@ximian.com>
28788
28789         * reflection.c: swap box_val and not val
28790
28791 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
28792
28793         * reflection.c, reflection.h: handle full assembly info in type name.
28794         Handle Type arguments when loading custom attributes.
28795         * icall.c: updated to use new mono_reflection_type_from_name () method.
28796
28797 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28798
28799         * loader.c:
28800         (method_from_memberref): also print assembly name when method not found.
28801
28802 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28803
28804         * icall.c:
28805         (ves_icall_TypeGetProperties): fixed bug #27473. 
28806
28807 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28808
28809         * reflection.c: display image name and token when cannot find the
28810         .ctor for an attribute.
28811
28812 2002-07-05  Martin Baulig  <martin@gnome.org>
28813
28814         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
28815
28816 2002-07-04  Dick Porter  <dick@ximian.com>
28817
28818         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
28819         compile on mingw.  This will cause mingw builds to not wait for
28820         subthreads to terminate after the main thread does.  I've lodged a
28821         bug with the mingw developers for them to wrap OpenThread().
28822
28823 2002-07-03  Dick Porter  <dick@ximian.com>
28824
28825         * threads.c: Store thread IDs instead of handles, because
28826         GetCurrentThread() returns a pseudohandle and therefore stores
28827         useless values.  mono_thread_cleanup() continues checking the
28828         array of threads until it is empty, to cope with subthreads
28829         spawning new threads after the main thread has finished.
28830
28831         * profiler.h:
28832         * profiler.c:
28833         * profiler-private.h: Pass the thread ID to thread profiler
28834         functions, instead of a handle
28835
28836 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
28837
28838         * verify.c: fixes to make it more usable.
28839         * pedump.c: added --verify code to verify IL code in an assembly.
28840
28841 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
28842
28843         * reflection.c: turn errors into warnings to allow compiling corlib.
28844
28845 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
28846
28847         * reflection.c: add special cases to compile corlib.
28848
28849 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
28850
28851         * reflection.c: handle properties with only a set method.
28852
28853 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
28854
28855         * opcodes.h: add enum with opcodes in opval order.
28856
28857 2002-07-01  Dick Porter  <dick@ximian.com>
28858         
28859         * object.h:
28860         * object.c (mono_runtime_run_main): Removed unneeded argument
28861
28862 2002-06-28  Martin Baulig  <martin@gnome.org>
28863
28864         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
28865
28866 2002-06-27  Dick Porter  <dick@ximian.com>
28867
28868         * threads.c: Store the handle in both the parent thread and in the
28869         subthread, to minimise the time between starting a new thread and
28870         storing its ID.
28871
28872 2002-06-26  Dick Porter  <dick@ximian.com>
28873
28874         * appdomain.c (mono_runtime_cleanup): Close the socket library
28875         after all the threads have finished, not before
28876
28877 2002-06-26  Martin Baulig  <martin@gnome.org>
28878
28879         * debug-symfile.c (mono_debug_find_source_location): Added
28880         `guint32 *line_number' argument.  If it's not NULL, store the line number
28881         there and return the file name without the line number.
28882
28883 2002-06-25  Dick Porter  <dick@ximian.com>
28884
28885         * icall.c:
28886         * process.h:
28887         * process.c: Process forking and other support functions
28888
28889 2002-06-25  Dick Porter  <dick@ximian.com>
28890
28891         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
28892         things dont happen when the image is closed.
28893         (mono_image_lookup_resource): Walk the resource section looking
28894         for a particular entry
28895
28896         * cil-coff.h: PE resource section decoding
28897
28898 2002-06-25  Dick Porter  <dick@ximian.com>
28899         
28900         * assembly.h:
28901         * assembly.c: 
28902         (mono_assembly_foreach): Accessor functions to walk the list of
28903         loaded assemblies
28904         (mono_assembly_set_main):
28905         (mono_assembly_get_main): Process methods need to know which
28906         assembly is the "main" one
28907
28908         * object.c (mono_runtime_run_main): Record the main assembly
28909
28910         * debug-helpers.c: Fix typo
28911
28912 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
28913
28914         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
28915         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
28916
28917 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
28918
28919         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
28920
28921 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
28922
28923         * image.c (do_mono_image_open): Initialize reference count,
28924         otherwise we leak the MonoImage.
28925
28926 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
28927
28928         * reflection.c: small tweak to handle self-hosting.
28929
28930 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
28931
28932         * reflection.c: fix type name parse code.
28933
28934 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
28935
28936         * reflection.c: break out of the loop.
28937         * image.c: special case corlib.
28938
28939 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
28940
28941         * reflection.c: add all the custom attrs at the end to ensure the
28942         ctors have been properly initialized when the attributes are defined
28943         in the current assembly.
28944
28945 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
28946
28947         * reflection.c: handle correctly multiple-nested types.
28948
28949 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
28950
28951         * row-indexes.h: fix typos.
28952         * reflection.c: adjust for typos and fix method_def_or_ref
28953         encoding in MethodImpl table.
28954
28955 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
28956
28957         * reflection.c: fix entry point patching (thanks Serge!).
28958
28959 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
28960
28961         * verify.c: add check for System.Exception
28962
28963 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
28964
28965         * image.c, class.c: minifix for code just c&p'ed.
28966         * reflection.c: warning fix.
28967         * object.h, loader.h, domain.c: load also StringBuilder.
28968
28969 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
28970
28971         * marshal.h, marshal.c: some support code to handle complex marshaling.
28972
28973 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
28974
28975         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
28976         Better signatures with vtable error dump.
28977
28978 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
28979
28980         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
28981
28982 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
28983
28984         * icall.c (ves_icall_Type_GetField): impl.
28985
28986 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
28987
28988         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
28989         to retrieve a marshal description blob for a field or param.
28990
28991 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
28992
28993         * reflection.h, reflection.c: change order of nested type emission
28994         to avoid table corruption. The NestedTypes table is sorted.
28995         * icall.c: change order of GetConstructor results to workaround mcs bug.
28996
28997 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
28998
28999         * reflection.h, reflection.c: handle field and param marshal
29000         information.
29001
29002 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
29003
29004         * icall.c, marshal.c marshal.h: more Marshal class implementation.
29005
29006 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
29007
29008         * reflection.c: fix call convention.
29009
29010 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
29011
29012         * reflection.h, reflection.c: mono_image_get_memberref_token()
29013         takes a type instead of a class, now. Added
29014         mono_image_get_array_token() to create tokens for the special
29015         multi-dim array methods.
29016
29017 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
29018
29019         * assembly.c: handle modules (no assembly table). Split
29020         loading references in its own function.
29021         * class.c: handle moduleref resolution scope.
29022         * image.c, image.h: cache module name in image.
29023
29024 2002-06-07  Martin Baulig  <martin@gnome.org>
29025
29026         * reflection.c (mono_image_get_type_info): Only add a class layout entry
29027         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
29028
29029 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
29030
29031         * icall.c: more signature fixes that used uint instead of int.
29032
29033 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29034
29035         * reflection.c: fixed signature of field refs.
29036
29037 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
29038
29039         * class.c, reflection.c: handle typerefs of nested types
29040         (both on read and when writing files).
29041
29042 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
29043
29044         * icall.c: fix method signatures that tried to workaround the previous
29045         typo, d'oh!
29046
29047 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
29048
29049         * debug-helpers.c: fix typo.
29050
29051 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
29052
29053         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
29054         rewrote the PE/COFF writing code (our programs are understood by the
29055         ms runtime, now).
29056
29057 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
29058
29059         * gc.c, gc.h, icall.c: weakreference support.
29060
29061 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
29062
29063         * Makefile.am, mono-config.c: use $(sysconfdir).
29064
29065 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
29066
29067         * icall.c: changed default precision of Double.ToString() to 15.
29068         Fixed memory leak. Unified with Single.ToString.
29069
29070 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
29071
29072         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
29073
29074 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
29075
29076         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
29077         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
29078         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
29079         and myself.
29080
29081 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
29082
29083         * debug-symfile.c, sysmath.c: yet more compilation fixes.
29084
29085 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29086
29087         * reflection.c, socket-io.c: more compilation fixes.
29088
29089 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
29090
29091         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
29092         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
29093         unicode.c: warning and compiler compatibility fixes.
29094
29095 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
29096
29097         * class.h, metadata.c: fixed warnings/compilation errors.
29098
29099 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
29100
29101         * Makefile.am, mono-config.c, mono-config.h: configuration file
29102         support routines.
29103         * loader.c, loader.h: make Dll mapping configurable at runtime in the
29104         config file. Export methods to insert and lookup mappings.
29105
29106 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
29107
29108         * reflection.c: handle types and boxed objects in custom attr
29109         constructors.
29110
29111 2002-05-30  Martin Baulig  <martin@gnome.org>
29112
29113         * debug-symfile.c
29114         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
29115
29116 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
29117
29118         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
29119         to lookup the implmap row for a P/Invoke method.
29120         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
29121         P/Invoke method from the runtime on an as needed basis.
29122
29123 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
29124
29125         * metadata.c (mono_metadata_parse_signature): impl.
29126
29127 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
29128
29129         * class.c: handle .pack directive.
29130
29131 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
29132
29133         * object.c: initialize static fields with RVA data.
29134
29135 2002-05-25  Martin Baulig  <martin@gnome.org>
29136
29137         * debug-symfile.c
29138         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
29139
29140 2002-05-24  Martin Baulig  <martin@gnome.org>
29141
29142         * debug-symfile.c
29143         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
29144         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
29145         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
29146
29147 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
29148
29149         * object.c: special case string ctros in invoke.
29150         * gc.c: silly whitespace changes.
29151
29152 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
29153
29154         * threadpool.[ch]: impl. a threadpool that can
29155         be used by mint and mono.
29156
29157 2002-05-22  Martin Baulig  <martin@gnome.org>
29158
29159         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
29160         The first argument is now a `MonoReflectionModuleBuilder *', the return
29161         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
29162         `methods' field to get the method builder.  The `token' argument is the
29163         unfixed token.
29164
29165         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
29166         invalid characters instead of g_assert_not_reached()ing.  This seems
29167         to be the behaviour of mscorlib.
29168
29169 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
29170
29171         * object.c (mono_runtime_invoke_array): applied patch from Rachel
29172         Hestilow to fix bug #25104
29173
29174 2002-05-21  Martin Baulig  <martin@gnome.org>
29175
29176         * debug-symfile.c (mono_debug_find_source_location): New function.
29177         Looks up an IL offset in the line number table and returns the source
29178         location as a string.
29179
29180 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29181
29182         * icall.c:
29183         (mono_double_ToStringImpl): changed %f by %g until we have something
29184         better.
29185
29186 2002-05-21  Nick Drochak  <ndrochak@gol.com>
29187
29188         * icall.c : Use different name for Math.Pow's icall.  Needed to check
29189         parameters first in C#.
29190
29191 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
29192
29193         * icall.c, reflection.h: added icall to get info about an event.
29194
29195 2002-05-20  Radek Doulik  <rodo@ximian.com>
29196
29197         * object.c (mono_value_box): don't use memcpy for boxing on BIG
29198         endian
29199         (mono_value_box): don't use memcpy for small sizes on
29200         architectures with unaligned access
29201
29202 2002-05-20  Martin Baulig  <martin@gnome.org>
29203
29204         * reflection.c (mono_reflection_setup_internal_class): Don't crash
29205         if `tb->parent == NULL'.
29206         (mono_reflection_create_internal_class): New function.  This is
29207         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
29208         for enum types.
29209
29210         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
29211         New interncall.
29212
29213 2002-05-19  Martin Baulig  <martin@gnome.org>
29214
29215         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
29216         argument to get the length, don't default to the array length.
29217
29218 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
29219
29220         * assembly.c (mono_assembly_setrootdir): New function used to
29221         override the MONO_ASSEMBLIES directory.
29222
29223 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
29224
29225         * icall.c: ValueType_GetHashCode() initialize local var.
29226
29227 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
29228
29229         * reflection.c: sort custom attributes table.
29230
29231 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
29232
29233         * reflection.c: support named args in custom attributes (write support).
29234
29235 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
29236
29237         * reflection.c: fix finally position calculation.
29238
29239 2002-05-15  Radek Doulik  <rodo@ximian.com>
29240
29241         * reflection.c: fixed endianess at many places
29242
29243         * icall.c (ves_icall_InitializeArray): comment out debug msg
29244
29245 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
29246
29247         * object.c (mono_unhandled_exception): new function to handle
29248         unhandled exceptions.
29249         (mono_unhandled_exception): call the UnhandledException event.
29250         (mono_runtime_delegate_invoke): impl.
29251
29252 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
29253
29254         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
29255         returns the RVA, not the direct pointer to the data. Handle the case
29256         when the class size is fixed.
29257
29258 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
29259
29260         * reflection.c: fix some endianess issues.
29261
29262 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
29263
29264         * object.c (mono_runtime_invoke): is now able to catch exceptions.
29265
29266         * threads.c (mono_thread_init): added a callback which is invoked
29267         at thread start.
29268
29269 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
29270         
29271         * icall.c: make GetHashCode return non-negative values.
29272
29273 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
29274
29275         * object.c, icall.c, gc.c: revert to address-based hashcode.
29276
29277 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
29278
29279         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
29280
29281 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
29282
29283         * icall.c, class.c: special case <Module>.
29284
29285 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
29286
29287         * icall.c: fix bug in GetNow().
29288
29289 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
29290
29291         * object.c (mono_runtime_class_init): make sure that we call all
29292         static class constructors.
29293
29294 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
29295
29296         * reflection.c: sort methodsemantics table.
29297
29298 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
29299
29300         * reflection.h, reflection.c: honour init locals setting.
29301
29302 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
29303
29304         * icall.c: copied Double ToStringImpl for Single ToStringImpl
29305
29306 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
29307
29308         * reflection.c: support ContructorBuilders in attribute blob creation.
29309
29310 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
29311
29312         * reflection.c: some changes to build a binary that can be run
29313         directly in windows.
29314
29315 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
29316
29317         * loader.c: print a big message when an icall can't be found.
29318
29319 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29320
29321         * string-icalls.c: fix bug 24248.
29322
29323 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
29324
29325         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
29326         icall.c, reflection.h: separate assembly loading by pathname and by
29327         assembly name. Use the MONO_PATH env var to search for assemblies.
29328
29329 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
29330
29331         * assembly.c, image.h: add some support for assemblies
29332         with multiple modules.
29333         * class.c, class.h: export mono_class_from_typeref().
29334         * loader.c: remove duplicated code and use mono_class_from_typeref(),
29335         instead.
29336
29337 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
29338
29339         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
29340         documentation says (the ECMA one is correct).
29341
29342 2002-05-02  Dick Porter  <dick@ximian.com>
29343
29344         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
29345         Don't name the synchronisation mutex.
29346
29347 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
29348
29349         * rand.c
29350         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
29351         Make the prototypes match.
29352         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
29353         Same.
29354
29355         * icall.c
29356         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
29357         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
29358         all systems have tm.tm_zone, so use strftime() with %Z to print
29359         the timezone abreviation into a temp string.
29360
29361         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
29362         rather than mono_array_addr() on a MonoString on Big Endian
29363         machines.
29364
29365 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
29366
29367         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
29368         fix bug 24041
29369
29370 2002-04-30  Dick Porter  <dick@ximian.com>
29371
29372         * socket-io.c: Cope with SOCKET being an integer rather than a
29373         pointer now.
29374
29375         * threads.c: Added Thread_free_internal, to deal with thread
29376         handle cleanup.  Moved calls to handle_store() and handle_remove()
29377         to start_wrapper(), so each can only be called once.  Allocate
29378         synchronisation blocks with GC_malloc(), and use GC finalisation
29379         to close the handles.
29380
29381         * icall.c: added System.Threading.Thread::Thread_free_internal
29382
29383 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
29384
29385         * icall.c: support Environment.Exit, CommandLineArgs().
29386
29387 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
29388
29389         * object.c, object.h: added mono_runtime_run_main () and
29390         mono_runtime_get_main_args () for use in System.Environment.
29391
29392 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
29393
29394         * gc.c: fix thinko, enable actual finalization since the jit is now
29395         fixed.
29396
29397 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
29398
29399         * gc.c, object.c: take into account that an object may be offset wrt the address
29400         returned by GC_malloc().
29401
29402 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
29403
29404         * image.c: handle files without entries in the assembly table (modules).
29405
29406 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
29407
29408         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
29409         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
29410         allowed to be null when it's System.Object class setup.
29411
29412 2002-04-27  Martin Baulig  <martin@gnome.org>
29413
29414         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
29415         if `tb->parent == NULL' rather than crashing.
29416
29417 2002-04-28  Nick Drochak  <ndrochak@gol.com>
29418
29419         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
29420         calling acos() where asin() should have been called.
29421
29422 2002-04-26  Martin Baulig  <martin@gnome.org>
29423
29424         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
29425         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
29426         there's a subdirectory called `System', but we don't want to read that
29427         subdirectory as an assembly.
29428
29429 2002-04-25  Martin Baulig  <martin@gnome.org>
29430
29431         * debug-symfile.c: Reflect latest MonoString changes.
29432
29433 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
29434
29435         * rand.c, rand.h: instance method icalls need to have an explicit
29436         this pointer as first argument in the C implementation.
29437
29438 2002-04-25  Nick Drochak <ndrochak@gol.com>
29439
29440         * icall.c: Fix typo in map for GetNonZeroBytes
29441
29442 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
29443
29444         * string-icalls.c : String does now passes unit tests without any 
29445         errors, the following changes has been made:
29446         
29447         Implemented replace methods.
29448         Renaming of methods to (try) follow the standard.
29449         Fixed compare ordinal
29450         Made all memory allocated directly to function instead of via icall function.
29451         Small performance fix in is_in_array function
29452                         
29453  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
29454
29455         c (mono_string_Internal_ctor_charp_int_int):
29456         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
29457         sindex < 0, throw ArgumentOutOfRangeException instead of
29458         ArgumentNullException.
29459
29460         Added new check for length == 0, however
29461         I need to make it return String.Empty from the C code.
29462         
29463         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
29464         that calculate the length for us here.
29465         
29466         (mono_string_Internal_ctor_sbytep_int_int): Replaced
29467         mono_string_new_utf16 with mono_string_new, since value is utf8.
29468
29469 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
29470
29471         * object.c: register the object for finalization if needed.
29472         Allocate one more char in the string for the terminating 0 char.
29473
29474 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
29475
29476         * class.c, class.h, image.c: check if a type implemenst a destructor.
29477         Use the proper key for array class lookups.
29478         * icall.c: register the icalls in the System.GC class.
29479         * gc.c, gc.h: GC-related functions and icalls.
29480
29481 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29482
29483         * icall.c:
29484         * socket-io.c:
29485         * unicode.c: free some strings gotten from mono_string_to_utf8 and
29486         changed a couple of free () by g_free ().
29487
29488         * decimal.c: one-liner in the comments for decimal2string ().
29489
29490 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
29491
29492         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
29493
29494 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
29495
29496         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
29497         * object.c (mono_runtime_invoke_array) : handle null in params
29498
29499 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
29500
29501         * string-icalls.c: fixed bug in split (one off bug)
29502
29503 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
29504
29505         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
29506         * icalls.c: added String::Equals as internal method
29507
29508 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
29509
29510         * threads.c: fixed bug in the double interlocked functions
29511
29512 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
29513
29514         * threads.c: implemented all of the new interlocked icalls.
29515         * string-icalls.c: fix a bug in insert.
29516         * icalls.c: added the icalls for interlocked, removed old string functions.
29517         
29518 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
29519
29520         * loader.c: fix off-by-one error when reading argument names.
29521
29522 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
29523
29524         * profiler.c: win32 counter implementation (untested).
29525         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
29526         (the latter needs testing and more complete impl. from win32 folks).
29527
29528 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
29529
29530         * object.c: mono_array_new_full workaround mono_array_class_get
29531         problem.
29532
29533 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
29534
29535         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
29536         * object.h (mono_string_chars): Changed casting type.
29537
29538 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
29539
29540         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
29541                            method signatures to use gunichar2 instead of gint16.
29542
29543 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
29544
29545         * object.h, object.c: domain-specific versions of mono_object_new and
29546         mono_array_new.
29547
29548 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
29549
29550         * object.c: changed String layout
29551
29552         * string-icalls.c (mono_string_Internal_ctor_chara): added
29553         internal string constructors.
29554
29555 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
29556
29557         * threads.c: pass 'this' to the thread start routine.
29558
29559 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29560
29561         * string-icalls.c: fix IndexOf and LastIndexOf. Now
29562         InternalCompareStr don't call twice mono_string_cmp_char for the last
29563         character. Improved performance in mono_string_cmp_char.
29564
29565 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
29566
29567         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
29568         code into its own library: libmonoruntime.
29569
29570 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
29571
29572         * object.h, object.c: changed array format so that szarrays do not
29573         require a bounds structure.
29574         * icall.c, appdomain.c: support for new szarray format.
29575
29576 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
29577
29578         * metadata.c: compare also the retuns type when comparing signatures:
29579         we didn't do this as an optimization since really overloaded methods
29580         must differ also in the arguments, but this doesn't work with
29581         low-level IL code (or when using explicit conversion operators: see
29582         bug#23498 for an example).
29583
29584 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
29585
29586         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
29587
29588 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
29589
29590         * icall.c: make MonoType::GetElementType its own icall.
29591
29592 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
29593
29594         * icall.c: remove MonoMethod_get_Name().
29595         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
29596         object.
29597
29598 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
29599
29600         * string-icalls.c: optimized a few methods.
29601
29602 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
29603
29604         * icall.c: added all new string internal calls
29605         * string-icalls.c: added, new string internal call implementation.
29606         * object.c: added mono_string_new_size for allocating a string a size
29607
29608 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
29609
29610         * object.c (mono_object_isinst): use the same code as in the
29611         optimized x86 version.
29612
29613 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
29614
29615         * profiler.c: TSC-based timer code (faster and more accurate).
29616         Not hooked up in configure, yet (set USE_X86TSC to 1).
29617
29618 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
29619
29620         * profiler.c, profiler.h: track time spent compiling methods.
29621         * threads.c: track thread creation/destruction.
29622
29623 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
29624
29625         * profiler.c, profiler.h, profiler-private.h: profiling interface
29626         and sample implementation. Moved here so that it can be used also by
29627         the jit.
29628
29629 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
29630
29631         * reflection.c, reflection.h: keep types and other handles separate in
29632         the hash tables for referred tokens. Add guid for modules.
29633
29634 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
29635
29636         * assembly.c: fix bugs found with valgrind.
29637         * metadata.h, metadata.c: added mono_metadata_guid_heap().
29638
29639 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
29640
29641         * threads: added icall support for getting current domain for
29642                    the thread.
29643  
29644 2002-04-13  Martin Baulig  <martin@gnome.org>
29645
29646         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
29647         (MonoDebugVarInfo): Added `index' field for register based addresses.
29648         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
29649         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
29650         `MonoDebugVarInfo *params' and `guint32 this_offset' with
29651         `MonoDebugVarInfo *this_var'.
29652
29653         * debug-symfile.c (relocate_variable): New static function to write
29654         a location description for a local variable or method parameter.
29655
29656 2002-04-12  Martin Baulig  <martin@gnome.org>
29657
29658         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
29659         stack offset and begin/end scope address of a local variable.
29660         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
29661         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
29662         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
29663
29664         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
29665         Added new relocation types for start/end scope of a local variable.
29666
29667 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
29668
29669         * object.h: add mono_object_domain() macro.
29670         * reflection.c: handle typespecs.
29671         * icall.c: MonoMethod::get_Name() implementation.
29672
29673 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
29674
29675         * icall.c: String::GetHashCode() icall implementation.
29676
29677 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29678
29679         * icall.c: String::IndexOfAny icall.
29680         * object.c, object.h: make array->max_length more useful.
29681         Intrduced mono_object_class() and mono_string_length() macros.
29682
29683 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29684
29685         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
29686         instead of g_unichar_isdigit.
29687
29688 2002-04-11  Nick Drochak  <ndrochak@gol.com>
29689
29690         * icall.c: Implement a simple Double.ToString().
29691
29692 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
29693
29694         * appdomain.h: only io-layer.h is supposed to be included.
29695         * icall.c: explicitly import environ. Fix warning.
29696
29697 2002-04-10  Nick Drochak  <ndrochak@gol.com>
29698
29699         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
29700                 return true even if it's not Daylight Savings time.
29701                 Only return false for the case where the function isn't
29702                 implemented for a plaform (read Windows).
29703
29704 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29705
29706         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
29707         data with a mutex.
29708
29709 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
29710
29711         * mempool.c (mono_mempool_alloc): only use g_malloc when
29712         absolutely necessary.
29713
29714 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
29715
29716         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
29717
29718         * class.c (mono_class_vtable): use domain mempool to allocate vtable
29719         (mono_class_proxy_vtable): use domain mempool
29720
29721 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
29722
29723         * appdomain.h, appdomain.c: split initialization that requires the
29724         execution engine support into mono_runtime_init().
29725
29726 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
29727
29728         * class.c (mono_class_init): don't include vtable inside MonoClass
29729         to save some memory, gather some statistics.
29730         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
29731
29732 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
29733
29734         * icall.c: internalcall implementation for ValueType.Equals().
29735
29736 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
29737
29738         * object.c (mono_message_init): moved 
29739         (mono_runtime_exec_main): new arch. independent impl.
29740         (mono_runtime_invoke_array): new method - like
29741         mono_runtime_invoke, but you can pass an array of objects.
29742         (mono_remoting_invoke): new arch. independent impl.
29743         (mono_message_invoke): new arch. independent impl.
29744         (mono_runtime_class_init): new arch. independent impl.
29745         (mono_runtime_object_init): new arch. independent impl.
29746
29747 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
29748
29749         * metadata.c, object.c, reflection.c: documented the exported
29750         functions.
29751
29752 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
29753
29754         * icall.c: simpler code to pass the assembly builder data to corlib.
29755         Implement GetNestedTypes() internalcall.
29756
29757 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
29758
29759         * class.c: warn if a type can't be loaded.
29760
29761 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
29762
29763         * image.h: typedef MonoImageOpenStatus
29764         * types.h: removed unused file
29765         
29766 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
29767
29768         * icall.c: Enum_ToObject accepts enum value arguments.
29769
29770 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
29771
29772         * class.c: move initialization of properties, events and nested
29773         classes, so that they happen for interfaces, too.
29774
29775 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
29776
29777         * icall.c: cleanup some ugly casts in Array_SetValue*.
29778
29779 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
29780
29781         * icall.c: the values array fro enums is of the correct type, now.
29782         Implement (correctly) getFullName instead of assQualifiedName for
29783         MonoType.
29784         * reflection.h, reflection.c: added mono_type_get_name ().
29785
29786 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
29787
29788         * assembly.c, image.h: for each MonoImage, record from wich assembly
29789         it was loaded.
29790         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
29791         Make Type.Assembly work.
29792
29793 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
29794
29795         * debug-symfile.h: use char* instead of gpointer to avoid
29796         unnecessary casts.
29797
29798         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
29799
29800         * icall.c (ves_icall_InternalExecute): impl. FielSetter
29801         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
29802
29803 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
29804
29805         * icall.c (mono_message_init): impl. (code cleanup)
29806         (ves_icall_InternalExecute): impl. FieldGetter
29807
29808         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
29809         defined we call all (non-static)methods through the vtable. 
29810
29811 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
29812
29813         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
29814         finalizer even though the memory is still referenced (and the chunk of
29815         memory is not freed).
29816
29817 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
29818
29819         * assembly.c: fix brokeness.
29820
29821 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
29822
29823         * class.c: kill some warnings. Check explicit interface method
29824         implementation also without considering the namespace.
29825         Load also literal strings in static class data.
29826
29827 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
29828
29829         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
29830         (default_assembly_name_resolver): Make the resolver take the
29831         "base" directory where the assembly was originally defined, so we
29832         can load DLLs that are in the same directory as the assembly that
29833         is being referenced.
29834
29835 2002-03-28  Dick Porter  <dick@ximian.com>
29836
29837         * file-io.h: 
29838         * file-io.c:
29839         * socket-io.c: 
29840         * unicode.h: 
29841         * unicode.c: Warning cleanups
29842
29843 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
29844
29845         * object.h, reflection.h: use the correct type instead of MonoObject.
29846
29847 2002-03-28  Martin Baulig  <martin@gnome.org>
29848
29849         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
29850         (mono_debug_update_symbol_file): Initialize classes if necessary.
29851
29852 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
29853
29854         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
29855         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
29856
29857 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
29858
29859         * assembly.h: fix function prototype.
29860         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
29861         * mono-endian.h: use const cast.
29862
29863 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
29864
29865         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
29866
29867 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
29868
29869         * loader.c: don't assert when a typeref can't be loaded, give
29870         a chance to the runtime to trow an exception instead.
29871         * loader.h: fix warning.
29872
29873 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
29874
29875         * class.c (mono_class_proxy_vtable): added proxy support
29876
29877 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
29878
29879         * icall.c: removed last of PAL calls, added System.Environment
29880         * file-io.h, file-io.c: MonoIO implementation
29881         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
29882
29883 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
29884
29885         * appdomain.c: do not use the byte marker in ldstr table lookup.
29886         * debug-helpers.c: allow two ':' to separate class and method name.
29887         * object.c: allocate arrays bounds with the GC, too.
29888         * verify: add a few more checks.
29889
29890 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
29891
29892         * reflection.c: output also literal strings. Allocate parameter data
29893         with GC_malloc() (thanks, Martin, for catching this!).
29894
29895 2002-03-26  Martin Baulig  <martin@gnome.org>
29896
29897         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
29898         include the `this' offset in the `param_offsets'.
29899
29900 2002-03-25  Martin Baulig  <martin@gnome.org>
29901
29902         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
29903         mono_debug_get_class() function to get the classes. Added new
29904         relocation types for arrays and strings.
29905         (mono_debug_get_class): New static function to search in all
29906         referenced assemblies for a metadata token.
29907
29908         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
29909
29910 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
29911
29912         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
29913         hold gc-allocated objects. Make the string heap a stream like the
29914         others. Removed duplicated code when writing stream info.
29915         Added asserts to catch possible buffer overflows. Set the sorted map
29916         for tables that need sorting. Added some documentation.
29917
29918 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
29919
29920         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
29921         for interned strings and vtables.
29922
29923 2002-03-24  Martin Baulig  <martin@gnome.org>
29924
29925         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
29926         it in the array since it was created with g_slist_prepend().
29927
29928 2002-03-24  Martin Baulig  <martin@gnome.org>
29929
29930         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
29931         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
29932         (mono_debug_method_from_token): Renamed to
29933         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
29934         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
29935
29936         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
29937         relocation types.
29938
29939         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
29940
29941 2002-03-24  Martin Baulig  <martin@gnome.org>
29942
29943         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
29944         (mono_debug_method_from_token): New func.
29945
29946         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
29947         New interncall, calls mono_debug_local_type_from_signature().
29948         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
29949         calls mono_debug_method_from_token().
29950
29951 2002-03-23  Martin Baulig  <martin@gnome.org>
29952
29953         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
29954         specifies the number of bytes to be converted, not the array size.
29955         Return the number of chars, not the number of bytes.
29956         (ves_icall_iconv_get_chars): The `byteCount' argument
29957         specifies the number of bytes to be converted, not the array size.
29958
29959 2002-03-23  Martin Baulig  <martin@gnome.org>
29960
29961         * reflection.h (MonoReflectionSigHelper): New type.
29962
29963         * reflection.c (mono_reflection_sighelper_get_signature_local),
29964         (mono_reflection_sighelper_get_signature_local): New functions.
29965
29966         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
29967         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
29968         interncalls.
29969
29970 2002-03-23  Martin Baulig  <martin@gnome.org>
29971
29972         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
29973         is_writeable is set.
29974         (mono_raw_buffer_update): New function to write the modified map
29975         back to disk.
29976
29977         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
29978
29979         * debug-symfile.c (mono_debug_update_symbol_file): Call
29980         mono_raw_buffer_update() when done writing.
29981
29982 2002-03-23  Martin Baulig  <martin@gnome.org>
29983
29984         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
29985
29986         * debug-symfile.c: Added support for arguments and local variables.
29987
29988 2002-03-23  Dick Porter  <dick@ximian.com>
29989
29990         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
29991         protected by ifdefs, hence breaking the w32 build.
29992
29993 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
29994
29995         * object.c: implement is_interned() the right way.
29996
29997 2002-03-21  Martin Baulig  <martin@gnome.org>
29998
29999         * debug-symfile.[ch]: New files to handle debugging information
30000         files. There's also support to dynamically update these symbol
30001         files to include machine dependent information.
30002
30003 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
30004
30005         * threads.c (mono_thread_create): new function to create thread
30006         from C
30007
30008 2002-03-20  Martin Baulig  <martin@gnome.org>
30009
30010         * icall.c (ves_icall_InternalInvoke): Create a new object if the
30011         method is a constructor.
30012         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
30013         points to ves_icall_InternalInvoke().
30014
30015 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
30016
30017         * file-io.c: Flush shouldn't throw exceptions.
30018
30019 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
30020
30021         * file-io.c: FileStream flush support; FileSetLength now
30022         restores file pointer.
30023
30024 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
30025
30026         * class.c: set image for pointer classes.
30027
30028 2002/03/19  Nick Drochak <ndrochak@gol.com>
30029
30030         * sysmath.c: Forgot one.
30031
30032 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
30033
30034         * sysmath.c: Avoid redefining existing names.
30035
30036 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
30037
30038         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
30039         handled by runtime as icall rather than dllimport from libm.so
30040         * file-io.c, file-io.h: fixed handle argument type.
30041
30042 2002-03-18  Dick Porter  <dick@ximian.com>
30043
30044         * reflection.c (mono_image_get_type_info): rename interface to
30045         iface, because of "#define interface struct" on windows.
30046
30047 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
30048
30049         * class.c, class.h: rename and export mono_ptr_class_get().
30050         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
30051         * reflection.c, reflection.h, icall.c: better/saner type name
30052         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
30053         method signatures.
30054
30055 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
30056
30057         * class.c (mono_class_init): removed hardcoded GHC_SLOT
30058
30059         * icall.c (ves_icall_InternalInvoke): impl.
30060
30061 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
30062
30063         * reflection.c: output the interface map table, too.
30064
30065 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
30066
30067         * class.c (class_compute_field_layout): separate computation of 
30068         static field layout
30069
30070 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
30071
30072         * icall.c: added System.Buffer support.
30073         * file-io.c: moved file icalls from PAL to FileStream.
30074
30075 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
30076
30077         * icall.c (ves_icall_System_Object_GetHashCode): impl.
30078
30079 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
30080
30081         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
30082
30083 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
30084
30085         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
30086
30087 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
30088
30089         * debug-helpers.{c,h}: moved here from monograph some useful functions
30090         to locate a method by name/signature in a class or image. Included
30091         also a small and flexible IL disassembler.
30092
30093 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
30094
30095         * reflection.c: fixup tokens in methods with small header size, too.
30096
30097 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
30098
30099         * object.c (mono_string_to_utf8): remove assert(!error), instead
30100         print a warning. 
30101
30102 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
30103
30104         * icall.c: update to the new mono_Array_class_get interface.
30105
30106 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
30107
30108         * appdomain.c, object.c: Boehm-GC enable.
30109         * icall.c: make get_data_chunk() support split data requests.
30110         Ensure a class is initialized in more cases. Return only the first
30111         property found in GetProperties() or the compiler gets confused. 
30112         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
30113         * reflection.h, reflection.c: add fixup mechanism for field and method
30114         tokens. Initialize assembly->typeref in a single place. Output
30115         properties after events. Support custom attributes for events, too.
30116         Typo fix for paramter custom attrs.
30117
30118 2002-03-07  Martin Baulig  <martin@gnome.org>
30119
30120         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
30121
30122 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
30123
30124         * class.c (mono_array_class_get): fix. for multi. dim. arrays
30125
30126 2002-03-06  Martin Baulig  <martin@gnome.org>
30127
30128         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
30129         non-zero lower bounds. See testcases #F10-#F13.
30130
30131 2002-03-05  Martin Baulig  <martin@gnome.org>
30132
30133         * exception.c (mono_get_exception_argument_out_of_range): New exception.
30134
30135         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
30136         ves_icall_System_Array_GetValue(), only calculate the absolute array position
30137         here.
30138         (ves_icall_System_Array_SetValue): Likewise.
30139         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
30140         as argument and does the actual work. This function is used when copying a
30141         multi-dimensional array.
30142         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
30143         now do all the widening conversions of value types.
30144         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
30145
30146 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
30147
30148         * class.c: remove some magic numbers and use the smbolic names,
30149         instead. Added init_events() to load event info at class init time.
30150         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
30151         and mono_metadata_methods_from_event().
30152         * reflection.h, reflection.c: added support for writing out the evnets
30153         related information.
30154
30155 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
30156
30157         * reflection.h, icall.c: use a different method (GetInterfaces)
30158         to gather interface info and add isbyref, isprimitive and
30159         ispointer to the ves_icall_get_type_info() return value.
30160
30161 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
30162
30163         * class.h: stared adding support for events.
30164         * icall.c: split find_members implementation. Added debug icall to get
30165         the address of an object.
30166         * reflection.c: handle TypeBuilders in mono_type_get_object().
30167
30168 2002-03-01  Martin Baulig  <martin@gnome.org>
30169
30170         * icall.c (ves_icall_System_Array_GetLength): This must throw an
30171         ArgumentOutOfRangeException(), not an ArgumentException().
30172         (ves_icall_System_Array_GetLowerBound): Likewise.
30173         (ves_icall_System_Array_GetValue): Improved argument checking.
30174         (ves_icall_System_Array_SetValue): Improved argument checking.
30175
30176 2002-03-01  Martin Baulig  <martin@gnome.org>
30177
30178         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
30179         called with invalid arguments rather than just dying with g_assert().
30180         (ves_icall_System_Array_SetValue): Likewise.
30181         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
30182         raise a NotImplementedException instead.
30183         (ves_icall_System_Array_GetLength): Added argument checking.
30184         (ves_icall_System_Array_GetLowerBound): Added argument checking.
30185
30186 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
30187
30188         * object.h (mono_assert): new macros mono_assert and
30189         mono_assert_not_reached
30190
30191 2002-02-28  Martin Baulig  <martin@gnome.org>
30192
30193         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
30194         and "System::String::IsInterned" to "System::String::_IsInterned".
30195
30196 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
30197
30198         * icall.c: remove hacks for typebuilder. Added icall to create a
30199         modified type from a tybebuilder.
30200         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
30201         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
30202         to create a backing MonoClass for a TypeBuilder.
30203
30204 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
30205
30206         * class.c, class.h: more refactoring of class init.
30207         Export mono_class_setup_mono_type() and mono_class_setup_parent().
30208
30209 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
30210
30211         * marshal.c, marshal.h: start of marshaling interface.
30212
30213 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
30214
30215         * icall.c: fix order in assembly qualified name icall.
30216
30217 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
30218
30219         * class.c: do not free str, since we store it in the hash table.
30220         * reflection.h: add label field to MonoILExceptionInfo.
30221         * reflection.c: handle references to more than one assembly. Handle
30222         case when there isn't a module created in the assembly.
30223
30224 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
30225
30226         * class.c: Fix typo. Start refactoring of class init code.
30227
30228 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
30229
30230         * appdomain.c: exit with 1 on error.
30231         * class.c: we already have the name in MonoClassField.
30232         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
30233         MonoStreamHeader instead of an offset of image->raw_metadata.
30234
30235 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
30236
30237         * appdomain.c (mono_init): Be even more descriptive about the error.
30238
30239 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
30240
30241         * appdomain.c: give the user an informative message when corlib can't
30242         be loaded.
30243
30244 2002-02-26  Martin Baulig  <martin@gnome.org>
30245
30246         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
30247         New icall to get the time zone data.
30248
30249 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
30250
30251         * reflection.c: set virtual and raw size of section correctly.
30252         * threads.c: transfer domain information to newly created threads.
30253
30254 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
30255
30256         * class.c: when instancing a class in a domain, load the default
30257         vaules for static fields from the constant table. Fix System.Enum to
30258         not be an enum.
30259         * icall.c: implement Object::GetType() internalcall. Implemented
30260         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
30261         Fixed checking of binding flags in find_members().
30262         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
30263         * reflection.c: handle enumerations when writing to the constant
30264         table. Use a different object cache for types.
30265
30266
30267 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
30268
30269         * object.c (mono_object_isinst): fix for arrays
30270
30271         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
30272
30273 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
30274
30275         * object.c: don't use mprotect ()  and fix intern pool hash table
30276         lookup for big endian systems.
30277
30278 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
30279
30280         * icall.c: change type_is_subtype_of () signature.
30281
30282 2002-02-21  Mark Crichton  <crichton@gimp.org>
30283
30284         * rand.c, rand.h: Added random number generator for
30285         System.Security.Cryptography classes.
30286
30287         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
30288
30289         * icall.c: Added System.Security.Cryptography calls.
30290
30291 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
30292
30293         * class.c, icall.c, metadata.c: better support for pointer types.
30294         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
30295         * reflection.c: Add support for getting custom attrs for properties
30296         and simplify some code.
30297
30298 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
30299
30300         * icall.c: change getToken () and add custom attribute GetBlob()helper
30301         method.
30302         * reflection.h: add custom attrs array to the reflection builder structures.
30303         * reflection.c: encode and emit custom attributes for all the relevant
30304         reflection objects. Cache fieldref and methodref tokens. Change
30305         mono_image_create_token() interface to take a MonoDynamicAssembly.
30306         More complete custom attributes decoder. Load custom attributes for
30307         Assembly, Field, Method and Constructor objects, too. Make the
30308         returned array an Attribute[] one, not object[]. Added
30309         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
30310         custom attribute constructor.
30311
30312 2002-02-20  Dick Porter  <dick@ximian.com>
30313
30314         * icall.c:
30315         * rawbuffer.c:
30316         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
30317         problem code out for now).
30318
30319 2002-02-19  Radek Doulik  <rodo@ximian.com>
30320
30321         * object.c (mono_ldstr): use hash table to avoid multiple swapping
30322
30323 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
30324
30325         * icall.c: register the GetCustomAttributes method.
30326         * object.c, object.h: add mono_string_new_len ().
30327         * reflection.h, reflection.c: added mono_runtime_invoke(),
30328         mono_install_runtime_invoke(). Added
30329         mono_reflection_get_custom_attrs () to load custom attributes and
30330         create the attribute objects.
30331
30332 2002-02-19  Dick Porter  <dick@ximian.com>
30333         * threads-dummy-types.c:
30334         * threads-dummy-types.h:
30335         * threads-dummy.c:
30336         * threads-dummy.h:
30337         * threads-pthread-types.c:
30338         * threads-pthread-types.h:
30339         * threads-pthread.c:
30340         * threads-pthread.h:  Deleted obsolete files
30341
30342 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
30343
30344         * class.c (mono_class_vtable): runtime init the class when we
30345         allocate static class data.
30346
30347         * icall.c (ves_icall_System_Array_SetValue): check for null values.
30348
30349         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
30350         and String - but we will need generic marshalling support in the
30351         future. 
30352         (mono_init): set the domain name in a ms compatible way
30353
30354         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
30355         String[].
30356
30357 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
30358
30359         * object.c (mono_array_clone): use alloca() instead of g_malloc  
30360         for sizes
30361
30362         * appdomain.c (mono_domain_unload): impl.
30363
30364 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
30365
30366         * appdomain.c, object.c: fix intern pool implementation.
30367         * class.c: fix alignment code.
30368
30369 2002-02-16  Radek Doulik  <rodo@ximian.com>
30370
30371         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
30372         and s2 > s1, just copy lower bytes to be compatible with little
30373         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
30374         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
30375
30376         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
30377         force big_endian to be 1 for big endian machines 
30378         (ves_icall_iconv_new_decoder): ditto
30379
30380 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
30381
30382         * socket-io.c (convert_sockopt_level_and_name): If the system
30383         doesn't define SOL_IP or SOL_TCP, get them by hand using
30384         getprotobyname() and caching the values (because this could be a
30385         slow operation).
30386         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
30387         Use the appropriate struct when the system does support it. Ie,
30388         not all systems have struct ip_mreqn so use struct ip_mreq when
30389         appropriate.
30390
30391 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
30392
30393         * reflection.c: handle finally clauses.
30394
30395 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
30396
30397         * socket-io.c: use g_snprintf() instead of snprintf.
30398
30399 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
30400
30401         * reflection.c (mono_param_get_objects): Cast second argument to
30402         mono_method_get_param_names to a const char** to silence the
30403         compiler warning.
30404
30405         * appdomain.c (mono_domain_assembly_open): Put parens around the
30406         truth statement in the for-loop.
30407
30408         * unicode.c (iconv_convert): Got rid of a compiler warning about
30409         int i being unused when the system has a new iconv.
30410         (iconv_get_length): Same.
30411
30412         * image.c (load_class_names): Cast the second argument to
30413         g_hash_table_insert() to char* to hush compiler warnings about the
30414         arg being a const.
30415         (mono_image_open): Same here.
30416
30417         * socket-io.c: Don't conditionally include sys/filio.h or
30418         sys/sockio.h here anymore since we now get them from
30419         io-layer/io-layer.h
30420         (inet_pton): If the system doesn't support inet_aton, implement
30421         using inet_addr and also #define INADDR_NONE if it isn't defined
30422         by the system.
30423
30424 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
30425
30426         * metadata.c, metadata.h: added function to get packing and size info
30427         of a typedef.
30428         * reflection.h, reflection.c: handle field RVA data. Save info about
30429         the table layout if needed. Assign typedef indexes to all the types
30430         before dumping the info about them to avoid forward reference problems.
30431
30432 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
30433
30434         * socket-io.c (convert_sockopt_level_and_name): ifdef
30435         SO_ACCEPTCONN because it is not defined on my system (old debian)
30436
30437 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
30438
30439         * opcode.c: use stddef.h to get NULL.
30440
30441 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
30442
30443         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
30444         for FIONBIO, FIONREAD and SIOCATMARK.
30445         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
30446         define INADDR_NONE and besides, inet_addr() is deprecated and
30447         should not be used. Use inet_pton() instead - it also has the
30448         added bonus that it can easily handle IPv6 addresses as well.
30449         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
30450
30451 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
30452
30453         * decimal.c: remove _MSC_VER conditional.
30454
30455 2002-02-13  Dick Porter  <dick@ximian.com>
30456
30457         * socket-io.c: 
30458         * icall.c: Internal calls for Blocking, Select, Shutdown,
30459         GetSocketOption and SetSocketOption
30460
30461 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
30462
30463         * assembly.cs: better resolver: use it instead of some kludgy
30464         code.
30465
30466 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
30467
30468         * reflection.c: the best way to speed-up the compiler is to avoid
30469         infinite loops.
30470
30471 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
30472
30473         * class.c (mono_class_vtable): changed the object layout
30474         (obj->vtable->class). 
30475         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
30476
30477 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
30478
30479         * assembly.c: look for assemblies in the assembly dir, too.
30480
30481 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
30482
30483         * class.c: fix thinko in mono_class_from_type().
30484
30485 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
30486
30487         * exception.h, exception.c: added TypeLoadException.
30488         * object.h, object.c: added mono_array_clone ().
30489         * icall.c: handle throwOnError in AssemblyGetType().
30490         Added Array.Clone().
30491         * opcode.h, opcode.c: use a single value for the opcode val.
30492         Compile fix for non-gcc compilers.
30493
30494 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
30495
30496         * opcodes.c, opcodes.h: export interesting info about opcodes.
30497
30498 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
30499
30500         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
30501         icalls. 
30502
30503         * class.c (class_compute_field_layout): set element_class for enums
30504         (mono_class_create_from_typedef): set element_class for normal classes
30505
30506         * icall.c (ves_icall_System_Enum_get_value): impl.
30507
30508         * class.c (mono_class_create_from_typedef): do not set valuetype
30509         flag for System.ValueType and System.Enum
30510
30511 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
30512
30513         * unicode.c (iconv_convert): fix big endian problem.
30514
30515 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
30516
30517         * class.c: add asserts if we are ever going to scribble over memory.
30518         * socket-io.c: not all systems have AF_IRDA defined.
30519
30520 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
30521
30522         * class.c (class_compute_field_layout): do not consider static
30523         fields to compute alignment
30524
30525 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
30526
30527         * appdomain.c (mono_appdomain_get): impl.
30528         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
30529
30530 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
30531
30532         * icall.c: ignore "file://" prefix when loading an assembly.
30533
30534 2002-01-23  Dick Porter  <dick@ximian.com>
30535
30536         * socket-io.c:
30537         * icall.c:
30538         * Makefile.am: Added socket support
30539
30540 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
30541
30542         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
30543         code back.  This should return the assemblies that are loaded by
30544         the runtime on behalf of an application domain. 
30545
30546         The current implementation is still broken, it just returns every
30547         assembly loaded, but until we get real applications domain this
30548         will do.
30549
30550 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
30551
30552         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
30553         AppDomain object.
30554
30555 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
30556
30557         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
30558         the mono_class_from_name lookup.
30559         (ves_icall_get_parameter_info): ditto.
30560         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
30561         method.
30562         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
30563
30564 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
30565
30566         * class.c: load also nested classes on class init.
30567         System.ValueType instance methods gets passed boxed
30568         values, unless methods in derived classed that get a pointer to the
30569         data.
30570         * icall.c: use better name parsing code in GetType().
30571         * image.c, image.h: add mono_image_loaded ().
30572         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
30573         * reflection.c, reflection.h: added mono_reflection_parse_type().
30574
30575 2002-01-22  Veronica De Santis <veron78@interfree.it>
30576
30577         * icall.c : Added mapping of internal calls for Manual and Auto reset events
30578         * threads.c : Added the implementation of internal calls for events
30579         * threads.h : Added prototypes of internal calls for events
30580         
30581 2002-01-21  Radek Doulik  <rodo@ximian.com>
30582
30583         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
30584
30585 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
30586
30587         * class.c (mono_class_init): set min_align to 1 (instead of 0)
30588         (mono_class_value_size): use min_align
30589
30590 2002-01-20  Dick Porter  <dick@ximian.com>
30591
30592         * threads.h:
30593         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
30594         so it compiles on w32.
30595
30596 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
30597
30598         * metadata.c (mono_type_stack_size): impl.
30599
30600         * class.c (mono_class_get_field): impl. memberref token
30601
30602 2002-01-16 Veronica De Santis <veron78@@interfree.it>
30603
30604         * icall.h : Added the internal calls mapping for CreateMutex_internal
30605                     and ReleaseMutex_internal.
30606         * threads.h : Added the prototype of mutexes internal calls.
30607         * threads.c : Added the implementations of mutexes internal calls.
30608
30609 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
30610
30611         * metaparse.h: removed unused file.
30612         * reflection.c, reflection.h: added stream_data_align () function 
30613         to align data in streams and keep stream aligned. Add support for
30614         exception support in method headers.
30615
30616 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
30617
30618         * unicode.c: make iconv_convert () return the number of bytess written
30619         in the output buffer.
30620
30621 2002-01-15  Dick Porter  <dick@ximian.com>
30622         * threads.c: Make the runtime's idea of infinite timeouts coincide
30623         with the class library's
30624
30625         Fix a particularly egregious bug in mono_thread_cleanup(). That
30626         code was so utterly bogus it must have been written on a Monday.
30627
30628 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
30629
30630         * reflection.h: add subtypes field to TypeBuilder.
30631         * reflection.c: encode constants for literal fields.
30632         Handle subtypes. Fix user string token (and add a zero byte)
30633         at the end.
30634         
30635 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
30636
30637         * class.c (mono_class_init): bug fix: assign slot numbers for
30638         abstract methods.
30639
30640 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
30641
30642         * reflection.c: don't try to output a code RVA for abstract methods.
30643         Small fixes for method header format. Output parameter info to the
30644         ParamDef table. Save method overriding info to MethodImpl table.
30645         Fix property support. Allow typedef.extends to be a type in the
30646         building assembly.
30647         * verify.c: fix off-by-one error.
30648
30649 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
30650
30651         * class.c: fix mono_class_from_mono_type () for szarray types.
30652         Remove unused cache check in mono_class_from_type_spec().
30653         * icall.c: *type_from_name () functions handle simple arrays and byref.
30654         * reflection.c: handle byref and szarray types. Handle methods without
30655         body (gets P/Invoke compilation working). Handle types and fields in
30656         get_token ().
30657         * reflection.h: add rank to MonoTypeInfo.
30658
30659 2002-01-10  Dick Porter  <dick@ximian.com>
30660
30661         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
30662         internal calls
30663
30664 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
30665
30666         * icall.c: initialize class in type_from_handle ().
30667         Loop also in parent classes for get_method ().
30668         * reflection.c: properly encode class and valuetype types.
30669         Start on encoding TypeBuilder types. Handle fieldrefs.
30670         Use correct length when registering a user string.
30671         Handle ConstructorBuilder and MonoMethod in get_token ().
30672         Make mono_type_get_object () aware of cached types.
30673         * object.c: back out change to mono_string_new ().
30674
30675 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
30676         * object.c: mono_string_new should return a NULL when the string 
30677         passed in is NULL -- not try to deference it.
30678         
30679 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
30680
30681         * icall.c: hack to make IsSubType work for TypeBuilders.
30682         * reflection.c: emit constructors before methods.
30683         Retrieve param names in mono_param_get_objects().
30684
30685 2002/01/05  Nick Drochak  <ndrochak@gol.com>
30686
30687         * Makefile.am: fix list of headers and sources so automake 1.5
30688         doesn't complain. Removed \# at end of list.
30689
30690 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
30691
30692         * reflection.c: get token for a method ref. Set return type of
30693         constructor to void.
30694         * loader.c: debug message.
30695         * class.c: typo fix.
30696
30697 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
30698
30699         * icall.c: fix array init with rank > 1. FindMembers
30700         loops in parent class as well.
30701         * image.c: do not insert nested types in name cache.
30702         * reflection.c: warning fix.
30703         * reflection.h: add override method (for interface impl).
30704
30705 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
30706
30707         * metadata.c: fix customattr decoding.
30708
30709 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
30710
30711         * rawbuffer.cs: Added native Win32 implementation, avoids using
30712         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
30713
30714 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
30715
30716         * class.c: make the low-level routines handle the cache.
30717
30718 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
30719
30720         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
30721
30722 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
30723
30724         * class.c: fix mono_array_element_size() for objects.
30725         * class.h, class.c: add properties to MonoClass and load them
30726         at init time.
30727         * icall.c: check with isinst() when assigning a value to an array
30728         instead of requiring the classes to match exactly.
30729         Implemented icall for System.Type::GetType().
30730         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
30731         enums. Handle bindingflags when looking for methods and fields.
30732         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
30733         and mono_metadata_methods_from_property().
30734         * reflection.h, reflection.c: added structures for propreties,
30735         parameters and enums. Implemented mono_property_get_object() and
30736         mono_param_get_objects().
30737
30738 2001-12-18  Dick Porter  <dick@ximian.com>
30739
30740         * file-io.c: Use mono_string_to_utf16() instead of
30741         mono_string_chars()
30742
30743         * object.c: Added mono_string_to_utf16(), which copies the non
30744         NULL-terminated MonoString into a new double-null-terminated
30745         buffer.
30746
30747 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
30748
30749         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
30750
30751 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
30752
30753         * file-io.c: raise exceptions if handle is invalid.
30754
30755 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
30756
30757         * assembly.c: yet another check for mscorlib.
30758         * class.c, class.h: load nesting info for classes.
30759         * icall.c: many new functions to support the Reflection classes.
30760         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
30761         * reflection.h, reflection.c: mono_image_create_token(),
30762         mono_assembly_get_object(), mono_type_get_object(),
30763         mono_method_get_object(), mono_field_get_object(): methods to return
30764         objects that parallel the C representation of assemblies, types,
30765         methods, fields.
30766
30767 2001-12-11  Dick Porter  <dick@ximian.com>
30768
30769         * icall.c:
30770         * file-io.c: Internal calls for file IO.
30771
30772 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
30773
30774         * tabledefs.h: missing FileAttributes.
30775         * verify.h, verify.c: use is_valid_string () to simplify and check for
30776         valid strings more correctly. Fix warnings and speeling.
30777         Check more tables: Filed, File, ModuleRef, StandAloneSig.
30778         Check code: branches, maxstack, method calls.
30779
30780 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
30781
30782         * object.c (mono_object_allocate): removed static, so that the jit
30783         can allocate value types.
30784
30785         * icall.c (ves_icall_System_DateTime_GetNow): impl.
30786
30787 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
30788
30789         * class.c: init enum types right away and register the
30790         token->MonoClass map in mono_class_create_from_typedef ().
30791         * verify.h, verify.c: first cut of the verifier.
30792         * pedump.c: add --verify switch to verify metadata tables.
30793         * tabledefs.h: add some missing enums.
30794
30795 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
30796
30797         * class.c (mono_install_runtime_class_init): impl.
30798         (mono_class_init): renamed mono_class_metadata_init to
30799         mono_class_init, also removed the metadata_inited flag
30800
30801         * object.c (mono_object_isinst): use faster algorithm
30802
30803 2001-11-30  Radek Doulik  <rodo@ximian.com>
30804
30805         * mono-endian.h: reverted last change
30806         added function prototypes
30807
30808         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
30809         add mono-endian.c back
30810
30811         * mono-endian.c: returned back, as Paolo pointed out, it's needed
30812         for unaligned access, I've mistaked it with endianess. I am
30813         sorry.
30814         (mono_read16): fix reverted endianess
30815         (mono_read64): ditto
30816         (mono_read32): ditto
30817
30818 2001-11-30  Dick Porter  <dick@ximian.com>
30819
30820         * exception.c: Implement mono_exception_from_name()
30821
30822 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
30823
30824         * metadata.h, metadata.c: remove params_size and locals_size and their
30825         calculation from the metadata code: they are only usefult to the
30826         interp.
30827
30828 2001-11-29  Radek Doulik  <rodo@ximian.com>
30829
30830         * object.c (mono_ldstr): swap bytes here, it's probably not the
30831         best place, but works for me now, I'll redo it once I know mono
30832         better, also note that I add PROT_WRITE and don't reset back, also
30833         note that it's only affects big endians, so x86 should be OK
30834
30835         * mono-endian.h (read16): use just glib macros for both endians
30836
30837         * mono-endian.c: removed as glib macros are used in in
30838         mono-endian.h so we don't need to care about endianess for read
30839         macros as glib does that for us already
30840
30841 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
30842
30843         * class.h, class.h: take minimum alignment into consideration so
30844         that the fields of a class remain aligned also when in an array.
30845
30846 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
30847
30848         * loader.h, loader.c: add mono_method_get_param_names().
30849         * class.c: 0-init class fields.
30850
30851 2001-11-26  Dick Porter  <dick@ximian.com>
30852
30853         * icall.c:
30854         * threads-types.h:
30855         * threads.c: New file that handles System.Threading on all platforms
30856
30857         * object.c: 
30858         * object.h: Remove the synchronisation struct from MonoObject,
30859         replace it with a pointer that gets initialised on demand
30860
30861         * Makefile.am: Replace all the system-specific threading code with
30862         a single file that uses the new wrapper library
30863
30864 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
30865
30866         * class.c, class.h: add mono_install_trampoline() so that the runtime
30867         can register a function to create a trampoline: removes the ugly
30868         requirement that a runtime needed to export arch_create_jit_trampoline.
30869         * object.h, object.c: added mono_install_handler() so that the runtime
30870         can install an handler for exceptions generated in C code (with
30871         mono_raise_exception()). Added C struct for System.Delegate.
30872         * pedump.c: removed arch_create_jit_trampoline.
30873         * reflection.c: some cleanups to allow registering user strings and
30874         later getting a token for methodrefs and fieldrefs before the assembly
30875         is built.
30876         * row-indexes.h: updates and fixes from the new ECMA specs.
30877
30878 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
30879
30880         * class.h, class.c: add enum_basetype field to MonoClass.
30881         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
30882         to get index in the constant table reated to a field, param or
30883         property.
30884         * reflection.h, reflection.c: handle constructors. Set public-key and
30885         version number of the built assembly to 0.
30886         * row-indexes.h: update from new ECMA spec.
30887
30888 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
30889
30890         * class.h, class.c: add a max_interface_id to MonoClass.
30891         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
30892         since it's used to do that. Added mono_type_type_from_obj().
30893         Make GetType() return NULL instead of segfaulting if the type was not
30894         found. Handle simple arrays in assQualifiedName.
30895         * object.h: add a struct to represent an Exception.
30896         * reflection.c: output call convention in method signature.
30897         Add code to support P/Invoke methods and fixed offsets for fields.
30898
30899 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
30900
30901         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
30902         the value.
30903         * icall.c: use mono_array_addr instead of array->vector: fixes the
30904         reflection image writing.
30905         * reflection.c: init call convention byte to 0 in method signature.
30906         Encode the property signature. Don't output property-related methods
30907         twice. Really process the properties for a type (don't cast a field to
30908         a property, my mom always told me that).
30909         Fix 64 bit issues in pointer alignment in a different and more
30910         readable way.
30911
30912 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
30913
30914         * loader.h: Removed type class from MonoDefaults, added monotype
30915
30916         * loader.c: Loaded MonoType, removed loading of Type
30917
30918         * icall.c (my_mono_new_object): Now returns a System.MonoType,
30919         and fills in System.Type._impl with a RuntimeTypeHandle rather
30920         than the actual MonoClass *
30921
30922         (ves_icall_type_from_handle): change from type_class to
30923         monotype_class
30924
30925         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
30926         implemented
30927
30928         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
30929         implemented
30930
30931         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
30932
30933         (ves_icall_System_Reflection_Assembly_GetType): implemented
30934
30935         (ves_icall_System_MonoType_assQualifiedName): implemented
30936
30937         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
30938
30939 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
30940
30941         * assembly.c (mono_assembly_open): Implement a cache for the
30942         assemblies. 
30943
30944         (mono_assembly_close): only destroy the assembly when the last
30945         reference is gone.
30946         
30947 2001-11-09  Dick Porter  <dick@ximian.com>
30948
30949         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
30950
30951 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
30952
30953         * class.c (mono_class_metadata_init): bug fix: compute the right slot
30954
30955 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
30956
30957         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
30958         from Martin Weindel.
30959         * object.h: add mono_string_chars ().
30960
30961 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
30962
30963         * reflection.c (build_compressed_metadata): Eliminates warnings
30964         and uses 64-bit clean code.
30965
30966         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
30967         (mono_type_equal): Change signature to eliminate warnings.
30968
30969 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
30970
30971         * icall.c, loader.c: remove the internalcall array constructors.
30972         Changes to match the new MonoArray structure.
30973         * object.h, object.c: an array object doesn't allocate an extra
30974         vector. Add mono_array_new_full () to create jagged arrays easily.
30975
30976 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
30977
30978         * metadata.h, metadata.c: add mono_metadata_field_info () to
30979         retreive all the info about a field from vairous tables.
30980         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
30981         * class.h, class.c: augment MonoClassField with more info.
30982         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
30983         policy and load a field's RVA if needed.
30984
30985 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
30986
30987         * class.c (mono_class_metadata_init): create a trampoline for all
30988         virtual functions instead of actually compiling them.
30989
30990 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
30991
30992         * class.h, class.c: include name in MonoClassField.
30993         * class.c: fix fundamental type of System.Object and System.String.
30994         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
30995         tokens in ldtoken.
30996         * icall.c: remove internalcalls for the Reflection stuff that is now
30997         done in C# code.
30998         * loader.c: mono_field_from_memberref () implementation.
30999         * mono-endian.c: thinko (s/struct/union/g).
31000         * object.c, object.h: make the mono_string_* prototypes actually use
31001         MonoString instead of MonoObject.
31002         * reflection.c, reflection.h: updates for changes in the reflection
31003         code in corlib: we use C structures that map to the actual C# classes.
31004         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
31005         fat method header if needed and use the info from the ILGenerator for
31006         methods. Handle fields in types. Misc fixes.
31007
31008 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
31009
31010         * class.c (mono_class_metadata_init): bug fix: always allocate
31011         space for static class data
31012
31013 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
31014
31015         * class.c (mono_compute_relative_numbering): use relative
31016         numbering to support fast runtime type checks.
31017
31018 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
31019
31020         * class.c (mono_class_create_from_typeref): added debugging output
31021         to print class name when MonoDummy is returned instead of real class
31022
31023 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
31024
31025         * class.c (mono_class_metadata_init): interface offset table now
31026         contains pointers into the vtable - this is more efficient for the jit
31027
31028 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
31029
31030         * class.c (mono_class_metadata_init): use a temporary vtable (the
31031         old algorithm only worked for the interpreter, but not for the jit)
31032
31033 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
31034
31035         * loader.c (method_from_memberref): use mono_class_get to get the
31036         class of an array instead of using System.Array directly.
31037         (mono_get_method): also add MEMBERREF methods to the method cache
31038         which usefull for arrays.
31039
31040 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
31041
31042         * pedump.c (arch_compile_method): added to compute vtable entry
31043
31044         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
31045         number of interfaces.
31046         
31047         * class.h: merged MonoArrayClass into MonoClass
31048
31049         * class.c (mono_class_create_from_typedef): compute the vtable size and
31050         allocate space to include the vtable inside MonoClass
31051         (mono_class_metadata_init): initialize the vtable
31052
31053 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
31054
31055         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
31056         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
31057         * image.c: endian fixes by Laurent Rioux.
31058         * object.h, object.c: rename MonoStringObject to MonoString and
31059         MonoArrayObject to MonoArray. Change some function names to conform to
31060         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
31061         guint16* as first argument, so don't use char*.
31062         Provide macros to do the interesting things on arrays in a portable way.
31063         * threads-pthread.c: updates for the API changes and #include <sched.h>
31064         (required for sched_yield()).
31065         * icall.c: updates for the API changes above.
31066         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
31067         platforms that need them.
31068
31069 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
31070
31071         * class.c: set the correct type for all the fundamental
31072         type when loading the class.
31073
31074 2001-10-05  Dick Porter  <dick@ximian.com>
31075
31076         * threads-pthread.c (pthread_mutex_timedlock): Simple
31077         compatibility version for C libraries that lack this call.
31078
31079 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
31080
31081         * class.c: MonoTypes stored in MonoClass are stored as
31082         fundamental MonoTypes when the class represents a
31083         fundamental type (System.Int32, ...).
31084         The TypeHandle return by ldtoken is a MonoType*.
31085         * icall.c: ves_icall_get_data_chunk () write out all the
31086         PE/COFF stuff. Implement ves_icall_define_method (),
31087         ves_icall_set_method_body (), ves_icall_type_from_handle ().
31088         * image.c: properly skip unknown streams.
31089         * loader.h, loader.c: add type_class to mono_defaults.
31090         * metadata.c, metadata.h: export compute_size () as
31091         mono_metadata_compute_size () with a better interface.
31092         Typo and C&P fixes.
31093         * pedump.c: don't try to print the entry point RVA if there is no entry point.
31094         * reflection.c, reflection.h: many cleanups, fixes, output method
31095         signatures and headers, typedef and typeref info, compress the metadata
31096         tables, output all the heap streams, cli header etc.
31097         * row-indexes.h: typo fixes.
31098
31099 2001-10-04  Dick Porter  <dick@ximian.com>
31100
31101         * object.h: Add a synchronisation mutex struct to MonoObject
31102
31103         * object.c (mono_new_object): Initialise the object
31104         synchronisation mutexes
31105
31106         * icall.c: System.Threading.Monitor internal calls
31107         
31108         * threads-pthread.h:
31109         * threads-pthread.c: System.Threading.Monitor internal calls
31110
31111         * threads-types.h: New file, includes the system-specific thread
31112         structures
31113         
31114         * threads-pthread-types.h:
31115         * threads-pthread-types.c: New files, handle pthread-specific
31116         synchronisation types
31117
31118         * threads-dummy-types.h: 
31119         * threads-dummy-types.c: New files of dummy support for
31120         thread-specific types
31121
31122         * metadata.c:
31123         * image.c:
31124         * pedump.c: include mono-endian.h not endian.h
31125         
31126         * Makefile.am: More threads files.
31127         Name mono-endian.h not endian.h
31128
31129 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
31130
31131         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
31132         stuff and implement a few more bits.
31133         * icall.c: a field needs to be dereferenced twice. Do not use the same
31134         name for two variables in the same scope.
31135         * image.c, image.h: cleanups.
31136
31137 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
31138
31139         * class.c (mono_class_metadata_init): bug fix: compute the right size
31140
31141 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
31142
31143         * icall.c: implemented some of the Reflection internalcalls.
31144         * image.c, image.h: start writing out the PE/COFF image.
31145         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
31146         that does the reverse than decode_blob_size ().
31147         * object.c: use mono_metadata_encode_value (). Move here
31148         temporary implementation of mono_string_to_utf8 ().
31149         * rawbuffer.c: make malloc_map static.
31150
31151 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
31152
31153         * metadata.c: fix type comparison for arrays.
31154         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
31155         Added a couple of new classes to monodefaults.
31156         * icall.c: added a couple of Reflection-related internalcalls.
31157         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
31158         Added a byval_arg MonoType to MonoClass.
31159
31160 2001-09-28  Dick Porter  <dick@ximian.com>
31161
31162         * icall.c:
31163         * threads-pthread.h: 
31164         * threads-pthread.c: Implemented internal calls for
31165         LocalDataStoreSlot operations.  Applied mutexes around all shared
31166         data.  Reworked the thread creation and Start() operations to
31167         avoid a race condition.
31168         
31169         * threads-dummy.h:
31170         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
31171
31172 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
31173
31174         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
31175
31176 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
31177
31178         * class.c, loader.c: warn and return NULL instead of erroring out.
31179         * icall.c: added System.AppDomain::getCurDomain().
31180         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
31181
31182 2001-09-25  Dick Porter  <dick@ximian.com>
31183
31184         * threads-pthread.h:
31185         * threads-pthread.c: Implemented timed thread joining and added
31186         System.Threading.Thread::Join_internal internal call
31187
31188         * icall.c: Added System.Threading.Thread::Join_internal internal call
31189
31190         * threads-dummy.h:
31191         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
31192
31193 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
31194
31195         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
31196         mono_string_intern () to implement the semantics of the ldstr opcode
31197         and the interning of System.Strings.
31198         * icall.c: provide hooks to make String::IsIntern and String::Intern
31199         internalcalls.
31200
31201 2001-09-23  Dick Porter  <dick@ximian.com>
31202
31203         * threads-dummy.c: 
31204         * threads-dummy.h: New files of dummy threading routines
31205
31206         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
31207         support code based on system specifics
31208
31209         Rename PTHREAD_LIBS to THREAD_LIBS
31210         
31211 2001-09-23  Dick Porter  <dick@ximian.com>
31212
31213         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
31214         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
31215         internal calls.
31216         (mono_thread_init): Set up a Thread object instance to return when
31217         the main thread calls Thread.CurrentThread
31218         (mono_thread_cleanup): Wait for all subthreads to exit
31219
31220         * icall.c: New internal calls for System.Threading.Thread::Sleep
31221         (including Schedule) and CurrentThread
31222
31223         * threads.h: New file, to insulate thread-specific stuff from the
31224         rest of the code
31225
31226 2001-09-21  Dick Porter  <dick@ximian.com>
31227
31228         * threads-pthread.h: 
31229         * threads-pthread.c: New file, for handling pthreads-style
31230         threading support.  Start() now starts a new thread and executes
31231         the ThreadStart delegate instance.
31232
31233         * icall.c: Added the internalcall for
31234         System.Threading.Thread::Start_internal
31235
31236         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
31237
31238 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
31239
31240         * loader.c: work around the different signatures for delegates
31241         constructors csc generates in compiled code vs the ones compiled in mscorlib.
31242
31243 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
31244
31245         * class.h, class.c: add mono_class_get_field_from_name ().
31246         * *: Fix C comments and other ANSI C issues.
31247
31248 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
31249
31250         * endian.h, assembly.c: fix some endianness issues.
31251
31252 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
31253
31254         * loader.h, load.c: add delegate_class to mono_defaults.
31255         Handle runtime provided methods in mono_get_method ().
31256
31257 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
31258
31259         * loader.c (mono_get_method): use pinvoke for internal call
31260
31261         * icall.c: use pinvoke for internal call
31262
31263         * loader.c (method_from_memberref): set the method name
31264
31265 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
31266
31267         * metadata.c: help the compiler generate better code for
31268         mono_class_from_mono_type ().
31269
31270 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
31271
31272         * class.c (mono_class_metadata_init): delayed computing of the
31273         class size to mono_class_metadata_init ()
31274
31275 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
31276
31277         * class.c, class.h: add an interfaces member to MonoClass.
31278         * image.c, image.h: add assembly_name field to MonoImage
31279         from the assembly table.
31280         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
31281
31282 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
31283
31284         * class.c: Handle Array in mono_class_from_mono_type ().
31285         * metadata.c, pedump.c: some endian fixes.
31286
31287 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
31288
31289         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
31290         * metadata.c: fix small problem introduced with the latest commit.
31291
31292 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
31293
31294         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
31295         We don't need a MonoMetadata pointer anymore to compare signatures in
31296         mono_metadata_signature_equal (), update callers.
31297         Reduced memory usage an number of allocations for MonoMethodHeader and
31298         MonoMethodSignature.
31299
31300 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
31301
31302         * metadata.c: added compare for szarray.
31303
31304 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
31305
31306         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
31307         and add a couple more types to it and mono_defaults. Give an hint on
31308         classes that need implementing in our corlib and are referenced
31309         in mscorlib.
31310
31311 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
31312
31313         * class.h, class.c: keep track if a class is also an Enum.
31314         * loader.c: Implement a couple more types for use in libffi
31315         marshalling. Gives better diagnostics when failing to dlopen
31316         a library. Set method->klass for P/Invoke methods, too.
31317
31318 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
31319
31320         * class.c, class.h: add a MonoType this_arg to MonoClass that
31321         represents a pointer to an object of the class' type that
31322         can be used by the interpreter and later the type cache.
31323         Add best guess alignment info for valuetype objects.
31324
31325 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
31326
31327         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
31328         into MonoType: one less level of indirection and allocation and
31329         simplifies quite a bit of code. Added cache for MonoTypes that are
31330         used frequently, so that we don't need to allocate them all the time.
31331
31332 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
31333
31334         * class.c (mono_class_create_from_typedef): System.Enum is also a
31335         value type, although it does not derive from System.ValueType
31336         (maybe a bug in the ms compiler?)
31337
31338         * metadata.c (mono_type_size): return the right size for value types
31339
31340         * loader.c (mono_get_method): only initialize method header if not abstract
31341
31342         * class.c (mono_class_from_mono_type): use mono_default values. 
31343
31344 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
31345
31346         * *: use MonoClass pointers instead of <type_tokens>
31347         
31348         * class.h: new flag: metadata_inited.
31349
31350         * class.c (mono_class_metadata_init): impl.
31351         (mono_class_instance_size): impl.
31352         (mono_class_data_size): impl.
31353
31354 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
31355
31356         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
31357         MonoClass now has the name and name_space fields. 
31358         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
31359         mono_get_method () takes and optional MonoClass as argument.
31360         Removed mono_typedef_from_name() and added mono_class_token_from_name()
31361         instead that takes advantage of a map from class names to typedef
31362         tokens in MonoImage.
31363
31364 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
31365
31366         * metadata.c: zero is not a valid alignment boundary.
31367         Merge MONO_TYPE_VOID in default decoding code.
31368
31369 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
31370
31371         * image.h: merged MonoMetadata into MonoImage
31372
31373         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
31374         identify the type of elements.
31375
31376 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
31377
31378         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
31379         * cil-coff.h: split MonoMSDOSHeader and add size info.
31380         * image.c: add some consistency checks.
31381         * metadata.c: fix row size computation: one programmer
31382         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
31383         add explanation for the locator routine.
31384         Fix decoding of size in method header.
31385         
31386 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
31387
31388         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
31389         (g_concat_dir_and_file): Bring g_concat_dir_and_file
31390         function from gnome-libs.  This uses the right path separator
31391         based on the OS, and also works around a bug in some systems where
31392         a double slash is not allowed. 
31393         (default_assembly_name_resolver): Use g_concat_dir_and_file
31394         (mono_assembly_open): ditto.
31395
31396 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
31397
31398         * metadata.c (mono_metadata_signature_equal): impl.
31399
31400         * *: void is now a realy MonoType (instead of using NULL)
31401         
31402         * metadata.c (do_mono_metadata_parse_type): use
31403         mono_metadata_parse_type to parse void value.
31404
31405 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
31406
31407         * metadata.c, metadata.h: in the signature and method header store
31408         only the space required for holding the loca vars and incoming arguments.
31409
31410 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
31411
31412         * metadata.c (do_mono_metadata_parse_type): treat void like any
31413         other type (instead of assigning NULL);
31414
31415 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
31416
31417         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
31418
31419 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
31420
31421         * image.c (do_mono_image_open): added a cache for arrays.
31422
31423 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
31424
31425         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
31426         decode a single column from a row in a metadata table and changes
31427         to take advantage of it in the typedef locator (gives a nice speed up).
31428         Store offset info for function params.
31429
31430 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
31431
31432         * image.h (MONO_IMAGE_IS_CORLIB): removed 
31433
31434 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
31435
31436         * assembly.c: how could mono_assembly_close () had ever worked?
31437         * metadata.c, metadata.h: provide offset info for local vars.
31438         Implement mono_type_size () to take care of alignment as well
31439         as size (it was mono_field_type_size in cli/class.c before).
31440
31441 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
31442
31443         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
31444
31445         * assembly.h (CORLIB_NAME): set to corlib.dll
31446
31447         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
31448
31449 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
31450
31451         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
31452         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
31453         tokentype.h: massive namespace cleanup.
31454
31455 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
31456
31457         * metadata.h, metadata.c: decode exception clauses when parsing method header.
31458
31459 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
31460
31461         * metadata.c (mono_metadata_free_type): added check for type !=
31462         NULL (void) before calling mono_metadata_free_type()
31463
31464 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
31465
31466         * metadata.h, row_indexes.h: added header with enumerations to use
31467         to index in the columns from tables in metadata and to decode coded
31468         tokens: we should start using this instead of embedding magic numbers
31469         all over the code.
31470
31471 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
31472
31473         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
31474         Move metadata_t info from cli_image_info_t to MonoImage, where
31475         it's easily accessible. Changed all the uses accordingly.
31476         Added the method and class caches to MonoImage.
31477         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
31478         and mono_metadata_decode_value () signature to be more consistent
31479         with the other parse functions (and simplify code). Taken advantage
31480         of zero-length array allocation with GCC. Removed reduntant (and
31481         wrong) MonoFieldType struct and use MonoParam instead. Changed
31482         mono_metadata_parse_field_type () to use common code for parsing.
31483         Added mono_metadata_typedef_from_field () and
31484         mono_metadata_typedef_from_method () to lookup a typedef index from a
31485         field or method token.
31486         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
31487
31488 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
31489
31490         * metadata.c (mono_metadata_parse_field_type): Implement. 
31491         (do_mono_metadata_parse_type): Split engine from
31492         mono_metadata_parse_type, so that we can create smaller structures
31493         for things that just have one pointer to the MonoType (look at
31494         the MonoFieldType)
31495
31496 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
31497
31498         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
31499         as Jan Gray found out, it is incorrect. 
31500
31501 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
31502
31503         * assembly.c: Implement asssembly loading.  This loads an image
31504         and loads all the referenced assemblies.  Come to think of it, we
31505         could always do lazy loading of the assemblies. 
31506
31507         * image.c (mono_image_open): Keep loaded images in a hashtable.
31508
31509         * image.h (MonoImage): Add reference count.
31510
31511 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
31512
31513         * assembly.c (mono_assembly_open): Keep track of the file name in
31514         case the assembly has no ASSEMBLY table.
31515
31516         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
31517         from get.c here.
31518
31519 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
31520
31521         * metadata.c, metadata.h: decode local vars in method header
31522         parse function. Change callers accordingly.
31523
31524 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
31525
31526         * metadata.h, cil-coff.h: protect against multiple inclusion.
31527         Added some new structures to hold information decoded from metadata:
31528         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
31529         and relevant decoding/free functions.
31530         * metadata.c: implement decoding functions. Add warning for out of bounds
31531         index in mono_metadata_locate(). Implement mono_get_method () to retreive
31532         all the info about a method signature and invocation. Remove check on
31533         uninitialized local var in parse_mh() and fix memory leak.
31534
31535 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
31536
31537         * metadata.h: More macros.
31538
31539         * tokentype.h: New file.
31540
31541 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
31542
31543         * assembly.c: added a consistency check and initialize
31544         some structures with g_new0().
31545         * metadata.c: fixed a couple more bugs in table size computation
31546         and add other checks for out-of bound access to metadata.
31547
31548 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
31549
31550         * metatada.c: fix bugs computing table sizes. Spew a
31551         warning when index in string heap is out of bounds.
31552
31553 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
31554
31555         * metadata.h: Add a couple of macros to manipulate tokens. 
31556
31557 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
31558
31559         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
31560         cli_section_tables).
31561
31562 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
31563
31564         * metadata.c (mono_metadata_user_string): New function, provides
31565         access to the UserString heap. 
31566
31567 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
31568
31569         * metadata.c: Add inline documentation.
31570
31571 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
31572
31573         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
31574         files. 
31575
31576 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
31577
31578         * typeattr.h: New file, TypeAttribute flags. 
31579
31580 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
31581
31582         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
31583         mono_assembly_ensure_section): Section loading code.
31584         (load_section_tables): Load the sections.
31585
31586         * mono/metadata/metadata.c (mono_metadata_locate_token,
31587         mono_metadata_locate): Functions to locate the information
31588         definition given a token or a table and an index.
31589         (mono_metadata_compute_table_bases): New.
31590         (compute_size): New function to compute the sizes of the various
31591         tables.
31592
31593         * mono/metadata/metadata.h: Finish listing the different index
31594         types. 
31595
31596         * mono/metadata/pedump.c: Improve to dump new information.
31597
31598 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
31599
31600         * mono/metadata/metadata.c: Entered all the tables matching
31601         Beta2. 
31602
31603         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
31604
31605
31606
31607